.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.clear {
    clear: both;
}

.visuallyhidden {
    position: absolute;
    width: 1px; /* Setting this to 0 make it invisible for VoiceOver */
    height: 1px; /* Setting this to 0 make it invisible for VoiceOver */
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

pre {
    white-space: pre-wrap; /* Chrome & Safari */
    white-space: -moz-pre-wrap; /* Mozilla since 1999 */
    /*white-space: -pre-wrap;      *//* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}

/* `FLOAT
--------------------------------------------------------------------------------------------------------------------- */

.f-rht {
    float: right;
}

.f-lft {
    float: left;
}

/* `MARGIN
--------------------------------------------------------------------------------------------------------------------- */

.m-top {
    margin-top: 10px;
}

.m-rht {
    margin-right: 10px;
}

.m-btm {
    margin-bottom: 10px;
}

.m-lft {
    margin-left: 10px;
}

.m-top-2x {
    margin-top: 20px;
}

.m-rht-2x {
    margin-right: 20px;
}

.m-btm-2x {
    margin-bottom: 20px;
}

.m-lft-2x {
    margin-left: 20px;
}

/* `PADDING
--------------------------------------------------------------------------------------------------------------------- */

.p-top {
    padding-top: 10px;
}

.p-rht {
    padding-right: 10px;
}

.p-btm {
    padding-bottom: 10px;
}

.p-lft {
    padding-left: 10px;
}

/* `TEXT ALIGN
--------------------------------------------------------------------------------------------------------------------- */

.t-ctr {
    text-align: center;
}

.t-rht {
    text-align: right;
}

.t-lft {
    text-align: left;
}

.t-up {
    text-transform: uppercase;
}

.t-cpt {
    text-transform: capitalize;
}

.t-udl {
    text-decoration: underline;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* `INPUT ELEMENTS
--------------------------------------------------------------------------------------------------------------------- */

input[type="text"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 4px;
    font-size: 14px;
    border-radius: 2px;
    color: #172b4d;
    border: 1px solid #cbd4e3;
    transition: all 0.29s ease;
}

select {
    background: #fafcff;
}

select option {
    padding: 4px;
}

textarea {
    min-height: 70px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #457ffe;
}

/* `BUTTONS
--------------------------------------------------------------------------------------------------------------------- */

.btn,
.btn.ui-button,
.btn.ui-button.ui-state-default,
button {
    color: #fff;
    border: none;
    border-radius: 2px;
    height: 38px;
    line-height: 38px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    text-shadow: none;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.218s;
    user-select: none;
    cursor: pointer;
    padding: 0 20px;
    background: #616161;
    display: inline-block;
}

.ui-widget.ui-commandlink {
    font-size: 11px;
}

.btn:hover,
.btn.ui-button:hover,
button:hover {
    background-color: #424242;
    color: #fff;
}

.btn:focus,
button:focus,
.btn.ui-button:focus {
    outline: none;
}

.btn:active,
button:active,
.btn.ui-button:active {
    background-color: #212121;
}

.btn-blue,
.btn-blue.btn.ui-state-default,
button.btn.ui-button {
    background: #457fff;
}

.btn-blue:hover,
button.btn.ui-button:hover {
    background: #4d8fff;
}

.btn-blue:active,
button.btn.ui-button:active {
    background: #447af5;
}

.btn-green {
    background: #4CAF50;
}

.btn-green:hover {
    background: #66BB6A;
}

.btn-green:active {
    background: #43A047;
}

.btn-red {
    background: #f44336;
}

.btn-red:hover {
    background: #ef5350;
}

.btn-red:active {
    background: #e53935;
}

.btn:disabled,
.btn:disabled:hover,
.btn:disabled:active,
button:disabled,
button:disabled:hover,
button:disabled:active {
    opacity: 0.4;
    filter: Alpha(Opacity=40);
}

.btn-mng {
    height: 24px;
    width: 24px;
    display: inline-block;
    border-radius: 1px;
    padding: 2px;
    text-align: center;
}

.btn-mng:hover {
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
}

.btn-mng:active {
    background: #fff;
    border-radius: 2px;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.btn-mng:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* `LINKS
--------------------------------------------------------------------------------------------------------------------- */

.link {
    padding: .5em;
    margin: -.5em;
    color: #001f3f;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.link:hover {
    color: #1E88E5;
}