@font-face {
    font-family: 'HelveticaLTStd-Roman';
    src: url(../fonts/HelveticaLTStd-Roman.eot);
    src: url(../fonts/HelveticaLTStd-Roman.eot) format("embedded-opentype"),
    url(../fonts/HelveticaLTStd-Roman.woff) format("woff"),
    url(../fonts/HelveticaLTStd-Roman.ttf) format("truetype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'HelveticaLTStd-Light';
    src: url(../fonts/HelveticaLTStd-Light.eot);
    src: url(../fonts/HelveticaLTStd-Light.eot) format("embedded-opentype"),
    url(../fonts/HelveticaLTStd-Light.woff) format("woff"),
    url(../fonts/HelveticaLTStd-Light.ttf) format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'HelveticaLTStd-Bold';
    src: url(../fonts/HelveticaLTStd-Bold.eot);
    src: url(../fonts/HelveticaLTStd-Bold.eot) format("embedded-opentype"),
    url(../fonts/HelveticaLTStd-Bold.woff) format("woff"),
    url(../fonts/Proxima_Nova_Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'Maven Pro';
    src: url(../fonts/MavenProRegular.eot);
    src: url(../fonts/MavenProRegular.eot?#iefix) format('embedded-opentype'),
    url(../fonts/MavenProRegular.woff) format('woff'),
    url(../fonts/MavenProRegular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}


/*===========================================

=============================================*/


/* Main menu wrapper */

.content-in {
    position: relative;
    z-index: 9999;
}

.cbp-hsmenu-wrapper {
    position: relative;
}


/* Common style for all lists */

.cbp-hsmenu-wrapper ul {
    list-style: none;
    padding: 0;
}


/* 100% width bar for menu */

.cbp-hsinner {
    position: relative;
    z-index: 100;
    margin-top: 10px;
}


/* Main menu style */

.cbp-hsmenu-wrapper .cbp-hsmenu {
    width: 65%;
    max-width: 65em;
    margin: 0 auto;
    top: -8px;
    position: relative;
}

.cbp-hsmenu > li {
    display: inline-block;
}

.cbp-hsmenu > li:first-child {
    margin-left: 0;
}


/* Main menu link style */

.cbp-hsmenu > li > a {
    color: #737373;
    font-size: 1.2em;
    line-height: 2em;
    display: inline-block;
    position: relative;
    z-index: 10000;
    outline: none;
    padding-right: 3em;
}

.cbp-hsmenu > li > a.drop a:after {
    display: inline-block;
    /* vertical-align: top; */
    font-family: "FontAwesome";
    content: "\f0d7";
    padding-left: 10px;
    font-size: 16px;
    color: #65b32e;
}

.no-touch .cbp-hsmenu > li > a:hover,
.no-touch .cbp-hsmenu > li > a:focus,
.cbp-hsmenu > li.cbp-hsitem-open > a {
    color: #008541;
}


/* Add an arrow to the main menu link if it has a submenu (not the only child) */


/* Add a triangle to currently open menu item link */

.cbp-hsmenu > li.cbp-hsitem-open > a:after {
    border-bottom: 18px solid transparent;
    border-left: 18px solid #f0f0f0;
    border-top: 18px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: 45%;
    top: 26px;
    width: 0;
    z-index: 2;
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}


/* Submenu style */

.cbp-hssubmenu {
    background: #f0f0f0;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 12px;
    z-index: 0;
    text-align: left;
    /* for aligning the sub items */
    visibility: hidden;
}

.cbp-hssubmenu:before,
.cbp-hssubmenu:after {
    content: " ";
    display: table;
}

.cbp-hssubmenu:after {
    clear: both;
}


/* Let's allow 6 item in a row */

.cbp-hssubmenu > li {
    width: 16.2%;
    display: inline-block;
    vertical-align: top;
    opacity: 0;
    -webkit-transition: opacity 0.1s 0s;
    -moz-transition: opacity 0.1s 0s;
    transition: opacity 0.1s 0s;
}


/* First 6 items don't have upper box shadow */

.cbp-hssubmenu > li:nth-child(-n+6) {}

/* Every 7th item does not have a left box shadow */

.cbp-hssubmenu > li:nth-child(6n+1) {}

/* The first one does not have any box shadow */

.cbp-hssubmenu > li:first-child {}

.cbp-hssubmenu > li a {
    color: #a2a2a2;
    display: block;
    font-size: 1.2rem;
    outline: medium none;
    padding: .3em 1em;
    text-align: center;
    border-right: 1px solid #ddd;
}

.cbp-hssubmenu > li a:first-child {
    font-size: 1.4rem;
}

.cbp-hssubmenu > li:last-child a {
    border-right: none;
}

.no-touch .cbp-hssubmenu > li a:hover,
.no-touch .cbp-hssubmenu > li a:focus {
    color: #888;
}

.cbp-hssubmenu > li a img {
    border: none;
    outline: none;
    display: inline-block;
    margin: 0 5px 0 0;
    width: 3rem;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
    opacity: 0.6;
}

.no-touch .cbp-hssubmenu > li a:hover img {
    opacity: 1;
}

.cbp-hssubmenu > li a span {
    display: inline-block;
    min-height: 17px;
    margin-top: 0.4em;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
    z-index: 1000;
    visibility: visible;
}

.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
    opacity: 1;
    -webkit-transition: opacity 0.5s 0.1s;
    -moz-transition: opacity 0.5s 0.1s;
    transition: opacity 0.5s 0.1s;
    min-width: 150px;
    padding: 18px 0;
}


/* Helper div for animating the background */

.cbp-hsmenubg {
    display: none;
}

.cbp-dorp {
    background: #f5f5f5;
    position: absolute;
    width: 100%;
    top: 58px;
    left: 0;
    z-index: 0;
    height: 100px !important;
    display: none;
    -moz-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.07);
}

.no-touch .cbp-hsmenubg {
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}

@media screen and (max-width: 65em) {
    .cbp-hsmenu-wrapper {
        font-size: 80%;
    }
}

@media screen and (max-width: 51.4375em) {
    .cbp-hsmenu-wrapper {
        font-size: 100%;
    }
    .cbp-hsmenu-wrapper .cbp-hsmenu {
        padding: 0;
        max-width: none;
        width: 100%;
    }
    .cbp-hsmenu > li {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .cbp-hsmenu > li:first-child {
        border-top: none;
    }
    .cbp-hsmenu > li > a {
        display: block;
    }
    .cbp-hsmenu > li > a:not(:only-child):before {
        line-height: 1.8;
        right: 0;
        position: absolute;
        font-size: 200%;
    }
    .cbp-hsmenubg {
        display: none;
    }
    .cbp-hssubmenu {
        background: #f7f7f7;
        position: relative;
        overflow: hidden;
        height: 0;
    }
    .cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
        height: auto;
    }
    /* Let's only allow 3 item in a row now */
    .cbp-hssubmenu > li {
        width: 30%;
    }
    /* Reset box shadows for the 6 items in row case */
    .cbp-hssubmenu > li:nth-child(-n+6),
    .cbp-hssubmenu > li:nth-child(6n+1) {
        box-shadow: -28px 0 0 -27px #ddd, 0 -28px 0 -27px #ddd;
    }
    /* First 4 items don't have upper box shadow */
    .cbp-hssubmenu > li:nth-child(-n+3) {
        box-shadow: -28px 0 0 -27px #ddd;
    }
    /* Every 5th item does not have a left box shadow */
    .cbp-hssubmenu > li:nth-child(3n+1) {
        box-shadow: 0 -28px 0 -27px #ddd;
    }
}

@media screen and (max-width: 25em) {
    /* Let's only allow 1 item in a row now */
    .cbp-hssubmenu > li {
        width: 100%;
        display: block;
    }
    .cbp-hsmenu-wrapper .cbp-hssubmenu > li {
        box-shadow: 0 1px #cecece;
        text-align: left;
    }
    .cbp-hssubmenu > li a {
        text-align: left;
        line-height: 50px;
        padding: 0.4em 1em;
    }
    .cbp-hssubmenu > li a img {
        float: left;
        max-height: 50px;
    }
    .cbp-hssubmenu > li a span {
        min-height: 0;
        margin: 0;
    }
}

.green-btn {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #2eb33b;
    background: #2eb33b;
    color: #fff;
    font-weight: 600;
}

.green-btn {
    display: inline-block;
    padding: .375rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
}

.dropdown-menu {
    border-color: #d8e2e7;
    margin-top: 6px;
    font-size: .9525rem;
    /*.8125rem*/
}

.dropup .dropdown-menu {
    margin-bottom: 6px;
}

.dropdown-menu-col {
    float: left;
    width: 50%;
}

.dropdown-header,
.dropdown-item {
    padding: 4px 12px;
}

.dropdown-header {
    text-transform: uppercase;
    font-weight: 600;
    color: #6c7a86;
    font-size: .875rem;
}

.dropdown-item {
    font-size: .9375rem;
}

.dropdown-item .font-icon {
    margin: 0 8px 0 0;
    color: #adb7be;
    transition: all .2s ease-in-out;
    font-size: 16px;
    vertical-align: middle;
    line-height: 16px;
    position: relative;
    top: -1px;
}

.dropdown-item.current,
.dropdown-item:hover {
    background: 0 0;
    color: #79aa33;
}

.dropdown-item.current .font-icon,
.dropdown-item:hover .font-icon {
    color: #79aa33;
}

.dropdown-item.no-nowrap {
    white-space: normal;
    line-height: 1.3;
}

.dropdown.dropdown-typical {
    position: relative;
}

.dropdown.dropdown-typical a.dropdown-toggle {
    color: #343434;
    font-weight: 600;
    padding-right: 15px;
    padding-left: 15px;
}

.dropdown.dropdown-typical a.dropdown-toggle .font-icon,
.dropdown.dropdown-typical a.dropdown-toggle:after {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.dropdown.dropdown-typical a.dropdown-toggle:after {
    color: #adb7be;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    position: relative;
    top: -1px;
}

.dropdown.dropdown-typical a.dropdown-toggle .font-icon {
    vertical-align: middle;
    margin: 0 6px 0 0;
    color: #adb7be;
    font-size: 16px;
    line-height: 16px;
    position: relative;
    top: -1px;
}

.dropdown.dropdown-typical .dropdown-more:hover .dropdown-more-caption,
.dropdown.dropdown-typical a.dropdown-toggle:hover,
.dropdown.dropdown-typical a.dropdown-toggle:hover .font-icon,
.dropdown.dropdown-typical a.dropdown-toggle:hover:after,
.dropdown.dropdown-typical.open a.dropdown-toggle,
.dropdown.dropdown-typical.open a.dropdown-toggle .font-icon,
.dropdown.dropdown-typical.open a.dropdown-toggle:after {
    color: #00a8ff;
}

.dropdown.dropdown-typical a.dropdown-toggle.dropdown-toggle-txt {
    font-weight: 400;
    color: #00a8ff;
    font-size: .9375rem;
}

.dropdown.dropdown-typical a.dropdown-toggle.dropdown-toggle-txt:after {
    display: none;
}

.dropdown.dropdown-typical .dropdown-header,
.dropdown.dropdown-typical .dropdown-item {
    padding: 3px 14px;
}

.dropdown.dropdown-typical .dropdown-item {
    font-size: .9375rem;
}

.dropdown.dropdown-typical .dropdown-menu {
    margin-top: 2px;
    min-width: 100%;
}

.dropdown.dropdown-typical .dropdown-more {
    position: relative;
}

.dropdown.dropdown-typical .dropdown-more .dropdown-more-caption {
    padding: 3px 12px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
    position: relative;
    font-size: 15px;
}

.user-card-row {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: .8125rem;
}

.user-card-row p {
    margin: 0;
}

.user-card-row a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.jspContainer .jspTrack,
.upload-list .font-icon {
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.user-card-row .tbl-cell.tbl-cell-photo {
    width: 42px;
    padding-right: 10px;
}

.user-card-row .tbl-cell.tbl-cell-photo img {
    display: block;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.user-card-row .tbl-cell.tbl-cell-photo.tbl-cell-photo-64 {
    width: 74px;
}

.user-card-row .tbl-cell.tbl-cell-photo.tbl-cell-photo-64 img {
    width: 64px;
    height: 64px;
}

.user-card-row .tbl-cell.tbl-cell-date {
    white-space: nowrap;
    width: 20px;
    padding-left: 10px;
    color: #6c7a86;
}

.user-card-row .tbl-cell.tbl-cell-status {
    font-weight: 600;
    text-align: right;
}

.user-card-row .tbl-cell.tbl-cell-status .font-icon {
    color: #919fa9;
    font-size: .9375rem;
}

.user-card-row .tbl-cell.tbl-cell-status .font-icon.active {
    color: #f18482;
}

.user-card-row .tbl-cell.tbl-cell-action {
    width: 20px;
    white-space: nowrap;
    padding-left: 10px;
    vertical-align: middle;
}

.user-card-row .user-card-row-name {
    font-weight: 600;
    color: #343434;
}

.user-card-row .user-card-row-name a {
    color: #343434;
}

.user-card-row .user-card-row-name a:hover {
    color: #00a8ff;
}

.user-card-row .user-card-row-mail a {
    color: #6c7a86;
}

.user-card-row .user-card-row-mail a:hover {
    color: #00a8ff;
}

.user-card-row .user-card-row-location,
.user-card-row .user-card-row-status {
    color: #6c7a86;
}

.user-card-row .user-card-row-location a,
.user-card-row .user-card-row-status a {
    text-decoration: none;
    color: #6c7a86;
    border-bottom: solid 1px rgba(108, 122, 134, .3);
}

.user-card-row .user-card-row-location a:hover,
.user-card-row .user-card-row-status a:hover {
    border-bottom-color: transparent;
}

.box-typical-full-screen .user-card-row {
    font-size: 1rem;
}

.status-online:after {
    content: '';
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    top: -1px;
    margin-left: 4px;
    background: #46c35f;
}

.alert {
    padding: 8px 10px;
    color: #343434;
    font-size: 1rem;
    box-shadow: none;
    position: relative;
}

.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6,
.alert strong {
    font-weight: 600;
}

.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6 {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.alert.alert-close {
    padding-right: 30px;
}

.alert .close {
    color: #00a8ff;
    opacity: .5;
    position: absolute;
    right: 10px;
    top: 4px !important;
}

.alert .close:hover,
.alert.alert-no-border .close {
    opacity: 1;
}

.alert [data-notify=title] {
    display: block;
    font-weight: 600;
}

.alert [data-notify=icon] {
    color: #00a8ff;
    float: left;
    margin: 0 5px -2px 0;
}

.alert [data-notify=icon].glyphicon {
    top: 3px;
}

.alert ul {
    margin: 5px 0 0 10px;
}

.alert ul li {
    position: relative;
    padding: 0 0 0 14px;
}

.alert ul li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
    border: 2px solid #343434;
}

.alert.alert-border-left,
.alert.alert-no-border {
    border-color: transparent !important;
}

.alert .font-icon-inline {
    margin: 0 3px 0 0;
    position: relative;
    top: 1px;
}

.alert.alert-icon {
    padding-left: 35px;
}

.alert.alert-icon .font-icon {
    position: absolute;
    left: 11px;
    top: 9px;
}

.alert .alert-btns {
    padding: 10px 0 0;
}

.alert .alert-btns .btn {
    margin: 0 10px 5px 0;
}

.alert.alert-no-border .close:hover {
    opacity: .5;
}

.alert.alert-border-left {
    border-left: solid 4px #343434 !important;
}

.alert.alert-border-left .close {
    opacity: 1;
}

.alert.alert-border-left .close:hover {
    opacity: .5;
}

.alert.alert-fill,
.alert.alert-fill .font-icon-inline {
    color: #fff !important;
}

.alert.alert-fill ul li:before {
    border-color: #fff !important;
}

.alert.alert-fill .close {
    color: #fff !important;
    opacity: 1;
    text-shadow: none;
}

.alert.alert-fill .close:hover {
    opacity: .5;
}

.alert.alert-fill .alert-btns .btn {
    border-color: #fff !important;
    background-color: transparent !important;
    color: #fff !important;
}

.alert.alert-info,
.alert.alert-info ul li:before {
    border-color: #00a8ff;
}

.alert.alert-fill .alert-btns .btn:hover {
    background-color: #fff !important;
}

.alert.alert-avatar {
    padding-left: 50px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.alert.alert-avatar .close {
    top: 10px !important;
}

.alert.alert-avatar .avatar-preview {
    position: absolute;
    left: 10px;
    top: 9px;
}

.alert.alert-info {
    background-color: #e4f6fd;
}

.alert.alert-info .font-icon-inline,
.alert.alert-info.alert-icon .font-icon,
.ui-pnotify .alert.alert-info {
    color: #00a8ff;
}

.alert.alert-info.alert-border-left,
.alert.alert-info.alert-txt-colored {
    color: #008dd6;
}

.alert.alert-info.alert-no-border {
    background-color: #cbeefe;
}

.alert.alert-info.alert-fill {
    background-color: #00a8ff;
}

.alert.alert-info.alert-fill .alert-btns .btn:hover {
    color: #00a8ff !important;
}

.alert.alert-info.alert-fill.alert-border-left {
    border-left-color: #0086cc !important;
}

.alert.alert-info .alert-btns .btn {
    background-color: transparent;
    color: #00a8ff;
    border-color: #00a8ff;
}

.alert.alert-info .alert-btns .btn:hover {
    color: #fff;
    background-color: #00a8ff;
}

.alert.alert-success,
.alert.alert-success ul li:before {
    border-color: #46c35f;
}

.alert.alert-info.alert-border-left {
    border-left-color: #00a8ff !important;
}

.alert.alert-success {
    background-color: #edf9ee;
}

.alert.alert-success .close,
.alert.alert-success .font-icon-inline,
.alert.alert-success [data-notify=icon],
.alert.alert-success.alert-icon .font-icon,
.ui-pnotify .alert.alert-success {
    color: #46c35f;
}

.alert.alert-success.alert-border-left,
.alert.alert-success.alert-txt-colored {
    color: #37a94e;
}

.alert.alert-success.alert-fill {
    background-color: #46c35f;
}

.alert.alert-success.alert-fill .alert-btns .btn:hover {
    color: #46c35f !important;
}

.alert.alert-success.alert-fill.alert-border-left {
    border-left-color: #34a24a !important;
}

.alert.alert-success .alert-btns .btn {
    background-color: transparent;
    color: #46c35f;
    border-color: #46c35f;
}

.alert.alert-success .alert-btns .btn:hover {
    color: #fff;
    background-color: #46c35f;
}

.alert.alert-warning,
.alert.alert-warning ul li:before {
    border-color: #f29824;
}

.alert.alert-success.alert-border-left {
    border-left-color: #46c35f !important;
}

.alert.alert-warning {
    background-color: #fdf4e6;
}

.alert.alert-warning .close,
.alert.alert-warning .font-icon-inline,
.alert.alert-warning [data-notify=icon],
.alert.alert-warning.alert-icon .font-icon,
.ui-pnotify .alert.alert-warning {
    color: #f29824;
}

.alert.alert-warning.alert-border-left,
.alert.alert-warning.alert-txt-colored {
    color: #e0840d;
}

.alert.alert-warning.alert-no-border {
    background-color: #fcf0c2;
}

.alert.alert-warning.alert-fill {
    background-color: #f29824;
}

.alert.alert-warning.alert-fill .alert-btns .btn:hover {
    color: #f29824 !important;
}

.alert.alert-warning.alert-fill.alert-border-left {
    border-left-color: #d67e0d !important;
}

.alert.alert-warning .alert-btns .btn {
    background-color: transparent;
    color: #f29824;
    border-color: #f29824;
}

.alert.alert-warning .alert-btns .btn:hover {
    color: #fff;
    background-color: #f29824;
}

.alert.alert-danger,
.alert.alert-danger ul li:before {
    border-color: #fa424a;
}

.alert.alert-warning.alert-border-left {
    border-left-color: #f29824 !important;
}

.alert.alert-danger {
    background-color: #feecec;
}

.alert.alert-danger .close,
.alert.alert-danger .font-icon-inline,
.alert.alert-danger [data-notify=icon],
.alert.alert-danger.alert-icon .font-icon,
.ui-pnotify .alert.alert-danger {
    color: #fa424a;
}

.alert.alert-danger.alert-border-left,
.alert.alert-danger.alert-txt-colored {
    color: #f91a24;
}

.alert.alert-danger.alert-no-border {
    background-color: #ffd8d9;
}

.alert.alert-danger.alert-fill {
    background-color: #fa424a;
}

.alert.alert-danger.alert-fill .alert-btns .btn:hover {
    color: #fa424a !important;
}

.alert.alert-danger.alert-fill.alert-border-left {
    border-left-color: #f9101a !important;
}

.alert.alert-danger .alert-btns .btn {
    background-color: transparent;
    color: #fa424a;
    border-color: #fa424a;
}

.alert.alert-danger .alert-btns .btn:hover {
    color: #fff;
    background-color: #fa424a;
}

.alert.alert-danger.alert-border-left {
    border-left-color: #fa424a !important;
}

.alert.alert-aquamarine {
    border-color: #21a788;
    background-color: #d1f0eb;
}

.alert.alert-aquamarine .close,
.alert.alert-aquamarine .font-icon-inline,
.alert.alert-aquamarine.alert-icon .font-icon {
    color: #21a788;
}

.alert.alert-aquamarine.alert-border-left,
.alert.alert-aquamarine.alert-txt-colored {
    color: #1a856c;
}

.alert.alert-aquamarine.alert-fill {
    background-color: #21a788;
}

.alert.alert-aquamarine.alert-fill .alert-btns .btn:hover {
    color: #21a788 !important;
}

.alert.alert-aquamarine.alert-fill.alert-border-left {
    border-left-color: #197c65 !important;
}

.alert.alert-aquamarine .alert-btns .btn {
    background-color: transparent;
    color: #21a788;
    border-color: #21a788;
}

.alert.alert-aquamarine .alert-btns .btn:hover {
    color: #fff;
    background-color: #21a788;
}

.alert.alert-aquamarine ul li:before {
    border-color: #21a788;
}

.alert.alert-aquamarine.alert-border-left {
    border-left-color: #21a788 !important;
}

.alert.alert-grey-darker {
    border-color: #919fa9;
    background-color: #f6f8fa;
}

.alert.alert-grey-darker .close,
.alert.alert-grey-darker .font-icon-inline,
.alert.alert-grey-darker.alert-icon .font-icon {
    color: #919fa9;
}

.alert.alert-grey-darker.alert-border-left,
.alert.alert-grey-darker.alert-txt-colored {
    color: #7a8b97;
}

.alert.alert-grey-darker.alert-fill {
    background-color: #919fa9;
}

.alert.alert-grey-darker.alert-fill .alert-btns .btn:hover {
    color: #919fa9 !important;
}

.alert.alert-grey-darker.alert-fill.alert-border-left {
    border-left-color: #748693 !important;
}

.alert.alert-grey-darker .alert-btns .btn {
    background-color: transparent;
    color: #919fa9;
    border-color: #919fa9;
}

.alert.alert-grey-darker .alert-btns .btn:hover {
    color: #fff;
    background-color: #919fa9;
}

.alert.alert-grey-darker ul li:before {
    border-color: #919fa9;
}

.alert.alert-grey-darker.alert-border-left {
    border-left-color: #919fa9 !important;
}

.alert.alert-blue-dirty {
    border-color: #2797ca;
    background-color: #cbeefe;
}

.alert.alert-blue-dirty .close,
.alert.alert-blue-dirty .font-icon-inline,
.alert.alert-blue-dirty.alert-icon .font-icon {
    color: #2797ca;
}

.alert.alert-blue-dirty.alert-border-left,
.alert.alert-blue-dirty.alert-txt-colored {
    color: #207da8;
}

.alert.alert-blue-dirty.alert-fill {
    background-color: #2797ca;
}

.alert.alert-blue-dirty.alert-fill .alert-btns .btn:hover {
    color: #2797ca !important;
}

.alert.alert-blue-dirty.alert-fill.alert-border-left {
    border-left-color: #1f779f !important;
}

.alert.alert-blue-dirty .alert-btns .btn {
    background-color: transparent;
    color: #2797ca;
    border-color: #2797ca;
}

.alert.alert-blue-dirty .alert-btns .btn:hover {
    color: #fff;
    background-color: #2797ca;
}

.alert.alert-blue-dirty ul li:before {
    border-color: #2797ca;
}

.alert.alert-blue-dirty.alert-border-left {
    border-left-color: #2797ca !important;
}

.alert-purple .alert,
.alert.alert-purple {
    border-color: #ac6bec;
    background-color: #eee2fc;
}

.alert-purple .alert .close,
.alert-purple .alert .font-icon-inline,
.alert-purple .alert [data-notify=icon],
.alert-purple .alert.alert-icon .font-icon,
.alert.alert-purple .close,
.alert.alert-purple .font-icon-inline,
.alert.alert-purple [data-notify=icon],
.alert.alert-purple.alert-icon .font-icon {
    color: #ac6bec;
}

.alert-purple .alert.alert-border-left,
.alert-purple .alert.alert-txt-colored,
.alert.alert-purple.alert-border-left,
.alert.alert-purple.alert-txt-colored {
    color: #9847e7;
}

.alert-purple .alert.alert-fill,
.alert.alert-purple.alert-fill {
    background-color: #ac6bec;
}

.alert-purple .alert.alert-fill .alert-btns .btn:hover,
.alert.alert-purple.alert-fill .alert-btns .btn:hover {
    color: #ac6bec !important;
}

.alert-purple .alert.alert-fill.alert-border-left,
.alert.alert-purple.alert-fill.alert-border-left {
    border-left-color: #933ee6 !important;
}

.alert-purple .alert .alert-btns .btn,
.alert.alert-purple .alert-btns .btn {
    background-color: transparent;
    color: #ac6bec;
    border-color: #ac6bec;
}

.alert-purple .alert .alert-btns .btn:hover,
.alert.alert-purple .alert-btns .btn:hover {
    color: #fff;
    background-color: #ac6bec;
}

.alert-purple .alert ul li:before,
.alert.alert-purple ul li:before {
    border-color: #ac6bec;
}

.alert-purple .alert.alert-border-left,
.alert.alert-purple.alert-border-left {
    border-left-color: #ac6bec !important;
}

.alert-purple.ui-pnotify .alert {
    color: #ac6bec;
}

.alert-grey .alert .close,
.alert-grey .alert [data-notify=icon],
.alert-grey.ui-pnotify .alert,
.alert-white .alert .close,
.alert-white .alert [data-notify=icon],
.alert-white.ui-pnotify .alert,
.alert.alert-grey .close,
.alert.alert-grey [data-notify=icon],
.alert.alert-white .close,
.alert.alert-white [data-notify=icon] {
    color: #6c7a86;
}

.alert-grey .alert,
.alert-white .alert,
.alert.alert-grey,
.alert.alert-white {
    border-color: #c5d6de;
    color: #6c7a86;
}

.alert-white .alert,
.alert.alert-white {
    background-color: #fff;
}

.alert-grey .alert,
.alert.alert-grey {
    background-color: #f6f8fa;
}

.alert.alert-facebook,
.alert.alert-google-plus,
.alert.alert-linkedin,
.alert.alert-twitter {
    color: #fff;
    padding-left: 50px;
}

.alert.alert-facebook .close,
.alert.alert-google-plus .close,
.alert.alert-linkedin .close,
.alert.alert-twitter .close {
    color: #fff;
    opacity: 1;
    text-shadow: none;
}

.alert.alert-facebook .close:hover,
.alert.alert-google-plus .close:hover,
.alert.alert-linkedin .close:hover,
.alert.alert-twitter .close:hover {
    opacity: .5;
}

.alert.alert-facebook .font-icon,
.alert.alert-google-plus .font-icon,
.alert.alert-linkedin .font-icon,
.alert.alert-twitter .font-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 1.875rem;
}

.alert.alert-facebook {
    background-color: #37559a;
    border-color: #37559a;
}

.alert.alert-google-plus {
    background-color: #d33928;
    border-color: #d33928;
}

.alert.alert-twitter {
    background-color: #00aaed;
    border-color: #00aaed;
}

.alert.alert-linkedin {
    background-color: #007ab4;
    border-color: #007ab4;
}

.ui-pnotify .alert {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ui-pnotify .alert .ui-pnotify-icon {
    position: relative;
    top: 2px;
}

.alert-with-icon .alert {
    padding-left: 35px;
}

.alert-with-icon .alert .ui-pnotify-icon {
    margin: 0;
    position: absolute;
    left: 11px;
    top: 8px;
}

.alert-with-icon .alert .font-icon {
    position: relative;
    top: -2px;
}

.sweet-alert {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 0;
}

.sweet-alert h2 {
    font-weight: 400;
    position: relative;
    margin: 2rem 0 1rem;
}

.sweet-alert p {
    margin: 0 0 10px;
}

.sweet-alert .lead {
    font-weight: 400;
    font-size: 1.25rem;
    color: #343434;
    margin-bottom: 20px;
}

.breadcrumb,
.pager,
.pagination {
    font-size: 1rem;
}

.sweet-alert .btn {
    min-width: 150px;
    -webkit-border-radius: 25rem;
    border-radius: 25rem;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0 1rem 17px;
}

.sweet-alert .btn.btn-success {
    border-color: #46c35f;
}

.sweet-alert .btn.btn-success:hover {
    border-color: #5dca73;
}

.sweet-alert .btn.btn-warning {
    border-color: #f29824;
}

.sweet-alert .btn.btn-warning:hover {
    border-color: #f4a641;
}

.sweet-alert .btn.btn-danger {
    border-color: #fa424a;
}

.sweet-alert .btn.btn-danger:hover {
    border-color: #fb6067;
}

.sweet-alert .btn.btn-info {
    border-color: #ac6bec;
}

.sweet-alert .btn.btn-info:hover {
    border-color: #bb86ef;
}

.sweet-alert .icon.success .line {
    background-color: #46c35f;
}

.sweet-alert .icon.success .placeholder {
    border-color: rgba(70, 195, 95, .3);
}

.sweet-alert .icon.warning {
    border-color: #f29824;
}

.sweet-alert .icon.error {
    border-color: #fa424a;
}

.sweet-alert .icon.error .line {
    background-color: #fa424a;
}

.sweet-alert .icon.info {
    border-color: #00a8ff;
}

.sweet-alert .icon.info:after,
.sweet-alert .icon.info:before {
    background-color: #00a8ff;
}

.nav.nav-pills .nav-item {
    margin: 0 25px 0 0;
}

.nav.nav-pills .nav-link {
    font-size: 1rem;
    color: #818181;
    font-weight: 600;
    -webkit-border-radius: 25rem;
    border-radius: 25rem;
    padding: 5px 10px;
}

.nav.nav-pills .nav-link:hover {
    color: #00a8ff;
}

.nav.nav-pills .nav-link.active {
    color: #fff;
    background-color: #00a8ff;
}

.breadcrumb {
    color: #6c7a86;
    background-color: #ecf2f5;
}

.breadcrumb>.active {
    color: inherit;
}

.breadcrumb.breadcrumb-clean {
    background: 0 0;
    padding: 1.5rem 0;
    color: #919fa9;
    border-bottom: solid 1px #c5d6de;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 0 0 1.5rem;
}

.breadcrumb.breadcrumb-clean>li+li::before {
    content: '>';
}

.breadcrumb.breadcrumb-clean>.active {
    color: #343434;
}

.breadcrumb.breadcrumb-clean a {
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.breadcrumb.breadcrumb-clean a:hover {
    color: #00a8ff;
}

.breadcrumb.breadcrumb-simple {
    background: 0 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.page-link {
    border-color: #d8e2e7;
    color: #0082c6;
}

.page-link:focus,
.page-link:hover {
    background-color: #f6f8fa;
    color: #0082c6;
}

.page-item.active .page-link {
    border-color: #00a8ff !important;
    background-color: #00a8ff !important;
}

.pager li>a {
    border-color: #d8e2e7;
    color: #0082c6;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}

.pager li>a:hover {
    background-color: #f6f8fa;
}

.pager .disabled>a {
    color: #919fa9 !important;
}

.tooltip {
    font-size: .8125rem;
    font-weight: 600;
    line-height: normal;
}

.tooltip.in {
    opacity: .95;
}

.tooltip.bs-tether-element-attached-top .tooltip-arrow,
.tooltip.tooltip-bottom .tooltip-arrow {
    border-bottom-color: #2c3949;
}

.tooltip.bs-tether-element-attached-bottom .tooltip-arrow,
.tooltip.tooltip-top .tooltip-arrow {
    border-top-color: #2c3949;
}

.tooltip-inner {
    background-color: #2c3949;
    padding-bottom: 5px;
}

.hint-circle {
    display: inline-block;
    vertical-align: baseline;
    width: 16px;
    height: 16px;
    border: 1px solid #6c7a86;
    color: #6c7a86;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: .75rem;
    text-align: center;
    line-height: 15px;
    margin: 0 0 0 5px;
    cursor: pointer;
}

.hint-circle.red {
    border-color: #fa424a;
    color: #fa424a;
}

.hint-circle.green {
    border-color: #46c35f;
    color: #46c35f;
}

.hint-circle.blue {
    border-color: #00a8ff;
    color: #00a8ff;
}

.hint-circle.orange {
    border-color: #f29824;
    color: #f29824;
}

.hint-circle.purple {
    border-color: #ac6bec;
    color: #ac6bec;
}

.popover {
    border-color: #d8e2e7;
    padding: 0;
}

.popover.bs-tether-element-attached-bottom .popover-arrow,
.popover.popover-top .popover-arrow {
    border-top-color: #d8e2e7;
}

.popover.bs-tether-element-attached-top .popover-arrow,
.popover.popover-bottom .popover-arrow {
    border-bottom-color: #d8e2e7;
}

.popover.bs-tether-element-attached-top .popover-arrow:after,
.popover.popover-bottom .popover-arrow:after {
    border-bottom-color: #ecf2f5;
}

.popover.bs-tether-element-attached-left .popover-arrow,
.popover.popover-right .popover-arrow {
    border-right-color: #d8e2e7;
}

.popover.bs-tether-element-attached-right .popover-arrow,
.popover.popover-left .popover-arrow {
    border-left-color: #d8e2e7;
}

.popover-title {
    border-bottom-color: #d8e2e7;
    background: #ecf2f5;
    -webkit-border-radius: .3rem .3rem 0 0;
    border-radius: .3rem .3rem 0 0;
}

.popover-content {
    padding-bottom: .8rem;
}

.jspContainer .jspTrack {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.jspContainer:hover .jspTrack {
    opacity: 1;
}

.card-blue .card-header .modal-close:hover,
.card-blue-fill .card-header .modal-close:hover,
.card-green .card-header .modal-close:hover,
.card-orange .card-header .modal-close:hover,
.card-purple .card-header .modal-close:hover,
.card-red .card-header .modal-close:hover {
    opacity: .75;
}

.scrollable-block {
    overflow: auto;
}

.scrollable-block.scrollable-gradient .jspContainer:after {
    content: '';
    display: block;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: url(../img/gradient-scroll.png) bottom repeat-x;
}

.scrollable-block.scrollable-gradient .jspVerticalBar {
    z-index: 10;
}

body.modal-open {
    overflow: hidden !important;
    position: relative;
}

.modal-dialog:not(.modal-sm):not(.modal-lg) {
    width: 680px;
}

@media (max-width:767px) {
    .modal-dialog:not(.modal-sm):not(.modal-lg) {
        width: 500px;
    }
}

@media (max-width:544px) {
    .modal-dialog:not(.modal-sm):not(.modal-lg) {
        width: auto;
    }
}

.modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #d8e2e7;
    height: 400px;
}

.modal-header {
    border-bottom-color: #d8e2e7;
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.modal-footer {
    border-top-color: #d8e2e7;
}

.modal-close {
    position: absolute;
    left: 1070px;
    top: 158px;
    color: #65b32e;
    background: 0 0;
    border: none;
}

.modal-close:hover {
    color: #adb7be;
}

.close {
    font-size: 2rem;
    color: #adb7be;
}

.modal-upload {
    zoom: 1;
}

.modal-upload:after,
.modal-upload:before {
    content: " ";
    display: table;
}

.modal-upload:after {
    clear: both;
}

.modal-upload .modal-upload-side {
    float: left;
    width: 160px;
    padding: 15px 10px 15px 15px;
    position: relative;
}

.modal-upload .modal-upload-cont {
    float: right;
    width: 100%;
    margin-left: -160px;
}

.modal-upload .modal-upload-cont-in {
    height: 430px;
    margin-left: 160px;
    border-left: solid 1px #d8e2e7;
}

@media (max-width:767px) {
    .modal-upload:not(.menu-bottom) .modal-upload-cont,
    .modal-upload:not(.menu-bottom) .modal-upload-side {
        float: none;
        width: auto;
        margin: 0;
    }
    .modal-upload:not(.menu-bottom) .modal-upload-cont-in {
        margin: 0;
        border-left: none;
    }
    .modal-upload:not(.menu-bottom) .modal-upload-side {
        border-top: solid 1px #d8e2e7;
        text-align: center;
    }
    .modal-upload:not(.menu-bottom) .modal-upload-side .upload-list li {
        display: inline-block;
        margin: 0 5px;
    }
    .modal-upload:not(.menu-bottom) .modal-upload-side .upload-list a span {
        display: none;
    }
}

.modal-upload.menu-bottom .modal-upload-cont,
.modal-upload.menu-bottom .modal-upload-side {
    float: none;
    width: auto;
    margin: 0;
}

.modal-upload.menu-bottom .modal-upload-cont-in {
    margin: 0;
    border-left: none;
}

.modal-upload.menu-bottom .modal-upload-side {
    border-top: solid 1px #d8e2e7;
    text-align: center;
}

.modal-upload.menu-bottom .modal-upload-side .upload-list {
    padding-top: 5px;
}

.modal-upload.menu-bottom .modal-upload-side .upload-list .font-icon {
    font-size: 1.5rem;
}

.modal-upload.menu-bottom .modal-upload-side .upload-list .font-icon.font-icon-one-drive,
.modal-upload.menu-bottom .modal-upload-side .upload-list .font-icon.font-icon-yandex-disk {
    font-size: 2rem;
}

.modal-upload.menu-bottom .modal-upload-side .upload-list .font-icon.font-icon-box {
    font-size: 2.25rem;
}

.modal-upload.menu-bottom .modal-upload-side .upload-list li {
    display: inline-block;
    margin: 0 10px;
}

.modal-upload.menu-bottom .modal-upload-side .upload-list a span {
    display: none;
}

.modal-upload.menu-big-icons .modal-upload-cont {
    margin-left: -82px;
}

.modal-upload.menu-big-icons .modal-upload-cont-in {
    margin-left: 72px;
}

.modal-upload.menu-big-icons .modal-upload-side {
    width: 72px;
    padding: 0;
}

.modal-upload.menu-big-icons .modal-upload-side .upload-list .font-icon {
    font-size: 1.875rem;
    margin: 0;
    line-height: 1;
    position: relative;
    top: 1px;
}

.modal-upload.menu-big-icons .modal-upload-side .upload-list li {
    margin: 0;
    padding: 0;
    border-top: solid 1px #d8e2e7;
    text-align: center;
}

.modal-upload.menu-big-icons .modal-upload-side .upload-list li:first-child {
    border-top: none;
}

.modal-upload.menu-big-icons .modal-upload-side .upload-list li a {
    display: block;
    height: 71px;
    line-height: 70px;
    position: relative;
}

.modal-upload.menu-big-icons .modal-upload-side .upload-list li a.active:after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    right: -1px;
    top: 0;
    border-right: solid 1px #fff;
}

.modal-upload-body {
    height: 366px;
}

.modal-upload-bottom {
    height: 64px;
    line-height: 64px;
    border-top: solid 1px #d8e2e7;
    text-align: right;
    padding: 0 20px;
}

.modal-upload-bottom .btn {
    margin: 0 6px;
    min-width: 100px;
}

.upload-list li {
    margin: 0 0 .5rem;
}

.upload-list .font-icon {
    vertical-align: middle;
    line-height: 20px;
    font-size: 1.125rem;
    color: #adb7be;
    margin: 0 5px 0 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.upload-list a {
    color: #343434;
}

.upload-list a.active,
.upload-list a.active .font-icon,
.upload-list a:hover,
.upload-list a:hover .font-icon {
    color: #00a8ff;
}

.upload-dropbox {
    padding: 94px 15px 90px;
    text-align: center;
}

.upload-dropbox h3 {
    font-weight: 600;
    font-size: 1.0625rem;
}

.upload-dropbox .text-muted,
.upload-dropbox p {
    font-size: .9375rem;
}

.upload-dropbox p {
    color: #6c7a86;
    margin: 0 0 1rem;
}

.upload-dropbox .btn {
    margin: 0 0 1rem;
}

.upload-gd-header {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.upload-gd-header .tbl-cell {
    vertical-align: middle;
    padding: 15px;
}

.upload-gd-header .tbl-cell-btns {
    white-space: nowrap;
    width: 30px;
    padding-left: 0;
    font-size: 1rem;
}

.upload-gd-header .tbl-cell-btns button {
    border: none;
    background: 0 0;
    margin: 0 7px;
    color: #adb7be;
}

.upload-gd-header .tbl-cell-btns button:hover {
    color: #00a8ff;
}

@media (max-width:544px) {
    .upload-gd-header {
        display: block;
        margin-bottom: 15px;
    }
    .upload-gd-header .tbl-cell,
    .upload-gd-header .tbl-row {
        display: block;
    }
    .upload-gd-header .tbl-cell {
        padding: 15px 15px 0;
    }
}

.gd-doc {
    text-align: center;
    font-size: .875rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.gd-doc .gd-doc-preview {
    margin: 0 0 .6rem;
    position: relative;
}

.gd-doc .gd-doc-preview img {
    height: 128px;
    max-width: 100%;
    display: block;
    width: 90px;
    margin: 0 auto;
    border: 2px solid #dbe4ea;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.gd-doc .gd-doc-preview .icon {
    display: none;
    width: 22px;
    height: 22px;
    background: #00a8ff;
    -webkit-border-radius: .25rem 0 0;
    border-radius: .25rem 0 0;
    position: absolute;
    bottom: 2px;
    right: 2px;
    color: #fff;
    text-align: center;
    line-height: 22px;
}

.gd-doc .gd-doc-preview .icon .font-icon {
    vertical-align: middle;
    position: relative;
    top: 2px;
}

.gd-doc .gd-doc-preview a {
    position: relative;
    display: inline-block;
}

.gd-doc .gd-doc-preview a:hover img {
    border-color: #00a8ff;
}

.gd-doc .gd-doc-preview a:hover .icon {
    display: block;
}

.gd-doc .gd-doc-title {
    white-space: nowrap;
    overflow: hidden;
    font-weight: 600;
}

.gd-doc .gd-doc-date {
    color: #6c7a86;
}

.gd-doc-grid {
    zoom: 1;
}

.gd-doc-grid:after,
.gd-doc-grid:before {
    content: " ";
    display: table;
}

.gd-doc-grid:after {
    clear: both;
}

.gd-doc-col {
    float: left;
    width: 25%;
}

@media (max-width:480px) {
    .gd-doc-col {
        width: 33.333333%;
    }
}

@media (max-width:380px) {
    .gd-doc-col {
        width: 50%;
    }
}

@media (max-width:321px) {
    .gd-doc-col {
        width: 100%;
    }
}

.page-content {
    padding-top: 50px !important;
}

.page-content-header {
    background: #fff;
    border-bottom: solid 1px #c5d6de;
    margin: -30px 0 30px;
    position: relative;
}

.page-content-header:after,
.page-content-header:before {
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    height: 100%;
    width: 15px;
    position: absolute;
    bottom: -1px;
    background: #fff;
    border-bottom: solid 1px #c5d6de;
}

.page-content-header:before {
    left: -15px;
}

.page-content-header:after {
    right: -15px;
}

.page-content-header h1,
.page-content-header h2,
.page-content-header h3,
.page-content-header h4,
.page-content-header h5,
.page-content-header h6 {
    margin: 0;
}

.page-content-header .tbl-cell {
    vertical-align: middle;
    padding: 21px 0 20px;
}

.page-content-header .tbl-cell-action {
    width: 10px;
    padding-left: 15px;
    white-space: nowrap;
}

.page-content-header .tbl-cell-action .btn {
    margin: -3px 0 -5px;
}

@media (max-width:991px) {
    .page-content-header:after,
    .page-content-header:before {
        display: none;
    }
}

.section-header {
    padding: 0 0 27px;
}

.section-header .tbl-cell {
    vertical-align: middle;
}

.section-header .tbl-cell-action {
    white-space: nowrap;
    padding-left: 15px;
}

.section-header .tbl-cell-action.select {
    width: 180px;
}

.section-header .tbl-cell-action.button {
    width: 104px;
}

.section-header h1,
.section-header h2,
.section-header h3,
.section-header h4,
.section-header h5,
.section-header h6 {
    margin: 0;
}

.section-header .subtitle {
    font-size: .8125rem;
    padding: 5px 0 0;
}

.section-header .breadcrumb {
    margin-bottom: -13px;
    margin-top: -9px;
}

@media (max-width:767px) {
    .section-header,
    .section-header .tbl-cell,
    .section-header .tbl-row {
        display: block;
    }
    .section-header .tbl-cell {
        padding-bottom: 10px;
    }
    .section-header .tbl-cell-action {
        white-space: nowrap;
        padding-left: 0;
    }
}

.tabs-section {
    margin: 0 0 20px;
}

.tabs-section>.tab-content:not(.no-styled) {
    background: #fff;
    border: 1px solid #d8e2e7;
    border-top: none;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    padding: 15px;
}

.tabs-section-nav {
    overflow: auto;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    border-top: solid 1px #d8e2e7;
}

.tabs-section-nav .nav-item {
    float: left;
    background: #f6f8fa;
    white-space: nowrap;
}

.tabs-section-nav .nav-item:first-child .nav-link {
    border-left-color: #d8e2e7;
}

.tabs-section-nav .nav-item:last-child .nav-link {
    border-right-color: #d8e2e7;
}

.tabs-section-nav .nav-link {
    display: block;
    color: #6c7a86;
    font-weight: 600;
    border: 1px solid #d8e2e7;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top: none;
}

.tabs-section-nav .nav-link.active {
    border-left-color: #d8e2e7;
    border-right-color: #d8e2e7;
    background: #fff;
    color: #343434;
    border-bottom-color: #fff;
}

.tabs-section-nav .nav-link.active .nav-link-in {
    border-top-color: #65b32e;
}

.tabs-section-nav .nav-link:not(.active) .label {
    background-color: #adb7be;
}

.tabs-section-nav .nav-link-in {
    display: block;
    padding: 10px;
    line-height: 28px;
    border-top: solid 4px transparent;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.tabs-section-nav .label {
    padding-left: .5em;
    padding-right: .5em;
    font-size: .875rem;
}

.tabs-section-nav .tbl .nav {
    display: table-row;
}

.tabs-section-nav .tbl .nav-item {
    float: none;
    display: table-cell;
    vertical-align: middle;
}

.tabs-section-nav.tabs-section-nav-left .nav {
    background-color: #f6f8fa;
    zoom: 1;
    border: 1px solid #d8e2e7;
    border-left: none;
    border-top: none;
}

.tabs-section-nav.tabs-section-nav-left .nav:after,
.tabs-section-nav.tabs-section-nav-left .nav:before {
    content: " ";
    display: table;
}

.tabs-section-nav.tabs-section-nav-left .nav:after {
    clear: both;
}

.tabs-section-nav.tabs-section-nav-left .nav-item {
    margin-bottom: -1px;
}

.tabs-section-nav.tabs-section-nav-left .nav-item:last-child .nav-link {
    border-right: none;
}

.tabs-section-nav.tabs-section-nav-left .nav-item:last-child .nav-link.active {
    border-right: solid 1px #d8e2e7;
}

.tabs-section-nav.tabs-section-nav-left .nav-link-in {
    padding-right: 15px;
    padding-left: 15px;
}

.tabs-section-nav.tabs-section-nav-left .nav-link,
.tabs-section-nav.tabs-section-nav-left .nav-link-in {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.tabs-section-nav.tabs-section-nav-icons .fa,
.tabs-section-nav.tabs-section-nav-icons .font-icon,
.tabs-section-nav.tabs-section-nav-icons .glyphicon {
    display: block;
    color: #adb7be;
    margin: 0 0 .2em;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.tabs-section-nav.tabs-section-nav-icons .nav-link-in {
    line-height: 1;
}

.tabs-section-nav.tabs-section-nav-icons .nav-link.active,
.tabs-section-nav.tabs-section-nav-icons .nav-link.active .fa,
.tabs-section-nav.tabs-section-nav-icons .nav-link.active .font-icon,
.tabs-section-nav.tabs-section-nav-icons .nav-link.active .glyphicon {
    color: #65b32e;
}

.tabs-section-nav.tabs-section-nav-inline {
    border: none;
}

.tabs-section-nav.tabs-section-nav-inline .nav {
    display: block;
    border: 1px solid #d8e2e7;
    zoom: 1;
    background: #f6f8fa;
}

.tabs-section-nav.tabs-section-nav-inline .nav:after,
.tabs-section-nav.tabs-section-nav-inline .nav:before {
    content: " ";
    display: table;
}

.tabs-section-nav.tabs-section-nav-inline .nav:after {
    clear: both;
}

.tabs-section-nav.tabs-section-nav-inline .nav-item {
    display: block;
    float: left;
    background: 0 0;
    margin: 0 20px -1px;
}

.tabs-section-nav.tabs-section-nav-inline .nav-link {
    border: none;
    border-bottom: 1px solid #d8e2e7;
    height: 45px;
    padding: 12px 0 0;
    background: 0 0 !important;
}

.tabs-section-nav.tabs-section-nav-inline .nav-link.active {
    border-bottom: solid 3px #343434;
}

.tabs-section-nav.tabs-section-nav-data .number,
.tabs-section-nav.tabs-section-nav-data .percent,
.tabs-section-nav.tabs-section-nav-data .title {
    display: block;
    line-height: 1;
}

.tabs-section-nav.tabs-section-nav-data .number {
    color: #343434;
}

.tabs-section-nav.tabs-section-nav-data .percent,
.tabs-section-nav.tabs-section-nav-data .title {
    font-size: .75rem;
}

.tabs-section-nav.tabs-section-nav-data .number,
.tabs-section-nav.tabs-section-nav-data .percent {
    margin: 0 0 6px;
}

.tabs-section-nav.tabs-section-nav-data .title {
    text-transform: uppercase;
    color: #919fa9;
}

.tabs-section-nav.tabs-section-nav-data .nav-link.active .title {
    color: #343434;
}

.tabs-section-simple .nav {
    zoom: 1;
    margin: 0 0 10px;
}

.tabs-section-simple .nav:after,
.tabs-section-simple .nav:before {
    content: " ";
    display: table;
}

.tabs-section-simple .nav:after {
    clear: both;
}

.tabs-section-simple .nav-item {
    float: left;
    margin: 0 30px 10px 0;
    font-size: .8125rem;
    font-weight: 600;
}

.tabs-section-simple .nav-link {
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.tabs-section-simple .nav-link:hover {
    color: #00a8ff;
}

.tabs-section-simple .nav-link.active {
    color: #343434;
}

.fancybox-skin {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.card {
    border-color: #d8e2e7;
}

.card-footer,
.card-header {
    background: 0 0;
}

.card-header {
    border-bottom-color: #d8e2e7;
    font-weight: 600;
}

.card-header.card-header-lg {
    font-size: 1.125rem;
}

.card-header.card-header-xl {
    font-size: 1.25rem;
}

.card-header.card-header-xxl {
    font-size: 1.375rem;
}

.card-header .modal-close {
    font-size: .75rem;
}

.card-block {
    padding-top: 16px;
    padding-bottom: 16px;
}

.card-default .card-header,
.card-inversed .card-block {
    background-color: #f6f8fa;
}

.card-blue {
    border-color: #00a8ff;
}

.card-blue .card-header {
    border-bottom-color: #00a8ff;
    background-color: #e4f6fe;
}

.card-blue .card-header .modal-close {
    color: #00a8ff;
}

.card-green {
    border-color: #46c35f;
}

.card-green .card-header {
    border-bottom-color: #46c35f;
    background-color: #edf9ee;
}

.card-green .card-header .modal-close {
    color: #46c35f;
}

.card-purple {
    border-color: #ac6bec;
}

.card-purple .card-header {
    border-bottom-color: #ac6bec;
    background-color: #eee2fc;
}

.card-purple .card-header .modal-close {
    color: #ac6bec;
}

.card-red {
    border-color: #fa424a;
}

.card-red .card-header {
    border-bottom-color: #fa424a;
    background-color: #feecec;
}

.card-red .card-header .modal-close {
    color: #fa424a;
}

.card-orange {
    border-color: #f29824;
}

.card-orange .card-header {
    border-bottom-color: #f29824;
    background-color: #fdf4e6;
}

.card-orange .card-header .modal-close {
    color: #f29824;
}

.card-blue-fill {
    border-color: #00a8ff;
}

.card-blue-fill .card-header {
    border-bottom-color: #00a8ff;
    background-color: #00a8ff;
    color: #fff;
}

.card-blue-fill .card-header .modal-close {
    color: #fff;
}

.bootstrap-touchspin .bootstrap-touchspin-postfix {
    border-left: none;
}

.bootstrap-touchspin .bootstrap-touchspin-prefix {
    border-right: none;
}

.bootstrap-touchspin .input-group-btn-vertical>.btn {
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 12px;
    text-align: center;
}

.bootstrap-touchspin .input-group-btn-vertical i {
    left: 7px;
    top: 4px;
}

.bootstrap-touchspin .dropdown-menu>li>a {
    padding: 4px 12px;
    display: block;
    font-size: .875rem;
    color: #343434;
}

.bootstrap-touchspin .dropdown-menu>li>a:hover {
    color: #00a8ff;
}

.bootstrap-touchspin.input-group-sm .btn,
.bootstrap-touchspin.input-group-sm .form-control {
    height: 32px;
}

.avatar-preview {
    display: inline-block;
    vertical-align: middle;
}

.avatar-preview img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .avatar-preview img {
        display: block;
        width: 80%;
        height: 80%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin: 0px auto;
    }
}

@media screen and (max-width: 800px) {
    .avatar-preview img {
        display: block;
        width: 80%;
        height: 80%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin: 0px auto;
    }
}

.avatar-preview.avatar-preview-24 {
    width: 24px;
    height: 24px;
}

.avatar-preview.avatar-preview-32 {
    width: 32px;
    height: 32px;
}

.avatar-preview.avatar-preview-48 {
    width: 48px;
    height: 48px;
}

.avatar-preview.avatar-preview-64 {
    width: 64px;
    height: 64px;
}

.avatar-preview.avatar-preview-100 {
    width: 100px;
    height: 100px;
}

.avatar-preview.avatar-preview-128 {
    width: 128px;
    height: 128px;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: .25rem;
    margin-left: .25rem;
    vertical-align: middle;
    content: "";
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    position: relative;
    top: -1px;
}

.dd,
.dd-list {
    display: block;
    padding: 0;
    list-style: none;
    margin: 0;
    position: relative;
}

.caret.caret-up {
    border-top: none;
    border-bottom: solid 5px;
}

.dd-handle,
.dd3-content {
    font-weight: 600;
    border: 1px solid #d8e2e7;
    text-decoration: none;
}

.dd-list .dd-list {
    padding-left: 30px;
}

.dd-collapsed .dd-list {
    display: none;
}

.dd-empty,
.dd-item,
.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    line-height: 19px;
}

.dd-handle {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px;
    background: #fff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    cursor: move;
}

.dd-handle:hover {
    color: #fff;
    background: #00a8ff;
    border-color: #00a8ff;
}

.dd-item>button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: 0 0;
    line-height: 1;
    text-align: center;
    font-weight: 600;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.dd-item>button:before {
    content: '+';
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    text-indent: 0;
}

.dd-item>button[data-action=collapse]:before {
    content: '-';
}

.dd-item>button.hover {
    color: #fff;
}

.dd-empty,
.dd-placeholder {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #e4f6fe;
    border: 1px dashed #00a8ff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
}

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    opacity: .8;
    list-style: none;
}

.dd-dragel li {
    list-style: none;
}

.dd-dragel>.dd-item .dd-handle {
    margin-top: 0;
}

.dd-dragel .dd-item>button {
    display: none;
}

.dd-dragel .dd-handle {
    line-height: 20px;
    min-height: 30px;
    padding: 5px 10px;
}

.dd3-handle:before,
.site-header-search button {
    display: block;
    line-height: 30px;
    text-align: center;
}

.dd-green .dd-handle:hover {
    background-color: #46c35f;
    border-color: #46c35f;
}

.dd-green .dd-empty,
.dd-green .dd-placeholder {
    background-color: #edf9ee;
    border-color: #46c35f;
}

.dd-purple .dd-handle {
    border-color: #eee2fc;
    background-color: #eee2fc;
}

.dd-purple .dd-handle:hover {
    background-color: #ac6bec;
    border-color: #ac6bec;
}

.dd-purple .dd-empty,
.dd-purple .dd-placeholder {
    background-color: transparent;
    border-color: #ac6bec;
}

.dd-grey .dd-handle {
    background-color: #d8e2e7;
}

.dd-grey .dd-handle:hover {
    background-color: #919fa9;
    border-color: #919fa9;
}

.dd-red .dd-handle {
    border-color: #ffd8d9;
    background-color: #ffd8d9;
}

.dd-red .dd-handle:hover {
    background-color: #fa424a;
    border-color: #fa424a;
}

.dd-red .dd-empty,
.dd-red .dd-placeholder {
    background-color: transparent;
    border-color: #fa424a;
}

.dd-aquamarine .dd-handle {
    border-color: #d1f0eb;
    background-color: #d1f0eb;
}

.dd-aquamarine .dd-handle:hover {
    background-color: #21a788;
    border-color: #21a788;
}

.dd-aquamarine .dd-empty,
.dd-aquamarine .dd-placeholder {
    background-color: transparent;
    border-color: #21a788;
}

.dd3-content {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px 5px 40px;
    background: #fff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}

.dd3-handle:before,
.side-menu-big-icon .side-menu-list>li.with-sub>span:after {
    font-weight: 400 !important;
    text-transform: none !important;
    vertical-align: middle;
    font-family: startui !important;
    font-style: normal !important;
    font-variant: normal !important;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dd-dragel>.dd3-item>.dd3-content {
    margin: 0;
}

.dd3-item>button {
    margin-left: 30px;
}

.dd3-item>button.hover {
    color: #343434;
}

.dd3-handle {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    cursor: move;
    width: 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #d8e2e7;
    background: #d8e2e7;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    color: #6c7a86;
}

.dd3-handle:before {
    content: "\64";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    text-indent: 0;
    font-size: 1rem;
}

.dd3-handle:hover {
    background: #00a8ff;
}

.dd3-handle:hover+.dd3-content {
    border-color: #00a8ff;
}

.dd3-blue .dd3-content {
    border-color: #cbeefe;
}

.dd3-blue .dd3-handle {
    background-color: #cbeefe;
    border-color: #cbeefe;
    color: #00a8ff;
}

.dd3-blue .dd3-handle:hover {
    background-color: #00a8ff;
    border-color: #00a8ff;
    color: #fff;
}

.dd3-blue .dd-empty,
.dd3-blue .dd-placeholder {
    background-color: transparent;
}

.dd3-orange .dd3-content {
    border-color: #f29824;
}

.dd3-orange .dd3-handle {
    background-color: #f29824;
    border-color: #f29824;
    color: #fff;
}

.dd3-orange .dd3-handle:hover {
    background-color: #fa424a;
    border-color: #fa424a;
}

.dd3-orange .dd3-handle:hover+.dd3-content {
    border-color: #fa424a;
}

.dd3-orange .dd-empty,
.dd3-orange .dd-placeholder {
    background-color: transparent;
    border-color: #fa424a;
}

body {
    background: #fff;
}

.site-header-search {
    width: 100%;
    height: 30px;
    position: relative;
    padding: 0 35px 0 0;
    border: 1px solid #c5d6de;
    -webkit-border-radius: 25rem;
    border-radius: 25rem;
    background: #fff;
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.site-header-search input[type=text] {
    width: 100%;
    padding: 4px 0 0 14px;
    border: none;
    background: 0 0;
    font-size: .875rem;
    font-weight: 600;
    color: #343434;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.site-header-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 100%;
    color: #adb7be;
    border: none;
    background: 0 0;
    font-size: .9375rem;
}

.site-header-search button:hover,
.site-header-search.closed:hover button {
    color: #00a8ff;
}

.site-header-search .overlay {
    display: none;
}

.site-header-search.closed {
    width: 37px;
    border-color: transparent;
}

.site-header-search.closed .overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
}

.site-header-search.closed input[type=text] {
    opacity: 0;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;
    background: #fff;
    -moz-box-shadow: -1px 1px 19px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: -1px 1px 19px rgba(0, 0, 0, 0.07);
    box-shadow: -1px 1px 19px rgba(0, 0, 0, 0.07);
    padding: 20px 0px 0 0;
    z-index: 80;
}

#fixed-header.site-header {
    max-width: 1150px;
    left: 50%;
    transform: translateX(-50%);
}

.site-header-b2c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95px;
    background: #fff;
    -moz-box-shadow: -1px 1px 19px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: -1px 1px 19px rgba(0, 0, 0, 0.07);
    box-shadow: -1px 1px 19px rgba(0, 0, 0, 0.07);
    padding: 20px 0px 0 0;
    z-index: 80;
}

.site-header .site-logo {
    display: block;
    float: left;
    height: 40px;
    zoom: 1;
    color: #343434;
    line-height: 40px;
}

.site-header .site-header-content .site-header-content-in:after,
.site-header .site-header-content .site-header-content-in:before,
.site-header .site-header-shown:after,
.site-header .site-header-shown:before,
.site-header .site-logo:after,
.site-header .site-logo:before {
    content: " ";
    display: table;
}

.site-header .site-logo:after {
    clear: both;
}

.site-header .site-logo img {
    float: left;
    /*height: 40px;*/
    width: 230px;
    position: relative;
    top: 42%;
    padding: 0px 30px;
}

@media (max-width:767px) {
    .site-header .site-logo img {
        height: auto;
        width: 35px;
        top: 6px;
    }
}

.site-header .site-logo .site-logo-txt {
    float: left;
    font-size: 1.5rem;
    font-weight: 300;
}

.site-header .site-logo .site-logo-txt strong {
    font-weight: 600;
}

.site-header .site-header-content {
    float: right;
    height: 40px;
    padding: 5px 0;
    margin-left: -210px;
}

.site-header .site-header-content .pull-right {
    float: right;
}

.site-header .site-header-content .site-header-content-in {
    zoom: 1;
    margin-left: 210px;
}

.site-header .site-header-content .site-header-content-in:after {
    clear: both;
}

@media (max-width:767px) {
    .site-header .site-header-content {
        margin-left: -80px;
    }
    .site-header .site-header-content .site-header-content-in {
        margin-left: 80px;
    }
}

.site-header .site-header-shown {
    float: right;
    zoom: 1;
    margin-right: 1rem;
    margin-top: 10px;
}

.site-header .site-header-shown:after {
    clear: both;
}

.site-header .site-header-shown p {
    position: relative;
    display: block;
    float: right;
    padding: 5px;
}

.site-header .header-alarm {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    display: block;
    color: #adb7be;
    font-size: 1.125rem;
}

.site-header .dropdown.dropdown-notification.open .header-alarm,
.site-header .header-alarm:hover {
    color: #65b32e;
}

.site-header .header-alarm i {
    vertical-align: middle;
}

.site-header .header-alarm.active:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    background: #fa424a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 6px;
    margin-left: 1px;
}

.site-header .dropdown.dropdown-notification {
    float: left;
}

.site-header .dropdown.dropdown-notification.messages {
    margin-left: 11px;
}

.site-header .dropdown.dropdown-notification.messages .header-alarm:after {
    margin-left: 4px;
}

.site-header .dropdown.dropdown-notification .dropdown-menu-notif-more {
    border-top: solid 1px #d8e2e7;
    text-align: center;
    padding: 10px 15px;
    font-size: 1rem;
}

.site-header .dropdown.dropdown-notification .dropdown-menu-notif-more a {
    text-decoration: none;
    color: #0082c6;
    border-bottom: solid 1px transparent;
}

.site-header .dropdown.dropdown-notification .dropdown-menu-notif-more a:hover {
    border-bottom-color: rgba(0, 130, 198, .5);
}

.site-header .dropdown-menu-notif {
    width: 290px;
    padding: 0;
    line-height: normal;
    font-size: .9375rem;
}

.site-header .dropdown-menu-notif a {
    text-decoration: none;
    color: #fa424a;
    border-bottom: solid 1px transparent;
}

.site-header .dropdown-menu-notif a:hover {
    border-bottom-color: rgba(0, 130, 198, .5);
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-header {
    padding: 12px 15px;
    border-bottom: solid 1px #d8e2e7;
    font-weight: 600;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-header .label {
    font-size: .875rem;
    font-weight: 400;
    padding-left: .5em;
    padding-right: .5em;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-list {
    height: 192px;
    overflow: auto;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-item {
    padding: 8px 0px 8px 15px;
    position: relative;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-item:nth-child(even) {
    background: #fbfcfd;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-item .photo {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -16px;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-item .photo img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
    width: 100%;
}

.site-header .dropdown-menu-notif .dropdown-menu-notif-item .dot {
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    margin: 0 0 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fa424a;
    position: relative;
    top: 2px;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav:after,
.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav:before,
.site-header .dropdown-menu-messages .dropdown-menu-messages-header:after,
.site-header .dropdown-menu-messages .dropdown-menu-messages-header:before {
    content: " ";
    display: table;
}

.site-header .dropdown-menu-messages {
    width: 290px;
    padding-bottom: 0;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header {
    border-bottom: solid 1px #d8e2e7;
    padding: 7px 15px 12px;
    zoom: 1;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header:after {
    clear: both;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav {
    float: left;
    zoom: 1;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav:after {
    clear: both;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav-item {
    float: left;
    margin: 0 15px 0 0;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #919fa9;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.side-menu-list .lbl,
.site-header .user-menu.dropdown .dropdown-toggle img {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav-link.active {
    color: #343434;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .nav-link .label {
    font-size: .875rem;
    padding-left: .5em;
    padding-right: .5em;
    font-weight: 400;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .create {
    float: right;
    height: 18px;
    font-size: 1rem;
    border: none;
    background: 0 0;
    color: #919fa9;
    position: relative;
    top: -1px;
}

.site-header .dropdown-menu-messages .dropdown-menu-messages-header .create:hover {
    color: #00a8ff;
}

.site-header .dropdown-menu-messages .mess-item {
    display: block;
    color: #343434;
    padding: 14px 15px 14px 57px;
    position: relative;
    line-height: 18px;
}

.site-header .dropdown-menu-messages .mess-item:nth-child(odd) {
    background-color: #fbfcfd;
}

.site-header .dropdown-menu-messages .mess-item:hover {
    background-color: #ecf2f5;
}

.site-header .dropdown-menu-messages .mess-item span {
    display: block;
}

.site-header .dropdown-menu-messages .mess-item .avatar-preview {
    position: absolute;
    left: 15px;
    top: 15px;
}

.site-header .dropdown-menu-messages .mess-item .mess-item-name,
.site-header .dropdown-menu-messages .mess-item .mess-item-txt {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    font-size: .9375rem;
}

.site-header .dropdown-menu-messages .mess-item .mess-item-name {
    font-weight: 600;
}

.site-header .dropdown-menu-messages .mess-item .mess-item-txt {
    color: #919fa9;
}

.site-header .dropdown-menu-messages .tab-pane {
    height: 192px;
    overflow: auto;
}

.site-header .help-dropdown {
    float: left;
    position: relative;
    height: 30px;
    margin: 0 0 0 10px;
}

.site-header .help-dropdown>button {
    height: 30px;
    line-height: 30px;
    border: none;
    background: 0 0;
    color: #adb7be;
}

.site-header .help-dropdown.opened>button,
.site-header .help-dropdown>button:hover {
    color: #00a8ff;
}

.site-header .help-dropdown .help-dropdown-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -400px;
    margin-top: 7px;
    background: #fff;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    zoom: 1;
    width: 800px;
}

.site-header .help-dropdown .help-dropdown-popup:after,
.site-header .help-dropdown .help-dropdown-popup:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.site-header .help-dropdown .help-dropdown-popup:before {
    top: -10px;
    margin-left: -8px;
    border-width: 0 8px 10px;
    border-color: transparent transparent #d8e2e7;
}

.site-header .help-dropdown .help-dropdown-popup:after {
    clear: both;
    top: -9px;
    margin-left: -7px;
    border-width: 0 7px 9px;
    border-color: transparent transparent #fff;
}

.site-header .help-dropdown .help-dropdown-popup-side {
    float: left;
    width: 230px;
    background: #f6f8fa;
    -webkit-border-radius: .25rem 0 0 .25rem;
    border-radius: .25rem 0 0 .25rem;
    padding: 30px;
    border-right: solid 1px #d8e2e7;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.site-header .help-dropdown .help-dropdown-popup-side a {
    color: #343434;
}

.site-header .help-dropdown .help-dropdown-popup-side a.active,
.site-header .help-dropdown .help-dropdown-popup-side a:hover {
    color: #00a8ff;
}

.site-header .help-dropdown .help-dropdown-popup-side li {
    margin: 0 0 .5rem;
}

.site-header .help-dropdown .help-dropdown-popup-cont {
    float: right;
    width: 100%;
    margin-left: -230px;
}

.site-header .help-dropdown .help-dropdown-popup-cont-in {
    margin-left: 230px;
    padding: 30px;
}

.site-header .help-dropdown .help-dropdown-popup-item {
    border-top: solid 1px #d8e2e7;
    padding: 10px 0;
    display: block;
    color: #343434;
}

.site-header .help-dropdown .help-dropdown-popup-item:hover {
    color: #00a8ff;
}

.site-header .help-dropdown .help-dropdown-popup-item:first-child {
    border-top: none;
    padding-top: 0;
}

.site-header .help-dropdown .help-dropdown-popup-item .describe {
    display: block;
    color: #919fa9;
    font-size: .875rem;
}

.site-header .help-dropdown .jscroll {
    max-height: 265px;
    overflow: auto;
}

.site-header .help-dropdown.opened .help-dropdown-popup {
    display: block;
}

.site-header .user-menu.dropdown {
    float: left;
    margin: 0 0 0 15px;
    height: 30px;
    line-height: 30px;
}

.site-header .user-menu.dropdown .dropdown-toggle {
    display: block;
    color: #adb7be;
    height: 30px;
    border: none;
    background: 0 0;
    line-height: 30px;
}

.site-header .user-menu.dropdown .dropdown-toggle:after {
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.site-header .user-menu.dropdown .dropdown-toggle img {
    float: left;
    display: block;
    height: 50px;
    width: 50px;
    margin: -10px 3px -1px 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all .2s ease-in-out;
}


/*.site-header .user-menu.dropdown .dropdown-toggle:after {
    content: "";
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
     background-color: red;
    border-radius: 10px;
}
*/

.site-header .dropdown a.dropdown-toggle.no-arr:after,
.site-header .dropdown.dropdown-lang .dropdown-toggle:after {
    display: none;
}

.site-header .user-menu.dropdown .dropdown-toggle:hover,
.site-header .user-menu.dropdown.open .dropdown-toggle {
    color: #79aa33;
}

.site-header .dropdown.dropdown-lang {
    float: left;
}

.site-header .dropdown.dropdown-lang .flag-icon {
    -webkit-box-shadow: 0 0 1px #c5d6de, 0 0 1px #c5d6de, 0 0 1px #c5d6de;
    box-shadow: 0 0 1px #c5d6de, 0 0 1px #c5d6de, 0 0 1px #c5d6de;
}

.site-header .dropdown.dropdown-lang .dropdown-toggle {
    height: 30px;
    width: 45px;
    text-align: right;
    padding: 0 5px 0 0;
    background: 0 0;
    border: none;
    color: #adb7be;
}

.site-header .dropdown.dropdown-lang .dropdown-toggle:hover,
.site-header .dropdown.dropdown-lang.open .dropdown-toggle {
    color: #00a8ff;
}

.site-header .dropdown.dropdown-lang .dropdown-menu {
    width: 250px;
}

.site-header .dropdown.dropdown-lang .dropdown-menu .flag-icon {
    margin: 0 5px 0 0;
    position: relative;
    top: -1px;
}

.site-header .burger-right {
    display: none;
    float: right;
    height: 30px;
    margin: 0 0 0 10px;
    line-height: 30px;
    cursor: pointer;
    color: #adb7be;
    border: none;
    background: 0 0;
    font-size: 1.375rem;
    position: relative;
    top: 1px;
}

.site-header .burger-right:hover {
    color: #00a8ff;
}

.site-header .burger-right i {
    vertical-align: middle;
}

.site-header .dropdown {
    float: right;
}

.site-header .dropdown.dropdown-typical {
    float: left;
    margin-right: -10px;
}

.site-header .dropdown.dropdown-typical .lbl {
    font-size: 15px;
    line-height: 16px;
}

.site-header .dropdown a.dropdown-toggle {
    height: 30px;
    line-height: 30px;
}

.site-header .site-header-collapsed .site-header-collapsed-in:after,
.site-header .site-header-collapsed .site-header-collapsed-in:before,
.site-header .site-header-search-container:after,
.site-header .site-header-search-container:before {
    content: " ";
    display: table;
}

.site-header .dropdown a.dropdown-toggle .label {
    padding: 3px 6px 2px;
    margin-left: 3px;
    font-size: .8125rem;
    position: relative;
    top: -2px;
}

.site-header .dropdown .dropdown-item {
    font-size: 15px;
}

.site-header .dropdown .btn.dropdown-toggle {
    height: 30px;
    padding: 0 12px;
    font-size: .8125rem;
    line-height: 28px;
    background-color: #00a8ff;
    border-color: #00a8ff;
    color: #fff;
}

.site-header .dropdown .btn.dropdown-toggle:after {
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.site-header .dropdown.open .btn.dropdown-toggle {
    background: #fff;
    color: #00a8ff;
}

.site-header .site-header-search-container {
    float: right;
    width: 158px;
    margin: 0 10px 0 0;
    zoom: 1;
}

.site-header .site-header-search-container:after {
    clear: both;
}

.site-header .site-header-search-container .site-header-search {
    float: right;
}

.site-header .site-header-collapsed {
    float: left;
    width: 100%;
    margin-right: -199px;
}

.site-header .site-header-collapsed .site-header-collapsed-in {
    margin-right: 199px;
    zoom: 1;
}

.site-header .site-header-collapsed .site-header-collapsed-in:after {
    clear: both;
}

.site-header .mobile-menu-right-overlay {
    display: none;
}

.site-header .hamburger {
    float: left;
    position: relative;
    top: 5px;
    margin: 0 0 0 12px;
}

@media (max-width:1500px) and (min-width:992px) {
    .site-header .dropdown.dropdown-typical a.dropdown-toggle .font-icon {
        margin-right: 0;
    }
    .site-header .dropdown.dropdown-typical a.dropdown-toggle .lbl {
        display: none;
    }
}

@media (max-width:1199px) {
    .site-header .site-header-search-container {
        width: 110px;
    }
}

@media (max-width:991px) {
    .site-header {
        padding-right: 0;
    }
    .site-header .help-dropdown,
    .site-header .site-logo-text {
        display: none;
    }
    .site-header .burger-right {
        display: block;
    }
    .site-header .site-header-collapsed {
        position: fixed;
        right: -270px;
        top: 0;
        z-index: 90;
        height: 100%;
        width: 270px;
        background: #fff;
        border-left: solid 1px #c5d6de;
        padding: 15px;
        overflow: auto;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        float: none;
        margin: 0;
    }
    .site-header .site-header-collapsed .site-header-collapsed-in {
        margin: 0;
    }
    .site-header .site-header-collapsed .site-header-search.closed {
        width: 100%;
        border-color: #c5d6de;
    }
    .site-header .site-header-collapsed .site-header-search.closed .overlay {
        display: none;
    }
    .site-header .site-header-collapsed .site-header-search.closed input[type=text] {
        opacity: 1;
    }
    .site-header .site-header-collapsed .site-header-search.closed:hover button {
        color: #c5d6de;
    }
    .site-header .site-header-collapsed .site-header-search-container {
        width: 100%;
        padding: 10px 0;
        float: none;
    }
    .site-header .site-header-collapsed .dropdown {
        float: none;
        margin: 0;
        zoom: 1;
    }
    .site-header .site-header-collapsed .dropdown:after,
    .site-header .site-header-collapsed .dropdown:before {
        content: " ";
        display: table;
    }
    .site-header .site-header-collapsed .dropdown:after {
        clear: both;
    }
    .site-header .site-header-collapsed .dropdown .btn.dropdown-toggle {
        width: 100%;
        margin-bottom: 5px;
        margin-top: 8px;
    }
    .site-header .site-header-collapsed .dropdown .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        margin-top: 0;
    }
    .site-header .site-header-collapsed .dropdown.open a.dropdown-toggle {
        color: #343434;
    }
    .site-header .site-header-collapsed .dropdown.open a.dropdown-toggle .font-icon,
    .site-header .site-header-collapsed .dropdown.open a.dropdown-toggle:after {
        color: #adb7be;
    }
    .site-header .site-header-collapsed .dropdown.open .btn.dropdown-toggle {
        color: #fff;
        background-color: #00a8ff;
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more.opened .dropdown-more-caption,
    .site-header .site-header-collapsed .dropdown.mobile-opened a.dropdown-toggle,
    .site-header .site-header-collapsed .dropdown.mobile-opened a.dropdown-toggle .font-icon,
    .site-header .site-header-collapsed .dropdown.mobile-opened a.dropdown-toggle:after {
        color: #00a8ff;
    }
    .site-header .site-header-collapsed .dropdown.mobile-opened .dropdown-menu {
        display: block;
    }
    .site-header .site-header-collapsed .dropdown.mobile-opened .dropdown-toggle:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .site-header .site-header-collapsed .dropdown.mobile-opened .btn.dropdown-toggle {
        color: #00a8ff;
        background-color: #fff;
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more .dropdown-more-caption:before {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more .dropdown-more-sub {
        display: none;
        position: static;
        left: 0;
        padding: 0;
        margin: 0;
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more .dropdown-more-sub-in {
        border-right: none;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more:hover .dropdown-more-sub {
        display: none;
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more.opened .dropdown-more-caption:before {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        border-left-color: #00a8ff;
    }
    .site-header .site-header-collapsed .dropdown.dropdown-typical .dropdown-more.opened .dropdown-more-sub {
        display: block;
    }
    .menu-right-opened .site-header .mobile-menu-right-overlay {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 85;
        background: rgba(48, 75, 88, .5);
    }
    .menu-right-opened .site-header .site-header-collapsed {
        right: 0;
    }
}

@media (max-width:767px) {
    .site-header .burger-right {
        margin-left: 7px;
    }
    .site-header .dropdown.dropdown-notification.messages {
        margin-left: 8px;
    }
    .site-header .dropdown.dropdown-lang .dropdown-toggle {
        width: 42px;
    }
    .site-header .dropdown.dropdown-lang .dropdown-menu {
        margin-right: -52px;
    }
    .site-header .user-menu.dropdown {
        margin-left: 12px;
    }
    .site-header .dropdown-menu-notif {
        margin-right: -172px;
    }
    .site-header .dropdown-menu-messages {
        margin-right: -134px;
    }
}

.hamburger {
    display: none;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
    background: 0 0;
}

.hamburger span {
    display: block;
    margin: -1px 4px 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #adb7be;
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: transform .3s, -moz-transform .3s;
    -o-transition: transform .3s, -o-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s, -moz-transform .3s, -o-transform .3s;
}

.hamburger span:after,
.hamburger span:before {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #adb7be;
    content: "";
}

.hamburger span:before {
    top: -7px;
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    -o-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: width .3s, top .3s, -webkit-transform .3s;
    -moz-transition: transform .3s, width .3s, top .3s, -moz-transform .3s;
    -o-transition: transform .3s, width .3s, top .3s, -o-transform .3s;
    transition: transform .3s, width .3s, top .3s;
    transition: transform .3s, width .3s, top .3s, -webkit-transform .3s, -moz-transform .3s, -o-transform .3s;
}

.hamburger span:after {
    bottom: -7px;
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: width .3s, bottom .3s, -webkit-transform .3s;
    -moz-transition: transform .3s, width .3s, bottom .3s, -moz-transform .3s;
    -o-transition: transform .3s, width .3s, bottom .3s, -o-transform .3s;
    transition: transform .3s, width .3s, bottom .3s;
    transition: transform .3s, width .3s, bottom .3s, -webkit-transform .3s, -moz-transform .3s, -o-transform .3s;
}

.hamburger.is-active {
    background: 0 0;
}

.hamburger.is-active span {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.hamburger.is-active span:after,
.hamburger.is-active span:before {
    width: 50%;
}

.hamburger.is-active span:before {
    top: 0;
    -webkit-transform: translateX(12px) translateY(1px) rotate(45deg);
    -moz-transform: translateX(12px) translateY(1px) rotate(45deg);
    -ms-transform: translateX(12px) translateY(1px) rotate(45deg);
    -o-transform: translateX(12px) translateY(1px) rotate(45deg);
    transform: translateX(12px) translateY(1px) rotate(45deg);
}

.hamburger.is-active span:after {
    bottom: 0;
    -webkit-transform: translateX(12px) translateY(-1px) rotate(-45deg);
    -moz-transform: translateX(12px) translateY(-1px) rotate(-45deg);
    -ms-transform: translateX(12px) translateY(-1px) rotate(-45deg);
    -o-transform: translateX(12px) translateY(-1px) rotate(-45deg);
    transform: translateX(12px) translateY(-1px) rotate(-45deg);
}

.hamburger:hover span,
.hamburger:hover span:after,
.hamburger:hover span:before {
    background-color: #65b32e;
}

@media (max-width:991px) {
    .hamburger {
        display: block;
    }
}

.wet-aspalt-theme .site-header {
    background-color: #304b58;
    border-bottom-color: #304b58;
}

.wet-aspalt-theme .site-header .dropdown.dropdown-lang .flag-icon {
    opacity: .9;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wet-aspalt-theme .site-header .dropdown.dropdown-lang .dropdown-toggle {
    color: #fff;
}

.wet-aspalt-theme .site-header .dropdown.dropdown-lang .dropdown-toggle:hover,
.wet-aspalt-theme .site-header .dropdown.dropdown-lang.open .dropdown-toggle {
    color: #c5d6de;
}

.wet-aspalt-theme .site-header .header-alarm {
    color: #fff;
}

.wet-aspalt-theme .site-header .header-alarm.active:after {
    border-color: #304b58;
}

.wet-aspalt-theme .site-header .dropdown.dropdown-notification.open .header-alarm,
.wet-aspalt-theme .site-header .header-alarm:hover {
    color: #c5d6de;
}

.wet-aspalt-theme .site-header .user-menu.dropdown .dropdown-toggle {
    color: #fff;
}

.wet-aspalt-theme .site-header .user-menu.dropdown .dropdown-toggle:hover,
.wet-aspalt-theme .site-header .user-menu.dropdown.open .dropdown-toggle {
    color: #c5d6de;
}

.wet-aspalt-theme .site-header .hamburger span,
.wet-aspalt-theme .site-header .hamburger span:after,
.wet-aspalt-theme .site-header .hamburger span:before {
    background-color: #fff;
}

.wet-aspalt-theme .site-header .burger-right {
    color: #fff;
}

@media (min-width:992px) {
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle .font-icon,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:after {
        color: #fff;
    }
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover .font-icon,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover:after,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical.open a.dropdown-toggle,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical.open a.dropdown-toggle .font-icon,
    .wet-aspalt-theme .site-header .dropdown.dropdown-typical.open a.dropdown-toggle:after {
        color: #c5d6de;
    }
    .wet-aspalt-theme .site-header .dropdown .btn.dropdown-toggle {
        border-color: #fff;
        background-color: #fff;
        color: #304b58;
    }
    .wet-aspalt-theme .site-header .help-dropdown button {
        color: #fff;
    }
    .wet-aspalt-theme .site-header .help-dropdown button:hover,
    .wet-aspalt-theme .site-header .help-dropdown.opened button {
        color: #c5d6de;
    }
    .wet-aspalt-theme .site-header .site-header-search {
        background: 0 0;
        border-color: #c5d6de;
    }
    .wet-aspalt-theme .site-header .site-header-search.closed {
        border-color: transparent;
    }
    .wet-aspalt-theme .site-header .site-header-search [placeholder],
    .wet-aspalt-theme .site-header .site-header-search input[placeholder] {
        color: #fff;
    }
    .wet-aspalt-theme .site-header .site-header-search::-webkit-input-placeholder {
        color: #fff !important;
    }
    .wet-aspalt-theme .site-header .site-header-search::-moz-placeholder {
        opacity: 1 !important;
        color: #fff !important;
    }
    .wet-aspalt-theme .site-header .site-header-search:-moz-placeholder {
        color: #fff !important;
        opacity: 1 !important;
    }
    .wet-aspalt-theme .site-header .site-header-search:-ms-input-placeholder {
        color: #fff !important;
    }
    .wet-aspalt-theme .site-header .site-header-search button {
        color: #fff;
    }
    .wet-aspalt-theme .site-header .site-header-search button:hover,
    .wet-aspalt-theme .site-header .site-header-search.closed:hover button {
        color: #c5d6de;
    }
}

.site-header .site-logo-text {
    float: left;
    width: 240px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    background: #272727;
    margin: 0 -1px 0 -.9375rem;
    position: relative;
    padding: 0;
    text-align: center;
}

.with-side-menu-compact .site-header .site-logo-text {
    width: 100px;
}

.with-side-menu-compact.dark-theme .site-header .site-header-content {
    margin-left: -100px;
}

.with-side-menu-compact.dark-theme .site-header .site-header-content .site-header-content-in {
    margin-left: 100px;
}

@media (max-width:767px) {
    .with-side-menu-compact.dark-theme .site-header .site-header-content {
        margin-left: -110px;
    }
    .with-side-menu-compact.dark-theme .site-header .site-header-content .site-header-content-in {
        margin-left: 110px;
    }
}

.dark-theme .site-header {
    background-color: #343434;
    height: 50px;
    padding-top: 0;
    border-bottom: none;
}

.dark-theme .site-header .site-header-content {
    padding: 0;
    margin-left: -240px;
}

.dark-theme .site-header .site-header-content .site-header-content-in {
    margin-left: 240px;
}

@media (max-width:767px) {
    .dark-theme .site-header .site-header-content {
        margin-left: -130px;
    }
    .dark-theme .site-header .site-header-content .site-header-content-in {
        margin-left: 130px;
    }
}

.dark-theme .site-header .site-header-shown {
    padding-top: 10px;
}

.dark-theme .site-header .header-alarm.active:after {
    border-color: #343434;
}

.dark-theme .site-header .hamburger {
    top: 8px;
}

.dark-theme .site-header.site-header-light {
    background: #fff;
}

.dark-theme .site-header.site-header-light .header-alarm.active:after {
    border-color: #fff;
}

@media (min-width:992px) {
    .dark-theme .site-header .site-header-collapsed .site-header-collapsed-in {
        margin-right: 112px;
    }
    .dark-theme .site-header .dropdown .btn.dropdown-toggle {
        position: relative;
        top: 10px;
        border-color: #919fa9;
        background-color: #919fa9;
        color: #fff;
    }
    .dark-theme .site-header .dropdown .dropdown-menu {
        margin-top: 14px;
    }
    .dark-theme .site-header .dropdown.dropdown-typical {
        margin: 0 1px 0 0;
    }
    .dark-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle {
        color: #fff;
        height: 50px;
        line-height: 50px;
        display: block;
    }
    .dark-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle .font-icon,
    .dark-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:after {
        color: #919fa9;
    }
    .dark-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover,
    .dark-theme .site-header .dropdown.dropdown-typical.open a.dropdown-toggle {
        background-color: #919fa9;
    }
    .dark-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover .font-icon,
    .dark-theme .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover:after,
    .dark-theme .site-header .dropdown.dropdown-typical.open a.dropdown-toggle .font-icon,
    .dark-theme .site-header .dropdown.dropdown-typical.open a.dropdown-toggle:after {
        color: #fff;
    }
    .dark-theme .site-header .dropdown.dropdown-typical .dropdown-menu {
        margin-top: 8px;
    }
    .dark-theme .site-header .dropdown.dropdown-typical .dropdown-menu .font-icon {
        color: #919fa9;
    }
    .dark-theme .site-header .dropdown.dropdown-typical .dropdown-menu .dropdown-item:hover .font-icon {
        color: #00a8ff;
    }
    .dark-theme .site-header .site-header-search-container {
        padding-top: 10px;
    }
    .dark-theme .site-header .site-header-search {
        background: #fff;
        border-color: #919fa9;
    }
    .dark-theme .site-header .site-header-search.closed {
        border-color: transparent;
        background: 0 0;
    }
    .dark-theme .site-header.site-header-light .dropdown.dropdown-typical a.dropdown-toggle {
        color: #919fa9;
    }
    .dark-theme .site-header.site-header-light .dropdown.dropdown-typical a.dropdown-toggle:hover,
    .dark-theme .site-header.site-header-light .dropdown.dropdown-typical.open a.dropdown-toggle {
        color: #fff;
    }
    .dark-theme.dark-theme-blue .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover,
    .dark-theme.dark-theme-blue .site-header .dropdown.dropdown-typical.open a.dropdown-toggle {
        background-color: #00a8ff;
    }
    .dark-theme.dark-theme-blue .site-header .dropdown.dropdown-typical.open a.dropdown-toggle:before {
        border-top-color: #00a8ff;
    }
    .dark-theme.dark-theme-blue .site-header .dropdown .dropdown-menu .dropdown-item:hover,
    .dark-theme.dark-theme-blue .site-header .dropdown .dropdown-menu .dropdown-item:hover .font-icon,
    .dark-theme.dark-theme-blue .site-header .dropdown .dropdown-menu .dropdown-more:hover .dropdown-more-caption {
        color: #00a8ff;
    }
    .dark-theme.dark-theme-blue .site-header .dropdown .dropdown-menu .dropdown-more:hover .dropdown-more-caption:before {
        border-left-color: #00a8ff;
    }
    .dark-theme.dark-theme-green .site-header .dropdown .dropdown-menu .dropdown-item:hover,
    .dark-theme.dark-theme-green .site-header .dropdown .dropdown-menu .dropdown-item:hover .font-icon,
    .dark-theme.dark-theme-green .site-header .dropdown .dropdown-menu .dropdown-more:hover .dropdown-more-caption,
    .dark-theme.dark-theme-green .site-header .dropdown.dropdown-notification.open .header-alarm,
    .dark-theme.dark-theme-green .site-header .header-alarm:hover,
    .dark-theme.dark-theme-green .site-header .site-header-search button:hover,
    .dark-theme.dark-theme-green .site-header .site-header-search.closed:hover button,
    .dark-theme.dark-theme-green .site-header .user-menu.dropdown .dropdown-toggle:hover,
    .dark-theme.dark-theme-green .site-header .user-menu.dropdown.open .dropdown-toggle {
        color: #46c35f;
    }
    .dark-theme.dark-theme-green .site-header .dropdown.dropdown-typical a.dropdown-toggle:hover,
    .dark-theme.dark-theme-green .site-header .dropdown.dropdown-typical.open a.dropdown-toggle {
        background-color: #46c35f;
    }
    .dark-theme.dark-theme-green .site-header .dropdown.dropdown-typical.open a.dropdown-toggle:before {
        border-top-color: #46c35f;
    }
    .dark-theme.dark-theme-green .site-header .dropdown .dropdown-menu .dropdown-more:hover .dropdown-more-caption:before {
        border-left-color: #46c35f;
    }
    .dark-theme.dark-theme-ultramarine .dropdown .dropdown-menu .dropdown-item:hover,
    .dark-theme.dark-theme-ultramarine .dropdown .dropdown-menu .dropdown-item:hover .font-icon,
    .dark-theme.dark-theme-ultramarine .dropdown .dropdown-menu .dropdown-more:hover .dropdown-more-caption,
    .dark-theme.dark-theme-ultramarine .dropdown.dropdown-notification.open .header-alarm,
    .dark-theme.dark-theme-ultramarine .header-alarm:hover,
    .dark-theme.dark-theme-ultramarine .site-header-search button:hover,
    .dark-theme.dark-theme-ultramarine .site-header-search.closed:hover button,
    .dark-theme.dark-theme-ultramarine .user-menu.dropdown .dropdown-toggle:hover,
    .dark-theme.dark-theme-ultramarine .user-menu.dropdown.open .dropdown-toggle {
        color: #1a5bc3;
    }
    .dark-theme.dark-theme-ultramarine .dropdown.dropdown-typical a.dropdown-toggle:hover,
    .dark-theme.dark-theme-ultramarine .dropdown.dropdown-typical.open a.dropdown-toggle {
        background-color: #1a5bc3;
    }
    .dark-theme.dark-theme-ultramarine .dropdown.dropdown-typical.open a.dropdown-toggle:before {
        border-top-color: #1a5bc3;
    }
    .dark-theme.dark-theme-ultramarine .dropdown .dropdown-menu .dropdown-more:hover .dropdown-more-caption:before {
        border-left-color: #1a5bc3;
    }
    .theme-picton-blue .site-header .site-logo,
    .theme-picton-blue-white-ebony .site-header .site-logo,
    .theme-rebecca-purple .site-header .site-logo,
    .theme-side-caesium-dark-caribbean .site-header .site-logo,
    .theme-side-ebony-clay .site-header .site-logo,
    .theme-side-litmus-blue .site-header .site-logo,
    .theme-side-madison-caribbean .site-header .site-logo,
    .theme-side-tin .site-header .site-logo {
        height: 80px;
        width: 240px;
        padding: 20px 0 0;
        text-align: center;
        margin: -20px 0 0 -15px;
    }
    .theme-picton-blue .site-header .site-logo img,
    .theme-picton-blue-white-ebony .site-header .site-logo img,
    .theme-rebecca-purple .site-header .site-logo img,
    .theme-side-caesium-dark-caribbean .site-header .site-logo img,
    .theme-side-ebony-clay .site-header .site-logo img,
    .theme-side-litmus-blue .site-header .site-logo img,
    .theme-side-madison-caribbean .site-header .site-logo img,
    .theme-side-tin .site-header .site-logo img {
        float: none;
    }
    .theme-picton-blue .site-header .site-header-content,
    .theme-picton-blue-white-ebony .site-header .site-header-content,
    .theme-rebecca-purple .site-header .site-header-content,
    .theme-side-caesium-dark-caribbean .site-header .site-header-content,
    .theme-side-ebony-clay .site-header .site-header-content,
    .theme-side-litmus-blue .site-header .site-header-content,
    .theme-side-madison-caribbean .site-header .site-header-content,
    .theme-side-tin .site-header .site-header-content {
        margin-left: -240px;
    }
    .theme-picton-blue .site-header .site-header-content-in,
    .theme-picton-blue-white-ebony .site-header .site-header-content-in,
    .theme-rebecca-purple .site-header .site-header-content-in,
    .theme-side-caesium-dark-caribbean .site-header .site-header-content-in,
    .theme-side-ebony-clay .site-header .site-header-content-in,
    .theme-side-litmus-blue .site-header .site-header-content-in,
    .theme-side-madison-caribbean .site-header .site-header-content-in,
    .theme-side-tin .site-header .site-header-content-in {
        margin-left: 240px;
    }
    .theme-side-ebony-clay .site-header .site-logo {
        background-color: #212b30;
    }
    .theme-side-madison-caribbean .site-header .site-logo {
        background-color: #263543;
    }
    .theme-side-caesium-dark-caribbean .site-header .site-logo {
        background-color: #22222f;
    }
    .theme-side-tin .site-header .site-logo {
        background-color: #383838;
    }
    .theme-side-litmus-blue .site-header .site-logo {
        background-color: #282c38;
    }
}

.theme-rebecca-purple .site-header {
    background-color: #3e4eb2;
    border-bottom-color: #3e4eb2;
}

.theme-rebecca-purple .site-header .site-header-search.closed {
    background: 0 0;
}

.theme-rebecca-purple .site-header .site-header-search.closed button {
    color: #fff;
}

.theme-rebecca-purple .site-header .site-header-search.closed:hover button {
    color: #00a8ff;
}

.theme-rebecca-purple .site-header .header-alarm.active:after {
    border-color: #3e4eb2;
    background-color: #fed832;
}

.theme-rebecca-purple .site-header .header-alarm i {
    color: #fff;
}

.theme-rebecca-purple .site-header .dropdown.user-menu .dropdown-toggle:after {
    color: #9fa7d8;
}

@media (min-width:992px) {
    .theme-rebecca-purple .site-header .dropdown.dropdown-typical .lbl {
        color: #fff;
    }
    .theme-rebecca-purple .site-header .dropdown.dropdown-typical a.dropdown-toggle:after {
        color: #9fa7d8;
    }
    .theme-rebecca-purple .site-header .dropdown.dropdown-typical a.dropdown-toggle .font-icon,
    .theme-rebecca-purple .site-header .help-dropdown>button {
        color: #fff;
    }
}

.theme-picton-blue .site-header {
    background-color: #5fa7e7;
    border-bottom-color: #5fa7e7;
}

.theme-picton-blue .site-header .site-header-search.closed {
    background: 0 0;
}

.theme-picton-blue .site-header .site-header-search.closed button {
    color: #fff;
}

.theme-picton-blue .site-header .site-header-search.closed:hover button {
    color: #fed832;
}

.theme-picton-blue .site-header .header-alarm.active:after {
    border-color: #5fa7e7;
    background-color: #fed832;
}

.theme-picton-blue .site-header .dropdown.user-menu .dropdown-toggle:after,
.theme-picton-blue .site-header .header-alarm i {
    color: #fff;
}

@media (min-width:992px) {
    .theme-picton-blue .site-header .dropdown.dropdown-typical .lbl,
    .theme-picton-blue .site-header .dropdown.dropdown-typical a.dropdown-toggle .font-icon,
    .theme-picton-blue .site-header .dropdown.dropdown-typical a.dropdown-toggle:after,
    .theme-picton-blue .site-header .help-dropdown>button {
        color: #fff;
    }
    .theme-picton-blue .site-header .dropdown>.btn {
        border-color: #fff !important;
        background-color: #fff;
        color: #00a8ff;
    }
}

.theme-picton-blue .site-header .hamburger span,
.theme-picton-blue .site-header .hamburger span:after,
.theme-picton-blue .site-header .hamburger span:before {
    background-color: #fff;
}

.theme-picton-blue .site-header .burger-right {
    color: #fff;
}

.theme-picton-blue-white-ebony .site-header .burger-right,
.theme-picton-blue-white-ebony .site-header .dropdown.user-menu .dropdown-toggle:after,
.theme-picton-blue-white-ebony .site-header .header-alarm i {
    color: #76838e;
}

.theme-picton-blue-white-ebony .site-header .site-logo {
    background-color: #5fa7e7;
}

@media (min-width:992px) {
    .theme-picton-blue-white-ebony .site-header .dropdown.dropdown-typical .lbl,
    .theme-picton-blue-white-ebony .site-header .dropdown.dropdown-typical a.dropdown-toggle .font-icon,
    .theme-picton-blue-white-ebony .site-header .dropdown.dropdown-typical a.dropdown-toggle:after,
    .theme-picton-blue-white-ebony .site-header .help-dropdown>button {
        color: #76838e;
    }
}

.theme-picton-blue-white-ebony .site-header .hamburger span,
.theme-picton-blue-white-ebony .site-header .hamburger span:after,
.theme-picton-blue-white-ebony .site-header .hamburger span:before {
    background-color: #76838e;
}

html {
    position: relative;
    min-height: 100%;
}

.side-menu-list {
    margin: 0 0 25px;
}

.side-menu-list .lbl {
    font-weight: 600;
    color: #818181;
    font-size: 1rem;
    transition: all .2s ease-in-out;
}

.side-menu-list a:hover .lbl,
.side-menu-list>li.opened>span .lbl,
.side-menu-list>li>span:hover .lbl {
    color: #343434;
}

.side-menu-list a,
.side-menu-list>li.with-sub,
.side-menu-list>li>span {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.side-menu-list ul {
    display: none;
}

.side-menu-list ul a {
    padding-left: 18px;
}

.side-menu-list .label {
    margin: 0 0 0 .5em;
    font-weight: 400;
    font-size: .75rem;
    padding: .2em .45em .04em;
    position: relative;
    top: -1px;
}

.side-menu-list>li {
    line-height: 16px;
}

.side-menu-list>li.divider {
    border-top: solid 1px #c5d6de;
}

.side-menu-list>li.divider:first-child {
    border-top: none;
}

.side-menu-list a,
.side-menu-list>li>span {
    display: block;
    padding: 11px 10px 11px 46px;
    position: relative;
    transition: all .2s ease-in-out;
    cursor: pointer;
    border-left: solid 4px transparent;
}

.side-menu-list a:hover,
.side-menu-list>li>span:hover {
    background-color: #ecf2f5;
}

.side-menu-list a.label-right,
.side-menu-list>li>span.label-right {
    padding-right: 38px;
}

.side-menu-list a.label-right .label,
.side-menu-list>li>span.label-right .label {
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -8px;
}

.side-menu-list>li.with-sub {
    transition: all .2s ease-in-out;
}

.side-menu-list>li.with-sub>span {
    padding-right: 25px;
}

.side-menu-list>li.with-sub>span:before {
    content: '';
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -2px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0;
    border-color: #adb7be transparent transparent;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.side-menu-list>li.opened {
    background-color: #f6f8fa;
}

.side-menu-list>li.opened>span:before {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.side-menu-list .fa,
.side-menu-list .font-icon,
.side-menu-list .glyphicon,
.side-menu-list .tag-color {
    position: absolute;
    left: 18px;
    top: 13px;
    line-height: 16px;
    font-size: 1.0625rem;
}

.side-menu-list .fa.active:after,
.side-menu-list .font-icon.active:after,
.side-menu-list .glyphicon.active:after,
.side-menu-list .tag-color.active:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: -4px;
    right: -4px;
    background: #fa424a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.side-menu-addl,
.side-menu-big-icon .side-menu-list>li.with-sub>span:after {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.side-menu-list .fa {
    margin-top: -2px;
}

.side-menu-list .glyphicon {
    top: 11px;
}

.side-menu-list .tag-color {
    display: block;
    width: 16px;
    height: 16px;
    background: #000;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    top: 11px;
}

.side-menu-list .tag-color.green {
    background-color: #46c35f;
}

.side-menu-list .tag-color.grey-blue {
    background-color: #9fc4e2;
}

.side-menu-list .tag-color.red {
    background-color: #fa424a;
}

.side-menu-list .tag-color.pink {
    background-color: #e84f9a;
}

.side-menu-list .tag-color.orange {
    background-color: #ff7721;
}

.side-menu-big-icon .side-menu-list {
    text-align: center;
    margin-top: -10px;
}

.side-menu-big-icon .side-menu-list .lbl {
    display: block;
    color: #343434;
}

.side-menu-big-icon .side-menu-list ul a {
    padding: 10px;
    background-color: #aeb8bf;
}

.side-menu-big-icon .side-menu-list ul a:hover,
.side-menu-big-icon .side-menu-list>li.opened>a,
.side-menu-big-icon .side-menu-list>li.opened>span {
    background-color: #919fa9;
}

.side-menu-big-icon .side-menu-list a,
.side-menu-big-icon .side-menu-list>li>span {
    padding: 15px 10px;
    border-left: none;
}

.side-menu-big-icon .side-menu-list>li.with-sub>span {
    padding-right: 10px;
}

.side-menu-big-icon .side-menu-list>li.with-sub>span:before {
    display: none;
}

.side-menu-big-icon .side-menu-list>li.with-sub>span:after {
    content: '\52';
    line-height: inherit;
    color: #919fa9;
    opacity: .5;
    position: absolute;
    right: 10px;
    top: 19px;
    transition: all .2s ease-in-out;
}

.side-menu-big-icon .side-menu-list>li.opened {
    color: #fff;
    background-color: #919fa9;
}

.side-menu-big-icon .side-menu-list>li.opened .fa,
.side-menu-big-icon .side-menu-list>li.opened .font-icon,
.side-menu-big-icon .side-menu-list>li.opened .glyphicon,
.side-menu-big-icon .side-menu-list>li.opened .lbl {
    color: #fff;
}

.side-menu-big-icon .side-menu-list>li.opened .fa.active:after,
.side-menu-big-icon .side-menu-list>li.opened .font-icon.active:after,
.side-menu-big-icon .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #919fa9;
}

.side-menu-big-icon .side-menu-list>li.opened.with-sub>span:after {
    color: #fff;
    opacity: 1;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.side-menu-big-icon .side-menu-list .fa,
.side-menu-big-icon .side-menu-list .font-icon,
.side-menu-big-icon .side-menu-list .glyphicon {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    color: #919fa9;
    line-height: 1;
    font-size: 2rem;
    margin: 0 0 5px;
}

.side-menu-big-icon .side-menu-list .fa.active:after,
.side-menu-big-icon .side-menu-list .font-icon.active:after,
.side-menu-big-icon .side-menu-list .glyphicon.active:after {
    width: 14px;
    height: 14px;
    top: -8px;
    right: -7px;
    border-width: 2px;
}

.side-menu-list>li.brown .fa,
.side-menu-list>li.brown .font-icon,
.side-menu-list>li.brown .glyphicon {
    color: #cd6724;
}

.side-menu-list>li.brown.opened a,
.side-menu-list>li.brown.opened>span {
    border-left-color: #cd6724;
}

.side-menu-list>li.green .fa,
.side-menu-list>li.green .font-icon,
.side-menu-list>li.green .glyphicon {
    color: #46c35f;
}

.side-menu-list>li.green.opened a,
.side-menu-list>li.green.opened>span {
    border-left-color: #46c35f;
}

.side-menu-list>li.gold .fa,
.side-menu-list>li.gold .font-icon,
.side-menu-list>li.gold .glyphicon {
    color: #f29824;
}

.side-menu-list>li.gold.opened a,
.side-menu-list>li.gold.opened>span {
    border-left-color: #f29824;
}

.side-menu-list>li.blue .fa,
.side-menu-list>li.blue .font-icon,
.side-menu-list>li.blue .glyphicon {
    color: #00a8ff;
}

.side-menu-list>li.blue.opened a,
.side-menu-list>li.blue.opened>span {
    border-left-color: #00a8ff;
}

.side-menu-list>li.purple .fa,
.side-menu-list>li.purple .font-icon,
.side-menu-list>li.purple .glyphicon {
    color: #ac6bec;
}

.side-menu-list>li.purple.opened a,
.side-menu-list>li.purple.opened>span {
    border-left-color: #ac6bec;
}

.side-menu-list>li.orange-red .fa,
.side-menu-list>li.orange-red .font-icon,
.side-menu-list>li.orange-red .glyphicon {
    color: #ff561c;
}

.side-menu-list>li.orange-red.opened a,
.side-menu-list>li.orange-red.opened>span {
    border-left-color: #ff561c;
}

.side-menu-list>li.grey .fa,
.side-menu-list>li.grey .font-icon,
.side-menu-list>li.grey .glyphicon {
    color: #adb7be;
}

.side-menu-list>li.grey.opened a,
.side-menu-list>li.grey.opened>span {
    border-left-color: #65b32e;
}

.side-menu-list>li.red .fa,
.side-menu-list>li.red .font-icon,
.side-menu-list>li.red .glyphicon {
    color: #fa424a;
}

.side-menu-list>li.red.opened a,
.side-menu-list>li.red.opened>span {
    border-left-color: #fa424a;
}

.side-menu-list>li.aquamarine .fa,
.side-menu-list>li.aquamarine .font-icon,
.side-menu-list>li.aquamarine .glyphicon {
    color: #21a788;
}

.side-menu-list>li.aquamarine.opened a,
.side-menu-list>li.aquamarine.opened>span {
    border-left-color: #21a788;
}

.side-menu-list>li.magenta .fa,
.side-menu-list>li.magenta .font-icon,
.side-menu-list>li.magenta .glyphicon {
    color: #b348ae;
}

.side-menu-list>li.magenta.opened a,
.side-menu-list>li.magenta.opened>span {
    border-left-color: #b348ae;
}

.side-menu-list>li.blue-dirty .fa,
.side-menu-list>li.blue-dirty .font-icon,
.side-menu-list>li.blue-dirty .glyphicon {
    color: #1b99cf;
}

.side-menu-list>li.blue-dirty.opened a,
.side-menu-list>li.blue-dirty.opened>span {
    border-left-color: #1b99cf;
}

.side-menu-list>li.coral .fa,
.side-menu-list>li.coral .font-icon,
.side-menu-list>li.coral .glyphicon {
    color: #fe664c;
}

.side-menu-list>li.coral.opened a,
.side-menu-list>li.coral.opened>span {
    border-left-color: #fe664c;
}

.side-menu-list>li.pink-red .fa,
.side-menu-list>li.pink-red .font-icon,
.side-menu-list>li.pink-red .glyphicon {
    color: #f5465e;
}

.side-menu-list>li.pink-red.opened a,
.side-menu-list>li.pink-red.opened>span {
    border-left-color: #f5465e;
}

.side-menu-list>li.pink .fa,
.side-menu-list>li.pink .font-icon,
.side-menu-list>li.pink .glyphicon {
    color: #e84f9a;
}

.side-menu-list>li.pink.opened a,
.side-menu-list>li.pink.opened>span {
    border-left-color: #e84f9a;
}

.side-menu-list>li.blue-darker .fa,
.side-menu-list>li.blue-darker .font-icon,
.side-menu-list>li.blue-darker .glyphicon {
    color: #1280d0;
}

.side-menu-list>li.blue-darker.opened a,
.side-menu-list>li.blue-darker.opened>span {
    border-left-color: #1280d0;
}

.side-menu-list>li.blue-sky .fa,
.side-menu-list>li.blue-sky .font-icon,
.side-menu-list>li.blue-sky .glyphicon {
    color: #23b9e2;
}

.side-menu-list>li.blue-sky.opened a,
.side-menu-list>li.blue-sky.opened>span {
    border-left-color: #23b9e2;
}

.side-menu {
    width: 240px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    height: 100%;
    border-right: solid 1px #c5d6de;
    overflow: auto;
    z-index: 60;
    padding: 90px 0 110px;
}

.side-menu-left {
    width: 240px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    height: 100%;
    border-right: solid 1px #c5d6de;
    overflow: auto;
    z-index: 60;
    padding: 90px 0 110px;
}

.side-menu-left .side-menu-compact {
    width: 100px;
    padding-bottom: 0;
    padding-top: 80px;
}

.dark-theme .side-menu {
    padding-top: 60px;
}

.side-menu .jspPane {
    padding-top: 90px !important;
}

.dark-theme .side-menu .jspPane {
    padding-top: 60px !important;
}

.side-menu .side-menu-title {
    font-weight: 600;
    text-transform: uppercase;
    color: #6c7a86;
    padding: 0 22px 8px;
    font-size: .875rem;
}

.side-menu .side-menu-avatar {
    padding: 28px 0;
    background: #f6f8fa;
    margin: -10px 0 1px;
}

.side-menu .side-menu-avatar .avatar-preview {
    display: block;
    margin: 0 auto;
}

.side-menu.side-menu-compact {
    width: 100px;
    padding-bottom: 0;
    padding-top: 80px;
}

.side-menu.side-menu-compact .jspPane {
    padding-top: 80px !important;
}

.side-menu.side-menu-compact .side-menu-avatar {
    padding: 18px 0;
    margin-top: 0;
}

.side-menu.side-menu-compact .side-menu-list {
    text-align: center;
}

.side-menu.side-menu-compact .side-menu-list>li.opened .lbl {
    color: #343434;
}

.side-menu.side-menu-compact .side-menu-list a {
    padding: 20px 9px 20px 5px;
}

.side-menu.side-menu-compact .side-menu-list .fa,
.side-menu.side-menu-compact .side-menu-list .font-icon,
.side-menu.side-menu-compact .side-menu-list .glyphicon {
    position: relative;
    left: auto;
    top: 0;
    margin: 0;
    display: inline-block;
    font-size: 2.125rem;
    line-height: normal;
    min-height: 40px;
}

.side-menu.side-menu-compact .side-menu-list .fa.active:after,
.side-menu.side-menu-compact .side-menu-list .font-icon.active:after,
.side-menu.side-menu-compact .side-menu-list .glyphicon.active:after {
    width: 16px;
    height: 16px;
    border-width: 2px;
    top: -6px;
    right: -6px;
}

.side-menu.side-menu-compact .side-menu-list .lbl {
    display: block;
    font-size: .875rem;
}

@media (max-width:991px) {
    .side-menu {
        left: -240px;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
    .menu-left-opened .side-menu {
        left: 0 !important;
    }
    .with-side-menu-addl .side-menu.side-menu-compact {
        left: -270px;
    }
}

.side-menu-addl {
    position: fixed;
    left: 100px;
    top: 0;
    width: 220px;
    height: 100%;
    background: #fff;
    border-right: solid 1px #c5d6de;
    overflow: auto;
    z-index: 60;
    padding: 100px 0 0;
    transition: all .2s ease-in-out;
}

.side-menu-addl .jspPane {
    padding-top: 100px !important;
}

.side-menu-addl .side-menu-addl-title {
    margin: 0 0 15px;
    padding: 8px 45px 8px 18px;
    position: relative;
}

.side-menu-addl .side-menu-addl-title .caption {
    font-size: .875rem;
    font-weight: 600;
    color: #818181;
}

.side-menu-addl .side-menu-addl-title .fa,
.side-menu-addl .side-menu-addl-title .font-icon,
.side-menu-addl .side-menu-addl-title .glyphicon {
    color: #adb7be;
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 1rem;
    line-height: 18px;
}

.side-menu-addl .side-menu-addl-top {
    padding: 0 18px 15px;
    border-bottom: solid 1px #c5d6de;
    margin: -5px 0 0;
}

.side-menu-addl .side-menu-addl-list a {
    display: table;
    width: 100%;
    font-size: .875rem;
    font-weight: 600;
    color: #818181;
}

.side-menu-addl .side-menu-addl-list li.header a,
.side-table-of-contents a {
    color: #343434;
}

.side-menu-addl .side-menu-addl-list a .tbl-cell {
    padding: 8px 0;
    vertical-align: middle;
}

.side-menu-addl .side-menu-addl-list a .tbl-cell.tbl-cell-caption {
    padding-left: 18px;
    padding-right: 20px;
}

.side-menu-addl .side-menu-addl-list a .tbl-cell.tbl-cell-num {
    padding-right: 20px;
    text-align: right;
    white-space: nowrap;
    width: 10px;
}

.side-menu-addl .side-menu-addl-list a:hover {
    background: #ecf2f5;
}

.side-menu-addl .side-menu-addl-list .divider {
    margin: 10px 0;
    height: 0;
    overflow: hidden;
    border-top: solid 1px #c5d6de;
}

.side-menu-addl .side-menu-list a,
.side-menu-addl .side-menu-list>li>span {
    border-left: none;
}

@media (max-width:1199px) {
    .side-menu-addl {
        padding-top: 85px;
    }
    .side-menu-addl .jspPane {
        padding-top: 85px !important;
    }
    .side-menu-addl .side-menu-addl-top {
        margin-top: 0;
        padding-top: 10px;
    }
}

@media (max-width:991px) {
    .side-menu-addl {
        left: -220px;
    }
    .menu-left-opened .side-menu-addl {
        left: 100px;
    }
}

.mobile-menu-left-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 59;
    background: rgba(48, 75, 88, .5);
}

@media (max-width:991px) {
    .menu-left-opened .mobile-menu-left-overlay {
        display: block;
    }
}

.side-table-of-contents {
    padding: .5rem 22px 15px;
    font-size: 1rem;
    font-weight: 600;
}

.side-table-of-contents a:hover {
    color: #00a8ff;
}

.side-table-of-contents a.active {
    font-weight: 700;
    color: #343434 !important;
}

.side-table-of-contents li {
    padding: 0 0 .8em;
}

.side-table-of-contents ul {
    font-size: .875rem;
    padding-left: 1rem;
    padding-top: .7rem;
}

.side-table-of-contents ul a {
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.dark-theme .side-menu .side-menu-list>li.opened a,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub a,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span,
.dark-theme .side-menu .side-menu-list>li.opened>span,
.theme-picton-blue .side-menu .side-menu-list>li.opened a,
.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub a,
.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-picton-blue .side-menu .side-menu-list>li.opened>span,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened a,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub a,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened>span,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened a,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened>span,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened a,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub a,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened>span,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened a,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub a,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened>span,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened a,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub a,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened>span,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened a,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub a,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened>span {
    border-left-color: transparent;
}

.side-table-of-contents ul a:hover {
    color: #00a8ff;
}

.dark-theme .side-menu .side-menu-list .lbl,
.dark-theme .side-menu .side-menu-list a:hover .fa,
.dark-theme .side-menu .side-menu-list a:hover .font-icon,
.dark-theme .side-menu .side-menu-list a:hover .glyphicon,
.dark-theme .side-menu .side-menu-list a:hover .lbl,
.dark-theme .side-menu .side-menu-list>li.opened .fa,
.dark-theme .side-menu .side-menu-list>li.opened .font-icon,
.dark-theme .side-menu .side-menu-list>li.opened .glyphicon,
.dark-theme .side-menu .side-menu-list>li.opened>span .lbl,
.dark-theme .side-menu .side-menu-list>li>span:hover .fa,
.dark-theme .side-menu .side-menu-list>li>span:hover .font-icon,
.dark-theme .side-menu .side-menu-list>li>span:hover .glyphicon,
.dark-theme .side-menu .side-menu-list>li>span:hover .lbl {
    color: #fff;
}

.dark-theme .side-menu {
    background-color: #343434;
    border-right-color: #343434;
}

.dark-theme .side-menu .jspDrag {
    border-color: #343434;
    background-color: #535353;
}

.dark-theme .side-menu .side-menu-avatar {
    background-color: #343434;
    border-bottom: solid 1px #272727;
}

.dark-theme .side-menu .side-menu-list a:hover,
.dark-theme .side-menu .side-menu-list>li.opened,
.dark-theme .side-menu .side-menu-list>li>span:hover {
    background-color: #919fa9;
}

.dark-theme .side-menu .side-menu-list a:hover .fa.active:after,
.dark-theme .side-menu .side-menu-list a:hover .font-icon.active:after,
.dark-theme .side-menu .side-menu-list a:hover .glyphicon.active:after,
.dark-theme .side-menu .side-menu-list>li>span:hover .fa.active:after,
.dark-theme .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.dark-theme .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #919fa9 !important;
}

.dark-theme .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #919fa9;
}

.dark-theme .side-menu .side-menu-list>li.opened>span:before,
.dark-theme .side-menu .side-menu-list>li.with-sub>span:hover:before {
    border-top-color: #fff;
}

.theme-side-ebony-clay .side-menu .side-menu-list>li.opened>span:before,
.theme-side-ebony-clay .side-menu .side-menu-list>li.with-sub>span:before,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened>span:before,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #9ba1a4;
}

.dark-theme .side-menu .side-menu-list>li.opened .fa.active:after,
.dark-theme .side-menu .side-menu-list>li.opened .font-icon.active:after,
.dark-theme .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #919fa9;
}

.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #fff !important;
}

.dark-theme.dark-theme-blue .side-menu-list a:hover,
.dark-theme.dark-theme-blue .side-menu-list>li.opened,
.dark-theme.dark-theme-blue .side-menu-list>li>span:hover {
    background-color: #00a8ff;
}

.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .lbl,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .lbl {
    color: #343434;
}

.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .fa,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon {
    color: #919fa9;
}

.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.dark-theme .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #fff !important;
}

.dark-theme .side-menu .side-menu-list .fa,
.dark-theme .side-menu .side-menu-list .font-icon,
.dark-theme .side-menu .side-menu-list .glyphicon {
    color: #919fa9;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.dark-theme .side-menu .side-menu-list .fa.active:after,
.dark-theme .side-menu .side-menu-list .font-icon.active:after,
.dark-theme .side-menu .side-menu-list .glyphicon.active:after {
    border-color: #343434;
}

.dark-theme .side-menu.side-menu-compact .side-menu-avatar {
    margin-top: -30px;
}

.dark-theme .side-menu.side-menu-compact .side-menu-list {
    text-align: center;
}

.dark-theme .side-menu.side-menu-compact .side-menu-list>li.opened .lbl {
    color: #fff;
}

.dark-theme.dark-theme-blue .side-menu-list a:hover .fa.active:after,
.dark-theme.dark-theme-blue .side-menu-list a:hover .font-icon.active:after,
.dark-theme.dark-theme-blue .side-menu-list a:hover .glyphicon.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li>span:hover .fa.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li>span:hover .font-icon.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #00a8ff !important;
}

.dark-theme.dark-theme-green .side-menu-list a:hover,
.dark-theme.dark-theme-green .side-menu-list>li.opened,
.dark-theme.dark-theme-green .side-menu-list>li>span:hover {
    background-color: #46c35f;
}

.dark-theme.dark-theme-blue .side-menu-list>li.opened .fa.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened .font-icon.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #00a8ff;
}

.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub a:hover .fa,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub a:hover .font-icon,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub a:hover .glyphicon,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub>span:hover .fa,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub>span:hover .font-icon,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub>span:hover .glyphicon {
    color: #00a8ff;
}

.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.dark-theme.dark-theme-blue .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #fff !important;
}

.dark-theme.dark-theme-green .side-menu-list a:hover .fa.active:after,
.dark-theme.dark-theme-green .side-menu-list a:hover .font-icon.active:after,
.dark-theme.dark-theme-green .side-menu-list a:hover .glyphicon.active:after,
.dark-theme.dark-theme-green .side-menu-list>li>span:hover .fa.active:after,
.dark-theme.dark-theme-green .side-menu-list>li>span:hover .font-icon.active:after,
.dark-theme.dark-theme-green .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #46c35f !important;
}

.dark-theme.dark-theme-ultramarine .side-menu-list a:hover,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened,
.dark-theme.dark-theme-ultramarine .side-menu-list>li>span:hover {
    background-color: #1a5bc3;
}

.dark-theme.dark-theme-green .side-menu-list>li.opened .fa.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened .font-icon.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #46c35f;
}

.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub a:hover .fa,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub a:hover .font-icon,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub a:hover .glyphicon,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub>span:hover .fa,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub>span:hover .font-icon,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub>span:hover .glyphicon {
    color: #46c35f;
}

.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.dark-theme.dark-theme-green .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #fff !important;
}

.dark-theme.dark-theme-ultramarine .side-menu-list a:hover .fa.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list a:hover .font-icon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list a:hover .glyphicon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li>span:hover .fa.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li>span:hover .font-icon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #1a5bc3 !important;
}

.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened .fa.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened .font-icon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #1a5bc3;
}

.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub a:hover .fa,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub a:hover .font-icon,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub a:hover .glyphicon,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub>span:hover .fa,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub>span:hover .font-icon,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub>span:hover .glyphicon {
    color: #1a5bc3;
}

.theme-side-ebony-clay .side-menu .side-menu-list .lbl,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .fa,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .font-icon,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .glyphicon,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened>span .lbl,
.theme-side-madison-caribbean .side-menu .side-menu-list .lbl,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened>span .lbl,
.theme-side-madison-caribbean .side-menu .side-menu-title {
    color: #fff;
}

.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.dark-theme.dark-theme-ultramarine .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #fff !important;
}

.theme-side-ebony-clay .side-menu {
    background: #263238;
    border-right-color: transparent;
}

.theme-side-ebony-clay .side-menu .side-menu-list a:hover,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened,
.theme-side-ebony-clay .side-menu .side-menu-list>li>span:hover {
    background-color: #374248;
}

.theme-side-ebony-clay .side-menu .jspDrag {
    border-color: #263238;
    background-color: #374248;
}

.theme-side-ebony-clay .side-menu .side-menu-list a:hover .fa.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list a:hover .tag-color.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li>span:hover .glyphicon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li>span:hover .tag-color.active:after {
    border-color: #374248 !important;
}

.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .glyphicon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened .tag-color.active:after {
    border-color: #374248;
}

.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #2d383e !important;
}

.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #2d383e !important;
}

.theme-side-ebony-clay .side-menu .side-menu-list .fa.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list .font-icon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list .glyphicon.active:after,
.theme-side-ebony-clay .side-menu .side-menu-list .tag-color.active:after {
    border-color: #263238;
}

.theme-side-ebony-clay .side-menu .side-menu-list .fa,
.theme-side-ebony-clay .side-menu .side-menu-list .font-icon,
.theme-side-ebony-clay .side-menu .side-menu-list .glyphicon {
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-side-madison-caribbean .side-menu {
    background: #2d3e4d;
    border-right-color: transparent;
}

.theme-side-madison-caribbean .side-menu .side-menu-list a:hover,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened,
.theme-side-madison-caribbean .side-menu .side-menu-list>li>span:hover {
    background-color: #263543;
}

.theme-side-madison-caribbean .side-menu .jspDrag {
    border-color: #2d3e4d;
    background-color: #263543;
}

.theme-side-madison-caribbean .side-menu .side-menu-list a:hover .fa.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #263543 !important;
}

.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #263543;
}

.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #1f2b36 !important;
}

.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #1f2b36 !important;
}

.theme-side-madison-caribbean .side-menu .side-menu-list .fa,
.theme-side-madison-caribbean .side-menu .side-menu-list .font-icon,
.theme-side-madison-caribbean .side-menu .side-menu-list .glyphicon {
    color: #00c3aa;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .lbl,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-title {
    color: #acadb4;
}

.theme-side-madison-caribbean .side-menu .side-menu-list .fa.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list .font-icon.active:after,
.theme-side-madison-caribbean .side-menu .side-menu-list .glyphicon.active:after {
    border-color: #263543;
}

.theme-side-caesium-dark-caribbean .side-menu {
    background: #2a2b3b;
    border-right-color: transparent;
}

.theme-side-caesium-dark-caribbean .side-menu .jspDrag {
    border-color: #2a2b3b;
    background-color: #1f202c;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover {
    background-color: #00c3aa;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .fa,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .font-icon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .glyphicon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .lbl,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened .fa,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened .font-icon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened .glyphicon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened a .lbl,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .lbl,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .lbl,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened>span .lbl,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .fa,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .font-icon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .glyphicon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .lbl {
    color: #fff;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .fa.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #00c3aa !important;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #919299;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.with-sub>span:hover:before {
    border-top-color: #fff;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened>span:before {
    border-top-color: #919299;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.with-sub>span:before,
.theme-side-tin .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #9c9c9c;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #22222f;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub {
    background-color: #22222f;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #00c3aa !important;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #00c3aa !important;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .fa,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .font-icon,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .glyphicon {
    color: #e3e3e5;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-side-tin .side-menu .side-menu-list .lbl,
.theme-side-tin .side-menu .side-menu-title {
    color: #b4b5bb;
}

.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .fa.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .font-icon.active:after,
.theme-side-caesium-dark-caribbean .side-menu .side-menu-list .glyphicon.active:after {
    border-color: #2a2b3b;
}

.theme-side-tin .side-menu {
    background: #424242;
    border-right-color: transparent;
}

.theme-side-tin .side-menu .jspDrag {
    border-color: #424242;
    background-color: #333;
}

.theme-side-tin .side-menu .side-menu-list a:hover,
.theme-side-tin .side-menu .side-menu-list>li.opened,
.theme-side-tin .side-menu .side-menu-list>li>span:hover {
    background-color: #383838;
}

.theme-side-tin .side-menu .side-menu-list a:hover .fa.active:after,
.theme-side-tin .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-side-tin .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-side-tin .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-side-tin .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-side-tin .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #383838 !important;
}

.theme-side-tin .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #383838;
}

.theme-side-tin .side-menu .side-menu-list>li.opened a,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub a,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub>span,
.theme-side-tin .side-menu .side-menu-list>li.opened>span {
    border-left-color: transparent;
}

.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #2e2e2e !important;
}

.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-side-tin .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #2e2e2e !important;
}

.theme-side-tin .side-menu .side-menu-list .fa,
.theme-side-tin .side-menu .side-menu-list .font-icon,
.theme-side-tin .side-menu .side-menu-list .glyphicon {
    color: #e6e6e6;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-side-litmus-blue .side-menu .side-menu-list .lbl,
.theme-side-litmus-blue .side-menu .side-menu-title {
    color: #fff;
}

.theme-side-tin .side-menu .side-menu-list .fa.active:after,
.theme-side-tin .side-menu .side-menu-list .font-icon.active:after,
.theme-side-tin .side-menu .side-menu-list .glyphicon.active:after {
    border-color: #424242;
}

.theme-side-litmus-blue .side-menu {
    background: #2c313e;
    border-right-color: transparent;
}

.theme-side-litmus-blue .side-menu .jspDrag {
    border-color: #2c313e;
    background-color: #242732;
}

.theme-side-litmus-blue .side-menu .side-menu-list a:hover,
.theme-side-litmus-blue .side-menu .side-menu-list>li>span:hover {
    background-color: #00a8ff;
}

.theme-side-litmus-blue .side-menu .side-menu-list a:hover .fa.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #00a8ff !important;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.with-sub>span:hover:before {
    border-top-color: #fff;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.opened {
    background: #00a8ff;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #282c38;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub {
    background-color: #282c38;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #00a8ff !important;
}

.theme-rebecca-purple .side-menu .side-menu-list a:hover,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub,
.theme-rebecca-purple .side-menu .side-menu-list>li>span:hover {
    background-color: #f4f4f4;
}

.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #00a8ff !important;
}

.theme-side-litmus-blue .side-menu .side-menu-list .fa,
.theme-side-litmus-blue .side-menu .side-menu-list .font-icon,
.theme-side-litmus-blue .side-menu .side-menu-list .glyphicon {
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-side-litmus-blue .side-menu .side-menu-list .fa.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list .font-icon.active:after,
.theme-side-litmus-blue .side-menu .side-menu-list .glyphicon.active:after {
    border-color: #2c313e;
}

.theme-rebecca-purple .side-menu .side-menu-list .lbl {
    color: #838383;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .fa,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .lbl,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .lbl {
    color: #454545;
}

.theme-rebecca-purple .side-menu .side-menu-list a:hover .fa.active:after,
.theme-rebecca-purple .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #f4f4f4 !important;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #bbb;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.with-sub>span:hover:before {
    border-top-color: #999;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.opened {
    background: #f4f4f4;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #f4f4f4;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #cbcdd0 !important;
}

.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-rebecca-purple .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #cbcdd0 !important;
}

.theme-rebecca-purple .side-menu .side-menu-list .fa,
.theme-rebecca-purple .side-menu .side-menu-list .font-icon,
.theme-rebecca-purple .side-menu .side-menu-list .glyphicon {
    color: #838383;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-picton-blue .side-menu .side-menu-list a:hover,
.theme-picton-blue .side-menu .side-menu-list>li>span:hover {
    background-color: #eff6fc;
}

.theme-picton-blue .side-menu .side-menu-list a:hover .fa.active:after,
.theme-picton-blue .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-picton-blue .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-picton-blue .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-picton-blue .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-picton-blue .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #eff6fc !important;
}

.theme-picton-blue .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #5fa7e7;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened>span:before,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.with-sub>span:before {
    border-top-color: #9ba1a4;
}

.theme-picton-blue .side-menu .side-menu-list>li.opened {
    background: #eff6fc;
}

.theme-picton-blue .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-picton-blue .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-picton-blue .side-menu .side-menu-list>li.opened .glyphicon.active:after {
    border-color: #eff6fc;
}

.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub a .lbl,
.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub>span .lbl {
    color: #818181;
}

.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #d1e5f8 !important;
}

.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub a:hover .lbl,
.theme-picton-blue .side-menu .side-menu-list>li.opened.with-sub>span:hover .lbl {
    color: #454545;
}

.theme-picton-blue .side-menu .side-menu-list .fa,
.theme-picton-blue .side-menu .side-menu-list .font-icon,
.theme-picton-blue .side-menu .side-menu-list .glyphicon {
    color: #5fa7e7;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.theme-picton-blue-white-ebony .side-menu {
    background: #263238;
    border-right-color: transparent;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover {
    background-color: #374248;
}

.theme-picton-blue-white-ebony .side-menu .jspDrag {
    border-color: #263238;
    background-color: #374248;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list .lbl {
    color: #929fa6;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .fa,
.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .font-icon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .glyphicon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .lbl,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .fa,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .font-icon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .glyphicon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .lbl,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .fa,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .font-icon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .glyphicon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .lbl {
    color: #fff;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .fa.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .font-icon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list a:hover .glyphicon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .fa.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .font-icon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li>span:hover .glyphicon.active:after {
    border-color: #374248 !important;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .fa.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .font-icon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .glyphicon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened .tag-color.active:after {
    border-color: #374248;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub a:hover,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub>span:hover {
    background-color: #2d383e !important;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub a:hover .fa.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub a:hover .font-icon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub a:hover .glyphicon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub>span:hover .fa.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub>span:hover .font-icon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list>li.opened.with-sub>span:hover .glyphicon.active:after {
    border-color: #2d383e !important;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list .fa.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list .font-icon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list .glyphicon.active:after,
.theme-picton-blue-white-ebony .side-menu .side-menu-list .tag-color.active:after {
    border-color: #263238;
}

.theme-picton-blue-white-ebony .side-menu .side-menu-list .fa,
.theme-picton-blue-white-ebony .side-menu .side-menu-list .font-icon,
.theme-picton-blue-white-ebony .side-menu .side-menu-list .glyphicon {
    color: #929fa6;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.table-responsive {
    display: block;
    width: 100%;
    min-height: .01%;
    overflow-x: auto;
}

.bootstrap-table .table,
.fixed-table-body .table,
.table {
    font-size: .9375rem;
    margin-bottom: 0;
}

.bootstrap-table .table td,
.bootstrap-table .table th,
.fixed-table-body .table td,
.fixed-table-body .table th,
.table td,
.table th {
    vertical-align: middle;
    border-top-color: #d8e2e7;
    padding: 11px 10px 10px;
}

.bootstrap-table .table td,
.fixed-table-body .table td,
.table td {
    height: 50px;
}

.bootstrap-table .table thead th,
.fixed-table-body .table thead th,
.table thead th {
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 9px;
    background: #f6f8fa;
}

.bootstrap-table .table thead th.table-check .checkbox,
.fixed-table-body .table thead th.table-check .checkbox,
.table thead th.table-check .checkbox {
    top: -2px;
}

.bootstrap-table .table .table-check,
.fixed-table-body .table .table-check,
.table .table-check {
    width: 30px;
    padding-right: 0;
    padding-left: 15px;
    padding-top: 10px;
}

.bootstrap-table .table .table-check .checkbox,
.fixed-table-body .table .table-check .checkbox,
.table .table-check .checkbox {
    float: right;
    top: -1px;
}

.bootstrap-table .table .table-date,
.fixed-table-body .table .table-date,
.table .table-date {
    text-align: right;
    white-space: nowrap;
    width: 10px;
    color: #919fa9;
}

.bootstrap-table .table .table-date .font-icon,
.fixed-table-body .table .table-date .font-icon,
.table .table-date .font-icon {
    vertical-align: middle;
    margin: 0 0 0 3px;
    position: relative;
    top: 1px;
    font-size: .875rem;
}

.bootstrap-table .table .table-photo,
.fixed-table-body .table .table-photo,
.table .table-photo {
    padding-right: 15px;
    width: 22px;
    padding-top: 10px;
}

.bootstrap-table .table .table-photo img,
.fixed-table-body .table .table-photo img,
.table .table-photo img {
    display: block;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.bootstrap-table .table .table-icon-cell,
.fixed-table-body .table .table-icon-cell,
.table .table-icon-cell {
    color: #919fa9;
}

.bootstrap-table .table .table-icon-cell .font-icon,
.fixed-table-body .table .table-icon-cell .font-icon,
.table .table-icon-cell .font-icon {
    position: relative;
}

.bootstrap-table .table td.table-icon-cell,
.fixed-table-body .table td.table-icon-cell,
.table td.table-icon-cell {
    padding-bottom: 10px;
}

.bootstrap-table .table td.table-icon-cell .font-icon,
.fixed-table-body .table td.table-icon-cell .font-icon,
.table td.table-icon-cell .font-icon {
    top: 1px;
}

.bootstrap-table .table th.table-icon-cell .font-icon,
.fixed-table-body .table th.table-icon-cell .font-icon,
.table th.table-icon-cell .font-icon {
    top: 2px;
}

.bootstrap-table .table a,
.fixed-table-body .table a,
.table a {
    border-bottom: solid 1px rgba(0, 130, 198, .5);
    position: relative;
    top: -1px;
}

.bootstrap-table .table a:hover,
.fixed-table-body .table a:hover,
.table a:hover {
    border-bottom-color: transparent;
}

.table td {
    padding-bottom: 8px;
}

.table.font-16 {
    font-size: 1rem;
}

.table-hover tbody tr:hover {
    background: #fbfcfd;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: 0 0;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #fbfcfd;
}

.table-active,
.table-active>td,
.table-active>th {
    background-color: #ecf2f5;
}

.table-success,
.table-success>td,
.table-success>th {
    background-color: #edf9ee;
}

.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #fdf4e6;
}

.table-danger,
.table-danger>td,
.table-danger>th {
    background-color: #feecec;
}

.table-info,
.table-info>td,
.table-info>th {
    background-color: #e4f6fe;
}

.table-hover .table-active:hover,
.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: #dbe7ec;
}

.table-hover .table-success:hover,
.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #daf3dc;
}

.table-hover .table-warning:hover,
.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #fbeace;
}

.table-hover .table-danger:hover,
.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #fdd4d4;
}

.table-hover .table-info:hover,
.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #cbeefd;
}

@media print {
    body {
        background: #fff !important;
    }
    .side-menu,
    .site-header {
        display: none;
    }
    .page-content {
        padding: 15px 0;
    }
    .dark-theme .page-content {
        padding-top: 15px;
    }
    .with-side-menu .page-content {
        padding-left: 255px;
        margin-left: -255px;
    }
    /*.with-side-menu-compact .page-content {
        padding-left: 115px;
        margin-left: -115px;
    }*/
    .with-side-menu-addl .page-content {
        padding-left: 335px;
        margin-left: -335px;
    }
    .box-typical {
        padding: 0 !important;
        border: none !important;
    }
    .row>div {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }
}

@media print and (max-width:991px) {
    .with-side-menu .page-content,
    .with-side-menu-addl .page-content,
    .with-side-menu-compact .page-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.cstm-player {
    line-height: normal;
    margin: 0 0 30px;
    zoom: 1;
}

.cstm-player:after,
.cstm-player:before {
    content: " ";
    display: table;
}

.cstm-player:after {
    clear: both;
}

.cstm-player .cstm-player-video {
    position: relative;
}

.cstm-player .cstm-player-video img {
    display: block;
    width: 100%;
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
}

.cstm-player .cstm-player-video .hover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.cstm-player .cstm-player-video .hover .font-icon-play {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 2.5rem;
    line-height: 1;
    margin: -20px 0 0 -13px;
}

.cstm-player .cstm-player-inner {
    background: #fff;
    position: relative;
    border: 1px solid #d8e2e7;
}

.cstm-player .cstm-player-volume {
    margin: 0 auto;
    height: 10px;
    width: 100%;
    max-width: 320px;
    background: #eceff4;
    -webkit-border-radius: 25rem;
    border-radius: 25rem;
    position: relative;
}

.cstm-player .cstm-player-volume .handle {
    width: 28px;
    height: 28px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -14px;
    margin-top: -14px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2), 0 3px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 3px rgba(0, 0, 0, .2), 0 3px 1px rgba(0, 0, 0, .1);
}

.cstm-player .cstm-player-album {
    color: #6c7a86;
}

.cstm-player .cstm-player-controls {
    text-align: center;
    line-height: 1;
}

.cstm-player .cstm-player-controls .font-icon {
    cursor: pointer;
    color: #d8e2e7;
    vertical-align: middle;
}

.cstm-player .cstm-player-controls .font-icon:hover {
    color: #00a8ff;
}

.cstm-player.cstm-player-big .cstm-player-inner {
    border-top: none;
    -webkit-border-radius: 0 0 .25rem .25rem;
    border-radius: 0 0 .25rem .25rem;
    padding: 20px 10px 40px;
    text-align: center;
}

.cstm-player.cstm-player-big .cstm-player-inner .time {
    font-size: .875rem;
    color: #6c7a86;
    position: absolute;
    top: 8px;
}

.cstm-player.cstm-player-big .cstm-player-inner .time.time-left {
    left: 10px;
}

.cstm-player.cstm-player-big .cstm-player-inner .time.time-right {
    right: 10px;
}

.cstm-player.cstm-player-big .cstm-player-singer {
    font-size: 1.75rem;
    margin: 0 0 6px;
}

.cstm-player.cstm-player-big .cstm-player-song {
    font-size: 1.25rem;
    margin: 0 0 8px;
}

.cstm-player.cstm-player-big .cstm-player-controls {
    font-size: 2.5rem;
    padding: 20px 0;
}

.cstm-player.cstm-player-big .cstm-player-controls .font-icon.font-icon-play-circle {
    font-size: 6rem;
    margin: 0 1rem;
}

.cstm-player.cstm-player-small .cstm-player-preview {
    float: left;
    width: 147px;
    position: relative;
    z-index: 5;
}

.cstm-player.cstm-player-small .cstm-player-preview:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    -webkit-border-radius: .25rem 0 0;
    border-radius: .25rem 0 0;
}

.cstm-player.cstm-player-small .cstm-player-preview img {
    display: block;
    width: 100%;
    -webkit-border-radius: .25rem 0 0;
    border-radius: .25rem 0 0;
}

.cstm-player.cstm-player-small .cstm-player-inner {
    float: right;
    width: 100%;
    margin-left: -147px;
    border-left: none;
    border-bottom: none;
    -webkit-border-radius: 0 .25rem 0 0;
    border-radius: 0 .25rem 0 0;
}

.cstm-player.cstm-player-small .cstm-player-inner-in {
    margin-left: 167px;
    height: 97px;
    overflow: hidden;
}

.cstm-player.cstm-player-small .cstm-player-controls {
    width: 135px;
    float: right;
    position: relative;
    z-index: 5;
    font-size: 1.25rem;
    line-height: 100px;
}

.cstm-player.cstm-player-small .cstm-player-controls .font-icon.font-icon-play-circle {
    font-size: 3.125rem;
    margin: 0 5px;
}

.cstm-player.cstm-player-small .cstm-player-info {
    float: left;
    width: 100%;
    margin-right: -135px;
}

.cstm-player.cstm-player-small .cstm-player-info-in {
    margin-right: 135px;
    padding: 12px 0 0;
}

.cstm-player.cstm-player-small .cstm-player-album,
.cstm-player.cstm-player-small .cstm-player-singer,
.cstm-player.cstm-player-small .cstm-player-song {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    line-height: 24px;
}

.cstm-player.cstm-player-small .cstm-player-singer {
    font-weight: 600;
}

.cstm-player.cstm-player-small .cstm-player-album,
.cstm-player.cstm-player-small .cstm-player-song {
    font-size: .875rem;
}

.cstm-video-player {
    margin: 0 0 30px;
    height: 320px;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    background: 50% 50% no-repeat #000;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

.cstm-video-player .cstm-video-player-controls {
    height: 75px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-border-radius: 0 0 .25rem .25rem;
    border-radius: 0 0 .25rem .25rem;
    background: url(../img/player-controls.png) bottom repeat-x;
    -o-background-size: 2px 75px;
    background-size: 2px 75px;
    padding: 32px 10px 0;
    z-index: 5;
}

.cstm-video-player .cstm-video-player-controls-left,
.cstm-video-player .cstm-video-player-controls-right {
    zoom: 1;
    padding: 5px;
}

.cstm-video-player .cstm-video-player-controls-left:after,
.cstm-video-player .cstm-video-player-controls-left:before,
.cstm-video-player .cstm-video-player-controls-right:after,
.cstm-video-player .cstm-video-player-controls-right:before {
    content: " ";
    display: table;
}

.cstm-video-player .cstm-video-player-controls-left:after,
.cstm-video-player .cstm-video-player-controls-right:after {
    clear: both;
}

.cstm-video-player .cstm-video-player-controls-left {
    float: left;
}

.cstm-video-player .cstm-video-player-controls-right {
    float: right;
}

.cstm-video-player .cstm-video-player-btn {
    float: left;
    width: 36px;
    height: 32px;
    border: none;
    background: 0 0;
    color: #fff;
    text-align: center;
}

.cstm-video-player .cstm-video-player-btn:hover {
    color: #00a8ff;
}

.cstm-video-player .cstm-video-player-btn .font-icon {
    position: relative;
    top: 1px;
}

.cstm-video-player .cstm-video-player-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    color: #fff;
}

.cstm-video-player .cstm-video-player-hover .font-icon {
    font-size: 2.625rem;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -40px 0 0 -16px;
    cursor: pointer;
}

.cstm-video-player .cstm-video-player-hover .font-icon:hover {
    color: #00a8ff;
}

.minimalistic-player {
    position: relative;
    padding: 0 85px 0 0;
}

.minimalistic-player .minimalistic-player-header {
    margin: 0 0 5px;
}

.minimalistic-player .minimalistic-player-header .tbl-cell {
    vertical-align: top;
}

.minimalistic-player .minimalistic-player-header .tbl-cell-action {
    padding-right: 8px;
    width: 5px;
}

.minimalistic-player .minimalistic-player-header .tbl-cell-action button {
    border: none;
    background: 0 0;
    color: #adb7be;
    position: relative;
    top: 1px;
}

.minimalistic-player .minimalistic-player-header .tbl-cell-action button:hover {
    color: #00a8ff;
}

.minimalistic-player .minimalistic-player-header .tbl-cell-caption {
    padding-left: 4px;
}

.minimalistic-player .minimalistic-player-header .tbl-cell-time {
    text-align: right;
    white-space: nowrap;
    width: 20px;
    padding-left: 10px;
    color: #919fa9;
}

.steps-numeric-block .steps-numeric-header {
    border-bottom: solid 1px #d8e2e7;
    text-align: center;
}

.steps-numeric-block .steps-numeric-header-in {
    color: #919fa9;
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 -2px;
}

.steps-numeric-block .steps-numeric-header-in ul {
    display: table-row;
    list-style: none;
}

.steps-numeric-block .steps-numeric-header-in li {
    display: table-cell;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    padding: 0 10px;
}

.steps-numeric-block .steps-numeric-header-in .item {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    font-size: 1rem;
    border-bottom: solid 2px transparent;
}

.steps-numeric-block .steps-numeric-header-in .num {
    border: 1px solid #919fa9;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 22px;
    position: relative;
    top: -1px;
    margin: 0 4px 0 0;
}

.steps-numeric-block .steps-numeric-header-in .active {
    color: #0082c6;
}

.steps-numeric-block .steps-numeric-header-in .active .item {
    border-bottom-color: #0082c6;
}

.steps-numeric-block .steps-numeric-header-in .active .num {
    border-color: #0082c6;
}

.steps-numeric-block .steps-numeric-inner {
    padding: 30px 20px 25px;
}

.steps-numeric-block .steps-numeric-inner .form-control {
    width: 100%;
    max-width: 280px;
}

.steps-numeric-block .steps-numeric-title {
    font-size: 1.25rem;
    margin: 0 0 20px;
}

.steps-numeric-block .steps-numeric-footer {
    border-top: solid 1px #d8e2e7;
    text-align: center;
    line-height: 50px;
    font-weight: 600;
}

.steps-numeric-block .steps-numeric-footer .tbl-cell {
    border-left: solid 1px #d8e2e7;
    padding: 0 20px;
}

.steps-numeric-block .steps-numeric-footer .tbl-cell:first-child {
    border-left: none;
}

.steps-numeric-block .steps-numeric-footer a {
    color: #6c7a86;
}

.steps-icon-block {
    padding: 30px 20px 25px;
    text-align: center;
    zoom: 1;
}

.steps-icon-block:after {
    clear: both;
}

.steps-icon-block .steps-numeric-title {
    font-size: 1.25rem;
    margin: 0 0 15px;
}

.steps-icon-block .form-control {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.steps-icon-block .btn {
    min-width: 100px;
    margin: 14px 5px 5px;
}

.card-typical {
    background: #fff;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}

.card-typical p {
    margin: 0;
}

.card-typical .card-typical-section {
    padding: 15px;
    border-top: solid 1px #d8e2e7;
    zoom: 1;
}

.card-typical .card-typical-section:after,
.card-typical .card-typical-section:before {
    content: " ";
    display: table;
}

.card-typical .card-typical-section:after {
    clear: both;
}

.card-typical .card-typical-section:first-child {
    border-top: none;
}

.card-typical .card-typical-content {
    font-size: .875rem;
}

.card-typical .card-typical-content .photo {
    margin: -10px -10px 15px;
}

.card-typical .card-typical-content .photo img {
    display: block;
    width: 100%;
}

.card-typical .card-typical-content .title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 5px;
}

.card-typical .card-typical-content .title a:hover {
    color: #00a8ff;
}

.card-typical .card-typical-likes,
.card-typical .card-typical-linked {
    color: #919fa9;
    line-height: 1rem;
    font-size: .875rem;
}

.card-typical .card-typical-linked {
    float: left;
}

.card-typical .card-typical-likes {
    float: right;
}

.card-typical .card-typical-likes .font-icon {
    margin: 0 2px 0 0;
    vertical-align: middle;
    font-size: .875rem;
}

.card-typical .card-typical-likes:hover {
    color: #00a8ff;
}

.cards-grid .card-typical {
    margin: 0 15px 30px;
}

.cards-grid[data-columns]::before {
    content: '3 .column.size-1of3';
}

.cards-grid .column {
    float: left;
}

.cards-grid .size-1of4 {
    width: 25%;
}

.cards-grid .size-1of3 {
    width: 33.333%;
}

.cards-grid .size-1of2 {
    width: 50%;
}

@media screen and (max-width:520px) {
    .cards-grid[data-columns]::before {
        content: '1 .column';
    }
}

@media screen and (min-width:521px) and (max-width:767px) {
    .cards-grid[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width:768px) and (max-width:1300px) {
    .cards-grid[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width:1301px) {
    .cards-grid[data-columns]::before {
        content: '4 .column.size-1of4';
    }
}

.chart-statistic-box .chart-container .chart-container-x:after,
.chart-statistic-box .chart-container .chart-container-x:before,
.chart-statistic-box:after,
.chart-statistic-box:before {
    content: " ";
    display: table;
}

.statistic-box {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    background: 50% 50% no-repeat;
    -o-background-size: cover;
    background-size: cover;
    margin: 0 0 30px;
}

.statistic-box.red {
    background-color: #fa424a;
    background-image: url(../img/statistic-box-red.png);
}

.statistic-box.purple {
    background-color: #ac6bec;
    background-image: url(../img/statistic-box-purple.png);
}

.statistic-box.yellow {
    background-color: #fdad2a;
    background-image: url(../img/statistic-box-yellow.png);
}

.statistic-box.green {
    background-color: #46c35f;
    background-image: url(../img/statistic-box-green.png);
}

.statistic-box>div {
    -webkit-border-radius: inherit;
    border-radius: inherit;
    height: 142px;
    background: url(../img/statistic-box-grid.png) 50% 0;
    -o-background-size: 21px 20px;
    background-size: 21px 20px;
    position: relative;
}

.statistic-box .number {
    font-size: 3.125rem;
    line-height: 1;
    padding: 32px 0 0;
}

.statistic-box .caption {
    font-size: 1.0625rem;
    font-weight: 600;
    position: relative;
    min-height: 35px;
    line-height: 1;
}

.statistic-box .caption>div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
}

.statistic-box .percent {
    position: absolute;
    right: 10px;
    bottom: 8px;
    text-align: center;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 1;
}

.statistic-box .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 8px;
    border-color: transparent transparent #fff;
    margin: 0 0 2px;
}

.statistic-box .arrow.up {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.statistic-box .arrow.down {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.chart-statistic-box {
    zoom: 1;
    margin: 0 0 30px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}

.chart-statistic-box:after {
    clear: both;
}

.chart-statistic-box .chart-txt {
    float: left;
    width: 200px;
    height: 314px;
    padding: 15px 20px;
    background: #304b58;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    color: #fff;
    position: relative;
    z-index: 5;
}

.chart-statistic-box .chart-txt p {
    margin: 0;
}

.chart-statistic-box .chart-txt .chart-txt-top {
    text-align: center;
    margin: 0 0 10px;
}

.chart-statistic-box .chart-txt .chart-txt-top .number,
.chart-statistic-box .chart-txt .chart-txt-top .unit {
    vertical-align: middle;
}

.chart-statistic-box .chart-txt .chart-txt-top .unit {
    font-weight: 300;
    font-size: 1.25rem;
    color: #929faa;
    margin: 0 .3em 0 0;
    position: relative;
    top: -.2em;
}

.chart-statistic-box .chart-txt .chart-txt-top .number {
    font-size: 2.125rem;
}

.chart-statistic-box .chart-txt .chart-txt-top .caption {
    font-weight: 600;
}

.chart-statistic-box .chart-txt .color-purple {
    color: #b982ef !important;
}

.chart-statistic-box .chart-txt .tbl-data {
    width: 100%;
    position: absolute;
    bottom: 15px;
}

.chart-statistic-box .chart-txt .tbl-data td {
    vertical-align: top;
    padding: 5px 0;
}

.chart-statistic-box .chart-txt .tbl-data .price {
    white-space: nowrap;
    width: 20px;
    padding-right: 10px;
    font-weight: 600;
}

.chart-statistic-box .chart-container {
    float: right;
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    background: #00a8ff;
    color: #fff;
    margin-left: -200px;
}

.chart-statistic-box .chart-container .chart-container-in {
    margin-left: 200px;
    position: relative;
}

.chart-statistic-box .chart-container .chart-container-title {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 1.0625rem;
    z-index: 20;
    color: #fff;
}

.chart-statistic-box .chart-container .chart-container-x,
.chart-statistic-box .chart-container .chart-container-y {
    font-size: .6875rem;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    z-index: 20;
}

.chart-statistic-box .chart-container .chart-container-x {
    left: 0;
    top: 19px;
    width: 100%;
    text-align: center;
    zoom: 1;
}

.chart-statistic-box .chart-container .chart-container-x:after {
    clear: both;
}

.chart-statistic-box .chart-container .chart-container-x .item {
    float: left;
    width: 12.5%;
    min-height: 5px;
}

.chart-statistic-box .chart-container .chart-container-x .item:first-child,
.chart-statistic-box .chart-container .chart-container-x .item:last-child {
    width: 6%;
}

.chart-statistic-box .chart-container .chart-container-y {
    right: 22px;
    bottom: 0;
    text-align: right;
    line-height: 22px;
}

.chart-statistic-box .chart-container .chart-container-y .item {
    height: 22.4px;
}

.chart-statistic-box .google-visualization-tooltip {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: 0 0 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    margin-left: -35px;
}

@media (max-width:1367px) {
    .chart-statistic-box .chart-txt {
        width: 170px;
    }
    .chart-statistic-box .chart-container {
        margin-left: -170px;
    }
    .chart-statistic-box .chart-container .chart-container-in {
        margin-left: 170px;
    }
}

@media (max-width:767px) {
    .chart-statistic-box .chart-txt {
        float: none;
        width: auto;
        height: auto;
        margin: 0 0 15px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
    }
    .chart-statistic-box .chart-txt .tbl-data {
        position: static;
    }
    .chart-statistic-box .chart-container {
        float: none;
        width: auto;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        margin: 0;
    }
    .chart-statistic-box .chart-container .chart-container-in {
        margin: 0;
    }
}

.box-typical {
    background: #fff;
    padding: 20px;
    /*    margin: 0 0 20px;
*/
}

.box-typical .box-typical-header {
    display: table;
    width: 100%;
}

.box-typical .box-typical-header.box-typical-header-bordered {
    border-bottom: solid 1px #d8e2e7;
}

.box-typical .box-typical-header .tbl-cell {
    vertical-align: middle;
    padding: 15px;
}

.box-typical .box-typical-header .tbl-cell.tbl-cell-title {
    padding-right: 0;
}

.box-typical .box-typical-header .tbl-cell.tbl-cell-title h1,
.box-typical .box-typical-header .tbl-cell.tbl-cell-title h2,
.box-typical .box-typical-header .tbl-cell.tbl-cell-title h3,
.box-typical .box-typical-header .tbl-cell.tbl-cell-title h4,
.box-typical .box-typical-header .tbl-cell.tbl-cell-title h5,
.box-typical .box-typical-header .tbl-cell.tbl-cell-title h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 1px 0;
}

.box-typical .box-typical-header .tbl-cell.tbl-cell-actions {
    text-align: right;
    white-space: nowrap;
    padding-top: 18px;
    padding-left: 0;
}

.box-typical .box-typical-header .tbl-cell.tbl-cell-action-bordered {
    border-left: solid 1px #d8e2e7;
    text-align: center;
    width: 54px;
    padding-top: 17px;
}

.box-typical .box-typical-header .tbl-cell.tbl-cell-action-bordered .action-btn {
    margin: 0;
}

.box-typical .box-typical-header .action-btn {
    display: inline-block;
    vertical-align: top;
    color: #adb7be;
    border: none;
    background: 0 0;
    font-size: 1rem;
    margin: 0 0 0 10px;
    line-height: 18px;
}

.box-typical .box-typical-header .action-btn .font-icon {
    vertical-align: middle;
}

.box-typical .box-typical-header .action-btn .font-icon.font-icon-minus {
    position: relative;
    top: 1px;
}

.box-typical .box-typical-header .action-btn:hover {
    color: #00a8ff;
}

.box-typical .box-typical-header-sm {
    padding: 12px 15px;
    font-weight: 600;
    position: relative;
}

.box-typical .box-typical-header-sm.bordered {
    border-bottom: solid 1px #d8e2e7;
}

.box-typical .box-typical-header-sm .slider-arrs {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -12px;
    zoom: 1;
}

.box-typical .box-typical-header-sm .slider-arrs:after,
.box-typical .box-typical-header-sm .slider-arrs:before {
    content: " ";
    display: table;
}

.box-typical .box-typical-header-sm .slider-arrs:after {
    clear: both;
}

.box-typical .box-typical-header-sm .slider-arrs button {
    float: left;
    font-size: 1rem;
    margin: 0 0 0 15px;
    border: none;
    background: 0 0;
    color: #c5d6de;
    height: 24px;
    line-height: 24px;
    padding: 0;
}

.box-typical .box-typical-header-sm .slider-arrs button:hover {
    color: #00a8ff;
}

.box-typical .box-typical-header-sm .slider-arrs button .font-icon {
    vertical-align: middle;
    line-height: inherit;
}

.box-typical .box-typical-footer {
    background: #fbfcfd;
    padding: 12px 15px;
    border-top: solid 1px #d8e2e7;
}

.box-typical .box-typical-footer:last-child {
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.box-typical .box-typical-footer .tbl-cell {
    vertical-align: middle;
}

.box-typical .box-typical-footer .tbl-cell-action {
    white-space: nowrap;
    width: 20px;
    padding-left: 15px;
}

.box-typical .box-typical-footer .btn-icon {
    border: none;
    background: 0 0;
    color: #919fa9;
    margin: 0 12px 0 0;
    position: relative;
    top: 2px;
}

.box-typical .box-typical-footer .btn-icon:hover {
    color: #00a8ff;
}

.box-typical .box-typical-section {
    padding: 15px 15px 15px 0;
}

.box-typical .box-typical-section:first-child,
.box-typical.box-typical-dashboard .box-typical-body .tbl-typical th {
    border-top: none;
}

.box-typical .box-typical-section .box-typical-header-sm {
    padding: 5px 0 15px;
}

.box-typical.box-typical-padding {
    padding: 20px 15px;
}

.box-typical.box-typical-max-280 .box-typical-header {
    border-bottom: solid 1px #d8e2e7;
    margin-bottom: -1px;
}

.box-typical.box-typical-max-280 .box-typical-body {
    overflow: auto;
    height: 280px;
}

.box-typical.box-typical-dashboard {
    height: 284px;
    margin: 0 0 30px;
    overflow: hidden;
}

.box-typical.box-typical-dashboard .box-typical-header {
    border-bottom: solid 1px #d8e2e7;
}

.box-typical.box-typical-dashboard .box-typical-body {
    overflow: auto;
}

.box-typical.box-typical-full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 0 0 20px;
}

.box-typical.box-typical-full-screen .box-typical-header {
    position: relative;
    z-index: 110;
}

.box-typical.box-typical-full-screen .box-typical-header .tbl-cell.tbl-cell-title h1,
.box-typical.box-typical-full-screen .box-typical-header .tbl-cell.tbl-cell-title h2,
.box-typical.box-typical-full-screen .box-typical-header .tbl-cell.tbl-cell-title h3,
.box-typical.box-typical-full-screen .box-typical-header .tbl-cell.tbl-cell-title h4,
.box-typical.box-typical-full-screen .box-typical-header .tbl-cell.tbl-cell-title h5,
.box-typical.box-typical-full-screen .box-typical-header .tbl-cell.tbl-cell-title h6 {
    font-size: 1.5rem;
}

.box-typical.box-typical-full-screen .tbl-typical td,
.box-typical.box-typical-full-screen .tbl-typical th,
.comment-item {
    font-size: .9375rem;
}

.box-typical.box-typical-full-screen .box-typical-header .action-btn .font-icon-expand:before {
    content: "\73";
}

.box-typical.box-typical-collapsed {
    height: auto;
}

.box-typical.box-typical-collapsed .box-typical-header {
    border-bottom-color: transparent;
}

.box-typical.box-typical-collapsed .box-typical-body {
    display: none;
}

.box-typical.box-typical-collapsed .box-typical-header .action-btn .font-icon-minus:before {
    content: "\e07a";
}

.dashboard-sortable .box-typical-header {
    cursor: move;
}

.box-typical-upload {
    height: 314px;
}

.box-typical-upload .box-typical-upload-in {
    padding: 10px;
}

.box-typical-upload .drop-zone {
    width: auto;
    margin-bottom: 1rem;
    height: auto;
    padding-bottom: 1rem;
}

.comment-item {
    padding: 15px;
    border-top: solid 1px #d8e2e7;
}

.comment-item:first-child {
    border-top: none;
}

.comment-item p {
    margin: 0;
}

.comment-item .user-card-row {
    margin: 0 0 12px;
    font-size: .9375rem;
}

.comment-item .comment-item-txt {
    line-height: 1.4;
}

.comment-item .comment-item-meta {
    padding: 10px 0 5px;
    zoom: 1;
}

.comment-item .comment-item-meta:after,
.comment-item .comment-item-meta:before {
    content: " ";
    display: table;
}

.comment-item .comment-item-meta:after {
    clear: both;
}

.comment-item .comment-item-meta a,
.comment-item .comment-item-meta button {
    float: left;
    border: none;
    background: 0 0;
    margin: 0 15px 0 0;
    color: #adb7be;
    font-size: 1rem;
}

.comment-item .comment-item-meta a:hover,
.comment-item .comment-item-meta button:hover {
    color: #00a8ff;
}

.comment-item .comment-item-meta a.star.active,
.comment-item .comment-item-meta a.star:hover,
.comment-item .comment-item-meta button.star.active,
.comment-item .comment-item-meta button.star:hover {
    color: #f18482;
}

.box-typical-full-screen .comment-item .comment-item-txt {
    font-size: 1rem;
}

.contact-row-list .contact-row:nth-child(odd) {
    background: #fbfcfd;
}

.contact-row {
    padding: 15px 20px 15px 15px;
    color: #6c7a86;
    line-height: 1.2;
}

.box-typical-full-screen .contact-row {
    padding-top: 20px;
    padding-bottom: 20px;
}

.contact-row .user-card-row {
    font-size: .9375rem;
}

.widget {
    margin: 0 0 30px;
}

.widget-header-dark {
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    background: #323a44;
    color: #fff;
    font-weight: 600;
    padding: .75rem 1rem;
    text-align: center;
}

.widget-header-dark.with-btn {
    text-align: left;
    position: relative;
    padding-right: 55px;
}

.widget-header-dark .widget-header-btn {
    display: block;
    width: 46px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #21262c;
    border: none;
    -webkit-border-radius: 0 .25rem 0 0;
    border-radius: 0 .25rem 0 0;
    color: #919fa9;
}

.widget-header-dark .widget-header-btn:hover {
    color: #fff;
}

.widget-header-dark .widget-header-btn .font-icon {
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.widget-tabs-content {
    background: #fff;
    border: 1px solid #d8e2e7;
    border-top: none;
    border-bottom: none;
    min-height: 230px;
    padding: 30px 0 0;
}

.widget-tabs-nav {
    display: table;
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.widget-tabs-nav .nav-item {
    display: table-cell;
}

.widget-tabs-nav .nav-link {
    display: block;
    height: 94px;
    position: relative;
    background: #fbfcfd;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
}

.widget-tabs-nav .nav-link:hover {
    background-color: #f6f8fa;
}

.widget-tabs-nav .nav-link.active {
    cursor: default;
}

.widget-tabs-nav .nav-item:first-child .nav-link {
    -webkit-border-bottom-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.widget-tabs-nav .nav-item:last-child .nav-link {
    -webkit-border-bottom-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.widget-tabs-nav .font-icon {
    display: block;
    height: 64px;
    overflow: hidden;
    line-height: 70px;
    font-size: 1.875rem;
}

.widget-tabs-nav.bordered .nav-link {
    border: 1px solid #d8e2e7;
    border-left: none;
    border-top: none;
    color: #919fa9;
}

.widget-tabs-nav.bordered .nav-link:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    border-top: solid 1px #d8e2e7;
}

.widget-tabs-nav.bordered .nav-link.active {
    background-color: #fff;
    color: #ac6bec;
}

.widget-tabs-nav.bordered .nav-link.active:before {
    display: none;
}

.widget-tabs-nav.bordered .nav-item:first-child .nav-link {
    border-left: solid 1px #d8e2e7;
}

.widget-tabs-nav.colored .nav-link {
    color: #fff;
}

.widget-tabs-nav.colored .nav-link.green {
    background-color: #46c35f;
}

.widget-tabs-nav.colored .nav-link.green.active,
.widget-tabs-nav.colored .nav-link.green:hover {
    background-color: #3bb553;
}

.widget-tabs-nav.colored .nav-link.blue {
    background-color: #00a8ff;
}

.widget-tabs-nav.colored .nav-link.blue.active,
.widget-tabs-nav.colored .nav-link.blue:hover {
    background-color: #0097e6;
}

.widget-tabs-nav.colored .nav-link.orange {
    background-color: #fdad2a;
}

.widget-tabs-nav.colored .nav-link.orange.active,
.widget-tabs-nav.colored .nav-link.orange:hover {
    background-color: #fda311;
}

.widget-tabs-nav.colored .nav-link.red {
    background-color: #fa424a;
}

.widget-tabs-nav.colored .nav-link.red.active,
.widget-tabs-nav.colored .nav-link.red:hover {
    background-color: #f92932;
}

.widget-tabs-compact .widget-tabs-content {
    min-height: 102px;
    border-top: solid 1px #d8e2e7;
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    padding: 18px;
}

.widget-tabs-compact .widget-tabs-nav .nav-link {
    height: 80px;
    font-size: .875rem;
}

.widget-tabs-compact .widget-tabs-nav .font-icon {
    font-size: 1.625rem;
    height: 48px;
    line-height: 60px;
}

.widget-simple-sm {
    border: 1px solid #d8e2e7;
    background: #fff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    text-align: center;
}

.widget-simple-sm .widget-simple-sm-icon {
    height: 80px;
    overflow: hidden;
    line-height: 80px;
    font-size: 2.75rem;
}

.widget-simple-sm .widget-simple-sm-icon .font-icon {
    position: relative;
    top: 5px;
}

.widget-simple-sm .widget-simple-sm-statistic {
    line-height: 1;
    padding: 15px 10px;
}

.widget-simple-sm .widget-simple-sm-statistic .number {
    font-weight: 600;
    font-size: 2em;
    margin: 0 0 6px;
    color: #65b32e;
}

.widget-simple-sm .widget-simple-sm-statistic .caption {
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.widget-simple-sm .widget-simple-sm-bottom {
    border-top: solid 1px #d8e2e7;
    /* background: #f6f8fa; */
    font-weight: 600;
    padding: 15px 10px;
    font-size: .9375rem;
    line-height: normal;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    max-width: 85%;
    margin: 0px auto;
}

.widget-simple-sm .widget-simple-sm-bottom a {
    color: #343434;
}

.widget-simple-sm .widget-simple-sm-bottom a:hover {
    color: #00a8ff;
}

.widget-simple-sm .widget-simple-sm-bottom.statistic {
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1rem;
}

.widget-simple-sm .widget-simple-sm-bottom.statistic strong {
    font-weight: 600;
}

.widget-simple-sm .widget-simple-sm-bottom.statistic .arrow {
    font-size: 1rem;
}

.widget-simple-sm-fill {
    color: #fff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    text-align: center;
    background: #00a8ff;
}

.widget-simple-sm-fill .widget-simple-sm-icon {
    height: 80px;
    overflow: hidden;
    line-height: 80px;
    font-size: 2.75rem;
}

.widget-simple-sm-fill .widget-simple-sm-icon .font-icon {
    position: relative;
    top: 17px;
}

.widget-simple-sm-fill .widget-simple-sm-fill-caption {
    font-weight: 600;
    font-size: .9375rem;
    line-height: normal;
    padding: 16px 10px 15px;
}

.widget-simple-sm-fill.red {
    background-color: #fa424a;
}

.widget-simple-sm-fill.green {
    background-color: #46c35f;
}

.widget-simple-sm-fill.orange {
    background-color: #fdad2a;
}

.widget-simple-sm-fill.purple {
    background-color: #ac6bec;
}

.widget-simple-sm-fill.grey {
    background-color: #adb7be;
}

.widget-time .widget-time-content {
    padding: .75rem .25rem 1rem;
    background: #fff;
    -webkit-border-radius: 0 0 .25rem .25rem;
    border-radius: 0 0 .25rem .25rem;
    border: 1px solid #d8e2e7;
    border-top: none;
    color: #323a44;
    text-align: center;
}

.widget-time .count-item {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    font-weight: 600;
}

.widget-weather .widget-weather-big:after,
.widget-weather .widget-weather-big:before,
.widget-weather .widget-weather-content:after,
.widget-weather .widget-weather-content:before {
    display: table;
    content: " ";
}

.widget-time .count-item.divider {
    padding: 0 10px;
    opacity: .5;
    font-size: 2.875rem;
}

.widget-time .count-item-number {
    font-size: 2.875rem;
}

.widget-time .count-item-caption {
    font-size: .75rem;
    text-transform: uppercase;
    padding: .25rem 0 0;
}

.widget-time.aquamarine .widget-time-content {
    color: #fff;
    background-color: #21a788;
    border-color: #21a788;
}

.widget-weather .widget-weather-big {
    height: 175px;
    background: #00a8ff;
    color: #fff;
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    text-align: center;
    overflow: hidden;
    zoom: 1;
}

.widget-weather .widget-weather-big:after {
    clear: both;
}

.widget-weather .widget-weather-big .icon {
    float: left;
    width: 60%;
    line-height: 174px;
    font-size: 6.875rem;
    padding: 0 0 0 5%;
}

.widget-weather .widget-weather-big .icon .font-icon {
    vertical-align: middle;
    position: relative;
    top: 2px;
}

.widget-weather .widget-weather-big .info {
    float: left;
    width: 40%;
    line-height: 1;
    padding: 48px 0 0;
}

.widget-weather .widget-weather-big .degrees {
    font-size: 3.5rem;
}

.widget-weather .widget-weather-big .weather {
    font-weight: 600;
    padding: 0 18px 0 0;
}

.widget-weather .widget-weather-content {
    background: #fff;
    border: 1px solid #d8e2e7;
    border-top: none;
    -webkit-border-radius: 0 0 .25rem .25rem;
    border-radius: 0 0 .25rem .25rem;
    zoom: 1;
}

.widget-weather .widget-weather-content:after {
    clear: both;
}

.widget-weather .widget-weather-item {
    text-align: center;
}

.widget-weather .widget-weather-item-time {
    white-space: nowrap;
    line-height: 42px;
}

.widget-weather .widget-weather-item-info {
    border-top: solid 1px #d8e2e7;
    line-height: 1;
    padding: 15px 0;
}

.widget-weather .widget-weather-item-info .font-icon {
    color: #00a8ff;
    font-size: 2.25rem;
    display: block;
    margin: 0 0 6px;
}

.widget-weather .slick-dots {
    background: #f6f8fa;
    border-top: solid 1px #d8e2e7;
    text-align: center;
    padding: 4px 0;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.widget-weather .slick-dots li {
    display: inline-block;
    padding: 6px 0;
}

.widget-weather .slick-dots button {
    border: none;
    background: #adb7be;
    width: 6px;
    height: 6px;
    overflow: hidden;
    text-indent: -1000px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 0 6px;
    line-height: 6px;
}

.widget-weather .slick-dots .slick-active button,
.widget-weather .slick-dots button:hover {
    background-color: #00a8ff;
}

.widget-accordion {
    background: #fff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    border: 1px solid #d8e2e7;
}

.widget-accordion .panel {
    border-top: solid 1px #d8e2e7;
}

.widget-accordion .panel:first-child {
    border-top: none;
}

.widget-accordion .panel:first-child .panel-heading a {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.widget-accordion .panel:last-child .panel-heading a {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.widget-accordion .panel-heading a {
    display: block;
    padding: 12px 44px 12px 15px;
    color: #343434;
    font-weight: 600;
    background: #fbfcfd;
    position: relative;
}

.widget-accordion .panel-heading a .font-icon {
    font-size: .75rem;
    height: 16px;
    line-height: 16px;
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
    color: #adb7be;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.widget-accordion .panel-heading a:hover {
    background: 0 0;
}

.widget-accordion .panel-heading a:hover .font-icon {
    color: #343434;
}

.widget-accordion .panel-heading a[aria-expanded=true] {
    background: 0 0;
    color: #0082c6;
}

.widget-accordion .panel-heading a[aria-expanded=true] .font-icon {
    color: #0082c6;
}

.widget-accordion .panel-collapse-in {
    padding: 0 15px 15px;
    font-size: .9375rem;
}

.widget-accordion .title {
    font-weight: 600;
    margin: 0 0 .25rem;
    font-size: 1rem;
}

.widget-accordion .user-card-row {
    margin: 0 0 1rem;
    font-size: .9375rem;
}

.widget-youtube {
    border: none;
    overflow: hidden;
    position: relative;
}

.widgets-header .tbl-outer>.tbl-row>.tbl-cell {
    border-left: solid 1px #d8e2e7;
    padding: 15px 30px;
}

.widgets-header .tbl-outer>.tbl-row>.tbl-cell:first-child {
    border-left: none;
    padding-left: 0;
}

.widgets-header .tbl-outer>.tbl-row>.tbl-cell:last-child {
    padding-right: 0;
}

.widgets-header .tbl-item {
    line-height: 1.25rem;
}

.widgets-header .tbl-item .tbl-cell {
    padding: 0;
}

.widgets-header .tbl-item .title {
    font-weight: 600;
    color: rgba(52, 52, 52, .8);
}

.widgets-header .tbl-item .amount {
    font-weight: 600;
    font-size: 1rem;
}

.widgets-header .tbl-item .amount-sm {
    color: #919fa9;
    font-size: .875rem;
}

@media (max-width:767px) {
    .widgets-header .tbl-outer,
    .widgets-header .tbl-outer>.tbl-row,
    .widgets-header .tbl-outer>.tbl-row>.tbl-cell {
        display: block;
    }
    .widgets-header .tbl-outer>.tbl-row>.tbl-cell {
        border-left: none;
        border-top: solid 1px #d8e2e7;
        padding-left: 0;
        padding-right: 0;
    }
}

.widget-user {
    background: #fff;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    border: 1px solid #d8e2e7;
    text-align: center;
}

.widget-user .widget-user-bg {
    height: 92px;
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    background: 50% 50% no-repeat;
    -o-background-size: cover;
    background-size: cover;
    margin: -1px -1px 0;
}

.widget-user .widget-user-photo {
    width: 110px;
    height: 110px;
    margin: -68px auto 10px;
    position: relative;
}

.widget-user .widget-user-photo img {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
}

.widget-user .widget-user-name {
    font-size: 1.375rem;
}

.widget-user .widget-user-name .font-icon {
    color: #f29824;
    font-size: 1.125rem;
    vertical-align: middle;
    margin: 0 0 0 3px;
    position: relative;
    top: 1px;
}

.widget-user .widget-user-stat {
    border-top: solid 1px #d8e2e7;
    zoom: 1;
    margin: 15px 0 0;
}

.widget-user .widget-user-stat:after,
.widget-user .widget-user-stat:before {
    content: " ";
    display: table;
}

.widget-user .widget-user-stat:after {
    clear: both;
}

.widget-user .widget-user-stat .item {
    float: left;
    width: 33.333333%;
    padding: 18px 5px 20px;
}

.widget-user .widget-user-stat .number {
    font-size: 1.375rem;
}

.widget-user .widget-user-stat .caption {
    color: #919fa9;
    font-size: .9375rem;
}

.widget-activity,
.widget-tasks {
    border: 1px solid #d8e2e7;
    background: #fff;
    padding: 0 0 5px;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
}

.widget-activity .widget-header,
.widget-tasks .widget-header {
    border-bottom: solid 1px #d8e2e7;
    padding: 12px 15px;
    font-weight: 600;
}

.widget-activity .widget-header .label,
.widget-tasks .widget-header .label {
    padding-right: .5em;
    padding-left: .5em;
    margin-left: 3px;
}

.widget-activity .widget-activity-item,
.widget-activity .widget-tasks-item,
.widget-tasks .widget-activity-item,
.widget-tasks .widget-tasks-item {
    padding: 12px 15px;
    position: relative;
}

.widget-activity .widget-activity-item .user-card-row,
.widget-activity .widget-tasks-item .user-card-row,
.widget-tasks .widget-activity-item .user-card-row,
.widget-tasks .widget-tasks-item .user-card-row {
    font-size: 1rem;
    line-height: 20px;
}

.widget-activity .widget-tasks-item,
.widget-tasks .widget-tasks-item {
    padding-right: 35px;
}

.widget-activity .widget-tasks-item:nth-child(odd),
.widget-tasks .widget-tasks-item:nth-child(odd) {
    background: #fbfcfd;
}

.widget-activity .widget-menu,
.widget-tasks .widget-menu {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -9px;
}

.widget-activity .widget-menu>button,
.widget-tasks .widget-menu>button {
    border: none;
    background: 0 0;
    padding: 0;
    color: #919fa9;
    font-size: 1.125rem;
    line-height: 1;
}

.widget-activity .widget-menu.open>button,
.widget-activity .widget-menu>button:hover,
.widget-tasks .widget-menu.open>button,
.widget-tasks .widget-menu>button:hover {
    color: #00a8ff;
}

.widget-activity .widget-activity-item,
.widget-tasks .widget-activity-item {
    color: #919fa9;
}

.widget-activity .widget-activity-item:before,
.widget-tasks .widget-activity-item:before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    left: 31px;
    top: 50%;
    border-left: solid 1px #d8e2e7;
}

.widget-activity .widget-activity-item:last-child:before,
.widget-tasks .widget-activity-item:last-child:before {
    display: none;
}

.widget-pie-chart .legends-col:after,
.widget-pie-chart .legends-col:before,
.widget-pie-chart:after,
.widget-pie-chart:before {
    display: table;
    content: " ";
}

.widget-activity .widget-activity-item a,
.widget-tasks .widget-activity-item a {
    color: #343434;
}

.widget-activity .widget-activity-item a:hover,
.widget-tasks .widget-activity-item a:hover {
    color: #00a8ff;
}

.widget-activity .widget-activity-item .user-card-row,
.widget-tasks .widget-activity-item .user-card-row {
    position: relative;
}

.ggl-pie-chart,
.ggl-pie-chart-container {
    position: relative;
    width: 156px;
    height: 156px;
    margin: 0 auto;
}

.ggl-pie-chart-container.size-180,
.ggl-pie-chart-container.size-180 .ggl-pie-chart {
    width: 180px;
    height: 180px;
}

.ggl-pie-chart-container.size-180 .ggl-pie-chart-title {
    top: 66px;
}

.ggl-pie-chart-title {
    position: absolute;
    left: 15%;
    top: 54px;
    text-align: center;
    width: 70%;
    font-weight: 600;
    line-height: 1;
}

.ggl-pie-chart-title .caption {
    color: #919fa9;
    text-transform: uppercase;
    font-size: .75rem;
    margin: 0 0 4px;
}

.ggl-pie-chart-title .number {
    font-size: 2.25rem;
}

.widget-pie-chart {
    background: #fff;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    padding: 15px;
    zoom: 1;
}

.widget-pie-chart:after {
    clear: both;
}

.widget-pie-chart .legends-col {
    float: left;
    width: 55%;
    zoom: 1;
}

.widget-pie-chart .legends-col:after {
    clear: both;
}

.widget-pie-chart .legends-col .col {
    float: left;
    width: 50%;
}

.widget-pie-chart .chart-col {
    float: left;
    width: 45%;
}

.widget-pie-chart .chart-box-info {
    margin: 0 30px 18px 0;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    background: #fff;
    text-align: center;
    font-weight: 600;
    line-height: 1;
}

.widget-pie-chart .chart-box-info .caption,
.widget-pie-chart .chart-box-info .number {
    padding: 0 10px;
}

.widget-pie-chart .chart-box-info .number {
    font-size: 1.5rem;
    padding-top: 12px;
    padding-bottom: 12px;
}

.widget-pie-chart .chart-box-info .caption {
    border-top: solid 1px #d8e2e7;
    background: #f6f8fa;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.widget-pie-chart .col-40,
.widget-pie-chart .col-60 {
    float: left;
}

.widget-pie-chart .col-60 {
    width: 60%;
}

.widget-pie-chart .col-40 {
    width: 40%;
}

.widget-pie-chart .no-padding {
    margin: 0 -15px;
}

.widget-pie-chart .tbl-grid .tbl-cell-55 {
    width: 55%;
}

.widget-pie-chart .tbl-grid .tbl-cell-45 {
    width: 45%;
}

.widget-pie-chart .tbl-grid .tbl-cell-60 {
    width: 60%;
}

.widget-pie-chart .tbl-grid .tbl-cell-40 {
    width: 40%;
}

.widget-pie-chart .tbl-grid .tbl-cell-30 {
    width: 30%;
}

.widget-pie-chart .tbl-grid .tbl-cell-33 {
    width: 33%;
}

.widget-pie-chart .tbl-grid .tbl-cell-35 {
    width: 35%;
}

.widget-pie-chart .tbl-grid .tbl-cell-340px {
    width: 285px;
}

.widget-pie-chart .tbl-grid .col {
    float: left;
    width: 50%;
}

.widget-pie-chart .display-inline {
    text-align: left;
    display: inline-block;
    vertical-align: top;
}

.widget-pie-chart .widget-pie-chart-header {
    zoom: 1;
    margin: 0 0 10px;
}

.widget-pie-chart .widget-pie-chart-header:after,
.widget-pie-chart .widget-pie-chart-header:before {
    content: " ";
    display: table;
}

.widget-pie-chart .widget-pie-chart-header:after {
    clear: both;
}

.widget-pie-chart .widget-pie-chart-header .widget-pie-chart-header-title {
    font-weight: 600;
    padding: .375rem 0;
    position: relative;
    top: 2px;
}

.widget-pie-chart .widget-pie-chart-header .period {
    position: relative;
    padding: 0 0 0 55px;
}

.widget-pie-chart .widget-pie-chart-header .period .lbl {
    position: absolute;
    left: 0;
    top: 2px;
    padding: .375rem 0;
}

.chart-legend {
    padding: 14px 0;
}

.chart-legend .circle {
    display: inline-block;
    width: 13px;
    height: 13px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid #adb7be;
}

.chart-legend .circle.red {
    border-color: #fa424a;
}

.chart-legend .circle.blue {
    border-color: #00a8ff;
}

.chart-legend .circle.orange {
    border-color: #fdad2a;
}

.chart-legend .circle.green {
    border-color: #46c35f;
}

.chart-legend .circle.purple {
    border-color: #ac6bec;
}

.chart-legend .circle.pink {
    border-color: #e84f9a;
}

.chart-legend .percent {
    display: inline-block;
    font-weight: 600;
    font-size: 1.25rem;
}

.chart-legend .percent sup {
    font-weight: 400;
    color: #919fa9;
    margin: 0 0 0 4px;
}

.chart-legend .caption {
    font-size: .875rem;
    padding: 2px 0 0;
}

.chart-legend-list .dot,
.chart-legend-tbl .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #adb7be;
    margin: 0 5px 0 0;
    position: relative;
    top: -1px;
}

.widget-chart-combo .widget-chart-combo-header:after,
.widget-chart-combo .widget-chart-combo-header:before,
.widget-chart-combo:after,
.widget-chart-combo:before {
    display: table;
    content: " ";
}

.chart-legend-list .dot.red,
.chart-legend-tbl .dot.red {
    background-color: #fa424a;
}

.chart-legend-list .dot.blue,
.chart-legend-tbl .dot.blue {
    background-color: #00a8ff;
}

.chart-legend-list .dot.orange,
.chart-legend-tbl .dot.orange {
    background-color: #fdad2a;
}

.chart-legend-list .dot.green,
.chart-legend-tbl .dot.green {
    background-color: #46c35f;
}

.chart-legend-list .dot.purple,
.chart-legend-tbl .dot.purple {
    background-color: #ac6bec;
}

.chart-legend-list .dot.pink,
.chart-legend-tbl .dot.pink {
    background-color: #e84f9a;
}

.chart-legend-list.font-16,
.chart-legend-tbl.font-16 {
    font-size: 1rem;
}

.chart-legend-tbl {
    clear: both;
}

.chart-legend-tbl .title {
    font-weight: 600;
    margin: 0 0 8px;
}

.chart-legend-tbl .tbl {
    width: auto;
}

.chart-legend-tbl .tbl-cell {
    padding: 3px 0;
}

.chart-legend-tbl .tbl-cell-legend {
    padding-right: 10px;
}

.chart-legend-tbl .tbl-cell-value {
    text-align: right;
    padding-left: 10px;
    border-left: solid 1px #d8e2e7;
    color: #919fa9;
}

.chart-legend-list {
    font-size: .75rem;
    padding: 5px 0 0;
}

.chart-legend-list li {
    margin: 5px 0;
}

.widget-chart-combo {
    background: #fff;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    zoom: 1;
}

.widget-chart-combo:after {
    clear: both;
}

.widget-chart-combo .widget-chart-combo-header {
    padding: 10px 10px 0;
    border-bottom: solid 1px #d8e2e7;
    zoom: 1;
}

.widget-chart-combo .widget-chart-combo-header:after {
    clear: both;
}

.widget-chart-combo .widget-chart-combo-header .widget-chart-combo-header-left,
.widget-chart-combo .widget-chart-combo-header .widget-chart-combo-header-right {
    margin: 0 0 10px;
}

.widget-chart-combo .widget-chart-combo-header .widget-chart-combo-header-left {
    float: left;
    width: 145px;
}

.widget-chart-combo .widget-chart-combo-header .widget-chart-combo-header-right {
    float: right;
    width: 262px;
    position: relative;
    padding: 0 70px 0 0;
}

.widget-chart-combo .widget-chart-combo-header .widget-chart-combo-header-right .btn {
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 0;
    padding-right: 0;
    width: 60px;
}

.widget-chart-combo .widget-chart-combo-side {
    float: right;
    width: 150px;
    position: relative;
    background: #f6f8fa;
    -webkit-border-radius: 0 0 3px;
    border-radius: 0 0 3px;
    border-left: solid 1px #d8e2e7;
}

.widget-chart-combo .widget-chart-combo-side .tbl {
    height: 100%;
}

.widget-chart-combo .widget-chart-combo-side .tbl-cell {
    padding: 10px 10px 10px 15px;
    font-size: .9575rem;
    border-top: solid 1px #d8e2e7;
}

.widget-chart-combo .widget-chart-combo-side .tbl-row:first-child .tbl-cell {
    border-top: none;
}

.widget-chart-combo .widget-chart-combo-side .number {
    font-size: 1rem;
    font-weight: 600;
}

.widget-chart-combo .widget-chart-combo-content {
    float: left;
    width: 100%;
    margin-right: -150px;
}

.widget-chart-combo .widget-chart-combo-content-in {
    margin-right: 150px;
    padding: 15px 15px 5px;
}

.widget-chart-combo .widget-chart-combo-content-title {
    font-weight: 600;
    margin: 0 0 15px;
}

.widget-chart-combo .chart {
    width: 100%;
    height: 210px;
}

.widget-chart-combo .chart-legend-list li {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    font-size: 1rem;
}

.widget-chart-combo .chart-legend-list .dot {
    top: -2px;
}

.widget-chart-extra .widget-chart-extra-section {
    border-top: solid 1px #d8e2e7;
    padding: 15px;
}

.widget-chart-extra .widget-chart-extra-inner {
    background: #fff;
    border: 1px solid #d8e2e7;
    border-top: none;
    -webkit-border-radius: 0 0 .25rem .25rem;
    border-radius: 0 0 .25rem .25rem;
}

.widget-chart-extra .widget-chart-extra-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px;
}

.widget-chart-extra-blue {
    background: #008ffb;
    color: #fff;
    padding: 15px 0;
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
}

.widget-chart-extra-blue .widget-chart-extra-blue-title {
    padding: 0 15px 15px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}

.widget-chart-extra-blue .chart {
    height: 230px;
}

.widget-chart-extra-bars {
    zoom: 1;
}

.widget-chart-extra-bars:after,
.widget-chart-extra-bars:before {
    content: " ";
    display: table;
}

.widget-chart-extra-bars:after {
    clear: both;
}

.widget-chart-extra-bars .widget-chart-extra-bars-chart {
    float: left;
    width: 100%;
    margin-right: -95px;
}

.widget-chart-extra-bars .widget-chart-extra-bars-chart-in {
    margin-right: 95px;
}

.widget-chart-extra-bars .widget-chart-extra-bars-txt {
    float: right;
    width: 95px;
    position: relative;
    text-align: right;
}

.widget-chart-extra-bars .widget-chart-extra-bars-txt .number {
    height: 64px;
    overflow: hidden;
    line-height: 64px;
    margin: 0 0 2px;
    color: #ac6bec;
    font-size: 2.25rem;
    font-weight: 600;
}

.widget-chart-extra-bars .widget-chart-extra-bars-txt .caption {
    font-size: .875rem;
}

.widget-chart-extra-stat .tbl-cell {
    vertical-align: top;
}

.widget-chart-extra-stat .title {
    font-weight: 600;
    margin: 0 0 5px;
}

.widget-chart-extra-stat .number {
    color: #ac6bec;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
}

.cstm-chart-bars {
    display: table;
    width: 100%;
}

.cstm-chart-bars .cstm-chart-bars-in {
    display: table-row;
}

.cstm-chart-bars .item {
    display: table-cell;
    vertical-align: top;
}

.cstm-chart-bars .bar,
.cstm-chart-bars .caption {
    width: 65%;
    max-width: 16px;
}

.cstm-chart-bars .bar {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    height: 64px;
    background: #eceff4;
    position: relative;
    overflow: hidden;
    margin: 0 0 5px;
}

.cstm-chart-bars .bar>div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    -webkit-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
    background: #ac6bec;
}

.cstm-chart-bars .caption {
    text-align: center;
    font-size: .75rem;
}

@-webkit-keyframes writing {
    0% {
        left: 0;
    }
    100% {
        left: 6px;
    }
}

@-moz-keyframes writing {
    0% {
        left: 0;
    }
    100% {
        left: 6px;
    }
}

@-o-keyframes writing {
    0% {
        left: 0;
    }
    100% {
        left: 6px;
    }
}

@keyframes writing {
    0% {
        left: 0;
    }
    100% {
        left: 6px;
    }
}

.chat-container {
    zoom: 1;
}

.chat-container:after,
.chat-container:before {
    content: " ";
    display: table;
}

.chat-container:after {
    clear: both;
}

.chat-list {
    float: left;
    width: 300px;
    position: relative;
    z-index: 2;
}

.chat-area {
    float: right;
    width: 100%;
    margin-left: -300px;
}

.chat-area-in {
    margin-left: 300px;
    border-left: solid 1px #d8e2e7;
}

@media (max-width:767px) {
    .chat-area,
    .chat-list {
        float: none;
        width: auto;
    }
    .chat-area {
        margin-left: 0;
    }
    .chat-area-in {
        margin-left: 0;
        border-left: none;
    }
}

.chat-list-search {
    height: 61px;
    border-bottom: solid 1px #d8e2e7;
    padding: 13px 15px;
}

.chat-list-search .form-control {
    height: 34px;
    padding: 8px 15px;
}

.chat-list-item {
    display: block;
    padding: 11px 15px 11px 56px;
    position: relative;
    font-size: .9375rem;
    line-height: 20px;
    cursor: default;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    max-width: 100%;
    min-height: 52px;
}

.chat-list-item .chat-list-item-photo {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 32px;
    height: 32px;
}

.chat-list-item .chat-list-item-photo img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.chat-list-item .chat-list-item-header {
    position: relative;
    padding: 0 45px 0 0;
}

.chat-list-item .chat-list-item-name {
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
    padding: 0 12px 0 0;
    position: relative;
    max-width: 100%;
}

.chat-list-item .chat-list-item-name .name {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.chat-list-item .chat-list-item-date {
    font-size: .875rem;
    position: absolute;
    right: 0;
    top: 0;
    color: #919fa9;
}

.chat-list-item .chat-list-item-cont {
    position: relative;
    padding: 0 45px 0 0;
}

.chat-list-item .chat-list-item-txt {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.chat-list-item .chat-list-item-txt.writing {
    color: #919fa9;
}

.chat-list-item .chat-list-item-txt .icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 20px;
}

.chat-list-item .chat-list-item-txt .font-icon {
    color: #adb7be;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation-name: writing;
    -moz-animation-name: writing;
    -o-animation-name: writing;
    animation-name: writing;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.chat-list-item .chat-list-item-count,
.chat-list-item .chat-list-item-dot {
    position: absolute;
    right: 0;
    top: 50%;
}

.chat-list-item .chat-list-item-count {
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    text-align: center;
    min-width: 18px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    color: #fff;
    font-weight: 600;
    margin-top: -9px;
    background: #fa424a;
    font-size: .8125rem;
}

.chat-list-item .chat-list-item-dot {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #adb7be;
}

.chat-list-item.online .chat-list-item-name:before {
    content: '';
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -3px;
    background: #46c35f;
}

.chat-list .chat-list-item:hover,
.chat-list-item.selected,
.chat-message.selected {
    background-color: #ecf2f5;
}

@media (max-width:767px) {
    .chat-list-in {
        height: 200px !important;
        border-bottom: solid 1px #d8e2e7;
    }
}

.chat-area-header {
    height: 62px;
    border-bottom: solid 1px #d8e2e7;
    position: relative;
    padding: 0 120px 0 0;
}

.chat-area-header .chat-list-item {
    margin: -1px 0;
}

.chat-area-header .chat-area-header-action {
    width: 120px;
    position: absolute;
    right: 15px;
    top: 0;
    padding: 20px 0;
    text-align: right;
}

.chat-area-header .clean {
    text-align: center;
    line-height: 60px;
    font-weight: 600;
    font-size: 1rem;
    margin-right: -105px;
}

.chat-area-bottom {
    padding: 15px;
    border-top: solid 1px #d8e2e7;
    zoom: 1;
}

.chat-area-bottom:after,
.chat-area-bottom:before {
    content: " ";
    display: table;
}

.chat-area-bottom:after {
    clear: both;
}

.chat-area-bottom .btn,
.chat-area-bottom .caption {
    margin: 2px 12px 2px 0;
}

.chat-area-bottom .caption {
    display: inline-block;
    padding: .375rem 0 .375rem 42px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}

.chat-area-bottom .attach {
    float: right;
    position: relative;
    top: 11px;
}

.chat-area-bottom .write-message {
    position: relative;
    padding: 0 0 0 42px;
}

.chat-area-bottom .write-message .form-group {
    margin-bottom: 10px;
}

.chat-area-bottom .write-message .avatar {
    position: absolute;
    left: -3px;
    top: 0;
    width: 32px;
    height: 32px;
}

.chat-area-bottom .write-message .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

@media (max-width:1199px) {
    .chat-area-bottom .caption {
        padding-left: 0;
    }
}

.chat-dialog-area {
    min-height: 200px;
}

@media (max-width:767px) {
    .chat-dialog-area {
        height: 200px !important;
    }
}

.chat-message {
    position: relative;
    padding: 11px 65px 11px 100px;
    font-size: .9375rem;
    min-height: 52px;
    line-height: 20px;
}

.chat-message .chat-message-photo {
    position: absolute;
    left: 57px;
    top: 15px;
    width: 32px;
    height: 32px;
}

.chat-message .chat-message-photo img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.chat-message .chat-message-header {
    display: table;
    width: 100%;
}

.chat-message .chat-message-header .tbl-cell {
    vertical-align: middle;
}

.chat-message .chat-message-header .tbl-cell-name {
    font-weight: 600;
}

.chat-message .chat-message-header .tbl-cell-date {
    color: #919fa9;
    text-align: right;
    white-space: nowrap;
    width: 10px;
    padding-left: 10px;
    font-size: .875rem;
}

.chat-message .checkbox-bird {
    display: none;
    position: absolute;
    left: 21px;
    top: 22px;
}

.chat-message.selected .checkbox-bird,
.chat-message:hover .checkbox-bird {
    display: block;
}

.chat-message.quote {
    border-left: solid 4px #d8e2e7;
    min-height: 24px;
    margin: 10px 0 0;
    padding: 0 0 0 44px;
}

.chat-message.quote .chat-message-photo {
    width: 24px;
    height: 24px;
    left: 10px;
    top: 0;
}

.chat-dialog-clean {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.chat-dialog-clean .chat-dialog-clean-in {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 10px 25px;
}

.chat-dialog-clean .font-icon {
    color: #adb7be;
    font-size: 6rem;
    line-height: 1;
}

.chat-dialog-clean .caption {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 .5rem;
}

.chat-dialog-clean .txt {
    color: #919fa9;
    max-width: 340px;
    margin: 0 auto;
}

.page-error-box {
    background: #fff;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 50px 30px 55px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 475px;
    color: #919fa9;
    line-height: 1;
}

.page-error-box .error-code {
    font-size: 9.375rem;
    font-weight: 600;
}

.page-error-box .error-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

@media (max-width:767px) {
    .page-error-box {
        padding: 25px 15px;
    }
    .page-error-box .error-code {
        font-size: 5.5rem;
    }
    .page-error-box .error-title {
        font-size: 1.5rem;
    }
}

.card-user {
    padding: 15px 15px 10px;
    text-align: center;
}

.card-user .card-user-action {
    text-decoration: none;
    color: #919fa9;
    font-size: 1rem;
}

.card-user .card-user-action:hover {
    color: #00a8ff;
}

.card-user .card-user-action .dropdown-user-menu button {
    padding: 0;
    border: none;
    background: 0 0;
    color: #919fa9;
    position: relative;
    right: -5px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.follow-group .follow-group-link .plus-link-circle,
.profile-card-slider .slick-arrow {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.card-user .card-user-action .dropdown-user-menu button:hover,
.card-user .card-user-action .dropdown-user-menu.open button {
    color: #00a8ff;
}

.card-user .card-user-photo {
    width: 92px;
    height: 102px;
    margin: 0 auto 10px;
    clear: both;
    padding: 10px 0 0;
}

.card-user .card-user-photo img {
    display: block;
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.card-user .card-user-name {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 .15rem;
}

.card-user .card-user-status {
    font-size: .875rem;
    color: #00a8ff;
}

.card-user .card-user-info-row {
    font-size: .8125rem;
    text-align: left;
    margin: 0 0 .25rem;
}

.card-user .card-user-info-row .font-icon {
    vertical-align: middle;
    margin: 0 5px 0 0;
    color: #919fa9;
    font-size: 1rem;
    position: relative;
    top: -.2rem;
}

.card-user .card-user-social {
    text-align: center;
    font-size: 1.25rem;
    padding: 0 0 10px;
}

.card-user .card-user-social a {
    margin: 0 8px;
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.card-user .card-user-social a:hover {
    color: #00a8ff;
}

.card-user .btn {
    min-width: 100px;
    margin: 12px 0 20px;
}

.card-user .dropdown-item {
    font-size: .9375rem;
}

@media (min-width:1600px) {
    .card-user-grid>div {
        width: 20%;
    }
}

@media (min-width:1800px) {
    .card-user-grid>div {
        width: 16.666667%;
    }
}

#login-frame {
    background-image: url('../img/landing-page/banner-welcome.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.login-box {
    width: 100%;
    max-width: 600px;
    /* margin: 5% auto auto; */
    border: 1px solid #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 20px;
    /*padding: 20px;*/
    font-size: 1rem;
    position: relative;
    background-color: rgba(178, 220, 245,0.7);
}

.login-box .line-login {
    width: 100%;
    text-align: center;
    border-top: 1px solid #d8e2e7;
    line-height: 0.1em;
    margin: 20px 0;
}

.login-box .line-login span {
    background: white;
    padding: 0 10px;
    font-weight: bold;
}

.sign-box {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    /*    background: #fff;
*/
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*padding: 20px; di comment buat design login baru*/
    font-size: 1rem;
    position: relative;
}

.sign-box .sign-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
}

.sign-box .sign-avatar img {
    display: block;
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.sign-box .sign-avatar.no-photo {
    border: 2px solid #c5d6de;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 96px;
    color: #c5d6de;
    font-size: 3.125rem;
    font-weight: 700;
}

.activity-line-item .activity-line-item-user .activity-line-item-user-name,
.full-count,
.profile-card .profile-card-name {
    font-weight: 600;
}

.sign-box .sign-title {
    font-size: 1.25rem;
    text-align: center;
    margin: 0 0 15px;
    line-height: normal;
}

.sign-box .sign-title p {
    text-align: center;
    margin: 0 0 15px;
    line-height: normal;
}

.sign-box .btn {
    display: block;
    min-width: 108px;
    margin: 16px auto 12px;
    padding: 1em;
}

.sign-box .btn.sign-up {
    margin-top: 18px;
}

.sign-box .sign-note {
    text-align: center;
}

.sign-box .sign-note.text {
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 20px;
}

.sign-box a {
    text-decoration: none;
    font-size: 1.2rem;
    /*    color: #fff;
*/
    border-bottom: solid 1px transparent;
    width: 280px;
}

.sign-box a:hover {
    border-bottom-color: rgba(0, 130, 198, .5);
}

.sign-box .form-group {
    margin-bottom: 12px;
    zoom: 1;
}

.sign-box .form-group:after,
.sign-box .form-group:before {
    content: " ";
    display: table;
}

.sign-box .form-group:after {
    clear: both;
}

.sign-box .checkbox {
    margin: 0;
}

.sign-box .checkbox label,
.sign-box .reset {
    font-size: 1.2rem;
}

.sign-box .close {
    position: absolute;
    right: 10px;
    top: 4px;
    opacity: 1;
    color: #c5d6de;
}

.sign-box .close:hover {
    color: #00a8ff;
}

.activity-line {
    padding: 0 0 0 82px;
    position: relative;
    margin-left: -15px;
}

.activity-line:before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    border-left: solid 1px #c5d6de;
    position: absolute;
    left: 41px;
    top: 0;
}

.activity-line-item {
    margin: 0 0 18px;
    font-size: 1rem;
    position: relative;
}

.activity-line-item p {
    margin: 0;
}

.activity-line-item .activity-line-date {
    width: 80px;
    text-align: center;
    position: absolute;
    top: -10px;
    left: -76px;
    color: #6c7a86;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 0;
    background: #fff;
}

.activity-line-item .activity-line-item-header {
    border-bottom: solid 1px #d8e2e7;
    padding: 15px;
}

.activity-line-item .activity-line-item-user {
    position: relative;
    padding: 0 0 0 48px;
    min-height: 32px;
    line-height: 20px;
}

.activity-line-item .activity-line-item-user .activity-line-item-user-photo {
    position: absolute;
    left: 0;
    top: 4px;
    width: 32px;
}

.activity-line-item .activity-line-item-user .activity-line-item-user-photo img {
    display: block;
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.activity-line-item .activity-line-action .previews:after,
.activity-line-item .activity-line-action .previews:before,
.activity-line-item .activity-line-action:after,
.activity-line-item .activity-line-action:before {
    display: table;
    content: " ";
}

.activity-line-item .activity-line-item-user .activity-line-item-user-status {
    color: #6c7a86;
}

.activity-line-item .activity-line-action {
    padding: 15px;
    zoom: 1;
    position: relative;
}

.activity-line-item .activity-line-action:after {
    clear: both;
}

.activity-line-item .activity-line-action:nth-child(odd) {
    background: #fbfcfd;
}

.activity-line-item .activity-line-action .time {
    float: left;
    width: 90px;
    color: #6c7a86;
    position: relative;
}

.activity-line-item .activity-line-action .cont {
    width: 100%;
    margin-left: -90px;
}

.activity-line-item .activity-line-action .cont-in {
    margin-left: 90px;
}

.activity-line-item .activity-line-action .dot {
    width: 10px;
    height: 10px;
    background: #fa424a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: 20px;
}

.activity-line-item .activity-line-action a {
    text-decoration: none;
    color: #0082c6;
    border-bottom: solid 1px transparent;
}

.activity-line-item .activity-line-action a:hover {
    border-bottom-color: rgba(0, 130, 198, .5);
}

.activity-line-item .activity-line-action .previews {
    zoom: 1;
}

.activity-line-item .activity-line-action .previews:after {
    clear: both;
}

.activity-line-item .activity-line-action .previews li {
    float: left;
    margin: 10px 15px 0 0;
}

.activity-line-item .activity-line-action .previews img {
    display: block;
}

.activity-line-item .activity-line-action .meta {
    zoom: 1;
    color: #6c7a86;
    padding: 5px 0 0;
}

.activity-line-item .activity-line-action .meta:after,
.activity-line-item .activity-line-action .meta:before {
    content: " ";
    display: table;
}

.activity-line-item .activity-line-action .meta:after {
    clear: both;
}

.activity-line-item .activity-line-action .meta li {
    float: left;
    margin: 0 20px 0 0;
}

.activity-line-item .activity-line-action .meta a {
    text-decoration: none;
    color: #6c7a86;
    border: none;
}

.activity-line-item .activity-line-action .meta a:hover {
    color: #00a8ff;
}

.activity-line-item .activity-line-action .img-comment {
    margin: 10px 0 0;
}

.activity-line-item .activity-line-action .img-comment .tbl-cell-img {
    vertical-align: top;
    width: 120px;
}

.activity-line-item .activity-line-action .img-comment .tbl-cell-img img {
    display: block;
    width: 100%;
}

.activity-line-item .activity-line-action .img-comment .tbl-cell-txt {
    vertical-align: middle;
    padding-left: 10px;
}

.activity-line-item .activity-line-action .attach-list {
    color: #adb7be;
    padding: 5px 0 0;
    line-height: 24px;
    margin: 0 0 -4px;
}

.activity-line-item .activity-line-action .attach-list li {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.activity-line-item .activity-line-action .attach-list .font-icon {
    margin: 0 4px 0 0;
    font-size: 1rem;
    vertical-align: middle;
    position: relative;
    top: -.05em;
}

.full-count:after,
.profile-links-list .font-icon {
    top: -1px;
    position: relative;
    vertical-align: middle;
}

.activity-line-item .activity-line-action .alert {
    margin: 10px 0 0;
}

.activity-line-item .activity-line-more {
    padding: 10px;
    text-align: center;
    border-top: solid 1px #d8e2e7;
}

@media (max-width:767px) {
    .activity-line-item .activity-line-action .cont,
    .activity-line-item .activity-line-action .time {
        float: none;
        width: auto;
    }
    .activity-line-item .activity-line-action .cont,
    .activity-line-item .activity-line-action .cont-in {
        margin-left: 0;
    }
    .activity-line-item .activity-line-action .time {
        margin: 0 0 10px;
    }
}

.profile-card {
    text-align: center;
    padding: 28px 15px 14px;
}

.profile-card .profile-card-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto .5rem;
}

.profile-card .profile-card-photo img {
    display: block;
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.profile-card .profile-card-location {
    color: #6c7a86;
    margin: .2em 0 18px;
}

.profile-card .btn,
.profile-card .btn-group {
    width: 100%;
    max-width: 130px;
    margin: 0 5px;
}

.profile-card .btn-group {
    margin-top: 10px;
    margin-bottom: 10px;
}

.profile-statistic {
    text-align: center;
    font-size: .9375rem;
}

.profile-statistic .tbl-cell {
    vertical-align: middle;
    border: 1px solid #d8e2e7;
    padding: 10px;
}

.profile-statistic .tbl-cell:first-child {
    border-left: none;
}

.profile-statistic .tbl-cell:last-child {
    border-right: none;
}

.profile-statistic b {
    font-weight: 600;
    display: block;
}

.profile-links-list {
    padding: 10px 0;
    font-size: .9375rem;
}

.profile-links-list li {
    padding: 4px 0;
    margin: 0 15px;
}

.profile-links-list li.nowrap {
    white-space: nowrap;
    overflow: hidden;
}

.profile-links-list li.divider {
    border-top: solid 1px #d8e2e7;
    margin: 9px 0 11px;
    padding: 0;
    height: 0;
}

.profile-links-list .font-icon {
    color: #adb7be;
    margin: 0 5px 0 0;
    font-size: 1rem;
}

.friends-list .friends-list-item .user-card-row,
.full-count {
    font-size: .9375rem;
}

.profile-links-list a {
    color: #343434;
}

.profile-links-list a:hover {
    color: #00a8ff;
}

.friends-list {
    padding: 0 0 6px;
}

.friends-list .friends-list-item {
    padding: 0 15px 12px;
}

.friends-list.stripped {
    padding: 0;
}

.friends-list.stripped .friends-list-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.friends-list.stripped .friends-list-item:nth-child(odd) {
    background-color: #fbfcfd;
}

.full-count {
    color: #6c7a86;
}

.full-count:hover {
    color: #00a8ff;
}

.full-count:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: .25rem;
    margin-left: .25rem;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

.plus-link-circle {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #00a8ff;
    text-align: left;
    line-height: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #00a8ff;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
}

.plus-link-circle>span {
    position: absolute;
    left: 4px;
    top: 5px;
}

a.plus-link-circle:hover {
    color: #fff;
    background-color: #00a8ff;
}

.see-all {
    padding: 12px 15px;
    font-size: .9375rem;
}

.profile-card-slider {
    padding: 0 0 10px;
}

.profile-card-slider .profile-card {
    padding-top: 5px;
}

.profile-card-slider .profile-card .profile-card-status {
    margin-bottom: 18px;
}

.profile-card-slider .slick-arrow {
    display: block;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    position: absolute;
    z-index: 5;
    color: #d8e2e7;
    cursor: pointer;
    transition: all .2s ease-in-out;
    top: 51px;
}

.profile-card-slider .slick-arrow:hover {
    color: #00a8ff;
}

.profile-card-slider .slick-arrow.font-icon-arrow-left {
    left: 12%;
}

.profile-card-slider .slick-arrow.font-icon-arrow-right {
    right: 12%;
}

.people-rel-list {
    padding: 0 0 20px;
}

.people-rel-list .people-rel-list-name {
    font-size: .9375rem;
    padding: 0 15px 18px;
}

.people-rel-list .people-rel-list-photos {
    padding: 0 5px 12px 15px;
    zoom: 1;
}

.people-rel-list .people-rel-list-photos:after,
.people-rel-list .people-rel-list-photos:before {
    content: " ";
    display: table;
}

.people-rel-list .people-rel-list-photos:after {
    clear: both;
}

.people-rel-list .people-rel-list-photos li {
    float: left;
    margin: 0 10px 10px 0;
}

.people-rel-list .people-rel-list-photos img {
    display: block;
    width: 46px;
    height: 46px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.people-rel-list .site-header-search {
    width: auto;
    margin: 0 15px;
    height: 34px;
    padding: 2px 0 0;
}

.people-rel-list .site-header-search button {
    line-height: 32px;
}

.write-something {
    background: 0 0;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 15px;
    color: #343434 !important;
    width: 100%;
}

.post-announce {
    padding: 0 0 12px;
}

.post-announce .post-announce-pic {
    margin: 0 0 12px;
}

.post-announce .post-announce-pic img {
    display: block;
    width: 100%;
}

.post-announce .post-announce-title {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.post-announce .post-announce-title a {
    color: #343434;
}

.post-announce .post-announce-title a:hover {
    color: #00a8ff;
}

.post-announce .post-announce-date {
    font-size: .875rem;
    color: #6c7a86;
}

.post-announce .post-announce-meta {
    zoom: 1;
    font-size: .875rem;
    color: #6c7a86;
    padding: 12px 0 0;
}

.post-announce .post-announce-meta:after,
.post-announce .post-announce-meta:before {
    content: " ";
    display: table;
}

.post-announce .post-announce-meta:after {
    clear: both;
}

.post-announce .post-announce-meta li {
    float: left;
    margin: 0 20px 0 0;
}

.post-announce .post-announce-meta .font-icon {
    vertical-align: middle;
    margin: 0 4px 0 0;
    color: #c5d6de;
    font-size: 1rem;
}

.exp-timeline,
.recomendations-slider .user-card-row,
.skill-item {
    font-size: .9375rem;
}

.post-announce .post-announce-meta .font-icon.font-icon-comment {
    position: relative;
    top: 1px;
}

.post-announce .post-announce-meta a {
    text-decoration: none;
    color: #6c7a86;
    border: none;
}

.post-announce .post-announce-meta a:hover {
    color: #00a8ff;
}

.posts-slider,
.recomendations-slider {
    padding: 0 8px;
}

.posts-slider .slide,
.recomendations-slider .slide {
    padding: 0 7px;
}

.recomendations-slider .slide {
    padding-bottom: 25px;
}

.profile-info-item {
    position: relative;
    padding: 0 0 10px 25px;
    margin: 0 15px;
}

.profile-info-item .profile-info-item-header {
    margin: 0 0 .8rem -25px;
}

.profile-info-item .profile-info-item-header .font-icon {
    color: #adb7be;
    margin: 0 4px 0 0;
    vertical-align: middle;
    line-height: 16px;
    position: relative;
    top: -1px;
}

.profile-info-item .profile-info-item-header .font-icon.font-icon-case {
    top: 0;
}

.profile-info-item .profile-info-item-header .font-icon.font-icon-award {
    top: 1px;
}

.profile-info-item .text-block p {
    margin: 0 0 1em;
}

.edit-box {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px dashed #adb7be;
    text-align: center;
    color: #919fa9;
    background: #fbfcfd;
    margin: 0 0 10px;
}

.edit-box .edit-box-in {
    height: 70px;
    display: table;
    width: 100%;
}

.edit-box .edit-box-in>div {
    display: table-cell;
    vertical-align: middle;
}

.exp-timeline .exp-timeline-item {
    padding: 0 0 20px 20px;
    position: relative;
}

.exp-timeline .exp-timeline-item:after,
.exp-timeline .exp-timeline-item:before {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 0;
    height: 100%;
    border-left: solid 1px #d8e2e7;
    width: 0;
}

.exp-timeline .exp-timeline-item:after {
    display: none;
}

.exp-timeline .exp-timeline-item:first-child:after {
    display: block;
    border-left-color: #fff;
    height: 8px;
}

.exp-timeline .exp-timeline-item:last-child:before {
    height: 8px;
}

.exp-timeline .exp-timeline-item .dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background: #fff;
    border: 1px solid #d8e2e7;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    top: 5px;
    z-index: 3;
}

.exp-timeline .tbl-cell {
    vertical-align: middle;
}

.exp-timeline .tbl-cell-logo {
    padding-right: 40px;
    padding-left: 15px;
    text-align: right;
    width: 40px;
}

.exp-timeline .tbl-cell-logo img {
    max-height: 32px;
}

.exp-timeline .exp-timeline-range {
    color: #6c7a86;
}

.exp-timeline .exp-timeline-status {
    margin: 3px 0;
}

.exp-timeline .exp-timeline-location a {
    text-decoration: none;
    color: #00a8ff;
    border-bottom: solid 1px transparent;
}

.exp-timeline .exp-timeline-location a:hover {
    border-bottom-color: rgba(0, 168, 255, .5);
}

.skill-item {
    margin: 0 0 12px;
}

.skill-item .tbl-cell {
    vertical-align: middle;
}

.skill-item .tbl-cell-num {
    width: 32px;
}

.skill-item .tbl-cell-txt {
    padding-left: 10px;
}

.skill-item .tbl-cell-users {
    width: 176px;
}

.skill-item .skill-circle {
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-size: .75rem;
}

.skill-item .skill-circle-num {
    border: 1px solid #adb7be;
    line-height: 30px;
    padding-top: 1px;
}

.skill-item .skill-circle-users {
    float: left;
    line-height: 32px;
    background: #eceff4;
    color: #6c7a86;
    padding-top: 1px;
}

.skill-item .skill-user-photo {
    float: left;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.skill-item .skill-circle-users,
.skill-item .skill-user-photo {
    margin: 0 0 0 12px;
}

.profile-interests {
    padding: 0 0 20px;
}

.profile-interests .label {
    margin-bottom: 4px;
    font-size: .9375rem;
}

.citate-speech-bubble {
    border: 1px solid #d8e2e7;
    padding: 12px 10px 15px 15px;
    font-size: .9375rem;
    margin: 0 0 12px;
    position: relative;
}

.citate-speech-bubble:after,
.citate-speech-bubble:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.citate-speech-bubble:before {
    left: -1px;
    bottom: -12px;
    border-width: 12px 12px 0 0;
    border-color: #d8e2e7 transparent transparent;
}

.citate-speech-bubble:after {
    left: 0;
    bottom: -10px;
    border-width: 10px 10px 0 0;
    border-color: #fff transparent transparent;
}

.citate-speech-bubble .font-icon-quote {
    color: #adb7be;
    margin: 0 3px 0 0;
    position: relative;
    top: 1px;
}

.profile-following {
    text-align: center;
    padding: 0 0 22px;
}

.profile-following-grid {
    padding: 0 8px;
    zoom: 1;
}

.profile-following-grid:after,
.profile-following-grid:before {
    content: " ";
    display: table;
}

.profile-following-grid:after {
    clear: both;
}

.profile-following-grid .col {
    float: left;
    padding: 0 7px;
    width: 25%;
}

@media (max-width:580px) {
    .profile-following-grid .col {
        width: 50%;
    }
}

@media (max-width:340px) {
    .profile-following-grid .col {
        width: 100%;
    }
}

.follow-group {
    font-size: .9375rem;
    margin: 0 0 22px;
    text-align: left;
}

.follow-group .follow-group-logo {
    border: 1px solid #d8e2e7;
    text-align: center;
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 7px;
}

.follow-group .follow-group-logo-in {
    display: table-cell;
    height: 85px;
    padding: 15px;
    vertical-align: middle;
}

.follow-group .follow-group-logo-in img {
    max-width: 100%;
    max-height: 100%;
}

.follow-group .follow-group-name {
    margin: 0 0 5px;
}

.follow-group .follow-group-name a {
    color: #343434;
}

.follow-group .follow-group-link a,
.follow-group .follow-group-name a:hover {
    color: #00a8ff;
}

.follow-group .follow-group-link .plus-link-circle {
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px 0 0;
    position: relative;
    top: -1px;
    transition: all .2s ease-in-out;
}

.follow-group .follow-group-link a:hover .plus-link-circle {
    color: #fff;
    background-color: #00a8ff;
}

.profile-header-photo {
    height: 245px;
    margin: -27px -15px 20px;
    background: 50% 50% no-repeat #232936;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    color: #fff;
    background: url('../img/bg-wallet.jpg');
}

.profile-header-photo .profile-header-photo-in {
    display: table;
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.profile-header-photo .profile-header-photo-in>.tbl-cell {
    vertical-align: bottom;
}

.profile-header-photo .change-cover {
    position: absolute;
    right: 30px;
    top: 20px;
    text-decoration: none;
    color: #fff;
    border: none;
    background: rgba(0, 0, 0, .4);
    font-size: .875rem;
    padding: 6px 8px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.profile-header-photo .change-cover:hover {
    color: #00a8ff;
}

.profile-header-photo .change-cover input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 100rem;
    opacity: 0;
    cursor: pointer;
}

.profile-header-photo .change-cover .font-icon {
    font-size: 1rem;
    margin: 0 4px 0 0;
    position: relative;
    top: 1px;
}

.profile-header-photo .info-block {
    padding: 0 15px;
}

.profile-header-photo .info-tbl p {
    margin: 0;
}

.profile-header-photo .info-tbl .tbl-cell {
    vertical-align: bottom;
    padding: 15px 0;
}

.profile-header-photo .info-tbl .tbl-cell-stat {
    width: 15%;
    text-align: right;
}

.price-card,
.prices-page,
.profile-side-stat,
.profile-side-user {
    text-align: center;
    padding-top: 10px;
}

.price-card,
.prices-page,
.profile-side-user,
.profile-side-user .avatar-preview {
    text-align: center;
}

.profile-header-photo .info-tbl .title {
    font-size: 1.5rem;
    font-weight: 600;
}

.profile-header-photo .info-tbl .inline-block {
    display: inline-block;
    text-align: center;
}

.profile-header-photo.gradient .info-block {
    background: -moz-linear-gradient(top, rgba(125, 185, 232, 0) 0, #000 100%);
    background: -webkit-linear-gradient(top, rgba(125, 185, 232, 0) 0, #000 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 185, 232, 0)), to(#000));
    background: -o-linear-gradient(top, rgba(125, 185, 232, 0) 0, #000 100%);
    background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0, #000 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#007db9e8', endColorstr='#000000', GradientType=0);
}

.profile-header-photo.opacity .info-block {
    background: rgba(0, 0, 0, .4);
}

.profile-wallet {
    margin: -245px 0 20px;
    position: relative;
}

.profile-wallet p {
    margin: 0;
}

.profile-wallet .box-typical {
    margin: 0 0 15px;
    height: 100%;
    display: inline-block;
    width: 100%;
}

.profile-wallet .box-typical-inner {
    padding: 12px 15px;
}

.box-wallet {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #d8e2e7;
    margin: 0 0 20px;
    top: -50px;
}

.profile-side {
    /*    margin: -245px 0 20px;
*/
    position: relative;
}

.profile-side p {
    margin: 0;
}

.profile-side .box-typical {
    margin: 0 0 15px;
    height: 100%;
    display: inline-block;
    width: 100%;
}

.profile-side .box-typical-inner {
    padding: 12px 15px;
}

.profile-side .box-typical-inner .line-with-icon:last-child {
    margin-bottom: 0;
}

.profile-side-user {
    padding: 28px 15px 15px;
}

.profile-side-user .avatar-preview {
    display: block;
    border: none;
    background: 0 0;
    position: relative;
    margin: 0 auto 20px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.profile-side-user .avatar-preview input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 100rem;
    opacity: 0;
    cursor: pointer;
}

.profile-side-user .avatar-preview .update {
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    font-size: .875rem;
    padding: 35% 0 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.fc-event,
.fc-state-default {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
}

.profile-side-user .avatar-preview .font-icon {
    display: block;
    font-size: 1rem;
}

.profile-side-user .avatar-preview:hover .update {
    opacity: 1;
}

.profile-side-user .btn,
.profile-side-user .btn-group {
    width: 100%;
    max-width: 180px;
    margin: 0 5px;
}

.profile-side-user .btn-group {
    margin-top: 10px;
    margin-bottom: 10px;
}

.profile-side-user .dropdown-menu {
    min-width: 100%;
}

.profile-side-user .bottom-txt {
    color: #6c7a86;
    padding-bottom: 10px;
    font-size: 20px;
}

.profile-side-user .called {
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    border: 1px solid #65b32e;
    border-radius: 38px;
    width: 100%;
    max-width: 120px;
    margin: 0px auto;
    padding: 4px;
    position: relative;
    background-color: #65b32e;
}

.profile-side-user .wallet-money {
    color: #6c7a86;
    padding-bottom: 20px;
    font-size: 26px;
}

.profile-side-user .menu .icon {
    color: #6c7a86;
}

.profile-side-user .menu p {
    color: #6c7a86;
}

.profile-side-user .menu {
    color: #6c7a86;
    padding: 16px 0 0;
}

.profile-side-user .menu:after {
    content: '';
    border-bottom: dashed 1px #6c7a86;
    display: block;
    padding: 5px;
    max-width: 189px;
    margin: 0px auto;
}

.profile-side-stat .tbl-cell {
    vertical-align: middle;
    border-left: solid 1px #d8e2e7;
    padding: 12px 10px;
}

.profile-side-stat .tbl-cell:first-child {
    border-left: none;
}

.profile-side-stat .number {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #6c7a86;
}

.line-with-icon,
p.line-with-icon {
    position: relative;
    padding: 0 0 0 .75em;
    margin: 0 0 1em;
}

.line-with-icon .font-icon,
p.line-with-icon .font-icon {
    color: #adb7be;
    position: relative;
    left: -10px;
    top: 0;
    font-size: 1rem;
}

.line-with-icon .font-icon,
p.line-with-icon .font-icon:after {
    content: '';
    border-bottom: dashed 1px #6c7a86;
    display: block;
    padding: 5px;
    max-width: 189px;
    margin: 0px auto;
}

.line-with-icon a,
p.line-with-icon a {
    text-decoration: none;
    color: #0082c6;
    border-bottom: solid 1px rgba(0, 130, 198, .3);
}

.line-with-icon a:hover,
p.line-with-icon a:hover {
    border-bottom-color: transparent;
}

@media (max-width:991px) {
    .profile-side {
        margin-top: 0;
    }
}

.profile-tabs .tab-pane .box-typical {
    margin: 0 0 15px;
}

.profile-tabs .tab-pane .box-typical:first-child {
    border-top: none;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    padding-top: 15px;
}

.profile-tabs .write-something {
    border-top: solid 1px #d8e2e7;
}

.profile-post .profile-post-header {
    border-bottom: solid 1px #d8e2e7;
    padding: 12px 40px 12px 15px;
    position: relative;
}

.profile-post .profile-post-header .user-card-row {
    font-size: 1rem;
    line-height: 20px;
}

.profile-post .profile-post-header .shared {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.profile-post .profile-post-header .shared:hover {
    color: #00a8ff;
}

.profile-post .profile-post-content {
    padding: 15px;
}

.profile-post .profile-post-content .cstm-video-player {
    max-width: 425px;
    width: 100%;
    margin: 15px 0 0;
}

.profile-post .profile-post-content .profile-post-content-note {
    color: #919fa9;
    margin: 0 0 .5em;
}

.profile-post .profile-post-content .profile-post-content-note a {
    text-decoration: none;
    color: #919fa9;
    border-bottom: solid 1px rgba(145, 159, 169, .3);
}

.profile-post .profile-post-content .profile-post-content-note a:hover {
    border-bottom-color: transparent;
}

@media (min-width:768px) {
    .profile-post .profile-post-content .minimalistic-player {
        width: 50%;
        margin: 15px 0 5px;
    }
}

.profile-post .comment-rows-container {
    border-bottom: none;
}

.profile-post .profile-post-meta .meta-item {
    margin: 0 20px 0 0;
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.profile-post .profile-post-meta .meta-item:hover {
    color: #00a8ff;
}

.profile-post .profile-post-meta .meta-item .font-icon {
    margin: 0 4px 0 0;
    position: relative;
}

.profile-post .profile-post-meta .meta-item .font-icon.font-icon-comment {
    top: 1px;
}

.profile-post .profile-post-gall-fluid {
    zoom: 1;
    margin: 15px -10px -15px -15px;
}

.profile-post .profile-post-gall-fluid:after,
.profile-post .profile-post-gall-fluid:before {
    content: " ";
    display: table;
}

.profile-post .profile-post-gall-fluid:after {
    clear: both;
}

.profile-post .profile-post-gall-fluid .col {
    padding: 0 0 5px 5px;
}

.profile-post .profile-post-gall-fluid img {
    display: block;
    width: 100%;
}

.profile-post .profile-post-gall {
    zoom: 1;
    margin: 15px -5px 0 0;
}

.profile-post .profile-post-gall:after,
.profile-post .profile-post-gall:before {
    content: " ";
    display: table;
}

.profile-post .profile-post-gall:after {
    clear: both;
}

.profile-post .profile-post-gall .col {
    float: left;
    width: 195px;
    padding: 0 5px 5px 0;
}

.profile-post .profile-post-gall .col:first-child {
    width: 390px;
}

.profile-post .profile-post-gall img {
    display: block;
    width: 100%;
}

.profile-post .profile-post-gall-grid[data-columns]::before {
    content: '3 .column.size-1of3';
}

.profile-post .profile-post-gall-grid .column {
    float: left;
}

.profile-post .profile-post-gall-grid .size-1of4 {
    width: 25%;
}

.profile-post .profile-post-gall-grid .size-1of3 {
    width: 33.333%;
}

.profile-post .profile-post-gall-grid .size-1of2 {
    width: 50%;
}

@media screen and (max-width:520px) {
    .profile-post .profile-post-gall-grid[data-columns]::before {
        content: '1 .column';
    }
}

@media screen and (min-width:521px) and (max-width:767px) {
    .profile-post .profile-post-gall-grid[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width:768px) and (max-width:1300px) {
    .profile-post .profile-post-gall-grid[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width:1301px) {
    .profile-post .profile-post-gall-grid[data-columns]::before {
        content: '4 .column.size-1of4';
    }
}

.profile-post .profile-post-card {
    margin: 15px 0 0;
}

.profile-post .profile-post-card p {
    margin: 0;
}

.profile-post .profile-post-card .tbl-cell-photo {
    width: 115px;
    padding-right: 15px;
}

.profile-post .profile-post-card .tbl-cell-photo img {
    display: block;
    width: 100%;
}

.profile-post .profile-post-card .title {
    font-size: 1rem;
    margin: 0 0 5px;
}

.profile-post .profile-post-card .title a {
    text-decoration: none;
    color: #0082c6;
    border-bottom: solid 1px rgba(0, 130, 198, .3);
}

.profile-post .profile-post-card .title a:hover {
    border-bottom-color: transparent;
}

.profile-settings .form-label {
    font-weight: 400;
    padding: 8px 0 0;
}

.profile-settings .profile-settings-btns .btn {
    margin: 0 10px 0 0;
}

.profile-settings .profile-settings-btns .btn:last-child {
    margin-right: 0;
}

.range-settings {
    position: relative;
    padding: 0;
    margin: 8px 0 0;
}

.range-settings .irs {
    height: 10px;
}

.range-settings .irs-bar,
.range-settings .irs-bar-edge,
.range-settings .irs-line {
    top: 6px;
}

.range-settings .irs-slider {
    top: 1px;
}

.range-settings .range-settings-percent {
    position: absolute;
    right: -45px;
    top: 0;
    color: #919fa9;
}

.range-settings .range-setting-actions {
    position: absolute;
    right: -102px;
    top: 0;
}

.range-settings .range-setting-actions button {
    border: none;
    background: 0 0;
    color: #adb7be;
    margin: 0 0 0 8px;
}

.range-settings .range-setting-actions button:hover {
    color: #00a8ff;
}

.range-settings .range-setting-actions button.del:hover {
    color: #fa424a;
}

@media (max-width:1199px) {
    .range-settings {
        padding-right: 102px;
    }
    .range-settings .range-settings-percent {
        right: 57px;
    }
    .range-settings .range-setting-actions {
        right: 0;
    }
}

.fc-unthemed {
    position: relative;
    z-index: 50;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
    border-color: #d8e2e7;
}

.fc-unthemed th {
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    padding: 10px 15px;
}

.fc-event,
.fc-state-default,
.fc-time-grid-event .fc-time,
a.fc-more {
    font-size: 1rem;
}

.fc-unthemed .jspVerticalBar {
    z-index: 5;
}

.fc-toolbar {
    margin: 0;
    padding: 10px 15px 5px 80px;
}

.fc-toolbar h1,
.fc-toolbar h2,
.fc-toolbar h3,
.fc-toolbar h4,
.fc-toolbar h5,
.fc-toolbar h6 {
    font-weight: 600;
    font-size: 1rem;
    padding: .375rem .5rem;
    position: relative;
    top: 3px;
}

.fc-state-default {
    background: 0 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #6c7a86;
    font-weight: 600;
    padding: .375rem 1rem;
    -webkit-border-radius: 25rem !important;
    border-radius: 25rem !important;
    transition: none;
}

.fc-state-active {
    background-color: #00a8ff;
    color: #fff;
    text-shadow: none;
}

.fc-next-button,
.fc-prev-button {
    color: #d8e2e7;
}

.fc-next-button:hover,
.fc-prev-button:hover {
    color: #00a8ff;
}

.fc-event,
a.fc-event:hover {
    color: #343434;
}

.fc button .fc-icon {
    width: auto;
    height: auto;
    line-height: normal;
    margin: 0;
    top: 2px;
    overflow: visible;
}

.fc .fc-toolbar>*>* {
    margin-left: 0;
}

.fc-unthemed .fc-today {
    background-color: #fff6da;
}

.fc-highlight {
    background-color: #a0dfff;
    border: 1px solid #00a8ff;
}

.fc-widget-content,
.fc-widget-header {
    margin-right: 0 !important;
}

.fc-ltr .fc-time-grid .fc-event-container,
.fc-popover .fc-header .fc-title,
.fc-unthemed .fc-popover .fc-header .fc-title {
    margin: 0;
}

.fc-scroller {
    overflow-y: auto;
    overflow-x: hidden !important;
}

.fc-day-grid-event .fc-time {
    font-weight: 600;
}

.fc-event {
    background-color: #b0e4fe;
    border-color: #fff;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 7px;
    transition: none;
}

.fc-event.event-clicked {
    background-color: #62cafd;
    border-color: #00a8ff;
    z-index: 30 !important;
}

.fc-event.event-clicked:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
}

.fc-event.event-green {
    background-color: #c8ecce;
}

.fc-event.event-green.event-clicked {
    background-color: #92db9d;
}

.fc-event.event-red {
    background-color: #fec6c7;
}

.fc-event.event-red.event-clicked {
    background-color: #fd8e91;
}

.fc-event.event-orange {
    background-color: #ffecb5;
}

.fc-event.event-orange.event-clicked {
    background-color: #f7c16d;
}

.fc-event.event-coral {
    background-color: #ffcdb4;
}

.fc-event.event-coral.event-clicked {
    background-color: #ff9a6b;
}

a.fc-more {
    text-decoration: none;
    color: #0082c6;
    border-bottom: solid 1px rgba(0, 130, 198, .3);
}

a.fc-more:hover {
    border-bottom-color: transparent;
}

.fc-popover,
.fc-unthemed .fc-popover {
    width: 250px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: 0 0;
    border: none;
}

.fc-popover .fc-header,
.fc-unthemed .fc-popover .fc-header {
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    color: #fff;
    background: #00a8ff;
    padding: 6px 10px 6px 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .875rem;
}

.fc-popover .fc-header .fc-close,
.fc-unthemed .fc-popover .fc-header .fc-close {
    color: #fff;
    font-size: .875rem;
}

.fc-popover .fc-body,
.fc-unthemed .fc-popover .fc-body {
    background: #fbfcfd;
    border: 1px solid #c5d6de;
    border-top: none;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.fc-popover .fc-event-container,
.fc-unthemed .fc-popover .fc-event-container {
    padding: 10px 12px;
}

.fc-popover .fc-h-event,
.fc-unthemed .fc-popover .fc-h-event {
    padding-left: 7px !important;
    margin-left: 2px !important;
}

.fc-popover .text-center .btn,
.fc-unthemed .fc-popover .text-center .btn {
    margin: 0 4px;
}

.fc-popover.click {
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 50;
    margin-left: -120px;
    margin-top: 8px;
    font-size: .9375rem;
}

.fc-popover.click .fc-header {
    position: relative;
    padding-right: 30px;
}

.fc-popover.click .fc-header:before {
    content: '';
    display: block;
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -9px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 9px;
    border-color: transparent transparent #00a8ff;
}

.fc-popover.click .fc-header .cl {
    border: none;
    background: 0 0;
    padding: 0;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
}

.gallery-item .gallery-doc,
.gallery-item .gallery-hover-layout {
    border-collapse: separate;
    border-spacing: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc-popover.click .fc-body {
    padding: 12px;
}

.fc-popover.click .fc-body p {
    margin: 0 0 1em;
}

.fc-popover.click .fc-body .actions {
    margin: 0 -12px 0 0;
    zoom: 1;
}

.fc-popover.click .fc-body .actions:after,
.fc-popover.click .fc-body .actions:before {
    content: " ";
    display: table;
}

.fc-popover.click .fc-body .actions:after {
    clear: both;
}

.fc-popover.click .fc-body .actions li {
    float: left;
    margin: 0 12px 0 0;
}

.fc-popover.click .fc-body .actions li:last-child {
    margin-right: 0;
}

.fc-popover.click .fc-body>.btn {
    margin: 0 10px 0 0;
}

.fc-popover.click .fc-body .form-control {
    font-size: .875rem;
}

.fc-popover.click .fc-body.edit-event,
.fc-popover.click .fc-body.remove-confirm {
    display: none;
}

.calendar-page {
    zoom: 1;
}

.calendar-page:after,
.calendar-page:before {
    content: " ";
    display: table;
}

.calendar-page:after {
    clear: both;
}

.calendar-page .calendar-page-content {
    float: left;
    width: 100%;
    margin-right: -250px;
    position: relative;
}

.calendar-page .calendar-page-content-in {
    margin: 0 249px -1px -1px;
}

.calendar-page .calendar-page-title {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
    padding: .375rem 15px;
}

.calendar-page .calendar-page-side {
    float: right;
    width: 250px;
    position: relative;
    z-index: 2;
    border-left: solid 1px #d8e2e7;
}

.calendar-page .calendar-page-side .bootstrap-datetimepicker-widget {
    padding: 15px 0 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 270px;
}

.calendar-page .calendar-page-side .bootstrap-datetimepicker-widget table th.picker-switch {
    font-size: 1rem;
    font-weight: 600;
}

.calendar-page .calendar-page-side-section {
    border-top: solid 1px #d8e2e7;
}

.calendar-page .calendar-page-side-section:first-child {
    border-top: none;
}

.calendar-page .calendar-page-side-section-in {
    padding: 0 15px;
}

@media (max-width:1199px) {
    .calendar-page .calendar-page-content {
        float: none;
        margin-right: 0;
    }
    .calendar-page .calendar-page-content-in {
        margin-right: -1px;
    }
    .calendar-page .calendar-page-side {
        float: none;
        width: auto;
        zoom: 1;
    }
    .calendar-page .calendar-page-side:after,
    .calendar-page .calendar-page-side:before {
        content: " ";
        display: table;
    }
    .calendar-page .calendar-page-side:after {
        clear: both;
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .calendar-page .calendar-page-side .calendar-page-side-section {
        float: left;
        width: 33.333333%;
    }
}

@media (max-width:767px) {
    .calendar-page .calendar-page-content {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .calendar-page .calendar-page-content-in {
        min-width: 740px;
    }
}

.colors-guide-list {
    padding: 0 0 10px;
}

.colors-guide-list .color-double {
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #b0e4fe;
}

.colors-guide-list .color-double>div {
    height: 16px;
    width: 50%;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    background: #62cafd;
}

.colors-guide-list .color-double.green {
    background-color: #c8ecce;
}

.colors-guide-list .color-double.green>div {
    background-color: #92db9d;
}

.colors-guide-list .color-double.red {
    background-color: #fec6c7;
}

.colors-guide-list .color-double.red>div {
    background-color: #fd8e91;
}

.colors-guide-list .color-double.orange {
    background-color: #ffecb5;
}

.colors-guide-list .color-double.orange>div {
    background-color: #f7c16d;
}

.colors-guide-list .color-double.coral {
    background-color: #ffcdb4;
}

.colors-guide-list .color-double.coral>div {
    background-color: #ff9a6b;
}

.colors-guide-list li {
    position: relative;
    padding: 0 0 10px 25px;
}

.prices-page p {
    margin: 0;
}

.prices-page .prices-page-title {
    font-size: 1.75rem;
    margin: 0 0 15px;
    padding: 10px 0 0;
}

.prices-page .prices-page-subtitle {
    padding-bottom: 30px;
    font-size: 1.25rem;
}

.prices-page .prices-page-bottom {
    padding: 30px 0 15px;
}

.price-card {
    width: 100%;
    max-width: 225px;
    display: inline-block;
    vertical-align: bottom;
    margin: 20px 7px 0;
}

.price-card .price-card-header {
    border: 1px solid #d8e2e7;
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    background: #f6f8fa;
    padding: 15px;
    font-size: 1.25rem;
}

.price-card .price-card-body {
    background: #fff;
    border: 1px solid #d8e2e7;
    border-top: none;
    -webkit-border-radius: 0 0 .25rem .25rem;
    border-radius: 0 0 .25rem .25rem;
    padding: 25px 0;
}

.price-card .price-card-amount {
    font-size: 2.375rem;
    line-height: 1;
    white-space: nowrap;
}

.price-card .price-card-amount-lbl {
    padding: 10px 0 15px;
}

.price-card .price-card-list {
    text-align: left;
    padding: 20px 30px 18px;
}

.price-card .price-card-list li {
    margin: 0 0 .25rem;
}

.price-card .price-card-list .font-icon {
    color: #00a8ff;
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.price-card .price-card-label {
    padding: 10px;
    background: #00a8ff;
    color: #fff;
}

@media (max-width:991px) {
    .price-card {
        display: block;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
    }
    .price-card .price-card-list {
        display: inline-block;
    }
}

.box-typical .box-typical-header .action-btn.view {
    color: #c5d6de;
}

.box-typical .box-typical-header .action-btn.view.active,
.box-typical .box-typical-header .action-btn.view:hover {
    color: #919fa9;
}

.gallery-grid {
    zoom: 1;
    padding: 8px;
}

.gallery-grid:after,
.gallery-grid:before {
    content: " ";
    display: table;
}

.gallery-grid:after {
    clear: both;
}

.gallery-grid .gallery-col {
    float: left;
    width: 20%;
    padding: 7px;
}

.gallery-item {
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-item .gallery-picture {
    display: block;
    width: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.gallery-item .gallery-hover-layout {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 101%;
    height: 101%;
    display: table;
}

.gallery-item .gallery-hover-layout-in {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: rgba(0, 168, 255, .9);
    padding: 10px;
    color: #fff;
    max-width: 100px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.gallery-item .gallery-item-title {
    font-weight: 600;
}

.gallery-item p {
    margin: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.gallery-item .btn-group {
    padding: .75rem 0;
}

.gallery-item .btn-group .btn {
    background: 0 0;
    border: 1px solid #fff;
}

.gallery-item .btn-group .btn:hover {
    background-color: #fff;
    color: #00a8ff;
}

.gallery-item .btn-group .btn .font-icon-cloud {
    position: relative;
    top: 1px;
}

.gallery-item:hover .gallery-hover-layout {
    opacity: 1;
}

.gallery-item .gallery-doc {
    display: table;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.gallery-item .gallery-doc-in {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 10px;
    border: 1px solid #c5d6de;
    background: #f6f8fa;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    max-width: 100px;
}

.gallery-item .gallery-doc-in .font-icon {
    color: #adb7be;
    font-size: 2rem;
}

@media (min-width:1550px) {
    .gallery-grid .gallery-col {
        width: 16.666667%;
    }
}

@media (min-width:1800px) {
    .gallery-grid .gallery-col {
        width: 14.285714%;
    }
}

@media (max-width:1350px) {
    .gallery-grid .gallery-col {
        width: 25%;
    }
}

@media (max-width:1150px) {
    .gallery-grid .gallery-col {
        width: 33.333333%;
    }
}

@media (max-width:767px) {
    .gallery-grid .gallery-col {
        width: 50%;
    }
}

@media (max-width:480px) {
    .gallery-grid .gallery-col {
        width: 100%;
    }
}

.note-popover {
    display: none;
    margin-top: 5px;
}

.note-popover .note-btn.btn {
    border-color: #d8e2e7;
    background-color: #fff;
    color: #919fa9 !important;
}

.note-popover .note-btn.btn:hover {
    background-color: #f6f8fa;
}

.note-editor {
    margin: 0 0 15px;
}

.note-editor.note-frame {
    border: none;
}

.note-editor.note-frame .note-statusbar {
    background-color: #f6f8fa;
    border: 1px solid #d8e2e7;
    border-top: none;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.note-editor.note-frame .note-editing-area {
    border: 1px solid #d8e2e7;
    border-top: none;
}

.note-editor .note-toolbar {
    border: 1px solid #d8e2e7;
    background: #f6f8fa;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.note-editor .note-toolbar .note-icon-caret {
    display: none;
}

.note-editor .note-toolbar .note-color .note-palette-title {
    border-bottom: none !important;
    font-size: .875rem !important;
}

.note-editor .note-toolbar .note-color .note-color-reset.btn {
    margin: 3px 0 5px !important;
    background-color: #fff;
    border-color: #d8e2e7;
    color: #343434 !important;
    font-size: .875rem !important;
    font-weight: 400;
}

.note-editor .note-toolbar .note-color .note-color-reset.btn:hover {
    background-color: #ecf2f5 !important;
}

.note-editor .note-toolbar .note-fontname .note-btn-group.btn-group.open .dropdown-menu>li>a {
    padding-left: .5rem;
    position: relative;
}

.note-editor .note-toolbar .note-para .dropdown-menu {
    min-width: 200px;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open>.note-btn.btn {
    color: #343434 !important;
    background: #fff;
    border-color: #d8e2e7;
    border-bottom: none;
    -webkit-border-bottom-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    -webkit-border-bottom-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    z-index: 1002;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .note-current-color-button.btn {
    -webkit-border-top-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .note-current-color-button.btn+.note-btn.btn {
    -webkit-border-top-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-left: none !important;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .dropdown-menu {
    margin-top: -1px;
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .dropdown-menu>li>a {
    display: block;
    padding: 4px 6px;
    color: #343434;
    white-space: nowrap;
    font-size: 1rem;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .dropdown-menu>li>a:hover {
    background-color: #ecf2f5;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .dropdown-menu>li>a.checked {
    color: #00a8ff;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .dropdown-menu .note-btn.btn {
    color: #919fa9 !important;
    border: none;
}

.note-editor .note-toolbar .note-btn-group.btn-group.open .dropdown-menu .note-btn.btn:hover {
    background-color: #ecf2f5;
    color: #343434 !important;
}

.note-editor .note-btn-group.btn-group.note-fontname .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding-right: 8px;
}

.note-editor .note-btn-group.btn-group.note-fontname .dropdown-menu>li>a {
    padding-right: 3px;
    margin-right: -5px;
}

.note-editor .note-btn.btn {
    height: 34px;
    background: 0 0;
    color: #6c7a86 !important;
    border-color: transparent;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    padding-left: .5rem;
    padding-right: .5rem;
}

.note-editor .note-btn.btn .note-icon-font.note-recent-color {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 2px 2px 0;
}

.note-editor .note-btn.btn:hover {
    background-color: #919fa9;
    border-color: #919fa9;
    color: #fff !important;
}

.note-editor .note-btn.btn:hover .note-icon-font.note-recent-color {
    background-color: transparent !important;
}

.note-editor .note-btn.btn.dropdown-toggle:after {
    margin-right: 0;
    position: relative;
    top: -1px;
}

.note-editor .note-btn.btn i {
    position: relative;
    top: -2px;
    vertical-align: middle;
}

.note-editor .note-btn.btn i.note-icon-align-center,
.note-editor .note-btn.btn i.note-icon-align-justify,
.note-editor .note-btn.btn i.note-icon-align-left,
.note-editor .note-btn.btn i.note-icon-align-right,
.note-editor .note-btn.btn i.note-icon-arrows-alt,
.note-editor .note-btn.btn i.note-icon-bold,
.note-editor .note-btn.btn i.note-icon-code,
.note-editor .note-btn.btn i.note-icon-eraser,
.note-editor .note-btn.btn i.note-icon-font,
.note-editor .note-btn.btn i.note-icon-link,
.note-editor .note-btn.btn i.note-icon-magic,
.note-editor .note-btn.btn i.note-icon-orderedlist,
.note-editor .note-btn.btn i.note-icon-picture,
.note-editor .note-btn.btn i.note-icon-question,
.note-editor .note-btn.btn i.note-icon-table,
.note-editor .note-btn.btn i.note-icon-underline,
.note-editor .note-btn.btn i.note-icon-unorderedlist,
.note-editor .note-btn.btn i.note-icon-video {
    top: 0;
    height: 18px;
}

.note-editor .note-btn.btn i.note-icon-align-center:before,
.note-editor .note-btn.btn i.note-icon-align-justify:before,
.note-editor .note-btn.btn i.note-icon-align-left:before,
.note-editor .note-btn.btn i.note-icon-align-right:before,
.note-editor .note-btn.btn i.note-icon-arrows-alt:before,
.note-editor .note-btn.btn i.note-icon-bold:before,
.note-editor .note-btn.btn i.note-icon-code:before,
.note-editor .note-btn.btn i.note-icon-eraser:before,
.note-editor .note-btn.btn i.note-icon-font:before,
.note-editor .note-btn.btn i.note-icon-link:before,
.note-editor .note-btn.btn i.note-icon-magic:before,
.note-editor .note-btn.btn i.note-icon-orderedlist:before,
.note-editor .note-btn.btn i.note-icon-picture:before,
.note-editor .note-btn.btn i.note-icon-question:before,
.note-editor .note-btn.btn i.note-icon-table:before,
.note-editor .note-btn.btn i.note-icon-underline:before,
.note-editor .note-btn.btn i.note-icon-unorderedlist:before,
.note-editor .note-btn.btn i.note-icon-video:before {
    font-family: startui !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    vertical-align: middle;
    line-height: 18px;
    top: -2px;
}

.note-editor .note-btn.btn i.note-icon-magic:before {
    content: "\e02b";
}

.note-editor .note-btn.btn i.note-icon-bold:before {
    content: "\e022";
}

.note-editor .note-btn.btn i.note-icon-underline:before {
    content: "\e02e";
}

.note-editor .note-btn.btn i.note-icon-eraser:before {
    content: "\e024";
}

.note-editor .note-btn.btn i.note-icon-font:before {
    content: "\e025";
}

.note-editor .note-btn.btn i.note-icon-unorderedlist:before {
    content: "\e02a";
}

.note-editor .note-btn.btn i.note-icon-orderedlist:before {
    content: "\e02c";
}

.note-editor .note-btn.btn i.note-icon-align-left:before {
    content: "\e020";
}

.note-editor .note-btn.btn i.note-icon-align-right:before {
    content: "\e021";
}

.note-editor .note-btn.btn i.note-icon-align-center:before {
    content: "\e01e";
}

.note-editor .note-btn.btn i.note-icon-align-justify:before {
    content: "\e01f";
}

.note-editor .note-btn.btn i.note-icon-table:before {
    content: "\e02d";
}

.note-editor .note-btn.btn i.note-icon-link:before {
    content: "\e029";
    font-size: 23px;
}

.note-editor .note-btn.btn i.note-icon-picture:before {
    content: "\e028";
    font-size: 17px;
}

.note-editor .note-btn.btn i.note-icon-video:before {
    content: "\e02f";
    font-size: 20px;
}

.note-editor .note-btn.btn i.note-icon-arrows-alt:before {
    content: "\e026";
}

.note-editor .note-btn.btn i.note-icon-code:before {
    content: "\e023";
    font-size: 22px;
}

.note-editor .note-btn.btn i.note-icon-question:before {
    content: "\e027";
}

.note-editor .note-current-color-button+.note-btn.dropdown-toggle {
    min-height: 32px;
}

.note-editor .note-current-color-button+.note-btn.dropdown-toggle:after {
    margin-left: 0;
}

.note-editor blockquote {
    padding: 0 0 2px 6px;
    border-left: solid 4px #d8e2e7;
    margin-right: 0;
    margin-left: 0;
}

.note-editor pre {
    border: 1px solid #d8e2e7;
    background-color: #f6f8fa;
    padding: 0 6px 2px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.note-editor .note-editable ol,
.note-editor .note-editable ul {
    margin-left: 2rem;
}

.note-editor .note-editable ul {
    list-style: disc;
}

.summernote-theme-1 .note-editor .note-btn.btn,
.summernote-theme-2 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-2 .note-editor .note-toolbar {
    background-color: #919fa9;
    border-color: #919fa9;
}

.summernote-theme-2 .note-editor .note-toolbar .note-btn.btn {
    color: #fff !important;
}

.summernote-theme-2 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #919fa9 !important;
}

.summernote-theme-2 .note-editor .note-toolbar .note-btn.btn .note-icon-font.note-recent-color {
    color: #919fa9;
}

.summernote-theme-3 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-3 .note-editor .note-toolbar {
    background-color: #131821;
    border-color: #131821;
}

.summernote-theme-3 .note-editor .note-toolbar .note-btn.btn {
    color: #fff !important;
}

.summernote-theme-3 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #131821 !important;
}

.summernote-theme-3 .note-editor .note-toolbar .note-btn.btn .note-icon-font.note-recent-color {
    color: #131821;
}

.summernote-theme-4 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-4 .note-editor .note-toolbar {
    background-color: #fff;
}

.summernote-theme-4 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #00a8ff;
    border-color: #00a8ff;
    color: #fff !important;
}

.summernote-theme-5 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-5 .note-editor .note-toolbar {
    background-color: #fff;
}

.summernote-theme-5 .note-editor .note-toolbar .note-btn.btn {
    color: #00a8ff !important;
}

.summernote-theme-5 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #00a8ff;
    border-color: #00a8ff;
    color: #fff !important;
}

.summernote-theme-5 .note-editor .note-toolbar .note-btn.btn:hover .note-icon-font.note-recent-color {
    color: #fff;
}

.summernote-theme-5 .note-editor .note-toolbar .note-btn.btn .note-icon-font.note-recent-color {
    color: #00a8ff;
}

.summernote-theme-6 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-6 .note-editor .note-toolbar {
    background-color: #fff;
}

.summernote-theme-6 .note-editor .note-toolbar .note-btn.btn {
    color: #131821 !important;
}

.summernote-theme-6 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #131821;
    border-color: #131821;
    color: #fff !important;
}

.summernote-theme-6 .note-editor .note-toolbar .note-btn.btn:hover .note-icon-font.note-recent-color {
    color: #fff;
}

.summernote-theme-6 .note-editor .note-toolbar .note-btn.btn .note-icon-font.note-recent-color {
    color: #131821;
}

.summernote-theme-7 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-7 .note-editor .note-toolbar {
    background-color: #fff;
}

.summernote-theme-7 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #fff;
    border-color: #919fa9;
    color: #6c7a86 !important;
}

.summernote-theme-8 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-8 .note-editor .note-toolbar {
    background-color: #fbfcfd;
}

.summernote-theme-8 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #6c7a86;
    border-color: #6c7a86;
    color: #fff !important;
}

.summernote-theme-8 .note-editor .note-toolbar .note-btn.btn:hover .note-icon-font.note-recent-color {
    color: #fff;
}

.summernote-theme-9 .note-editor .note-toolbar .note-btn.btn {
    border-color: #d8e2e7;
}

.summernote-theme-9 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: transparent;
    border-color: #6c7a86;
    color: #6c7a86 !important;
}

.summernote-theme-9 .note-editor .note-toolbar .note-btn.btn:hover .note-icon-font.note-recent-color {
    color: #6c7a86;
}

.summernote-theme-10 .note-editor .note-btn.btn {
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
}

.summernote-theme-10 .note-editor .note-toolbar {
    background-color: #cbeefe;
    border-color: #0081c3;
}

.summernote-theme-10 .note-editor .note-toolbar .note-btn.btn {
    color: #0081c3 !important;
}

.summernote-theme-10 .note-editor .note-toolbar .note-btn.btn:hover {
    background-color: #0081c3;
    border-color: #0081c3;
    color: #fff !important;
}

.summernote-theme-10 .note-editor .note-toolbar .note-btn.btn:hover .note-icon-font.note-recent-color {
    color: #fff;
}

.summernote-theme-10 .note-editor .note-toolbar .note-btn.btn .note-icon-font.note-recent-color {
    color: #0081c3;
}

.contacts-page {
    zoom: 1;
}

.contacts-page:after,
.contacts-page:before {
    content: " ";
    display: table;
}

.contacts-page:after {
    clear: both;
}

.contacts-page .box-typical-header .tbl-cell.tbl-cell-title h1,
.contacts-page .box-typical-header .tbl-cell.tbl-cell-title h2,
.contacts-page .box-typical-header .tbl-cell.tbl-cell-title h3,
.contacts-page .box-typical-header .tbl-cell.tbl-cell-title h4,
.contacts-page .box-typical-header .tbl-cell.tbl-cell-title h5,
.contacts-page .box-typical-header .tbl-cell.tbl-cell-title h6 {
    display: inline;
    margin-right: 25px;
}

.contacts-page .contacts-tabs {
    display: inline-block;
    font-size: .9375rem;
    font-weight: 600;
}

.contacts-page .contacts-tabs .nav-item {
    display: inline-block;
    margin: 0 25px 0 0;
}

.contacts-page .contacts-tabs .nav-item:last-child {
    margin-right: 0;
}

.contacts-page .contacts-tabs a {
    display: block;
    color: #343434;
    -webkit-border-radius: 25rem;
    border-radius: 25rem;
    padding: 0 10px;
    line-height: 22px;
}

.contacts-page .contacts-tabs a:hover {
    color: #00a8ff;
}

.contacts-page .contacts-tabs a.active {
    color: #fff;
    background: #00a8ff;
}

.contacts-page-col-right {
    float: right;
    width: 280px;
    position: relative;
}

.contacts-page-col-left {
    float: left;
    width: 100%;
    margin-right: -280px;
}

.contacts-page-col-left-in {
    margin-right: 280px;
    border-right: solid 1px #d8e2e7;
}

.contacts-page-col-left-in .map {
    height: 300px;
}

.contacts-page-section {
    border-top: solid 1px #d8e2e7;
    padding: 15px;
    zoom: 1;
}

.contacts-page-section:after,
.contacts-page-section:before {
    content: " ";
    display: table;
}

.contacts-page-section:after {
    clear: both;
}

.contacts-page-section:first-child {
    border-top: none;
}

.contacts-page-section .box-typical-header-sm {
    padding: 0 0 15px;
}

.contacts-page-section .contact {
    font-size: 1.125rem;
    margin: 0 25px 10px 0;
}

.contacts-page-section .contact:hover {
    opacity: .7;
}

.contacts-page-section .contact .font-icon {
    vertical-align: middle;
}

.contacts-page-section .contact .font-icon-facebook {
    color: #37559a;
}

.contacts-page-section .contact .font-icon-twitter {
    color: #00aaed;
}

.contacts-page-section .contact .font-icon-linkedin {
    color: #007ab4;
}

.contacts-page-section .contact .font-icon-google-plus {
    color: #d33928;
}

.contacts-page-section .contact .font-icon-instagram {
    color: #105881;
}

.contacts-page-section .contact-other {
    margin: 0 0 10px;
}

.contacts-page-section .contact-other .font-icon {
    vertical-align: middle;
    color: #adb7be;
    margin: 0 8px 0 0;
}

@media (max-width:700px) {
    .contacts-page-col-right {
        float: none;
        width: auto;
    }
    .contacts-page-col-left {
        float: none;
        margin-right: 0;
    }
    .contacts-page-col-left-in {
        margin-right: 0;
        border-right: none;
    }
}

.gm-style {
    font-family: 'Roboto', sans-serif;
}

.infoBox {
    background: rgba(44, 57, 73, .95);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    padding: 5px 10px 5px 15px;
    font-size: 1rem;
    margin: 10px 0 0;
}

.infoBox:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: -10px;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px;
    border-color: transparent transparent rgba(44, 57, 73, .95);
}

.infoBox>img {
    width: 8px;
    margin: 0 !important;
    position: absolute !important;
    right: 5px;
    top: 5px;
    opacity: .5;
}

.infoBox>img:hover {
    opacity: 1;
}

.infoBox p {
    margin: .5rem 0;
    position: relative;
    padding: 0 0 0 26px;
}

.infoBox .font-icon {
    position: absolute;
    left: 0;
    top: 2px;
}

.files-manager {
    zoom: 1;
}

.files-manager:after,
.files-manager:before {
    content: " ";
    display: table;
}

.files-manager:after {
    clear: both;
}

.files-manager-side {
    float: left;
    width: 168px;
    position: relative;
    background: #f6f8fa;
    border-right: solid 1px #d8e2e7;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.files-manager-side-title {
    padding: 15px;
    font-weight: 600;
}

.files-manager-side-list {
    font-weight: 600;
    padding: 0 0 5px;
}

.files-manager-side-list a {
    display: block;
    color: #818181;
    padding: 6px 10px 7px 11px;
    border-left: solid 4px transparent;
}

.files-manager-header .files-manager-header-right:after,
.files-manager-header .files-manager-header-right:before,
.files-manager-header:after,
.files-manager-header:before,
.files-manager-panel-in:after,
.files-manager-panel-in:before {
    display: table;
    content: " ";
}

.files-manager-side-list a.active,
.files-manager-side-list a:hover {
    background-color: #ecf2f5;
    color: #343434;
}

.files-manager-side-list a:hover {
    border-left-color: #ecf2f5;
}

.files-manager-side-list a.active {
    border-left-color: #00a8ff;
}

.files-manager-panel {
    float: right;
    width: 100%;
    margin-left: -168px;
}

.files-manager-panel-in {
    margin-left: 168px;
    zoom: 1;
}

.files-manager-panel-in:after {
    clear: both;
}

.files-manager-header {
    border-bottom: solid 1px #d8e2e7;
    padding: 10px 15px;
    zoom: 1;
}

.files-manager-header:after {
    clear: both;
}

.files-manager-header .files-manager-header-left {
    float: left;
}

.files-manager-header .files-manager-header-right {
    float: right;
    zoom: 1;
}

.files-manager-header .files-manager-header-right:after {
    clear: both;
}

.files-manager-header .btn,
.files-manager-header .btn-icon {
    vertical-align: top;
}

.files-manager-header .btn {
    margin: 0 22px 0 0;
}

.files-manager-header .btn-icon {
    height: 38px;
    padding: 0;
    background: 0 0;
    border: none;
    color: #919fa9;
    margin: 0 8px 0 0;
}

.files-manager-header .btn-icon:hover {
    color: #00a8ff;
}

.files-manager-header .btn-icon .font-icon {
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.files-manager-header .btn-icon.view {
    color: #c5d6de;
}

.files-manager-header .btn-icon.view.active,
.files-manager-header .btn-icon.view:hover {
    color: #919fa9;
}

.files-manager-header .views {
    float: left;
    margin: 0 10px 0 0;
}

.files-manager-header .search {
    float: left;
    width: 216px;
    position: relative;
}

.files-manager-header .search .form-control {
    padding-right: 35px;
}

.files-manager-header .search .btn-icon {
    position: absolute;
    right: 5px;
    top: -1px;
}

.files-manager-aside {
    float: right;
    width: 280px;
    position: relative;
}

.files-manager-aside-section {
    border-top: solid 1px #d8e2e7;
    padding: 15px 15px 20px;
}

.files-manager-aside-section:first-child {
    border-top: none;
}

.files-manager-aside-section .box-typical-header-sm,
.files-manager-aside-section .info-list {
    padding: 0 0 10px;
}

.files-manager-aside-section .info-list p {
    margin: 0 0 6px;
}

.files-manager-aside-section .soc {
    display: inline-block;
    font-size: 22px;
    margin: 15px 5px 0 0;
}

.files-manager-aside-section .soc:hover {
    opacity: .7;
}

.files-manager-aside-section .soc .font-icon-fb-fill {
    color: #37559a;
}

.files-manager-aside-section .soc .font-icon-vk-fill {
    color: #456fa0;
}

.files-manager-aside-section .soc .font-icon-ok-fill {
    color: #fa8121;
}

.files-manager-aside-section .soc .font-icon-tw-fill {
    color: #00aaed;
}

.files-manager-aside-section .soc .font-icon-gp-fill {
    color: #d33928;
}

.files-manager-content {
    float: left;
    width: 100%;
    margin-right: -280px;
}

.files-manager-content-in {
    margin-right: 280px;
    border-right: solid 1px #d8e2e7;
}

.fm-file-grid {
    padding: 18px 0 0 18px;
    zoom: 1;
}

.fm-file-grid:after,
.fm-file-grid:before {
    content: " ";
    display: table;
}

.fm-file-grid:after {
    clear: both;
}

.fm-file {
    float: left;
    width: 150px;
    margin: 0 18px 18px 0;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    padding: 18px 10px 15px;
    text-align: center;
    cursor: default;
}

.fm-file .fm-file-icon {
    height: 100px;
    line-height: 100px;
}

.fm-file .fm-file-icon img {
    vertical-align: middle;
    width: 100px;
    height: 100px;
}

.fm-file .file-size,
.fm-file .fm-file-name {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.fm-file .fm-file-size {
    color: #6c7a86;
}

.fm-file.selected,
.fm-file:hover {
    background-color: #f6f8fa;
}

@media (max-width:830px) {
    .files-manager-side {
        float: none;
        width: auto;
        border-right: none;
        -webkit-border-bottom-left-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom: solid 1px #d8e2e7;
    }
    .files-manager-panel {
        float: none;
        margin-left: 0;
    }
    .files-manager-panel-in {
        margin-left: 0;
    }
}

@media (max-width:767px) {
    .files-manager-header .files-manager-header-left,
    .files-manager-header .files-manager-header-right {
        float: none;
    }
    .files-manager-header .files-manager-header-left {
        padding-bottom: 10px;
    }
    .files-manager-aside {
        float: none;
        width: auto;
    }
    .files-manager-content {
        float: none;
        margin-right: 0;
    }
    .files-manager-content-in {
        margin-right: 0;
        border-right: none;
    }
}

@media (max-width:380px) {
    .files-manager-header-left {
        padding-bottom: 0 !important;
    }
    .files-manager-header-left .btn {
        display: block;
    }
}

.mail-box-header .btns-icon:after,
.mail-box-header .btns-icon:before,
.mail-box-header .mail-box-header-left:after,
.mail-box-header .mail-box-header-left:before,
.mail-box-header .mail-box-header-nav:after,
.mail-box-header .mail-box-header-nav:before,
.mail-box-header .mail-box-header-right:after,
.mail-box-header .mail-box-header-right:before,
.mail-box-header:after,
.mail-box-header:before,
.mail-box:after,
.mail-box:before {
    content: " ";
    display: table;
}

.mail-box {
    zoom: 1;
}

.mail-box:after {
    clear: both;
}

.mail-box-header {
    padding: 10px 15px;
    zoom: 1;
    border-bottom: solid 1px #d8e2e7;
}

.mail-box-header:after {
    clear: both;
}

.mail-box-header .mail-box-header-left,
.mail-box-header .mail-box-header-right {
    zoom: 1;
}

.mail-box-header .mail-box-header-left:after,
.mail-box-header .mail-box-header-right:after {
    clear: both;
}

.mail-box-header .mail-box-header-left {
    float: left;
}

.mail-box-header .mail-box-header-right {
    float: right;
}

.mail-box-header .btn-icon,
.mail-box-header .btns-icon,
.mail-box-header .write {
    float: left;
}

.mail-box-header .btns-icon {
    zoom: 1;
}

.mail-box-header .btns-icon:after {
    clear: both;
}

.mail-box-header .write {
    margin: 0 25px 0 0;
}

.mail-box-header .btn-icon {
    height: 38px;
    padding: 0;
    background: 0 0;
    border: none;
    color: #919fa9;
    margin: 0 18px 0 0;
}

.mail-box-header .btn-icon:hover {
    color: #00a8ff;
}

.mail-box-header .btn-icon .font-icon {
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.mail-box-header .search {
    float: left;
    width: 216px;
    position: relative;
}

.mail-box-header .search .form-control {
    padding-right: 35px;
}

.mail-box-header .search .btn-icon {
    position: absolute;
    right: 0;
    top: -1px;
    width: 12px;
}

.mail-box-header .mail-box-header-nav {
    float: left;
    line-height: 38px;
    zoom: 1;
    font-weight: 600;
}

.mail-box-header .mail-box-header-nav:after {
    clear: both;
}

.mail-box-header .mail-box-header-nav li {
    float: left;
    margin: 0 30px 0 0;
}

.mail-box-header .mail-box-header-nav a {
    color: #343434;
}

.mail-box-header .mail-box-header-nav a:hover {
    color: #00a8ff;
}

.mail-box-header .mail-box-header-nav a.active {
    color: #0082c6;
}

.mail-box-list {
    float: left;
    width: 372px;
    position: relative;
    border-right: solid 1px #d8e2e7;
    background: #f6f8fa;
    -webkit-border-radius: 0 0 0 3px;
    border-radius: 0 0 0 3px;
}

.mail-box-item {
    padding: 25px;
    position: relative;
    border: solid 1px #d8e2e7;
    cursor: default;
    font-size: .9375rem;
    top: 60px;
}

.mail-box-item:first-child {
    border-top: none;
}

.mail-box-item .mail-box-item-header {
    padding: 0 0 0 44px;
    position: relative;
    min-height: 32px;
}

.mail-box-item .mail-box-item-photo {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
}

.mail-box-item .mail-box-item-photo img {
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
}

.mail-box-item .mail-box-item-head-tbl {
    line-height: 1rem;
    margin: 0 0 4px;
}

.mail-box-item .mail-box-item-head-tbl .tbl-cell {
    vertical-align: top;
}

.mail-box-item .mail-box-item-head-tbl .tbl-cell-date {
    text-align: right;
    width: 20px;
    white-space: nowrap;
    color: #919fa9;
    font-size: .875rem;
    padding-left: 10px;
    padding-top: 1px;
}

.mail-box-item .mail-box-item-user-tbl {
    width: auto;
}

.mail-box-item .mail-box-item-user-tbl .tbl-cell-new,
.mail-box-item .mail-box-item-user-tbl .tbl-cell-status {
    width: 10px;
    padding-left: 5px;
    white-space: nowrap;
}

.mail-box-item .mail-box-item-user-tbl .tbl-cell-name {
    font-weight: 600;
}

.mail-box-item .mail-box-item-user-tbl .tbl-cell-new .label {
    font-size: .75rem;
    position: relative;
    top: -1px;
    padding-bottom: 2px;
}

.mail-box-item .mail-box-item-user-tbl .tbl-cell-status .online {
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    top: 5px;
    background: #46c35f;
}

.mail-box-item .mail-box-item-title {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.mail-box-item .mail-box-item-content {
    position: relative;
    padding: 0 0 0 44px;
    color: #919fa9;
}

.mail-box-item .mail-box-item-content .attach {
    width: 32px;
    position: absolute;
    left: 0;
    top: 1px;
    text-align: center;
    font-size: .875rem;
}

.mail-box-item.selected-line:after,
.mail-box-work-area-header:after {
    content: '';
    top: 10px;
    left: -1px;
    bottom: 10px;
    display: block;
}

.mail-box-item .mail-box-item-content .txt {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.mail-box-item.selected,
.mail-box-item:hover {
    background-color: #ecf2f5;
}

.mail-box-item.selected-line:after {
    width: 4px;
    position: absolute;
    background: #ac6bec;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.mail-box-item.selected-line.red:after {
    background-color: #fa424a;
}

.mail-box-work-area {
    float: right;
    width: 100%;
    margin-left: -372px;
}

.mail-box-work-area .mail-box-work-area-in {
    margin-left: 372px;
}

.mail-box-work-area-header {
    border-bottom: solid 1px #d8e2e7;
    position: relative;
    padding: 12px 15px;
}

.mail-box-work-area-header:after {
    width: 4px;
    position: absolute;
    background: #ac6bec;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.mail-box-work-area-header .tbl-cell-btns {
    width: 10px;
    white-space: nowrap;
}

.mail-box-work-area-header .btn-icon {
    height: 32px;
    padding: 0;
    background: 0 0;
    border: none;
    color: #919fa9;
    margin: 0 0 0 20px;
}

.mail-box-work-area-header .btn-icon:hover {
    color: #00a8ff;
}

.mail-box-work-area-header .btn-icon .font-icon {
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.mail-box-work-area-header .user-card-row {
    font-size: .9375rem;
}

.mail-box-work-area-header .letters-num {
    color: #818181;
    margin: 0 20px 0 0;
}

.mail-box-letter-item {
    margin: 5px;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    background: #f6f8fa;
    padding: 13px;
    line-height: 18px;
    font-size: .9375rem;
}

.mail-box-letter-item .mail-box-letter-item-in {
    position: relative;
    padding: 0 0 0 44px;
    min-height: 32px;
}

.mail-box-letter-item .mail-box-letter-item-photo {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 2px;
}

.mail-box-letter-item .mail-box-letter-item-photo img {
    width: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: block;
}

.mail-box-letter-item .mail-box-letter-item-header .tbl-cell {
    vertical-align: middle;
}

.mail-box-letter-opened .mail-box-letter-opened-header .tbl-cell,
.mail-file {
    vertical-align: top;
}

.mail-box-letter-item .mail-box-letter-item-header .tbl-cell-name {
    font-weight: 600;
}

.mail-box-letter-item .mail-box-letter-item-header .tbl-cell-date {
    width: 10px;
    padding-left: 10px;
    white-space: nowrap;
    text-align: right;
    color: #919fa9;
    font-size: .875rem;
}

.mail-box-letter-item .mail-box-letter-item-txt {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.mail-box-letter-opened {
    padding: 18px;
    overflow: hidden;
}

.mail-box-letter-opened .mail-box-letter-opened-header .tbl-cell-name {
    font-weight: 600;
}

.mail-box-letter-opened .mail-box-letter-opened-header .tbl-cell-date {
    white-space: nowrap;
    padding-left: 10px;
    width: 20px;
    color: #919fa9;
    font-size: .875rem;
}

.mail-box-letter-opened .mail-box-letter-opened-header .tbl-cell-action {
    white-space: nowrap;
    padding-left: 10px;
    width: 10px;
}

.mail-box-letter-opened .mail-box-letter-opened-header .tbl-cell-action button {
    border: none;
    background: 0 0;
    color: #919fa9;
}

.mail-box-letter-opened .mail-box-letter-opened-header .tbl-cell-action button:hover {
    color: #00a8ff;
}

.mail-box-letter-opened .mail-box-letter-files {
    margin: 0 -30px 0 0;
    padding: .5rem 0 1rem;
}

.mail-box-letter-opened .chat-area-bottom {
    padding: 0;
    border: none;
}

.mail-file {
    display: inline-block;
    max-width: 100%;
    position: relative;
    padding: 2px 30px 0 52px;
    height: 43px;
    background: no-repeat;
    -o-background-size: auto 43px;
    background-size: auto 43px;
    margin: 0 0 20px;
    color: #818181;
    font-size: .9375rem;
}

.task-card .task-card-footer:after,
.task-card .task-card-footer:before,
.tasks-grid:after,
.tasks-grid:before {
    content: " ";
    display: table;
}

.mail-file p {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}

.mail-file.pdf {
    background-image: url(../img/file-pdf.png);
}

.mail-file.doc {
    background-image: url(../img/file-doc.png);
}

.mail-file.xls {
    background-image: url(../img/file-xls.png);
}

.mail-file.img {
    background-image: url(../img/file-img.png);
}

.tasks-grid {
    zoom: 1;
}

.tasks-grid:after {
    clear: both;
}

.tasks-grid .tasks-grid-col {
    float: left;
    width: 230px;
    margin: 0 30px 0 0;
}

.tasks-grid .tasks-grid-col-title {
    margin: 0 0 10px;
}

.tasks-grid .tasks-grid-col-title strong {
    font-weight: 600;
}

.tasks-grid .sortable {
    padding: 0 0 30px;
}

.task-card {
    margin: 0 0 30px;
}

.task-card .task-card-create-title {
    padding: 15px;
    font-weight: 600;
}

.task-card .task-card-create input[type=text] {
    border: none;
    background: 0 0;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #343434;
}

.task-card .task-card-create::-webkit-input-placeholder {
    color: #343434 !important;
}

.task-card .task-card-create::-moz-placeholder {
    opacity: 1 !important;
    color: #343434 !important;
}

.task-card .task-card-create:-moz-placeholder {
    color: #343434 !important;
    opacity: 1 !important;
}

.task-card .task-card-create:-ms-input-placeholder {
    color: #343434 !important;
}

.task-card .task-card-footer {
    padding: 8px 15px;
    background: #f6f8fa;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    border-top: solid 1px #d8e2e7;
    zoom: 1;
}

.task-card .task-card-footer:after {
    clear: both;
}

.task-card .task-card-in {
    padding: 0 15px;
    position: relative;
}

.task-card .task-card-photo {
    margin: 0 15px 10px;
}

.task-card .task-card-photo img {
    display: block;
    width: 100%;
}

.task-card .task-card-title {
    margin: 0 15px 10px 0;
}

.task-card .task-card-title a {
    color: #343434;
}

.task-card .task-card-title a:hover {
    color: #00a8ff;
}

.task-card .task-card-title-label {
    color: #6c7a86;
    font-size: .875rem;
}

.task-card .task-card-tags {
    padding: 5px 0 11px;
}

.task-card .task-card-tags .label {
    font-size: .875rem;
    color: #6c7a86;
    font-weight: 400;
    margin: 0 3px 8px 0;
}

.task-card .task-card-tags .label:hover {
    color: #fff;
}

.task-card .avatar-preview {
    float: right;
}

.task-card .task-card-meta-item {
    float: left;
    height: 32px;
    line-height: 32px;
    margin: 0 15px 0 0;
    font-size: .875rem;
    position: relative;
    top: 1px;
}

.task-card .task-card-meta-item .font-icon {
    color: #919fa9;
    margin: 0 5px 0 0;
}

.task-card .task-card-menu {
    position: absolute;
    top: 0;
    right: 9px;
}

.task-card .task-card-menu button {
    border: none;
    background: 0 0;
    color: #919fa9;
}

.task-card .task-card-menu button:hover,
.task-card .task-card-menu.open button {
    color: #00a8ff;
}

.task-card .task-card-menu .dropdown-menu {
    min-width: auto;
    margin-top: 0;
}

.task-card .progress-compact-style {
    margin: 0 0 3px;
}

.task-card .progress-compact-style .progress-compact-style-label {
    font-size: .875rem;
}

.task-card.task {
    padding-top: 20px;
    border-top: solid 4px #00a8ff;
    -webkit-border-radius: 5px 5px .25rem .25rem;
    border-radius: 5px 5px .25rem .25rem;
}

.tasks-grid-col.red .task-card.task {
    border-top-color: #fa424a;
}

.tasks-grid-col.green .task-card.task {
    border-top-color: #46c35f;
}

.tasks-grid-col.purple .task-card.task {
    border-top-color: #ac6bec;
}

.sortable-placeholder {
    height: 100px;
    text-align: center;
    line-height: 96px;
    border: 2px dashed #adb7be;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    margin: 0 0 30px;
}

.sortable-placeholder:before {
    content: 'Move';
    font-size: .875rem;
    font-weight: 600;
    color: #919fa9;
}

.proj-page .progress-compact-style {
    max-width: 350px;
    margin-bottom: 15px;
}

.proj-page .proj-page-del {
    height: 38px;
    border: none;
    background: 0 0;
    font-size: 1.125rem;
    color: #919fa9;
}

.proj-page .proj-page-del:hover {
    color: #fa424a;
}

.proj-page .proj-page-del .font-icon {
    vertical-align: middle;
}

.proj-page .drop-zone {
    width: 100%;
}

.proj-page .uploading-list {
    max-width: 350px;
}

.proj-page .uploading-list .uploading-list-item-progress,
.proj-page .uploading-list .uploading-list-item-speed {
    font-size: .875rem;
}

.proj-page-section {
    padding: 15px 15px 20px;
    border-top: solid 1px #d8e2e7;
}

.proj-page-section:first-child {
    border-top: none;
}

.proj-page-section .comment-rows-container,
.proj-page-section .leave-comment-block {
    margin: 0 -15px;
}

.proj-page-section .leave-comment-block {
    padding-bottom: 0;
}

.proj-page-subtitle {
    padding: 5px 0 20px;
}

.proj-page-subtitle h1,
.proj-page-subtitle h2,
.proj-page-subtitle h3,
.proj-page-subtitle h4,
.proj-page-subtitle h5,
.proj-page-subtitle h6 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.proj-page-subtitle.with-del {
    position: relative;
    padding-right: 35px;
}

.proj-page-subtitle.with-del .proj-page-del {
    position: absolute;
    top: -5px;
    right: -2px;
}

.proj-page-subtitle.padding-sm {
    padding-bottom: 10px;
}

.proj-page-header .title {
    display: inline-block;
    border: 1px solid transparent;
    -webkit-border-radius: .25rem;
    border-radius: .25rem;
    font-weight: 600;
    padding: .375rem 0;
    margin: 0 0 6px;
    font-size: 1.125rem;
    cursor: default;
}

.proj-page-attach-section .proj-page-attach-grid:after,
.proj-page-attach-section .proj-page-attach-grid:before,
.proj-page-main-controls .proj-page-main-controls-left:after,
.proj-page-main-controls .proj-page-main-controls-left:before,
.proj-page-main-controls .proj-page-main-controls-right:after,
.proj-page-main-controls .proj-page-main-controls-right:before,
.proj-page-main-controls:after,
.proj-page-main-controls:before {
    content: " ";
    display: table;
}

.proj-page-header .title .font-icon {
    opacity: 0;
    color: #919fa9;
    font-size: .8125rem;
    margin: 0 0 0 5px;
}

.proj-page-header .title:hover .font-icon {
    opacity: 1;
}

.proj-page-header .project {
    color: #919fa9;
}

.proj-page-team {
    margin: -4px 0 -9px;
}

.proj-page-team .tbl-cell-admin {
    width: 32px;
}

.proj-page-team .tbl-cell-admin .avatar-preview {
    margin-right: 0;
}

.proj-page-team .tbl-cell-divider {
    width: 30px;
    text-align: center;
    color: #919fa9;
    font-size: .75rem;
}

.proj-page-team .tbl-cell-divider .font-icon {
    position: relative;
    top: 2px;
}

.proj-page-team .tbl-cell-date {
    text-align: right;
    font-size: .9375rem;
    color: #919fa9;
    white-space: nowrap;
    width: 30px;
}

.proj-page-team .avatar-preview {
    margin: 4px 6px 4px 0;
}

.proj-page-main-controls {
    zoom: 1;
    margin: 0 0 5px;
}

.proj-page-main-controls:after {
    clear: both;
}

.proj-page-main-controls .proj-page-main-controls-left,
.proj-page-main-controls .proj-page-main-controls-right {
    zoom: 1;
}

.proj-page-main-controls .proj-page-main-controls-left:after,
.proj-page-main-controls .proj-page-main-controls-right:after {
    clear: both;
}

.proj-page-main-controls .proj-page-main-controls-left {
    float: left;
}

.proj-page-main-controls .proj-page-main-controls-right {
    float: right;
}

.proj-page-main-controls .btn,
.proj-page-main-controls .select {
    float: left;
    margin: 0 10px 10px 0;
}

.proj-page-main-controls .select {
    overflow: hidden;
    position: relative;
}

.proj-page-txt .proj-page-subtitle {
    padding-bottom: .5rem;
}

.proj-page-add-txt {
    padding: 15px 120px 15px 15px;
    background: #d8e2e7;
    position: relative;
}

.proj-page-add-txt .form-control {
    border-color: #fff;
}

.proj-page-add-txt .btn,
.proj-page-add-txt .proj-page-del {
    position: absolute;
    top: 15px;
}

.proj-page-add-txt .btn {
    width: 64px;
    padding-left: 0;
    padding-right: 0;
    right: 46px;
}

.proj-page-add-txt .proj-page-del {
    right: 13px;
    font-size: 1.125rem;
    margin-top: 2px;
}

.proj-page-attach-section {
    max-height: 290px;
    border-top: solid 1px #d8e2e7;
}

.proj-page-attach-section:first-child {
    border-top: none;
}

.proj-page-attach-section p {
    margin: 0;
}

.proj-page-attach-section .proj-page-attach-section-in {
    padding: 15px 15px 20px;
    overflow: hidden;
}

.proj-page-attach-section .proj-page-attach-grid {
    zoom: 1;
    margin: 0 -30px 0 0;
}

.proj-page-attach-section .proj-page-attach-grid:after {
    clear: both;
}

.proj-page-attach-section .proj-page-attach-grid .gd-doc {
    float: left;
    margin: 0 30px 30px 0;
}

.proj-page-attach {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
    position: relative;
    padding: 0 30px 0 60px;
    height: 54px;
    margin: 0 0 20px;
    font-size: .9375rem;
    line-height: 18px;
}

.proj-page-attach p {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}

.proj-page-attach p a {
    margin: 0 15px 0 0;
}

.proj-page-attach .name {
    font-weight: 600;
}

.proj-page-attach .date {
    color: #919fa9;
}

.proj-page-attach .font-icon {
    font-size: 2.875rem;
    position: absolute;
    left: 0;
    top: 7px;
    line-height: 1;
    color: #adb7be;
}

.proj-page-time-info .tbl {
    margin: 0 0 10px;
}

.proj-page-time-info .tbl-cell {
    vertical-align: top;
    padding: 0 0 5px;
}

.proj-page-time-info .tbl-cell-time {
    text-align: right;
    white-space: nowrap;
    width: 20px;
    padding-left: 10px;
}

.proj-page-labels .label {
    margin-right: 3px;
    margin-bottom: 8px;
    font-size: .9375rem;
}

.proj-page-assigned .user-card-row,
.proj-page-people .user-card-row {
    font-size: 1rem;
}

.proj-page-people .tbl-people>.tbl-row>.tbl-cell {
    padding: 0 0 10px;
}

.proj-page-people .tbl-people>.tbl-row>.tbl-cell.tbl-cell-lbl {
    white-space: nowrap;
    width: 30px;
    padding-right: 20px;
    color: #919fa9;
}

.proj-page-dates .tbl-cell {
    padding: 0 0 5px;
}

.proj-page-dates .tbl-cell-lbl {
    white-space: nowrap;
    width: 30px;
    padding-right: 20px;
    color: #919fa9;
}

.proj-page-agile .tbl-cell {
    padding: 0 0 5px;
}

.proj-page-actions-list {
    font-weight: 600;
    margin: -4px 0;
}

.proj-page-actions-list li {
    padding: 4px 0;
}

.proj-page-actions-list a {
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.proj-page-actions-list a:hover {
    color: #00a8ff;
}

.proj-page-actions-list .font-icon {
    margin: 0 7px 0 0;
}

.comment-rows-container {
    border: 1px solid #d8e2e7;
    border-left: none;
    border-right: none;
    max-height: 570px;
    position: relative;
}

.comment-rows-container:after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, .9);
    position: absolute;
    left: 0;
    top: 0;
}

.comment-row-item {
    position: relative;
    padding: 12px 15px 12px 61px;
    min-height: 32px;
}

.comment-row-item p {
    margin: 0;
}

.comment-row-item .avatar-preview {
    position: absolute;
    left: 15px;
    top: 12px;
}

.comment-row-item .comment-row-item-header {
    line-height: 18px;
    margin: 0 0 6px;
}

.comment-row-item .comment-row-item-header .tbl-cell {
    vertical-align: top;
}

.comment-row-item .comment-row-item-header .tbl-cell-name {
    font-weight: 600;
}

.comment-row-item .comment-row-item-header .tbl-cell-date {
    text-align: right;
    width: 30px;
    padding-left: 10px;
    white-space: nowrap;
    font-size: .875rem;
    color: #919fa9;
}

.comment-row-item .comment-row-item-content {
    padding: 0 45px 6px 0;
    position: relative;
}

.comment-row-item .comment-row-item-action {
    border: none;
    background: 0 0;
    color: #919fa9;
    position: absolute;
    top: 2px;
}

.comment-row-item.selected,
.hover-action .comment-row-item:hover {
    background-color: #ecf2f5;
}

.comment-row-item .comment-row-item-action:hover {
    color: #00a8ff;
}

.comment-row-item .comment-row-item-action.edit {
    right: 25px;
}

.comment-row-item .comment-row-item-action.del {
    right: 0;
}

.comment-row-item .comment-row-item-action.del:hover {
    color: #fa424a;
}

.comment-row-item .comment-row-item-reply {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 0 0;
    font-size: 1rem;
    text-decoration: none;
    color: #919fa9;
    border: none;
}

.comment-row-item .comment-row-item-reply:hover {
    color: #00a8ff;
}

.comment-row-item .comment-row-item-rating {
    display: inline-block;
    vertical-align: top;
    color: #919fa9;
    font-size: .875rem;
    position: relative;
    top: 2px;
}

.comment-row-item .comment-row-item-rating .number {
    font-weight: 700;
    margin: 0 6px;
}

.comment-row-item .comment-row-item-rating .font-icon,
.comment-row-item .comment-row-item-rating .glyphicon {
    cursor: pointer;
    position: relative;
    top: 2px;
}

.comment-row-item .comment-row-item-rating .font-icon:hover,
.comment-row-item .comment-row-item-rating .glyphicon:hover {
    color: #00a8ff;
}

.comment-row-item .comment-row-item-rating .font-icon.glyphicon-menu-down,
.comment-row-item .comment-row-item-rating .glyphicon.glyphicon-menu-down {
    top: 1px;
}

.hover-action .comment-row-item .comment-row-item-action {
    display: none;
}

.hover-action .comment-row-item:hover .comment-row-item-action {
    display: block;
}

.comment-row-item.quote {
    border-left: solid 4px #d8e2e7;
    min-height: 24px;
    margin: 12px -45px 0 0;
    padding: 0 0 0 44px;
}

.comment-row-item.quote .avatar-preview {
    width: 24px;
    height: 24px;
    left: 10px;
    top: 0;
}

.comment-row-item.quote .comment-row-item-header {
    margin-bottom: 2px;
}

.comment-row-item.quote .comment-row-item-content {
    padding-bottom: 0;
}

.leave-comment-block {
    position: relative;
    padding: 15px 15px 15px 61px;
}

.leave-comment-block .avatar-preview {
    position: absolute;
    left: 15px;
    top: 15px;
}

.leave-comment-block .chat-area-bottom {
    padding: 0;
    border: none;
}

.leave-comment-block .viewable-access {
    color: #919fa9;
    margin: 0 0 12px;
}

.leave-comment-block .viewable-access .choose,
.leave-comment-block .viewable-access .lbl {
    display: inline-block;
    vertical-align: top;
}

.leave-comment-block .viewable-access .choose {
    position: relative;
    top: 2px;
}

.leave-comment-block .viewable-access .choose>button {
    border: none;
    background: 0 0;
    color: #919fa9;
    font-size: .875rem;
}

.leave-comment-block .viewable-access .choose>button:after {
    position: relative;
    top: -3px;
    margin-left: 0;
}

.leave-comment-block .viewable-access .choose .dropdown-menu {
    margin-top: 2px;
}

.faq-item {
    position: relative;
    padding: 0 0 0 60px;
}

.faq-item-circle {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 34px;
    font-weight: 700;
    color: #919fa9;
    position: absolute;
    left: 0;
    top: 0;
    background: #ecf2f5;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #d8e2e7;
}

.faq-page-header-search {
    -webkit-border-radius: .25rem .25rem 0 0;
    border-radius: .25rem .25rem 0 0;
    margin: -1px -1px 0;
    padding: 35px 30px;
    background: url(../img/faq-search.jpg) 50% 50% no-repeat #1873d2;
    -o-background-size: cover;
    background-size: cover;
}

.faq-page-header-search .search {
    position: relative;
}

.faq-page-header-search .form-control {
    border: none;
    padding-right: 44px;
}

.faq-page-header-search .find {
    display: block;
    width: 44px;
    height: 36px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    border: none;
    background: 0 0;
    color: #adb7be;
}

.faq-page-header-search .find:hover {
    color: #00a8ff;
}

.faq-page-header-search .find .font-icon {
    position: relative;
    top: 1px;
}

.faq-page-cats {
    padding: 45px 30px 0;
    border-bottom: solid 1px #d8e2e7;
}

.faq-page-cats .faq-page-cat {
    text-align: center;
    margin: 0 0 40px;
}

.faq-page-cats .faq-page-cat-icon {
    margin: 0 0 25px;
}

.faq-page-cats .faq-page-cat-icon img {
    height: 80px;
}

.faq-page-cats .faq-page-cat-title {
    font-size: 1.25rem;
    margin: 0 0 .5rem;
}

.faq-page-cats .faq-page-cat-title a {
    color: #343434;
}

.faq-page-cats .faq-page-cat-title a:hover {
    color: #00a8ff;
}

.faq-page-cats .faq-page-cat-txt {
    color: #919fa9;
}

.faq-page-questions {
    padding: 25px 30px 30px;
}

.faq-page-questions>h1,
.faq-page-questions>h2,
.faq-page-questions>h3,
.faq-page-questions>h4 {
    text-align: center;
    margin-bottom: 25px;
}

.faq-page-questions .faq-page-quest {
    margin: 0 0 22px;
}

.faq-page-questions .faq-page-quest-title {
    font-weight: 600;
    margin: 0 0 5px;
}

.faq-page-questions .faq-page-quest-title a {
    text-decoration: none;
    color: #0082c6;
    border: none;
}

.faq-page-questions .faq-page-quest-title a:hover {
    color: #fa424a;
}

.add-customers-screen {
    text-align: center;
    display: table;
    width: 100%;
    height: 100%;
}

.add-customers-screen .add-customers-screen-in {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}

.add-customers-screen .add-customers-screen-user {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 1px solid #c5d6de;
    text-align: center;
    line-height: 78px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #adb7be;
    font-size: 2.5rem;
}

.add-customers-screen .add-customers-screen-user .font-icon {
    line-height: inherit;
    vertical-align: middle;
}

.add-customers-screen .lead {
    font-size: 1.5rem;
}

.add-customers-screen .btn {
    margin: 1rem 0 0;
}

.documentation-meta {
    padding: 0 0 14px;
    border-bottom: solid 1px #c5d6de;
}

.documentation-meta p {
    margin: 10px 0;
}

.documentation-meta .inline {
    display: inline;
    margin: 0 30px 0 0;
}

.bs-glyphicons .bs-glyphicons-list:after,
.bs-glyphicons .bs-glyphicons-list:before,
.bs-glyphicons:after,
.bs-glyphicons:before {
    content: " ";
    display: table;
}

.documentation-meta a {
    color: #343434;
}

.documentation-meta a:hover {
    color: #00a8ff;
}

.documentation-header {
    margin: 0 0 .75rem;
}

.documentation-header .lead,
.documentation-header h1,
.documentation-header h2,
.documentation-header h3,
.documentation-header h4,
.documentation-header h5,
.documentation-header h6 {
    margin: 0 0 .5rem;
}

.documentation-header-by {
    color: #919fa9;
}

.documentation-header-by a {
    color: #343434;
}

.documentation-header-by a:hover {
    color: #00a8ff;
}

.documentation-header-by .avatar-preview {
    margin: 0 5px;
    position: relative;
    top: -1px;
}

.bs-glyphicons {
    zoom: 1;
    margin: 1rem 0 0;
}

.bs-glyphicons:after {
    clear: both;
}

.bs-glyphicons .bs-glyphicons-list {
    zoom: 1;
}

.bs-glyphicons .bs-glyphicons-list:after {
    clear: both;
}

.bs-glyphicons li {
    float: left;
    width: 25%;
    height: 115px;
    padding: 10px;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #fff;
}

.bs-glyphicons li:hover {
    color: #fff;
    background-color: #00a8ff;
}

.bs-glyphicons .font-icon,
.bs-glyphicons .glyphicon {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 24px;
}

.bs-glyphicons .glyphicon-class {
    display: block;
    text-align: center;
    word-wrap: break-word;
}

@media (min-width:768px) {
    .bs-glyphicons li {
        width: 12.5%;
        font-size: 14px;
    }
}

.flag-icon-list .flag-wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    -webkit-box-shadow: 0 0 2px #000;
    box-shadow: 0 0 2px #000;
    overflow: hidden;
    margin: 10px 0;
}

.flag-icon-list .flag-wrapper:after {
    padding-top: 75%;
    display: block;
    content: '';
}

.flag-icon-list .flag {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-background-size: cover;
    background-size: cover;
}

.flag-icon-list .flag-icon-background {
    -o-background-size: contain;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.pull-right {
    float: right !important;
}

.profile-side .box-typical .profile-side-user .profile-menu-lis ul {
    padding: 0;
}

.profile-side.profile-menu-list a,
.profile-menu-list>li>span {
    display: flex;
    padding: 16px 0px 0px 56px;
    position: relative;
    cursor: pointer;
    color: #6c7a86 !important;
    float: left;
    width: 100%;
    left: -10px;
}

@media screen and (max-width: 768px) {
    .profile-side.profile-menu-list a,
    .profile-menu-list>li>span {
        display: flex;
        padding: 16px 0px 10px 28px;
        position: relative;
        cursor: pointer;
        color: #6c7a86 !important;
        float: left;
        width: 100%;
        left: -10px;
    }
}

@media screen and (max-width: 800px) {
    .profile-side.profile-menu-list a,
    .profile-menu-list>li>span {
        display: flex;
        padding: 16px 0px 0px 11px;
        position: relative;
        cursor: pointer;
        color: #6c7a86 !important;
        float: left;
        width: 100%;
        left: -2px;
        font-size: 14px;
    }
}

@media screen and (max-width: 980px) {
    .profile-side.profile-menu-list a,
    .profile-menu-list>li>span {
        display: flex;
        position: relative;
        cursor: pointer;
        color: #6c7a86 !important;
        float: left;
        width: 100%;
        left: -10px;
        padding: 14px 25px !important;
    }
    .font-icon-alarm.notif::after {
        left: 20% !important;
    }
}

@media only screen and (max-width: 414px) and (max-width: 414px) {
    .profile-side.profile-menu-list a,
    .profile-menu-list>li>span {
        display: inline-block;
        position: relative;
        margin: 0px auto;
        cursor: pointer;
        color: #6c7a86 !important;
        width: 100%;
    }
}

.profile-side.profile-menu-list a,
.profile-menu-list>li:after {
    content: '';
    border-bottom: 1px dashed #6c7a86;
    display: block;
    padding: 25px;
    max-width: 189px;
    margin: 0px auto;
}

.profile-side.profile-menu-list a,
.profile-menu-list>li>span:hover {
    cursor: auto;
    color: #65b32e !important;
}

.profile-menu-list .lbl {
    padding: 10px;
    color: #818181;
    font-size: 1rem;
    font-weight: 600;
}

@media screen and (max-width: 800px) {
    .profile-menu-list .lbl {
        padding: 10px;
        color: #818181;
        font-size: .85 rem;
        font-weight: 600;
    }
}

.profile-menu-list .lbl.active {
    padding: 10px;
    color: #65b32e;
    font-size: 1rem;
    font-weight: 600;
}

.profile-side.profile-menu-list span {
    color: #6c7a86 !important;
    text-decoration: none;
    cursor: pointer;
}

.profile-side.profile-menu-list a{
    color: #6c7a86 !important;
    text-decoration: none;
    cursor: pointer;
}

.profile-side.profile-menu-list a:hover,
.profile-menu-list>li>span:hover {
    color: #65b32e;
}


/*.profile-side.profile-menu-list a.label-right,.profile-menu-list>li>span.label-right {
    padding-right: 38px;
}

.profile-side.profile-menu-list a.label-right .label,.profile-menu-list>li>span.label-right .label {
    position: absolute;
    right: 21px;
    top: 50%;
}
*/

.font-icon-alarm.notif:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    background: #fa424a;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 26%;
    top: 17px;
    margin-left: 0px;
}

.main-title {
    padding-bottom: .8rem;
    font-weight: 600;
    color: #6c7a86;
    border-bottom: solid 1px #d8e2e7;
}

.main-title span {
    color: #65b32e;
    padding-bottom: .8rem;
    width: 90%;
}

.main-title p {
    padding-bottom: 1rem;
    font-size: 14px;
    padding-top: 1rem;
}

.reg-title {
    padding-bottom: .8rem;
    width: 100%;
    font-weight: 600;
    color: #6c7a86;
    font-size: 20px;
}

.reg-title span {
    color: #65b32e;
    padding-bottom: .8rem;
    width: 90%;
}

.sub-title {
    padding-top: .8rem;
    border-bottom: solid 1px #d8e2e7;
    width: 100%;
    font-weight: 600;
    color: #7d7d7d;
    font-size: 20px;
    padding-bottom: .9rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}

.sub-title span {
    color: #65b32e;
    padding-bottom: .8rem;
    width: 90%;
}

.padding-10 {
    padding-bottom: 20px;
}

.padding-20 {
    padding-bottom: 80px;
}

.box-details {
    /* -webkit-border-radius: 4px; */
    /* border-radius: 4px; */
    background: #eeeeee;
    /* border: 1px solid #d8e2e7; */
    margin: 0px auto;
    left: 5%;
    right: 5%;
    position: relative;
    width: 90%;
}

.box-details p {
    color: #a5a5a5;
    position: relative;
    width: 90%;
}

.label-left {
    width: 150px;
}


/* table responsive */

table caption {
    padding: .5em 0;
}

@media screen and (max-width: 767px) {
    table caption {
        border-bottom: 1px solid #ddd;
    }
}

.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(3, 3, 3, .8);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 80;
}

.modal-loading-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(3, 3, 3, .99);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 81;
}

.modal-desc {
    float: left;
    border-left: 5px solid #65b32e;
    width: 100%;
    height: 50px;
}

.modal-desc h3 {
    color: #636363;
    font-size: 18px;
    font-weight: 600;
    clear: both;
    display: inline-block;
    position: relative;
    margin-left: 40px;
    left: -4%;
}

.modal-desc p {
    color: #636363;
    font-size: 14px;
    font-weight: 500;
    clear: both;
    display: block;
    position: relative;
    margin-left: 40px;
    left: -4%;
    top: -25%;
}

.modal {
    width: 90%;
    /*  height: 400px;
*/
    display: block;
    margin: 0px auto;
    position: relative;
    top: 50%;
    /* left: 50%; */
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 8px;
    z-index: 99999;
}

.modal-wrapper.open .modal {
    margin-top: -200px;
    opacity: 1;
    z-index: 999999;
}

.modal-loading-wrapper.open .modal {
    margin-top: -200px;
    opacity: 1;
    z-index: 999999;
}

.white {
    background-color: #fff;
}

.form fieldset {
    border: none;
    padding: 0;
    padding: 10px 0;
    position: relative;
    clear: both;
}

.form fieldset.fieldset-expiration {
    float: left;
    width: 60%;
}

.form fieldset.fieldset-expiration .select {
    width: 84px;
    margin-right: 12px;
    float: left;
}

.form fieldset.fieldset-ccv {
    clear: none;
    float: right;
    width: 86px;
}

.form fieldset label {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 5px;
    font-weight: bold;
}

.form fieldset input,
.form fieldset .select {
    width: 100%;
    height: 38px;
    color: #333333;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    outline: none !important;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.form fieldset input.input-cart-number,
.form fieldset .select.input-cart-number {
    width: 82px;
    display: inline-block;
    margin-right: 8px;
}

.form fieldset input.input-cart-number:last-child,
.form fieldset .select.input-cart-number:last-child {
    margin-right: 0;
}

.form fieldset .select {
    position: relative;
}

.form fieldset .select::after {
    content: '';
    border-top: 8px solid #222;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 10px;
    pointer-events: none;
}

.form fieldset .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    padding: 0;
    border: none;
    width: 100%;
    outline: none !important;
    top: 6px;
    left: 6px;
    background: none;
}

.form fieldset .select select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.form button {
    width: 100%;
    outline: none !important;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 90px;
}

.form button .fa {
    margin-right: 6px;
}


/*--------------------
Checkout
--------------------*/

.checkout {
    margin: 120px auto 30px;
    position: relative;
    width: 460px;
    background: white;
    border-radius: 15px;
    padding: 160px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/*--------------------
Credit Card
--------------------*/

.credit-card-box {
    -webkit-perspective: 1000;
    perspective: 1000;
    width: 400px;
    height: 280px;
    position: absolute;
    top: -112px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.credit-card-box:hover .flip,
.credit-card-box.hover .flip {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.credit-card-box .front,
.credit-card-box .back {
    width: 400px;
    height: 250px;
    border-radius: 15px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: -webkit-linear-gradient(315deg, #058744, #51b848);
    background: linear-gradient(135deg, #058744, #51b848);
    position: absolute;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    top: 0;
    left: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.credit-card-box .front::before,
.credit-card-box .back::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../img/44386.svg') no-repeat center;
    background-size: cover;
    opacity: .05;
}

.credit-card-box .flip {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}

.credit-card-box .logo {
    position: absolute;
    top: 9px;
    right: 20px;
    width: 60px;
}

.credit-card-box .logo svg {
    width: 100%;
    height: auto;
    fill: #fff;
}

.credit-card-box .logo.left {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 100px;
}

.credit-card-box.logo.left svg {
    width: 100%;
    height: auto;
    fill: #fff;
}

.credit-card-box .front {
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.credit-card-box .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.credit-card-box .back .logo {
    top: 185px;
}

.credit-card-box .chip {
    position: absolute;
    width: 60px;
    height: 45px;
    top: 20px;
    left: 20px;
}

.credit-card-box .strip {
    background: -webkit-linear-gradient(315deg, #404040, #1a1a1a);
    background: linear-gradient(135deg, #404040, #1a1a1a);
    position: absolute;
    width: 100%;
    height: 50px;
    top: 30px;
    left: 0;
}

.credit-card-box .number {
    position: absolute;
    margin: 0 auto;
    top: 103px;
    left: 19px;
    font-size: 38px;
    font-family: 'Roboto', sans-serif;
}

.credit-card-box label {
    font-size: 12px;
    letter-spacing: 1px;
    text-shadow: none;
    text-transform: uppercase;
    font-weight: normal;
    opacity: 0.5;
    display: block;
    margin-bottom: 3px;
    font-family: 'Roboto', sans-serif;
}

.credit-card-box .card-holder,
.credit-card-box .card-expiration-date {
    position: absolute;
    margin: 0 auto;
    top: 180px;
    left: 19px;
    font-size: 22px;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}

.credit-card-box .card-expiration-date {
    text-align: right;
    left: auto;
    right: 20px;
}

.credit-card-box .ccv {
    height: 36px;
    background: #fff;
    width: 91%;
    border-radius: 5px;
    top: 110px;
    left: 0;
    right: 0;
    position: absolute;
    margin: 0 auto;
    color: #000;
    text-align: right;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
}

.credit-card-box .ccv label {
    margin: -25px 0 14px;
    color: #fff;
}


/*Resetting chrome autofill */

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 200px white inset;
    -webkit-text-fill-color: #666;
}

input[type='submit'] {
    border: none;
    background-color: #d34836;
    cursor: pointer;
    font-size: 1.2rem;
}

#recover-new-account {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
}

#recover-new-account a {
    color: #00c1a8;
    text-align: center;
}

#recover-new-account a:hover {
    color: #03d0b6;
}

#recover-new-account {
    color: #dcc1c1
}

@media only screen and (max-width:768px) {
    html {
        font-size: 13px;
    }
    #form-container h1 {
        font-size: 1.3rem
    }
    main {
        width: 70%;
        min-width: 300px;
    }
}


/* login sosmed */


/*Resetting chrome autofill */

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 200px white inset;
    -webkit-text-fill-color: #666;
}

input[type='submit'] {
    border: none;
    background-color: #d34836;
    cursor: pointer;
    font-size: 1.2rem;
}

#recover-new-account {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
}

#recover-new-account a {
    color: #00c1a8;
    text-align: center;
}

#recover-new-account a:hover {
    color: #03d0b6;
}

#recover-new-account {
    color: #dcc1c1
}

@media only screen and (max-width:768px) {
    html {
        font-size: 13px;
    }
    #form-container h1 {
        font-size: 1.3rem
    }
    main {
        width: 70%;
        min-width: 300px;
    }
}


/* Finished Form Styling */

.button {
    width: auto;
    display: inline-block;
    padding: 0 18px 0 6px;
    border: 0 none;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: all 250ms linear;
    transition: all 250ms linear;
}

.button:hover {
    text-decoration: none;
}

.button--social-login {
    margin-bottom: 12px;
    margin-right: 12px;
    color: white;
    height: 50px;
    line-height: 48px;
    position: relative;
    text-align: left;
    color: #eee !important;
}

.sign-box a.button--social-login:hover {
    color: #fff !important;
}

.button--social-login .icon {
    margin-right: 12px;
    font-size: 24px;
    line-height: 24px;
    width: 42px;
    height: 24px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 4px;
}

.button--social-login .icon:before {
    display: inline-block;
    width: 40px;
}

.button--social-login .icon:after {
    content: "";
}

.button--facebook {
    background-color: #4b70ab;
    border: 1px solid #3b5988;
}

.button--facebook .icon {
    border-right: 1px solid #3b5988;
}

.button--facebook .icon:after {
    border-right: 1px solid #6b8bbe;
}

.button--facebook:hover {
    background-color: #436499;
}

.button--google {
    background-color: #dc4a38;
    border: 1px solid #cf4534;
}

.button--google .icon {
    border-right: 1px solid #cf4534;
}

.button--google .icon:after {
    border-right: 1px solid #cf4534;
}

.button--google:hover {
    background-color: #dc4a38;
    color: #fff;
}

.button--signin {
    margin-bottom: 12px;
    margin-right: 12px;
    color: #fff !important;
    height: 35px;
    line-height: 35px;
    position: relative;
    text-align: center;
    /*background: #2eb33b !important; hijau citilink*/
    background: #a2a2a2  !important;
    /*border: 1px solid #2eb33b;*/
    border: 1px solid #a2a2a2;
    text-transform: uppercase;
    width: 150px;
    cursor: pointer;
}

.button--signin:hover {
    margin-bottom: 12px;
    margin-right: 12px;
    color: #fff !important;
    height: 35px;
    line-height: 35px;
    position: relative;
    text-align: center;
    /*background: #2eb33b !important; hijau citilink*/
    background: #929191 !important;
    /*border: 1px solid #2eb33b;*/
    border: 1px solid  #929191 ;
    text-transform: uppercase;
    width: 150px;
    cursor: pointer;
}

.button-login {
    margin-bottom: 12px;
    margin-right: 12px;
    color: #fff !important;
    height: 35px;
    line-height: 35px;
    position: relative;
    text-align: center;
    background: rgba(45, 89, 124, 0.7);
    border: 1px solid #ffffff;
    text-transform: uppercase;
    width: 150px;
    cursor: pointer;
}

.button-login:hover {
    margin-bottom: 12px;
    margin-right: 12px;
    color: #fff !important;
    height: 35px;
    line-height: 35px;
    position: relative;
    text-align: center;
    background: rgba(45, 89, 134, 0.5);
    border: 1px solid  #ffffff;
    text-transform: uppercase;
    width: 150px;
    cursor: pointer;
}

.button-reset {
    margin-right: 0px;
    width: 100%;
}


/*.style-eight {
    padding: 0;
    border: none;
    border-top: 1px solid #333;
    color: #333;
    text-align: center;
}
*/

.logo-login {
    width: 160px;
    margin: 0px auto;
    position: relative;
    display: table;
    /*padding-bottom: 20px;*/
}


/* Boarding Pass */

.box {
    position: absolute;
    top: calc(50% - 125px);
    top: -webkit-calc(50% - 125px);
    left: calc(50% - 300px);
    left: -webkit-calc(50% - 300px);
}

.ticket {
    width: 600px;
    height: 250px;
    background: #65b32e;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.29);
    border-top: 1px solid #51b848;
    border-bottom: 1px solid #51b848;
}

.left {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 0px;
    left: -5px;
}

.left li {
    width: 0px;
    height: 0px;
}

.left li:nth-child(-n+2) {
    margin-top: 8px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #65b32e;
}

.left li:nth-child(3),
.left li:nth-child(6) {
    margin-top: 8px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #EEEEEE;
}

.left li:nth-child(4) {
    margin-top: 8px;
    margin-left: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #EEEEEE;
}

.left li:nth-child(5) {
    margin-top: 8px;
    margin-left: -1px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #EEEEEE;
}

.left li:nth-child(7),
.left li:nth-child(9),
.left li:nth-child(11),
.left li:nth-child(12) {
    margin-top: 7px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #E5E5E5;
}

.left li:nth-child(8) {
    margin-top: 7px;
    margin-left: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #E5E5E5;
}

.left li:nth-child(10) {
    margin-top: 7px;
    margin-left: 1px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #E5E5E5;
}

.left li:nth-child(13) {
    margin-top: 7px;
    margin-left: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #51b848;
}

.left li:nth-child(14) {
    margin-top: 7px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #51b848;
}

.right {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 0px;
    right: -5px;
}

.right li:nth-child(-n+2) {
    margin-top: 8px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #65b32e;
}

.right li:nth-child(3),
.right li:nth-child(4),
.right li:nth-child(6) {
    margin-top: 8px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #EEEEEE;
}

.right li:nth-child(5) {
    margin-top: 8px;
    margin-left: -2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #EEEEEE;
}

.right li:nth-child(8),
.right li:nth-child(9),
.right li:nth-child(11) {
    margin-top: 7px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #E5E5E5;
}

.right li:nth-child(7) {
    margin-top: 7px;
    margin-left: -3px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #E5E5E5;
}

.right li:nth-child(10) {
    margin-top: 7px;
    margin-left: -2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #E5E5E5;
}

.right li:nth-child(12) {
    margin-top: 7px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #E5E5E5;
}

.right li:nth-child(13),
.right li:nth-child(14) {
    margin-top: 7px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #65b32e;
}

.ticket:after {
    content: '';
    position: absolute;
    right: 200px;
    top: 0px;
    width: 2px;
    height: 250px;
    box-shadow: inset 0 0 0 #51b848, inset 0 -10px 0 #018643, inset 0 -20px 0 #51b848, inset 0 -30px 0 #018643, inset 0 -40px 0 #51b848, inset 0 -50px 0 #999999, inset 0 -60px 0 #E5E5E5, inset 0 -70px 0 #999999, inset 0 -80px 0 #E5E5E5, inset 0 -90px 0 #999999, inset 0 -100px 0 #E5E5E5, inset 0 -110px 0 #999999, inset 0 -120px 0 #E5E5E5, inset 0 -130px 0 #999999, inset 0 -140px 0 #E5E5E5, inset 0 -150px 0 #B0B0B0, inset 0 -160px 0 #EEEEEE, inset 0 -170px 0 #B0B0B0, inset 0 -180px 0 #EEEEEE, inset 0 -190px 0 #B0B0B0, inset 0 -200px 0 #EEEEEE, inset 0 -210px 0 #B0B0B0, inset 0 -220px 0 #51b848, inset 0 -230px 0 #018643, inset 0 -240px 0 #51b848, inset 0 -250px 0 #018643;
}

.content {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 170px;
    background: #eee;
}

.airline {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.boarding {
    position: absolute;
    top: 10px;
    right: 220px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.jfk {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 38px;
    color: #222;
}

.sfo {
    position: absolute;
    top: 10px;
    left: 180px;
    font-size: 38px;
    color: #222;
}

.planee {
    position: absolute;
    left: 105px;
    top: 0px;
}

.sub-content {
    background: #e5e5e5;
    width: 100%;
    height: 100px;
    position: absolute;
    top: 70px;
}

.watermark {
    position: absolute;
    left: 5px;
    top: -10px;
    font-size: 110px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
}

.name {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #999;
}

.name span {
    color: #555;
    font-size: 17px;
}

.flight {
    position: absolute;
    top: 10px;
    left: 180px;
    font-weight: bold;
    font-size: 14px;
    color: #999;
}

.flight span {
    color: #555;
    font-size: 17px;
}

.gate {
    position: absolute;
    top: 10px;
    left: 280px;
    font-weight: bold;
    font-size: 14px;
    color: #999;
}

.gate span {
    color: #555;
    font-size: 17px;
}

.seatss {
    position: absolute;
    top: 10px;
    left: 350px;
    font-size: 14px;
    color: #999;
}

.seat span {
    color: #555;
    font-size: 17px;
}

.boardingtime {
    position: absolute;
    top: 60px;
    left: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #999;
}

.boardingtime span {
    color: #555;
    font-size: 17px;
}

.slip {
    left: 455px;
}

.nameslip {
    top: 60px;
    left: 410px;
}

.flightslip {
    left: 410px;
}

.seatslip {
    left: 540px;
}

.jfkslip {
    font-size: 30px;
    top: 20px;
    left: 410px;
}

.sfoslip {
    font-size: 30px;
    top: 20px;
    left: 530px;
}

.planeslip {
    top: 10px;
    left: 475px;
}

.airlineslip {
    left: 455px;
}


/*.airline-summary:after  {
    border-bottom: 10px solid transparent;
    border-left: 10px solid #808080;
    border-top: 10px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    left: 99px;
    top: 13%;
    width: 0;
    z-index: 2;
}*/

.dashboard {
    background-image: url(../img/home.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 185px;
    height: 48px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 10%;
}

.wallet-icon {
    background-image: url(../img/wallet.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 165px;
    height: 48px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 10%;
}

.loyalty-icon {
    background-image: url(../img/loyalty.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 180px;
    height: 48px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 10%;
}

.contact-us {
    background-image: url(../img/pembelian.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 190px;
    height: 48px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 10%;
}

.pembelian {
    background-image: url(../img/pembelian.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 48px;
    height: 48px;
    line-height: 40px;
    text-align: center;
    position: absolute;
}

.citilink-airline-tab {
    background-image: url(../img/citilink-search.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 10%;
}

.checkin-icon {
    background-image: url(../img/checkin.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 10%;
}

.check-form {
    background-image: url(../img/check-form.svg);
    background-repeat: no-repeat;
    top: 0px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 0;
}

.manage-booking-icon {
    background-image: url(../img/manage-booking.svg);
    background-repeat: no-repeat;
    top: 8px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 6%;
}

.manage-form {
    background-image: url(../img/manage-form.svg);
    background-repeat: no-repeat;
    top: 0px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 3px;
}

.citilink-airline {
    background-image: url(../img/citilink.svg);
    top: -4px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 0px;
}

.citilink-airline-left {
    background-image: url(../img/citilink.svg);
    top: 0px;
    width: 38px;
    height: 38px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    right: 0px;
    transform: rotate(180deg);
}

.social-icons a {
    margin: 0 8px;
    text-decoration: none;
}

.site-footer-bottom {
    background-color: #f0f0f0;
    border-top: 1px solid #e1e1e1;
    font-size: 14px;
    margin-top: 140px;
}

.site-footer-bottom p {
    font-size: 14px;
    margin-bottom: 0px;
    margin-left: 10%;
    height: 28px;
    line-height: 28px;
    color: #8e8e8e;
}

.garuda-group {
    background: #272727;
    color: #ddd;
    padding: .6em;
    text-align: center;
    font-size: 12px;
}

.site-header .social-icons {}

.site-footer-bottom .social-icons {
    text-align: right;
}

.site-footer-bottom .social-icons a {
    background: #666;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    margin: 0 0 0 8px;
    text-decoration: none;
}


/*--------------------
   404
--------------------*/

#aircitilink {
    background-image: url('../img/air-citilink.png');
    background-repeat: no-repeat;
    width: 100%;
    max-width: 600px;
    top: 115px;
    height: 300px;
    position: absolute;
    z-index: 4;
    animation: animationFrames linear 3s;
    animation-iteration-count: 1;
    transform-origin: 100% 50%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: animationFrames linear 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 100% 50%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: animationFrames linear 3s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 100% 50%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: animationFrames linear 3s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 100% 50%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: animationFrames linear 3s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 100% 50%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
}

#aircitilink-atr {
    background-image: url('../img/air-citilink.png');
    background-repeat: no-repeat;
    width: 100%;
    max-width: 600px;
    top: 115px;
    height: 300px;
    position: absolute;
    z-index: 4;
    animation: animationFrames linear 3s;
    animation-iteration-count: 1;
    transform-origin: 100% 50%;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: animationFrames linear 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-transform-origin: 100% 50%;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: animationFrames linear 3s;
    -moz-animation-iteration-count: 1;
    -moz-transform-origin: 100% 50%;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: animationFrames linear 3s;
    -o-animation-iteration-count: 1;
    -o-transform-origin: 100% 50%;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: animationFrames linear 3s;
    -ms-animation-iteration-count: 1;
    -ms-transform-origin: 100% 50%;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/
}

@keyframes animationFrames {
    0% {
        opacity: 0;
        transform: translate(-1500px, 0px);
    }
    60% {
        opacity: 1;
        transform: translate(30px, -2px);
    }
    78% {
        transform: translate(0px, -2px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, -2px);
    }
}

@-moz-keyframes animationFrames {
    0% {
        opacity: 0;
        -moz-transform: translate(-1500px, 0px);
    }
    60% {
        opacity: 1;
        -moz-transform: translate(30px, -2px);
    }
    78% {
        -moz-transform: translate(0px, -2px);
    }
    100% {
        opacity: 1;
        -moz-transform: translate(0px, -2px);
    }
}

@-webkit-keyframes animationFrames {
    0% {
        opacity: 0;
        -webkit-transform: translate(-1500px, 0px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate(30px, -2px);
    }
    78% {
        -webkit-transform: translate(0px, -2px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0px, -2px);
    }
}

@-o-keyframes animationFrames {
    0% {
        opacity: 0;
        -o-transform: translate(-1500px, 0px);
    }
    60% {
        opacity: 1;
        -o-transform: translate(30px, -2px);
    }
    78% {
        -o-transform: translate(0px, -2px);
    }
    100% {
        opacity: 1;
        -o-transform: translate(0px, -2px);
    }
}

#aircitilink2 {
    background-image: url('../img/citilink-loader.png');
    background-repeat: no-repeat;
    width: 100%;
    max-width: 600px;
    top: 115px;
    height: 300px;
    left: -100px;
    position: absolute;
    z-index: 4;
    -webkit-animation: pesawat 50s infinite linear;
    animation: pesawat 50s infinite linear;
    -webkit-transform: translate(100%);
    transform: translate(100%);
}

@-webkit-keyframes pesawat {
    from {
        -webkit-transform: translate(350px, 0);
        transform: translate(350px, 0);
    }
    to {
        -webkit-transform: translate(1350px, 0);
        transform: translate(1350px, 0);
    }
}

#clouds4 {
    background-image: url('../img/cloud.png');
    background-size: 100% 300px;
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 3;
    -webkit-animation: moveClouds 25s infinite linear;
    animation: moveClouds 25s infinite linear;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

#clouds3 {
    background-image: url('../img/cloud.png');
    background-size: 100% 300px;
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 3;
    -webkit-animation: moveClouds 20s infinite linear;
    animation: moveClouds 20s infinite linear;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

#clouds2 {
    background-image: url('../img/cloud.png');
    background-size: 100% 300px;
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 3;
    -webkit-animation: moveClouds 8s infinite linear;
    animation: moveClouds 8s infinite linear;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

#clouds {
    background-image: url('../img/cloud.png');
    background-size: 100% 300px;
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 5;
    -webkit-animation: moveClouds 10s infinite linear;
    animation: moveClouds 20s infinite linear;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@-webkit-keyframes moveClouds {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes moveClouds {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.bg-loading {
    background: rgba(0, 0, 0, .9);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    display: none;
}

.notfound {
    background-image: url(../img/404.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.notfound .text {
    text-align: center;
    padding-top: 188px;
    color: rgb(123, 195, 0);
}

.notfound .text h1 {
    font-weight: 900;
    font-size: 165px;
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.6;
}

.notfound .text h2 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.notfound .text p {
    font-weight: 300;
    font-size: 14px;
    opacity: 0.7;
}

.notfound .text a {
    /* font-weight: 300; */
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 10px;
    border: 1px solid rgb(123, 195, 0);
    padding: 8px;
    color: #000;
    background: rgb(123, 195, 0);
    border-radius: 5px;
    text-transform: capitalize;
}


/* TRIP citilink */

.trips {
    margin: 80px auto;
    max-width: 960px;
    text-align: center;
}

.trip {
    background: #ffffff;
    display: inline-block;
    margin: 8px;
    max-width: 300px;
    -webkit-perspective: 1000;
    perspective: 1000;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.3s 0s ease-in;
    transition: all 0.3s 0s ease-in;
    z-index: 1;
}

.trip img {
    max-width: 300px;
}


/*.trip img:hover {
    border: 2px solid #ffffff;
    bottom: 20px;
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    content: "";
    left: 20px;
    opacity: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}*/

.trip .trip-title {
    background: #ffffff;
    padding: 16px 15px 10px;
    position: relative;
    z-index: 0;
}

.trip .trip-title:after {
    border-bottom: 15px solid transparent;
    border-left: 15px solid #FFF;
    border-top: 15px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: 250px;
    top: -22px;
    width: 0;
    z-index: 2;
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(-90deg);
}

.trip .trip-title a.toggle-info {
    border-radius: 32px;
    height: 32px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 10px;
    width: 32px;
}

.trip .trip-title a.toggle-info span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 16px;
    -webkit-transition: all 0.15s 0s ease-out;
    transition: all 0.15s 0s ease-out;
    width: 12px;
    left: 6px;
}

.trip .trip-title a.toggle-info span.left {
    right: 14px !important;
    -webkit-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
}

.trip .trip-title a.toggle-info span.right {
    left: 14px !important;
    -webkit-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
}

.trip .trip-title h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
}

.trip .trip-title h2 small {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.trip .trip-description {
    padding: 0 15px 10px;
    position: relative;
    font-size: 14px;
}

.trip .trip-actions {
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
    padding: 10px 15px 20px;
    text-align: center;
}

.trip .trip-flap {
    background: #d9d9d9;
    position: absolute;
    width: 100%;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

.trip .flap1 {
    -webkit-transition: all 0.3s 0.3s ease-out;
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
}

.trip .flap2 {
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: -2;
}

.trips.showing .trip {
    cursor: pointer;
    opacity: 0.2;
    -webkit-transform: scale(0.88);
    transform: scale(0.88);
}

.no-touch .trips.showing .trip:hover {
    opacity: 0.94;
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
}

.trip.show {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.trip.show .trip-title a.toggle-info {
    /*  background: #ff6666 !important;
*/
}

.trip.show .trip-title a.toggle-info span {
    top: 15px;
}

.trip.show .trip-title a.toggle-info span.left {
    right: 10px;
}

.trip.show .trip-title a.toggle-info span.right {
    left: 10px;
}

.trip.show .trip-flap {
    background: #ffffff;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.trip.show .flap1 {
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.trip.show .flap2 {
    -webkit-transition: all 0.3s 0.2s ease-out;
    transition: all 0.3s 0.2s ease-out;
}

.svg {
    width: 100%;
    height: 100%;
    visibility: hidden;
}


/* Trips Admin */

.tripmembers {
    padding: 0px;
    /* max-width: 900px; */
    text-align: center;
    position: relative;
    margin: 0px auto;
}

.tripmember {
    background: #ffffff;
    display: inline-block;
    width: 100%;
    -webkit-perspective: 1000;
    perspective: 1000;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.3s 0s ease-in;
    transition: all 0.3s 0s ease-in;
    z-index: 1;
    cursor: pointer;
}

.tripmember img {
    width: 100%;
}

@media (max-width:1024px) {
    .profile-side.profile-menu-list a,
    .profile-menu-list > li > span {
        padding: 16px 5px 0px 26px;
    }
    .font-icon-alarm.notif:after {
        left: 17% !important;
    }
}

@media (max-width:980px) {
    .tripmember img {
        max-width: 218px !important;
    }
}

@media (max-width:800px) {
    .tripmember img {
        max-width: 173px !important;
    }
    .tripmember .tripmember-title h2 {
        font-size: 18px !important;
    }
    .promo {
        max-width: 600px !important;
    }
    .profile-side.profile-menu-list a,
    .profile-menu-list > li > span {
        padding: 0px 0px 0px 11px !important;
        top: 19px;
    }
    .font-icon-alarm.notif::after {
        top: 2px;
        margin-left: -8px;
    }
}

@media screen and (max-width: 768px) {
    .tripmember img {
        max-width: 162px !important;
    }
}

@media (max-width:414px) {
    .tripmember img {
        max-width: 260px !important;
        margin: 0px auto;
        position: relative;
    }
    .font-icon-alarm.notif:after {
        margin-left: 66px !important;
    }
    .box-typical {}
}


/*.trip img:hover {
    border: 2px solid #ffffff;
    bottom: 20px;
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
    content: "";
    left: 20px;
    opacity: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}*/

.tripmember .tripmember-title {
    background: #F5F5F5;
    padding: 16px 15px 10px;
    position: relative;
    z-index: 0;
}

.tripmember .tripmember-title:after {
    border-bottom: 15px solid transparent;
    border-left: 15px solid #F5F5F5;
    border-top: 15px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: 85%;
    top: -20px;
    width: 0;
    z-index: 2;
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(-90deg);
}

@media (max-width:980px) {
    .tripmember .tripmember-title:after {
        border-bottom: 15px solid transparent;
        border-left: 15px solid #FFF;
        border-top: 15px solid transparent;
        content: "";
        height: 0;
        position: absolute;
        right: 175px;
        top: -22px;
        width: 0;
        z-index: 2;
        -ms-transform: rotate(20deg);
        -webkit-transform: rotate(20deg);
        transform: rotate(-90deg);
    }
}

@media (max-width:800px) {
    .tripmember .tripmember-title:after {
        border-bottom: 15px solid transparent;
        border-left: 15px solid #FFF;
        border-top: 15px solid transparent;
        content: "";
        height: 0;
        position: absolute;
        right: 135px;
        top: -22px;
        width: 0;
        z-index: 2;
        -ms-transform: rotate(20deg);
        -webkit-transform: rotate(20deg);
        transform: rotate(-90deg);
    }
}

.tripmember .tripmember-title a.toggle-info {
    border-radius: 25px;
    height: 25px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 10px;
    width: 25px;
}

.tripmember .tripmember-title a.toggle-info span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 12px;
    -webkit-transition: all 0.15s 0s ease-out;
    transition: all 0.15s 0s ease-out;
    width: 9px;
    left: 5px;
}

.tripmember .tripmember-title a.toggle-info span.left {
    right: 14px !important;
    -webkit-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
}

.tripmember .tripmember-title a.toggle-info span.right {
    left: 10px !important;
    -webkit-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
}

.tripmember .tripmember-title h2 {
    font-size: 22px;
    /* font-weight: 600; */
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
    color: #6D6D6D;
;
}

.tripmember .tripmember-title h2 small {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.tripmember .tripmember-description {
    padding: 0 15px 10px;
    position: relative;
    font-size: 14px;
    background-color: #F5F5F5;
}

.tripmember .tripmember-actions {
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
    padding: 10px 15px 20px;
    text-align: center;
    background-color: #F5F5F5;
}

.tripmember .tripmember-flap {
    background: #d9d9d9;
    position: absolute;
    width: 100%;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

.tripmember .flap1 {
    -webkit-transition: all 0.3s 0.3s ease-out;
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
}

.tripmember .flap2 {
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: -2;
}

.tripmembers.showing .tripmember {
    cursor: pointer;
    opacity: 0.2;
    -webkit-transform: scale(0.88);
    transform: scale(0.88);
}

.no-touch .tripmembers.showing .tripmember:hover {
    opacity: 0.94;
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
}

.tripmember.show {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.tripmember.show .tripmember-title a.toggle-info {
    /*  background: #ff6666 !important;
*/
}

.tripmember.show .tripmember-title a.toggle-info span {
    top: 12px;
}

.tripmember.show .tripmember-title a.toggle-info span.left {
    right: 10px;
    -webkit-transform: rotateX(50deg);
    transform: rotateX(50deg);
}

.tripmember.show .tripmember-title a.toggle-info span.right {
    left: 10px;
}

.tripmember.show .tripmember-flap {
    background: #ffffff;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.tripmember.show .flap1 {
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.tripmember.show .flap2 {
    -webkit-transition: all 0.3s 0.2s ease-out;
    transition: all 0.3s 0.2s ease-out;
}

.promo {
    max-width: 800px;
}


/* Activision Page */

.active-page {
    background-image: url(../img/landing-page/activation.jpeg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /*opacity: 0.9;*/
}

.active-box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #D0D0D0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 20px;
    font-size: 1rem;
    position: relative;
}

.active-box .active-title {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 15px;
    line-height: normal;
}

.active__image {
    width: 40px !important;
    margin: 0 !important;
    height: 40px;
    float: left;
    overflow: hidden;
    border-radius: 100px;
    padding: 0;
}

.pen_nav__mini .pen_intro__image img {
    width: 100%;
}

.pen_nav__mini .pen_intro__image a {
    border: none;
    padding: 0px;
}

.dashboard-notif {
    overflow: auto;
    position: relative;
    /*padding: 20px;*/
    background: #fff;
    /*width: 740px;*/
    max-width: 97%;
    height: 515px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.searchflight {
    overflow: hidden;
    position: relative;
    padding: 20px 20px 40px;
    background: #fff;
    /* width: 740px; */
    max-width: 100%;
    /* height: 515px; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px auto;
    border: 1px solid #d8e2e7;
    display: none;
    top: 0px;
}

.searchflighthome {
    overflow: hidden;
    position: relative;
    padding: 0px 20px 15px 30px;
    background: #fff;
    /* width: 740px; */
    max-width: 100%;
    /* height: 515px; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px auto;
    /*    border: 1px solid #d8e2e7;
*/
}


/* ACCORDING */

.accordion dl,
.accordion-list {
    border: 1px solid #ddd;
    background: #fff;
}

.accordion dt,
.accordion__panel {
    font-size: 1em;
    line-height: 1.5em;
}

.accordion p {
    padding: 1em 2em 1em 2em;
}

.accordion {
    position: relative;
    background-color: #eee;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2em 0 2em 0;
}

.accordionTitle,
.accordion__Heading .number {
    text-align: center;
    font-weight: 700;
    padding: 35px 0px 60px;
    display: block;
    font-size: 28px;
    text-decoration: none;
    color: #3e3e3e;
    -webkit-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
    border-bottom: 1px solid #dadada;
}

.accordion__Heading .number:after {}

span.number .cut {
    border-bottom: 10px solid #222;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    position: absolute;
    top: -10px;
    width: 0;
}

.number {
    border-right: 1px solid #dadada;
    height: 60px;
    position: relative;
    top: -18px;
}

.number:nth-child(3) {
    border-right: none;
}

.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.accordionItem {
    height: auto;
    overflow: hidden;
    max-height: 50em;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: 15em;
        -webkit-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: auto;
}

.animateIn {
    -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
    animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
    -webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
    animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
    }
}

.flight {
    float: right;
    color: #fff;
    text-align: right;
}

.flight small {
    font-size: 8px;
    margin-bottom: 2px;
    opacity: 0.8;
}

.flight strong {
    font-size: 18px;
}

.cities {
    background: #fafafa;
    width: 100%;
    border-bottom: 3px solid #65b32e;
    min-height: 100px;
    /* left: 1%; */
    padding: 0px 10px 5px 0px;
}

.cities::after {
    content: '';
    display: table;
    clear: both;
}

.cities .city {
    padding: 25px 0px 0px 42px;
    float: left;
}


/*.cities .city:nth-child(2) {
  float: right;
}*/

.cities .city.from span {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: #4f4f4f;
}

.cities .city.to span {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: #4f4f4f;
}

.cities .city.from:after {
    content: "";
    display: inline-block;
    background: url(../img/citilink-.svg) no-repeat right;
    width: 65px;
    height: 20px;
    top: 3px;
    position: relative;
}


/*.cities .city:last-child:after {
    content: "";
    display: none !important;
}*/

.cities .total {
    font-size: 16px;
    padding-top: 10px;
    display: inline-block;
    float: right !important;
}

.cities .total .dewasa,
.cities .total .manula,
.cities .total .children,
.cities .total .infants {
    font-size: 15px;
    padding: 20px 26px;
    color: #666;
    display: inline-block;
}

.cities .total .dewasa strong,
.cities .total .manula strong,
.cities .total .children strong,
.cities .total .infants strong {
    color: #000;
}

.cities .airplane {
    position: absolute;
    width: 30px;
    height: 25px;
    top: 57%;
    left: 30%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: move 3s infinite;
    animation: move 3s infinite;
}

@-webkit-keyframes move {
    40% {
        left: 50%;
        opacity: 1;
    }
    100% {
        left: 70%;
        opacity: 0;
    }
}

@keyframes move {
    40% {
        left: 50%;
        opacity: 1;
    }
    100% {
        left: 70%;
        opacity: 0;
    }
}

.editsearch {
    margin-top: 20px;
    color: #6D6D6D;
    font-size: 15px;
    text-transform: capitalize;
    border: 1px solid#dbdbdb;
    width: 100%;
    max-width: 120px;
    margin: 0px auto;
    padding: 4px;
    position: relative;
    text-align: center;
    top: -20px;
}

.schedule-list {
    width: 100%;
    margin: 0 auto;
    /*    display: inline-block;
*/
}

.schedule-list ul {
    padding: 0;
    margin: 6px 0;
    color: #555;
}


/*.schedule-list ul:after  {

    border-bottom: 8px solid transparent;
    border-left: 8px solid #f6f6f6;
    border-top: 8px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: 88px;
    top: -12px;
    width: 0;
    z-index: 2;
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(-90deg);
}*/

.schedule-list > ul > li {
    list-style: none;
    border: 1px solid #ddd;
    display: block;
    /*    padding: 5px;
*/
    overflow: hidden;
}

.schedule-list > ul > li:hover,
.schedule-list ul > li.tab-expanded {
    border: 1px solid #9bc85f;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.schedule-list > ul > li:active {
    border: 1px solid #9bc85f;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}


/*=============================== expand Flight */

.acc {
    margin: 15px 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.acc li {
    list-style-type: none;
    padding: 0;
}


/*
.acc_ctrl {
    background: #FFFFFF;
    border: none;
    border-top: solid 1px #ddd;
    cursor: pointer;
    display: block;
    padding: 14px 0px 10px 0px;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 10px;
    height: 100px;
    float: left;
}*/

.acc_ctrl {
    background: #FFFFFF;
    border: none;
    border-top: solid 1px #ddd;
    cursor: pointer;
    display: block;
    padding: 10px 0px 10px 0px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 80px;
    float: left;
    color: #07a700;
}

.acc_ctrl:hover {
    background-color: #C0C0C0;
    border-top: 1px solid #65b32e;
    /*padding: 20px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;*/
}

.acc_ctrl:hover .text-green-hover {
    color: #5AB22E !important;
}


/*
:hover{
    padding: 20px;
    border-top: 1px solid #65b32e;
    -webkit-transition: all 0.1s ease;
       -moz-transition: all 0.1s ease;
        -ms-transition: all 0.1s ease;
            transition: all 0.1s ease;

}
*/

.acc_ctrl.aktif {
    padding: 20px;
}

.listresult {
    color: #444444 !important;
}

.acc_ctrl .time.from,
.acc_ctrl .time.to {
    color: #2b2b2b;
    font-size: 28px;
    margin: 0px auto;
    float: left;
    display: inline-table;
    position: relative;
    width: 50%;
    line-height: 1;
    padding-top: 6px;
}

.acc_ctrl .time.from {
    margin-left: -2%;
}

.acc_ctrl .time.from:after {
    background: rgba(0, 0, 0, 0) url("../img/citilink--.svg") no-repeat scroll 50% 18%;
    content: "";
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 65px;
}

.acc_ctrl .time.to {
    margin-left: 2%;
}

.acc_ctrl .time p {
    color: #2b2b2b;
    font-size: 13px;
    display: inline-block;
    font-weight: 400;
}

.acc_ctrl .time span {
    color: #2b2b2b;
    /* bottom: 12px; */
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
}

.acc_ctrl .time > span:first-child {
    display: block;
    font-size: inherit;
}

.acc_ctrl .duration {
    padding: 8px 10px 5px 8px;
    background: #65b32e;
    text-align: center;
    text-transform: uppercase;
    width: 25%;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0px auto;
    display: inline;
    position: relative;
    top: 20px;
    right: -15%;
}

.acc_ctrl .minuteduration {
    display: inline;
    top: 20px;
    position: relative;
    left: 18%;
    font-size: 13px;
}

.acc_ctrl .price {
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    display: inline-block;
    float: right;
    line-height: 1;
    margin-top: 5px;
    font-size: 24px;
}

.acc_ctrl .price .idr {
    font-weight: 100;
}

.acc_ctrl .price .pre-disc {
    color: #999;
    text-decoration: line-through;
    font-weight: 200;
    font-size: smaller;
}

.acc_ctrl_open {
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 10px;
    height: 100px;
    float: left;
}

.acc_ctrl_open .time.from {
    color: #2b2b2b;
    font-size: 28px;
    margin: 0px auto;
    float: left;
    display: inline-table;
    position: relative;
    margin-left: -2%;
    width: 50%;
}

.acc_ctrl_open .time.from:after {
    content: "";
    display: inline-block;
    background: url(../img/citilink--.svg) no-repeat right;
    width: 65px;
    height: 20px;
    top: 13px;
    position: absolute;
    float: right;
    right: 15px;
}

.acc_ctrl_open .time.to {
    color: #2b2b2b;
    font-size: 28px;
    margin: 0px auto;
    float: left;
    display: inline-table;
    position: relative;
    margin-left: 2%;
    width: 50%;
}

.acc_ctrl_open .time p {
    color: #2b2b2b;
    font-size: 13px;
    display: inline-block;
    font-weight: 400;
}

.acc_ctrl_open .time span {
    color: #2b2b2b;
    /* bottom: 12px; */
    font-size: 13px;
    font-weight: 600;
    display: -webkit-box;
}

.acc_ctrl_open .duration {
    padding: 10px 15px 10px 20px;
    background: #65b32e;
    text-align: center;
    text-transform: uppercase;
    width: 25%;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0px auto;
    display: inline;
    position: relative;
    top: 20px;
    right: -15%;
}

.acc_ctrl_open .minuteduration {
    display: inline;
    top: 20px;
    position: relative;
    left: 18%;
    font-size: 13px;
}

.acc_ctrl_open .idr {
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    top: 15px;
    font-size: 24px;
    right: -20%;
}

.acc_ctrl_open .price {
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    float: right;
    position: relative;
    top: 15px;
    font-size: 24px;
}

.listresultopen {
    display: none;
}

.acc_ctrl_open_details {
    background: #FFFFFF;
    border: 1px solid #ddd;
    overflow: hidden;
}

.acc_ctrl_open_details:nth-child(2) {
    border-top: none;
}

.acc_ctrl_open_details:nth-last-child(1) {
    background: #FFFFFF;
    border: 1px solid #ddd;
    display: inline-table;
    padding: 15px;
    position: relative;
    z-index: 1;
    width: 97%;
    margin-bottom: 10px;
    height: 100px;
    float: left;
    margin: -30px 0px 0px 8px;
    top: 220px;
}

.acc_ctrl .code {
    color: #2b2b2b;
    font-size: 25px;
    margin: 0px auto;
    text-align: center;
    display: inline-table;
    position: relative;
    margin-left: 38px;
}

.acc_ctrl .code:after {
    border-bottom: 0px solid;
    border-left: 1px solid #ddd;
    border-top: 0px solid;
    content: "";
    height: 88px;
    top: 0px;
    position: absolute;
    right: 0;
}

.acc_ctrl.active h2,
.acc_ctrl:focus h2 {
    position: relative;
}

.acc_ctrl .btnschedule.easyflight {
    display: inline-block;
    position: absolute;
    padding: 17px 20px;
    top: 30px;
    font-size: 18px;
    background: #adabae;
    color: #fff;
    width: 165px;
    height: 60px;
    left: 34%;
    box-shadow: 0px 0px 0px rgba( 173, 171, 174, 0.1);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.acc_ctrl .btnschedule.easyflight p {
    position: relative;
    font-size: 24px;
    color: #fff;
    top: -35px;
    left: 13px;
}

.acc_ctrl .btnschedule.easyflight span {
    position: relative;
    font-size: 18px;
    color: #fff;
    top: -16px;
    right: 8px;
}

.acc_ctrl .btnschedule.easyflight h5 {
    position: absolute;
    font-size: 14px;
    color: #fff;
    top: 35px;
    right: 20px;
}

.acc_ctrl .btnschedule.easyflight:hover {
    top: 25px;
    box-shadow: 0px 10px 10px rgba( 173, 171, 174, 0.2);
    border: 1px solid #adabae;
    color: #6a686b;
    -webkit-transform: rotateX(5deg);
    -moz-transform: rotateX(5deg);
    -ms-transform: rotateX(5deg);
    transform: rotateX(5deg);
}

.acc_ctrl .btnschedule.easyflight:active {
    top: 25px;
    box-shadow: 0px 0px 0px rgba( 173, 171, 174, 0.1);
    background: #adabae;
}

.acc_ctrl .btnschedule.lightflight {
    display: inline-block;
    position: absolute;
    padding: 17px 20px;
    top: 30px;
    font-size: 18px;
    background: #908e91;
    color: #fff;
    width: 165px;
    height: 60px;
    left: 56%;
    box-shadow: 0px 0px 0px rgba( 173, 171, 174, 0.1);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.acc_ctrl .btnschedule.lightflight p {
    position: relative;
    font-size: 24px;
    color: #fff;
    top: -35px;
    left: 13px;
}

.acc_ctrl .btnschedule.lightflight span {
    position: relative;
    font-size: 18px;
    color: #fff;
    top: -16px;
    right: 8px;
}

.acc_ctrl .btnschedule.lightflight h5 {
    position: absolute;
    font-size: 14px;
    color: #fff;
    top: 35px;
    right: 20px;
}

.acc_ctrl .btnschedule.lightflight:hover {
    top: 25px;
    box-shadow: 0px 10px 10px rgba( 173, 171, 174, 0.2);
    border: 1px solid #adabae;
    color: #6a686b;
    -webkit-transform: rotateX(5deg);
    -moz-transform: rotateX(5deg);
    -ms-transform: rotateX(5deg);
    transform: rotateX(5deg);
}

.acc_ctrl .btnschedule.lightflight:active {
    top: 25px;
    box-shadow: 0px 0px 0px rgba( 173, 171, 174, 0.1);
    background: #adabae;
}

.acc_ctrl .btnschedule.classicflight {
    display: inline-block;
    position: absolute;
    padding: 17px 20px;
    top: 30px;
    font-size: 18px;
    background: #686669;
    color: #fff;
    width: 165px;
    height: 60px;
    left: 78%;
    box-shadow: 0px 0px 0px rgba( 173, 171, 174, 0.1);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.acc_ctrl .btnschedule.classicflight:hover {
    top: 25px;
    box-shadow: 0px 10px 10px rgba( 173, 171, 174, 0.2);
    border: 1px solid #adabae;
    color: #6a686b;
    -webkit-transform: rotateX(5deg);
    -moz-transform: rotateX(5deg);
    -ms-transform: rotateX(5deg);
    transform: rotateX(5deg);
}

.acc_ctrl .btnschedule.classicflight p {
    position: relative;
    font-size: 24px;
    color: #fff;
    top: -35px;
    left: 13px;
}

.acc_ctrl .btnschedule.classicflight span {
    position: relative;
    font-size: 18px;
    color: #fff;
    top: -16px;
    right: 8px;
}

.acc_ctrl .btnschedule.classicflight h5 {
    position: absolute;
    font-size: 14px;
    color: #fff;
    top: 35px;
    right: 20px;
}

.acc_ctrl .btnschedule.classicflight:active {
    top: 25px;
    box-shadow: 0px 0px 0px rgba( 173, 171, 174, 0.1);
    background: #adabae;
}

.acc_panel_open {
    display: none;
    overflow: hidden;
    padding: 20px;
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-top: f10px;
}

.acc_panel_open_transit {
    display: none;
    overflow: hidden;
    padding: 20px;
    position: relative;
    z-index: 2;
    height: 65rem;
    float: left;
    width: 100%;
    top: -15px;
}

.acc_panel {
    display: none;
    /* overflow: hidden; */
    border-bottom: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-left: solid 1px #ddd;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: relative;
    z-index: 2;
    height: auto;
    float: left;
    width: 100%;
    top: -10px;
}

.note {
    color: #FFFFFF;
    font-size: 20px;
    margin: 0px auto;
    float: left;
    position: relative;
    padding: 0px 45px 0px;
    left: 35%;
    font-weight: 500;
    bottom: 15px;
}

.note p {
    color: #fff;
    font-size: 15px;
    margin: 0px auto;
    position: relative;
}

.note h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin: 0px auto;
    position: relative;
    padding: 0px 0px 0px;
    left: 0%;
    font-weight: 600;
}

.expand {
    text-decoration: none;
    color: #555;
    cursor: pointer;
    display: table;
    position: relative;
    width: 100%;
    background: #fafafa;
}

.expand.line.active {
    border-bottom: 1px solid #ddd;
}

.expand h3 {
    font-size: 24px;
    color: #628071;
    font-weight: 400;
    width: 250px;
    margin-bottom: 5px;
    margin-top: 0;
}

.expand h5 {
    font-size: 15px;
    color: #628071;
    font-weight: 600;
    width: 280px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.expand h5>small {
    font-weight: 400;
    letter-spacing: 1px;
}

.expand .btnexpand {
    font-size: 15px;
    overflow: visible;
    color: #FFFFFF;
    display: block;
    margin: 0 auto;
    height: 36px;
    width: 114px;
    cursor: pointer;
    background-color: #65b32e;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
    line-height: 35px;
}

.greenseatinfo {
    font-size: 12px;
    overflow: visible;
    color: #FFFFFF;
    display: inline;
    margin: 0 auto;
    height: 20px;
    background-color: #65b32e;
    /*font-weight: 200;
    text-align: left;
    border-radius: 3px;
    font-weight: bold;
    padding-right: 10px;
    padding-left: 10px;*/
}

.schedule-list .left,
.right {
    display: table;
}

.sup {
    display: table-cell;
    vertical-align: middle;
    width: 80%;
}


/*.detail a {
    text-decoration: none;
    color: #C0392B;
    border: 1px solid #C0392B;
    padding: 6px 10px 5px;
    font-size: 13px;
  margin-right: 7px;
}*/

.detail {
    display: none;
    line-height: 24px;
    padding: 39px 25px 23px;
    width: 100%;
    overflow: hidden;
}

.detail h3 {
    font-size: 20px;
    margin-bottom: 0px;
}

.detail span {
    margin: 0;
}

.schedule-list .time {
    color: #2b2b2b;
    font-size: 25px;
    margin: 0px auto;
    text-align: center;
    display: inline-table;
    position: relative;
    margin-left: 15px;
}

.schedule-list .time:after {
    border-bottom: 10px solid transparent;
    border-left: 10px solid #808080;
    border-top: 10px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    left: 105px;
    top: 13%;
    width: 0;
    z-index: 2;
}

.schedule-list .time:nth-child(2):after {
    border-bottom: 0px solid;
    border-left: 1px solid #ddd;
    border-top: 0px solid;
    content: "";
    height: 100%;
    top: 0px;
    position: absolute;
    margin-left: 10%;
}

.schedule-list .time p {
    color: #2b2b2b;
    font-size: 14px;
    margin: 0px auto;
    text-align: center;
}

.schedule-list .time span {
    color: #2b2b2b;
    bottom: 12px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.schedule-list .code {
    color: #2b2b2b;
    font-size: 25px;
    margin: 0px auto;
    text-align: center;
    display: inline-table;
    position: relative;
    margin-left: 38px;
}

.schedule-list .btnschedule {
    font-size: 19px;
    overflow: visible;
    position: relative;
    color: #FFFFFF;
    display: block;
    margin: 0 auto;
    height: 42px;
    width: 150px;
    cursor: pointer;
    /* padding: 7px 0px 0px 5px; */
    background-color: #65b32e;
    font-weight: 500;
    top: 90px;
    left: 118px;
}

.schedule-list .code:after {
    border-bottom: 0px solid;
    border-left: 1px solid #ddd;
    border-top: 0px solid;
    content: "";
    height: 88px;
    top: 0px;
    position: absolute;
    right: 0;
}

.schedule-list .code:nth-last-child(1):after {
    display: none;
}

.schedule-list .code p {
    color: #2b2b2b;
    font-size: 14px;
    width: 228px;
}

.schedule-list .note {
    color: #2b2b2b;
    font-size: 22px;
    margin: 0px auto;
    float: left;
    position: relative;
    padding: 0px 55px 10px;
    left: 15px;
    top: 5px;
}

.schedule-list .note p {
    color: #2b2b2b;
    font-size: 12px;
    margin: 0px auto;
    position: relative;
}

.title-flight {
    padding-top: .8rem;
    width: 100%;
    font-weight: 500;
    color: #797979;
}

.sub-flight {
    color: #797979;
    padding-bottom: .8rem;
    width: 90%;
}

.sub-flight span {
    color: #65b32e;
    padding-bottom: .8rem;
    width: 90%;
    font-weight: 600;
}

.title-payment {
    padding-top: .8rem;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 1.5rem;
}

.sub-payment {
    width: 100%;
    font-weight: 600;
    color: #008c3c;
    font-size: 16px;
}

.sub-payment span {
    color: #797979;
    padding-bottom: .8rem;
    font-size: 14px;
    border-bottom: 1px solid #c7c7c7;
    width: 100%;
    font-weight: 400;
    display: inline-block;
}

.flight-payment-icon {
    background-image: url(../img/smallairplane.svg);
    background-repeat: no-repeat;
    top: 15px;
    line-height: 40px;
    position: relative;
    float: left;
    /* width: 100%; */
    width: 40px;
    height: 55px;
}

.flight-payment-title {
    padding: 1em 1em;
}

.flight-payment-title span {
    font-size: 14px;
    font-weight: 600;
    color: #65b32e;
}

.boxpayment {
    margin-bottom: 3rem;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    height: 190px;
    padding: 20px 2rem;
}

.hours {
    font-size: 24px;
    position: relative;
    left: 1%;
}

.depart {
    color: #fff;
    width: 100%;
    max-width: 70px;
    margin: 0px auto;
    padding: 5px 5px 5px 5px;
    font-size: 12px;
    background: #65b32e;
    /* float: left; */
    position: absolute;
    border-radius: 2px;
    text-align: center;
}

.frompayment:nth-last-child(2) {
    position: absolute;
    left: 25%;
    top: 20%;
    font-weight: 600;
    font-size: 14px;
}

.frompayment {
    position: absolute;
    left: 22%;
    top: 20%;
    font-weight: 600;
    font-size: 14px;
}

.frompayment span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: 230px;
}

p.textpayment {
    display: block;
    font-size: 12px;
    position: relative;
    top: 50px;
}

p.textpayment span {
    display: block;
    font-size: 12px;
    margin: 10px 15px;
    font-weight: 600;
}

p.textpayment span:before {
    content: '';
    background-image: url(../img/arrow2.svg);
    width: 11px;
    height: 20px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0%;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 52%;
}

.payment-linedot {
    padding: 5px;
    margin-left: -15px;
    padding-bottom: 6rem;
}

.payment-linedot .dotline {
    position: relative;
    left: 30px;
    width: 1px;
    min-height: 20px;
    background: #b5b5b5;
    top: 5px;
    height: 70px;
}

.payment-linedot .dotext {
    display: inline-block;
    padding: 5px 15px 35px 20px;
    width: 250px;
    float: left;
    position: relative;
    top: -20px;
    font-size: 14px;
    font-weight: 600;
    color: #4e4e4e;
    left: 0px;
}

.payment-linedot .dotline .done {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    background: #6b6b6b;
    margin-left: -4px;
    box-sizing: border-box;
}

.payment-linedot .dotline .donebottom {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    background: #6b6b6b;
    margin-left: -4px;
    box-sizing: border-box;
    top: 60px;
    position: absolute;
}

.payment-dot-text {
    display: -webkit-inline-box;
    padding: 14px 0px 0px 30px;
    width: 300px;
    float: left;
    position: relative;
    top: -25px;
    font-size: 20px;
    font-weight: 500;
    color: #4e4e4e;
    left: 8px;
}

.payment-dot-text span {
    color: #fff;
    width: 100%;
    max-width: 90px;
    margin: 0px auto;
    padding: 5px 10px 5px 10px;
    text-align: center;
    display: block;
    font-size: 12px;
    background: #65b32e;
    float: left;
    position: absolute;
    border-radius: 3px;
}

.payment-dot-text h5 {
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #4e4e4e;
    left: 20%;
    margin-top: 10px;
}

.payment-dot-text p {
    position: absolute;
    font-size: 14px;
    font-weight: 400;
    color: #4e4e4e;
    left: 41%;
    display: block;
    padding: 20px 18px;
    width: 500px;
    margin-top: 10px;
}

.flight-details {
    background-image: url(../img/flight-details.svg);
    width: 100%;
    height: 85px;
    position: relative;
    float: left;
    background-repeat: no-repeat;
    top: 85px;
}

.flight-details h3 {
    font-size: 20px;
    margin-left: 25%;
    display: block;
    overflow: hidden;
    font-weight: 500;
    margin-top: 1%;
}

.flight-details p {
    font-size: 14px;
    display: block;
    font-weight: 00;
    width: 280px;
    margin-left: 25%;
    top: -10px;
    position: relative;
}

.flight-details span {
    color: #fff;
    width: 100%;
    max-width: 90px;
    margin: 0px auto;
    padding: 5px 10px 5px 8px;
    text-align: center;
    display: block;
    font-size: 12px;
    background: #65b32e;
    margin-left: 25%;
    position: absolute;
    border-radius: 3px;
    top: 85px;
}

.flightimer {
    background-image: url(../img/stopwatch.svg);
    display: block;
    background-repeat: no-repeat;
}

.adult {
    background-image: url(../img/adult.svg);
    display: block;
    background-repeat: no-repeat;
}

.tags {
    background-image: url(../img/tags.svg);
    display: block;
    background-repeat: no-repeat;
}

.notesvg {
    background-image: url(../img/note.svg);
    display: block;
    background-repeat: no-repeat;
}

.mapair {
    background-image: url(../img/mapair.svg);
    display: block;
    background-repeat: no-repeat;
}

.noteair {
    color: #FFFFFF;
    font-size: 20px;
    margin: 0px auto;
    float: left;
    position: relative;
    padding-left: 5%;
    left: 30%;
    font-weight: 500;
    bottom: 15px;
}

.noteair p {
    color: #fff;
    font-size: 15px;
    margin: 0px auto;
    position: relative;
}

.noteair h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin: 0px auto;
    position: relative;
    padding: 0px 0px 0px 0px;
    left: -10%;
    font-weight: 600;
    top: -4px;
}

.note2 {
    background-image: url(../img/note2.svg);
    display: block;
    background-repeat: no-repeat;
}

.note2 {
    color: #FFFFFF;
    font-size: 13px;
    margin: 0px auto;
    float: left;
    position: relative;
    padding-left: 5%;
    left: 31%;
    font-weight: 500;
    bottom: 15px;
    display: block;
    width: 216px;
    height: 50px;
}

.note2 p {
    color: #fff;
    font-size: 12px;
    margin: 0px auto;
    position: relative;
}

.note2 h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin: 0px auto;
    position: relative;
    padding: 0px 0px 0px 0px;
    left: -10%;
    font-weight: 600;
    top: -4px;
}

.ansurance {
    background-image: url(../img/ansurance.svg);
}

.meal {
    background-image: url(../img/meal.svg);
}

.dining-experience {
    background-image: url(../img/dining-expereicne-logo.png);
}

.leole {
    background-image: url(../img/Ancillary/leole-i.png);
}

.pickseat {
    background-image: url(../img/pickseat.svg);
}

.car {
    background-image: url(../img/car.svg);
}

.bagstroli {
    background-image: url(../img/bagstroli.svg);
}

.rpd {
    background-image: url(../img/icons/i-pcr.png);
}

.lounge {
    background-image: url(../img/lounge.png);
}

.pss {
    background-image: url(../img/pss.png);
}

.fasttrack {
    background-image: url(../img/fasttrack_logo.png);
}

.list-image-left {
    width: 100px;
    height: 85px;
    line-height: 40px;
    /* text-align: center; */
    position: relative;
    float: left;
    background-repeat: no-repeat;
    background-size: 70px auto;
    background-position: center 2px;
    top: 28px;
    padding-left: 115px;
}


/* Day Flight */

.day-filter {
    /*    width: 93%;
*/
    position: relative;
    margin: 0 36px 17px 38px;
    padding: 0;
}

.day-filter .btn-next,
.day-filter .btn-prev {
    position: absolute;
    top: 8px;
    width: 35px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    height: 56px;
}

.dayfliterbtn {
    color: #6D6D6D;
    font-size: 15px;
    text-transform: capitalize;
    border: 1px solid #dbdbdb;
    width: 203px;
    margin: 0px auto;
    padding: 4px;
    position: relative;
    text-align: center;
}

.day-filter .btn-next {
    right: -36px;
}

.day-filter .btn-prev {
    left: -36px;
}

.day-filter .viewport {
    height: 64px !important;
    padding-top: 8px;
    overflow: hidden;
}

.day-filter .filter-list {
    list-style: none;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    height: 56px;
    display: -webkit-inline-box;
}

.day-filter .filter-list .list-item {
    float: left;
    display: inline-block;
    margin-bottom: 1em;
    padding: 0;
    width: 20%;
    height: 56px;
    text-align: center;
}

.day-filter .filter-list .list-item .btn {
    display: block;
    width: 100%;
}

.boxdayflight {
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding: 5px 0px;
    margin-top: 15px;
}

.dayfliter {
    color: #6D6D6D;
    font-size: 14px;
    text-transform: capitalize;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    height: 100%;
    margin: 0px auto;
    padding-top: 7px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.day-filter .filter-list .list-item:after {
    float: left;
    position: relative;
    border-left: 1px solid #dddddd;
    min-height: 32px;
    content: '';
    top: -43px;
}

.dayfliter.active {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    text-transform: capitalize;
    border: 1px solid #dbdbdb;
    height: 64px;
    margin-top: -8px;
    padding-top: 11px;
    text-align: center;
    background-color: #2eb33b;
    -webkit-transition: background-color 0.4s 0s;
    -moz-transition: background-color 0.4s 0s;
    transition: background-color 0.4s 0s;
}

.dayfliter span {
    color: #6D6D6D;
    font-size: inherit;
    display: block;
}

.dayfliter.active span {
    color: #fff;
}

.flightschedule {
    text-align: center;
    font-size: 17px;
    color: #4f4f4f;
    height: 78px;
}

.flightschedule span {
    font-size: 17px;
    color: #65b32e;
    font-weight: bold;
}

.flightschedule:before {
    content: "";
    display: inline-block;
    background: url(../img/jam.svg) no-repeat;
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-block;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 0;
    position: relative;
    bottom: -15px;
}


/*.dayfliter:hover span{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
        display: block;
}
.dayfliter:hover{
    color: #fff;
    background-color: #65b32e;
    cursor: pointer;
}
*/

.arrow {
    background-image: url(../img/arrow.svg);
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-next .arrow {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.bags {
    background-image: url(../img/bags.svg);
    width: 248px;
    color: #fff;
    line-height: 25px;
    float: left;
    left: 16px;
    background-repeat: no-repeat;
    top: 75px;
    padding: 0px 30px;
    display: inline-block;
    position: absolute;
}

.seatpackage {
    background-image: url(../img/seat.svg);
    width: 248px;
    color: #fff;
    line-height: 25px;
    float: left;
    left: 18px;
    background-repeat: no-repeat;
    top: 100px;
    padding: 0px 30px;
    display: inline-block;
    position: absolute;
}

.eat {
    background-image: url(../img/eat.svg);
    width: 248px;
    color: #fff;
    line-height: 22px;
    float: left;
    left: 20px;
    background-repeat: no-repeat;
    top: 129px;
    padding: 0px 30px;
    display: inline-block;
    position: absolute;
}


/* flight Card */

.flight-card {
    transition: height 0.3s ease;
    -webkit-transition: height 0.3s ease;
    background: #59AE7F;
    box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
    margin: 0 auto 1.6%;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    line-height: 1.45em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: -40px;
    cursor: pointer;
}

.flight-checkbox {
    display: inline-block;
    vertical-align: top;
    margin: 0 12px 2px 0;
    right: 20px;
    position: absolute;
    z-index: 9;
    top: 35%;
    cursor: pointer;
}

.flight-checkbox input+label {
    padding: 0 10px 0 50px;
    line-height: 1.4;
    cursor: pointer;
}

.flight-card.lightflight {
    background: #64C4AF !important;
}

.flight-card.classic {
    background: #91CED7 !important;
}

.flight-card.last {
    transition: height 0.3s ease;
    -webkit-transition: height 0.3s ease;
    background: #6da484;
    box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
    margin: 0 auto 1.6%;
    overflow: hidden;
    position: relative;
    font-size: 14px;
    line-height: 1.45em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flight-card:hover .details {
    left: 0;
}

.flight-card:hover.alt .details {
    right: 0;
}

.flight-card.alt .details {
    right: -100%;
    left: inherit;
}

.flight-card .photo {
    height: 200px;
    position: relative;
}

.flight-card .photo.photo1 {
    background: url(../img/easyflight.jpg) center no-repeat;
    background-size: cover;
    z-index: 5;
}

.flight-card .photo.photo2 {
    background: url("http://i60.tinypic.com/xeiv79.jpg") center no-repeat;
    background-size: cover;
    z-index: 5;
}

.flight-card .details {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    list-style: none;
    margin: 0;
    padding: 10px 15px;
    height: 200px;
    /*POSITION*/
    position: absolute;
    top: 0;
    left: -100%;
}

.flight-card .details > li {
    padding: 3px 0;
}

.flight-card .details li:before,
.flight-card .details .tags ul:before {
    font-family: FontAwesome;
    margin-right: 10px;
    vertical-align: middle;
}

.flight-card .details .author:before {
    content: "\f007";
}

.flight-card .details .date:before {
    content: "\f133";
}

.flight-card .details .tags ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.flight-card .details .tags ul:before {
    content: "\f02b";
}

.flight-card .details .tags li {
    display: inline-block;
    margin-right: 3px;
}

.flight-card .details a {
    color: inherit;
    border-bottom: 1px dotted;
}

.flight-card .details a:hover {
    color: #75D13B;
}

.flight-card .description {
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}

.flight-card .description h4 {
    font-family: 'Roboto', sans-serif;
    line-height: 1em;
    margin: 0px auto;
    color: #fff;
    padding: 0px 10px;
}

.flight-card .description h5 {
    color: #fff;
    font-weight: bold;
    margin: 1.2% 0;
    font-size: 2em;
    padding: 0px 10px;
}

.flight-card .description p {
    position: relative;
    margin: 0;
    padding-top: 20px;
}


/*.flight-card .description p:after {
  content: "";
  background: #75D13B;
  height: 6px;
  width: 40px;
  position: absolute;
  top: 6px;
  left: 0;
}*/

.flight-card .description a {
    color: #75D13B;
    margin-bottom: 10px;
    float: right;
}

.flight-card .description a:after {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    content: "\f061";
    font-family: FontAwesome;
    margin-left: -10px;
    opacity: 0;
    vertical-align: middle;
}

.flight-card .description a:hover:after {
    margin-left: 5px;
    opacity: 1;
}

.linesolid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    position: absolute;
    top: 159px;
    width: 100%;
    right: 0%;
    max-width: 650px;
}

@media screen and (min-width: 600px) {
    .flight-card {
        height: 220px;
        /*    width: 800px;
*/
    }
    /*.flight-card:hover .photo {
    -webkit-transform: rotate(5deg) scale(1.3);
            transform: rotate(5deg) scale(1.3);
  }*/
    .flight-card:hover.alt .photo {
        -webkit-transform: rotate(-5deg) scale(1.3);
        transform: rotate(-5deg) scale(1.3);
    }
    .flight-card.alt .details {
        padding-left: 30px;
    }
    .flight-card.alt .description {
        float: right;
    }
    .flight-card.alt .description:before {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
        right: -15px;
        left: inherit;
    }
    .flight-card.alt .photo {
        float: right;
    }
    .flight-card .photo {
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        float: left;
        height: 100%;
        width: 33%;
    }
    .flight-card .details {
        width: 40%;
    }
    .flight-card .description {
        float: left;
        width: 60%;
        z-index: 0;
    }
    /* .flight-card .description:before {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    content: "";
    background: #5db583;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
  }*/
    .flight-card2 .description2:before {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        content: "";
        background: #5db583;
        width: 100%;
        z-index: -1;
        /*POSITION*/
        position: absolute;
        left: -15px;
        top: 0;
        bottom: 0;
    }
}


/*=============== Date Picker */

.datepicker--cells {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.datepicker--cell {
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 32px;
    z-index: 1;
}

.datepicker--cell.-focus- {
    background: #f0f0f0;
}

.datepicker--cell.-current- {
    color: #9bc85f;
    border: 1px solid #9bc85f;
    border-radius: 5;
}

.datepicker--cell.-current-.-focus- {
    color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
    color: #4EB5E6;
}

.datepicker--cell.-in-range- {
    background: rgba(92, 196, 239, .1);
    color: #4a4a4a;
    border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
    background-color: rgba(92, 196, 239, .2);
}

.datepicker--cell.-disabled- {
    cursor: default;
    color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
    color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
    color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
    color: #aeaeae;
}

.datepicker--cell.-range-from- {
    border: 1px solid rgba(92, 196, 239, .5);
    background-color: rgba(92, 196, 239, .1);
    border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
    border: 1px solid rgba(92, 196, 239, .5);
    background-color: rgba(92, 196, 239, .1);
    border-radius: 0 4px 4px 0;
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
    color: #fff;
    background: #9bc85f;
}

.datepicker--cell.-range-from-.-range-to- {
    border-radius: 4px;
}

.datepicker--cell.-selected- {
    border: none;
}

.datepicker--cell.-selected-.-focus- {
    background: #9bc85f;
}

.datepicker--cell:empty {
    cursor: default;
}

.datepicker--days-names {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 8px 0 3px;
}

.datepicker--day-name {
    color: #9bc85f;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em;
    font-weight: 700;
}

.datepicker--body,
.datepicker-inline .datepicker--pointer {
    display: none;
}

.datepicker--cell-day {
    width: 14.28571%;
}

.datepicker--cells-months {
    height: 170px;
}

.datepicker--cell-month {
    width: 33.33%;
    height: 25%;
}

.datepicker--cells-years,
.datepicker--years {
    height: 170px;
}

.datepicker--cell-year {
    width: 25%;
    height: 33.33%;
}

.datepickers-container {
    position: absolute;
    left: 0;
    top: 0;
}

.datepicker {
    background: #fff;
    border: 1px solid #65b32e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .15);
    border-radius: 3px;
    box-sizing: content-box;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    width: 250px;
    position: absolute;
    left: -100000px;
    opacity: 0;
    transition: opacity .3s ease, left 0 .3s, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, left 0 .3s;
    transition: opacity .3s ease, transform .3s ease, left 0 .3s, -webkit-transform .3s ease;
    z-index: 100;
}

.datepicker.-from-top- {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.datepicker.-from-right- {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

.datepicker.-from-bottom- {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.datepicker.-from-left- {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}

.datepicker.active {
    opacity: 1;
    width: 287px;
    -webkit-transform: translate(0);
    transform: translate(0);
    transition: opacity .3s ease, left 0 0s, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, left 0 0;
    transition: opacity .3s ease, transform .3s ease, left 0 0s, -webkit-transform .3s ease;
}

.datepicker-inline .datepicker {
    border-color: #d7d7d7;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.datepicker--content {
    box-sizing: content-box;
    padding: 4px;
}

.datepicker--pointer {
    position: absolute;
    background: #fff;
    width: 10px;
    height: 10px;
    z-index: -1;
}

.-top-center- .datepicker--pointer,
.-top-left- .datepicker--pointer,
.-top-right- .datepicker--pointer {
    top: calc(100% - 4px);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.-right-bottom- .datepicker--pointer,
.-right-center- .datepicker--pointer,
.-right-top- .datepicker--pointer {
    right: calc(100% - 4px);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.-bottom-center- .datepicker--pointer,
.-bottom-left- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
    bottom: calc(100% - 4px);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.-left-bottom- .datepicker--pointer,
.-left-center- .datepicker--pointer,
.-left-top- .datepicker--pointer {
    left: calc(100% - 4px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.-bottom-left- .datepicker--pointer,
.-top-left- .datepicker--pointer {
    left: 40px;
    background: #65b32e;
}

.-bottom-right- .datepicker--pointer,
.-top-right- .datepicker--pointer {
    right: 10px;
}

.-bottom-center- .datepicker--pointer,
.-top-center- .datepicker--pointer {
    left: calc(50% - 10px / 2);
}

.-left-top- .datepicker--pointer,
.-right-top- .datepicker--pointer {
    top: 10px;
}

.-left-bottom- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
    bottom: 10px;
}

.-left-center- .datepicker--pointer,
.-right-center- .datepicker--pointer {
    top: calc(50% - 10px / 2);
}

.datepicker--body.active {
    display: block;
}

.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
    color: #dedede;
}

.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2);
}

.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none;
}

.datepicker--nav-action:hover,
.datepicker--nav-title:hover {
    background: none;
}

.datepicker--nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* border-bottom: 1px solid #efefef; */
    min-height: 32px;
    padding: 6px;
    background-color: #65b32e;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.datepicker--nav-action,
.datepicker--nav-title {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.datepicker--nav-action {
    width: 32px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.datepicker--nav-action.-disabled- {
    visibility: hidden;
}

.datepicker--nav-action svg {
    width: 32px;
    height: 32px;
}

.datepicker--nav-action path {
    fill: none;
    stroke: #fff;
    stroke-width: 2px;
}

.datepicker--nav-title {
    border-radius: 4px;
    padding: 0 8px;
}

.datepicker--nav-title i {
    font-style: normal;
    color: #fff;
    margin-left: 5px;
}

.datepicker--nav-title.-disabled- {
    cursor: default;
    background: 0 0;
}

.datepicker--buttons {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 4px;
    border-top: 1px solid #efefef;
}

.datepicker--button {
    color: #4EB5E6;
    cursor: pointer;
    border-radius: 4px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
}

.datepicker--button:hover {
    color: #4a4a4a;
    background: #f0f0f0;
}


/* ======================= Plus Minus */

.plusminus {
    height: 50px !important;
}

.input-group {
    width: 100%;
    background-color: #fff;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(197, 214, 222, .7);
}

.tb-label {
    font-weight: normal;
}

.tb-input {
    padding: 0 1em;
    height: 32px;
    line-height: 35px;
    background-color: transparent;
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 0;
    border: none;
    text-align: left;
}

.tb-input.count {
    text-align: center;
}

.text-box-wrapper.half {
    display: inline-block;
    width: calc((100% - 8px) / 2);
    width: -webkit-calc((100% - 8px) / 2);
    width: -moz-calc((100% - 8px) / 2);
}

.text-box-wrapper.half.left {
    margin-right: 4px;
}

.text-box-wrapper.half.right {
    margin-left: 4px;
}

.tb-icon {
    background-color: transparent;
    border: none;
    color: #bebebe;
    height: 35px;
    line-height: 35px;
    position: absolute;
    padding: 0;
    width: 14px;
    top: 0;
    right: 14px;
}

.input-group-btn {
    border: none;
    background-color: transparent;
    width: 40px;
    height: 32px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    font-size: 14px;
}

.input-group-btn.btn-minus {
    left: 0;
}

.input-group-btn.btn-plus {
    right: 0;
}


/* Button Search Flight  */

.btnflight {
    font-size: 19px;
    overflow: visible;
    color: #eee !important;
    display: block;
    height: 4.5rem;
    /*    width: 88%;
*/
    cursor: pointer;
    padding: 2px 0px 0px 0px;
    background: #2eb33b;
    /* top: 30px; */
    border-radius: 3px;
    text-align: center;
    border: 1px solid #2eb33b;
    line-height: 2;
    margin-top: 3px;
}

.btnblink:hover {
    color: #fff !important;
    /*border: 1px solid #5dc666;*/
    background: #5ab22e !important;
}

.btnflight:hover svg {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.15s;
    -moz-transition: -moz-transform 0.15s;
    -o-transition: -o-transform 0.15s;
    -ms-transition: -ms-transform 0.15s;
    transition: transform 0.15s;
}

.btnflight svg {
    position: absolute;
    top: 0px;
    right: 10%;
    height: 100%;
    width: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.15s;
    -moz-transition: -moz-transform 0.15s;
    -o-transition: -o-transform 0.15s;
    -ms-transition: -ms-transform 0.15s;
    transition: transform 0.15s;
}

.btnflight svg path {
    fill: #eee;
}

.btnflight:hover svg path {
    fill: #fff;
}

.btnflight.clicked svg path {
    fill: #fff;
}

@-moz-keyframes flyaway {
    0% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 25px;
        height: 30px;
    }
    5% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 0px;
        height: 30px;
    }
    20% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
        top: 13px;
        right: -130px;
        height: 45px;
    }
    40% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: -40px;
        right: -280px;
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        top: -200px;
        right: -1000px;
        height: 0;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-webkit-keyframes flyaway {
    0% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 25px;
        height: 30px;
    }
    5% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 0px;
        height: 30px;
    }
    20% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
        top: 13px;
        right: -130px;
        height: 45px;
    }
    40% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: -40px;
        right: -280px;
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        top: -200px;
        right: -1000px;
        height: 0;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-o-keyframes flyaway {
    0% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 25px;
        height: 30px;
    }
    5% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 0px;
        height: 30px;
    }
    20% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
        top: 13px;
        right: -130px;
        height: 45px;
    }
    40% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: -40px;
        right: -280px;
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        top: -200px;
        right: -1000px;
        height: 0;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@keyframes flyaway {
    0% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 25px;
        height: 30px;
    }
    5% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: 13px;
        right: 0px;
        height: 30px;
    }
    20% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
        top: 13px;
        right: -130px;
        height: 45px;
    }
    40% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        transform: rotate(10deg);
        top: -40px;
        right: -280px;
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        top: -200px;
        right: -1000px;
        height: 0;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-moz-keyframes bounce-in {
    0% {
        padding-right: 30px;
    }
    40% {
        padding-right: 6px;
    }
    50% {
        padding-left: 30px;
    }
    100% {
        padding-left: 6px;
    }
}

@-webkit-keyframes bounce-in {
    0% {
        padding-right: 30px;
    }
    40% {
        padding-right: 6px;
    }
    50% {
        padding-left: 30px;
    }
    100% {
        padding-left: 6px;
    }
}

@-o-keyframes bounce-in {
    0% {
        padding-right: 30px;
    }
    40% {
        padding-right: 6px;
    }
    50% {
        padding-left: 30px;
    }
    100% {
        padding-left: 6px;
    }
}

@keyframes bounce-in {
    0% {
        padding-right: 30px;
    }
    40% {
        padding-right: 6px;
    }
    50% {
        padding-left: 30px;
    }
    100% {
        padding-left: 6px;
    }
}


/*============== LOADER */

.cs-loader {
    position: absolute;
    top: 50%;
    left: 20%;
    /* margin-top: -180px; */
    margin-left: -200px;
    /* height: 100%; */
    width: 100%;
    right: 50%;
}

.cs-loader h3 {
    font-size: 24px;
    color: #65b32e;
    left: 32%;
    top: -60px;
    margin: 0px auto;
    position: relative;
    font-weight: 600;
}

.cs-loader h5 {
    font-size: 18px;
    left: 34%;
    top: -50px;
    margin: 0px auto;
    position: relative;
    color: #fff;
}

.cs-loader p {
    font-size: 14px;
    left: 30%;
    top: -50px;
    margin: 0px auto;
    position: relative;
    color: #fff;
}

.cs-loader-inner {
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    width: calc(100% - 200px);
    color: #FFF;
    padding: 0 100px;
    text-align: center;
}

.cs-loader-inner label {
    font-size: 20px;
    opacity: 0;
    display: inline-block;
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }
    33% {
        opacity: 1;
        transform: translateX(0px);
    }
    66% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }
    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}


/* Tooltip air */

.tooltip-air {
    position: relative;
    display: inline-block;
    padding: 0px 8px 5px 8px;
    margin: -10px 0;
    cursor: pointer;
}

.tooltip-air:hover .info,
.quote .tooltip-air:focus .info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tooltip-air .info {
    box-sizing: border-box;
    position: absolute;
    top: 30px;
    left: -222px;
    display: block;
    background: #FFF;
    width: 500px;
    font-size: 16px;
    line-height: 24px;
    cursor: help;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.3);
    color: #383838;
    padding: 10px 20px 30px 20px;
    height: auto;
}

.tooltip-air .info:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 14px;
    bottom: -14px;
    left: 0;
}

.tooltip-air .info:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -5px;
    left: 50%;
    margin-left: -5px;
    background: #FFF;
}

.tooltip-air span {
    width: 100%;
    float: left;
    position: relative;
    /*    padding: 10px;
*/
    /*    height: 150px;
*/
}

.tooltip-air .cover {
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
}

.tooltip-air .cover img {
    width: 20%;
    float: left;
    position: relative;
}

.tooltip-air .dotline {
    display: inline-block;
    position: relative;
    left: 30px;
    width: 1px;
    min-height: 20px;
    background: #b5b5b5;
    top: 5px;
    height: 65px;
}

.tooltip-air .dotline .done {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    background: #6b6b6b;
    margin-left: -4px;
    box-sizing: border-box;
}

.tooltip-air .dotline .donebottom {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    background: #6b6b6b;
    margin-left: -4px;
    box-sizing: border-box;
    top: 60px;
    position: absolute;
}

.tooltip-air .info .pronounce {
    display: block;
    background: #fff;
    color: #fff;
    padding: 8px 17px 10px 17px;
    line-height: 16px;
}

.tooltip-air .info .pronounce .fa {
    position: relative;
    margin-left: 10px;
    top: 1px;
    cursor: help;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.tooltip-air .info .pronounce .fa:hover {
    -webkit-transform: scale(1.15) translate3d(0, 0, 0);
    transform: scale(1.15) translate3d(0, 0, 0);
    -webkit-backface-visibility: none;
    backface-visibility: none;
}

.tooltip-air .info .text {
    display: inline-block;
    padding: 20px;
    width: 250px;
    float: left;
    position: relative;
    top: -30px;
    font-size: 20px;
    font-weight: 600;
    color: #4e4e4e;
    left: 10px;
}

.tooltip-air .info .text p {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    left: 10px;
    color: #4e4e4e;
}

.tooltip-air .info .text h5 {
    display: block;
    font-size: 12px;
    font-weight: 600;
    left: 10px;
    color: #676767;
    width: 350px;
}


/* Flight Book */

.flightbook-img {
    height: auto;
}


/* Step  */

.wizard-progress {
    text-align: center;
    position: relative;
    top: -20px;
    width: 100%;
    left: 34%;
}

.wizard-progress-list {
    overflow: hidden;
    counter-reset: step;
}

.wizard-progress-list:after {
    content: "";
    background-image: url(../img/airprogress.svg);
}

.wizard-progress-list li {
    list-style-type: none;
    color: #C7CCD5;
    /*    text-transform: uppercase; */
    font-size: 16px;
    width: 18%;
    float: left;
    position: relative;
}

.wizard-progress-list li.active {
    color: #65b32e;
}

.wizard-progress-list li.complete {
    color: #5f5f5f;
}

.wizard-progress-list .complete .plnae-complete {
    background-image: url(../img/airprogress.svg);
}

.wizard-progress-list li.notactive {
    color: #c9c9c9;
}

.wizard-progress-list li:before {
    content: counter(step);
    counter-increment: step;
    width: 14px;
    /* line-height: 24px; */
    display: block;
    font-size: 12px;
    color: #FFF;
    background: #C7CCD5;
    /* border-radius: 100px; */
    margin: 0 auto 5px auto;
    top: 3px;
    position: relative;
}


/*progressbar connectors*/

.wizard-progress-list li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #65b32e;
    position: absolute;
    left: -50%;
    top: 11px;
    z-index: -1;
    /*put it behind the numbers*/
}

.wizard-progress-list li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}


/*marking active/completed steps green*/


/*The number of the step and the connector before it = green*/

.wizard-progress-list li.active:before,
.wizard-progress-list li.active:after {
    background: #65b32e;
    color: white;
}

.wizard-progress-list li.complete:before,
.wizard-progress-list li.complete:after {
    background: #65b32e;
    color: white;
}

.wizard-progress-list li.notactive:before,
.wizard-progress-list li.notactive:after {
    background: #c9c9c9;
    color: white;
}

.wizard-progress-list li.in-progress:after {
    background: #2286B0;
    color: white;
}


/* meal */

.mealcontainer {
    margin: -10px;
    position: relative;
    left: 5px;
    top: 10px;
}

.goods {
    /* width: 67.5%; */
    min-width: 385px;
    height: 100%;
    margin: 0px auto;
    /* top: 0; */
    right: 0;
    bottom: 0;
    /* left: 0; */
    transform: translate(0px, 0);
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

#product {
    width: 29.796%;
    /* box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); */
    background-color: #fff;
    margin: 1.7%;
    float: left;
}


/* SideBar Meal & Asurance */

.box-user-header {
    border-left: 8px solid #ccc;
    width: 100%;
    padding: 0px 0 0 18px;
    height: 40px;
}

.box-user-header.active {
    border-left: 8px solid #0D8B43;
}

.sidebaransurance {}

.box-user-header h3 {
    color: #636363;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 0;
}

.box-user-header p {
    color: #636363;
    font-size: 14px;
    line-height: 14px;
}

.sidebarmeal {}

.detail .glyphicon {
    font-size: 12px;
    margin: 0 0.2em 0 0.5em;
}

.glyphicon.red {
    color: #cb6669;
}

.glyphicon.green {
    color: #2EB33B;
}

.glyphicon.redbox {
    background: #cb6669;
    color: #fff;
    padding: 2px;
    font-size: smaller;
}

.sidebarmeal h3 {}

.sidebarmeal p {}

.sidebarmealreturn {}

.sidebarmealreturn h3 {}

.sidebarmealreturn p {}

.box-user-content {
    display: block;
    margin: 1em 0 3.2em;
}

.box-user {
    border: 1px solid #ddd;
    width: calc(100% - 25px);
    height: 45px;
    clear: both;
    position: relative;
}

.box-user>* {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 10px 0px 0px 14px;
    font-size: 13px;
    color: #696969;
}

.baggage-selector select {
    right: 0px;
    border: none;
    border-left: 1px solid #ddd;
}

.baggage-selector select option {
    padding: 10px;
}

.box-user .box-user-pax {
    left: 0;
    font-weight: 600;
    width: 100%;
}

.box-user .box-user-pax label {
    margin-left: 3px;
    width: 80%;
    cursor: pointer;
}

.box-user .box-user-pax .checkbox {
    display: inline-block;
    margin: 0 4px;
}

.box-user .box-user-pax .checkbox label {
    width: auto;
    font-size: 1.3rem;
    font-weight: 600;
}

.box-user .box-user-pax input[type="radio"],
.custom-radio input[type="radio"] {
    vertical-align: sub;
    margin: 0 5px;
    display: none;
}

.box-user .box-user-pax input[type="radio"] + span:before,
.custom-radio input[type="radio"] + span:before {
    border: 1px solid #666;
    background: #fff;
    height: 14px;
    width: 14px;
    border-radius: 100%;
    content: "";
    display: inline-block;
    margin: -4px 7px 0 2px;
    vertical-align: middle;
}

.box-user .box-user-pax input[type="radio"]:checked + span:before,
.custom-radio input[type="radio"]:checked + span:before {
    background: #0d8b43;
    border: 4px double #fff;
    height: 18px;
    width: 18px;
    margin: -4px 5px 0 0;
}

.box-user .box-user-pax input[type="radio"]:checked + label {
    color: #0d8b43;
}

.box-user .box-user-price {
    right: 0;
    border-left: 1px solid #ddd;
}

.box-user .box-user-price.selection {
    padding: 0;
}

.box-user .box-user-price.quantity {
    padding: 10px 0;
    text-align: center;
    width: 44px;
}

.box-user .box-user-price.quantity .redbox {
    position: absolute;
    right: -24px;
    top: 15px;
}

.box-user-footer {
    border-top: 1px solid #ddd;
    color: #888;
    font-size: 12px;
    line-height: 1.3;
    padding-top: 0.6em;
    width: calc(100% - 25px);
}

.seatplane-box p {
    font-size: 18px;
    font-weight: 600;
    display: block;
    line-height: 1.5;
}

.seatplane-box span {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    left: 35px;
    width: 200px;
    display: inline-block;
    margin-bottom: 10px;
}

.seatplane-box .greenseat,
.seatplane-box .regularseat,
.seatplane-box .emergencyseat,
.seatplane-box .pinkseat {
    position: relative;
    margin: 0 0 1em 35px;
}

.seatplane-box .regularseat:before,
.seatplane-box .emergencyseat:before,
.seatplane-box .greenseat:before,
.seatplane-box .pinkseat:before {
    content: "";
    width: 15px;
    height: 15px;
    background: #879985;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 2px;
}

.seatplane-box .greenseat:before {
    background: #3fc66b;
}

.seatplane-box .emergencyseat:before {
    background: #f5f055;
}

.seatplane-box .pinkseat:before {
    background: #fc20db;
}

.greenseat .text,
.emergencyseat .text,
.regularseat .text,
.pinkseat .text{
    font-size: 14px;
    font-weight: 600;
    width: 85%;
}

.greenseat .text p,
.emergencyseat .text p,
.regularseat .text p,
.pinkseat .text p{
    font-size: 12px;
    font-weight: 400;
    text-align: justify;
}

.seatplane-box .regularseat:before {
    content: "";
    width: 15px;
    height: 15px;
    background: #879985;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 2px;
}

.box-seat-detail {
    border: 1px solid #ddd;
    background-color: #f3f3f3;
    width: 300px;
    padding: 10px 0px 0px 14px;
    height: 45px;
    display: block;
    margin: .5em auto;
}

.box-seat-detail-not-avalible {
    width: 15px;
    height: 15px;
    background: #fff;
    /* top: 5%; */
    margin: 5px 0px 0px 0px;
    display: inline-block;
    border: 1px solid #ddd;
}

.box-seat-detail-not-avalible p {
    font-size: 13px;
    display: block;
    width: 200px;
    position: relative;
    margin: 0px auto;
    padding: 0px 15px 0px 20px;
    top: -2px;
}

.box-seat-detail-your-seat {
    width: 15px;
    height: 15px;
    margin: 5px 0px 0px 0px;
    display: inline-block;
    background: #4491A4;
    position: relative;
    left: 38%;
}

.box-seat-detail-your-seat p {
    font-size: 13px;
    display: block;
    width: 200px;
    position: relative;
    margin: 0px auto;
    padding: 0px 15px 0px 20px;
    top: -2px;
}

#meal h3 {
    color: #636363;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding: 5px 0 3px 0;
    letter-spacing: 1px;
    clear: both;
    left: -33px;
    position: relative;
}

#cart {
    padding: 0px;
}

#cart .empty {
    font-style: italic;
    color: #a0a3ab;
    font-size: 14px;
    letter-spacing: 1px;
}

#sidebar img {
    margin-top: 6px;
}

.sizes li span,
.categories .sizes li {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.titlemeal {
    font-size: 20px;
    padding: 12px 0px 10px;
    border-bottom: 1px solid #bdbdbd;
    color: #757575;
    margin-bottom: 20px;
}

.product {
    position: relative;
    width: 120px;
    height: 160px;
    left: -10px;
    margin: 0.26rem;
}

.product-front img {
    width: 100%;
}


/*.product-meal {
    z-index: 1;
    margin: 0px auto;
}
.product-meal:hover{
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 120px;
    height: 105px;
    background: rgba(37, 37, 37, 0.7);
    opacity: 1;
}
.product-meal:after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 120px;
    height: 105px;
    background: rgba(37, 37, 37, 0.7);
    opacity: 0;
}*/


/*.image_overlay{
    position: absolute;
    top: 0px;
    left: 0;
    width: 120px;
    height: 105px;
    background: rgba(37, 37, 37, 0.7);
    opacity: 0
}
.image_overlay:hover{
    position: absolute;
    top: 0px;
    left: 0;
    width: 120px;
    height: 105px;
    background: rgba(37, 37, 37, 0.7);
    opacity: 1;
}
.image_overlay:hover,.detailmeal:hover{
    opacity: 1;
}*/

.detailmealbg {
    background: rgba(0, 0, 0, 0.44);
    opacity: 0;
    position: absolute;
    width: 120px;
    height: 105px;
    left: 0;
    top: 0px;
}

.detailmealbg:hover {
    background: rgba(0, 0, 0, 0.44);
    opacity: 1;
    position: absolute;
    width: 120px;
    height: 105px;
    left: 0;
    top: 0px;
}

.detailmealbg .selectmeal {
    position: absolute;
    top: 25px;
    left: 20%;
    width: 75px;
    font-size: 12px;
    margin: 0px auto;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 2px 0;
    opacity: 0;
}

.detailmealbg .detailmeal {
    position: absolute;
    top: 25px;
    left: 20%;
    width: 75px;
    font-size: 12px;
    margin: 0px auto;
    text-align: center;
    font-weight: 700;
    padding: 2px 0;
    opacity: 0;
}

.detailmealbg:hover .selectmeal {
    position: absolute;
    top: 20px;
    left: 20%;
    width: 75px;
    font-size: 12px;
    margin: 0px auto;
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    padding: 2px 0;
    opacity: 1;
    background: black;
    cursor: pointer;
}

.detailmealbg:hover .detailmeal {
    position: absolute;
    top: 60px;
    left: 20%;
    width: 75px;
    font-size: 12px;
    margin: 0px auto;
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    padding: 2px 0;
    opacity: 1;
    cursor: pointer;
}

.mealcontainer .stats-container .product_name {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    line-height: 1;
    clear: both;
}

.mealcontainer .product .selected-meal.detailmealbg {
    display: none;
}

.mealcontainer .product.selected-product .detailmealbg {
    display: none;
}

.mealcontainer .product.selected-product .selected-meal.detailmealbg {
    display: block;
    opacity: 1;
}

.mealcontainer .product.selected-product .selected-meal.detailmealbg .glyphicon-ok {
    border: 1px solid #fff;
    color: #fff;
    font-size: 30px;
    height: 25px;
    line-height: 19px;
    margin-left: 8px;
    margin-top: 5px;
    width: 25px;
}

.mealcontainer .product.selected-product .detailmealbg:hover .selectmeal {
    top: 40px;
}

.mealcontainer .detailmeal-popdetail {
    display: none;
}

.stats-container p {
    font-size: 12px;
    color: #b1b1b3;
}

.stats-container .product_price {
    float: left;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.product-options {
    padding: 0;
}

.product-options strong {
    font-weight: 700;
    color: #393c45;
    font-size: 14px;
}

.product-options span {
    color: #969699;
    font-size: 14px;
    display: block;
    margin-bottom: 0px;
}

.make3D.animate .detailmeal {
    opacity: 1;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.carousel {
    width: 315px;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel ul {
    position: absolute;
    top: 0;
    left: 0;
}

.carousel li {
    width: 315px;
    height: 500px;
    float: left;
    overflow: hidden;
}

.carousel img {
    /* margin: 0px auto; */
    width: 200px;
    /* position: relative; */
    height: 220px;
}

.arrows-perspective {
    width: 200px;
    height: 55px;
    position: absolute;
    top: 100px;
    transform-style: preserve-3d;
    transition: transform 5s;
    perspective: 335px;
}

.carouselPrev,
.carouselNext {
    width: 20px;
    height: 25px;
    background: #ccc;
    position: absolute;
    top: 0;
    transition: all 200ms ease-out;
    opacity: 0.9;
    cursor: pointer;
}

.carouselNext {
    top: 0;
    right: -26px;
    -webkit-transform: rotateY( -117deg);
    -moz-transform: rotateY( -117deg);
    -o-transform: rotateY( -117deg);
    transform: rotateY( -117deg);
    transition: all 200ms ease-out;
}

.carouselNext.visible {
    right: 0;
    opacity: 0.8;
    background: #fff;
    -webkit-transform: rotateY( 0deg);
    -moz-transform: rotateY( 0deg);
    -o-transform: rotateY( 0deg);
    transform: rotateY( 0deg);
    transition: all 200ms ease-out;
}

.carouselPrev {
    left: -26px;
    top: 0;
    -webkit-transform: rotateY( 117deg);
    -moz-transform: rotateY( 117deg);
    -o-transform: rotateY( 117deg);
    transform: rotateY( 117deg);
    transition: all 200ms ease-out;
}

.carouselPrev.visible {
    left: 0;
    opacity: 0.8;
    background: #fff;
    -webkit-transform: rotateY( 0deg);
    -moz-transform: rotateY( 0deg);
    -o-transform: rotateY( 0deg);
    transform: rotateY( 0deg);
    transition: all 200ms ease-out;
}

.carousel .x,
.carousel .y {
    height: 2px;
    width: 10px;
    background: #65b32e;
    position: absolute;
    top: 8px;
    left: 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.carousel .x {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 14px;
}

.carousel .carouselNext .x {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.carousel .carouselNext .y {
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.floating-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 90px;
    background: #fff;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    display: none;
}

.floating-cart .stats-container {
    display: none;
}

.floating-cart .product-front {
    width: 100%;
    top: 0;
    left: 0;
}

.floating-cart.moveToCart {
    left: 400px !important;
    bottom: 375px !important;
    width: 63px;
    height: 42px;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}


/*.MakeFloatingCart .floating-cart.moveToCart{
    left: -29px !important;
    bottom: 55px !important;
    width: 21px;
    height: 22px;
    box-shadow:0px 5px 31px -1px rgba(0, 0, 0, 0);
    -webkit-transition: all 200ms ease-out;
       -moz-transition: all 200ms ease-out;
        -ms-transition: all 200ms ease-out;
         -o-transition: all 200ms ease-out;
            transition: all 200ms ease-out;
}*/

.cart-icon-top {
    position: absolute;
    background: #fff url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/cart.png") 0 -3px no-repeat;
    margin: 0;
    width: 21px;
    height: 3px;
    z-index: 1;
    top: 140px;
    left: 90px;
}

.cart-icon-bottom {
    position: absolute;
    background: #fff url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/cart.png") 0 -3px no-repeat;
    margin: 0;
    width: 21px;
    height: 19px;
    z-index: 1;
    top: 143px;
    left: 90px;
}

.MakeFloatingCart .cart-icon-top {
    z-index: 30;
}

.MakeFloatingCart .cart-icon-bottom {
    z-index: 300;
}

.cart-item {
    padding: 0px 0 9px 30px;
    height: auto;
    width: 300px;
    /* margin-left: 55px; */
    position: relative;
    background: #fff;
    -webkit-transition: all 1000ms ease-out;
    -moz-transition: all 1000ms ease-out;
    -ms-transition: all 1000ms ease-out;
    -o-transition: all 1000ms ease-out;
    transition: all 1000ms ease-out;
}

.cart-item.flash {
    /* background:#67b32f;
    padding: 0px 0 9px 30px;*/
}

.cart-item-border {
    position: absolute;
    bottom: 4px;
    left: -40px;
    background: #edeff0;
    height: 1px;
    width: 339px;
}

.cart-item .img-wrap {
    width: 85px;
    height: 50px;
    overflow: hidden;
    border: 1px solid #edeff0;
    float: left;
    margin-left: -65px;
}

.cart-item img {
    width: 100%;
    position: relative;
    top: -10px;
}

.cart-item strong {
    color: #65b32e;
    font-size: 16px;
    right: -10px;
    position: relative;
}

.cart-item span {
    color: #393c45;
    display: block;
    font-size: 14px;
    right: -10px;
    position: relative;
}

.cart-item .delete-item {
    background: url(../img/tong.svg) 0 0 no-repeat;
    width: 35px;
    height: 35px;
    float: right;
    margin-right: 28px;
    display: none;
    margin-top: -20px;
}

.cart-item:hover .delete-item {
    display: block;
    cursor: pointer
}

#info {
    position: absolute;
    top: 20px;
    left: 676px;
    text-align: center;
    width: 413px;
}

#info p {
    font-size: 15px;
    padding: 3px;
    color: #b1b1b3
}

#info a {
    text-decoration: none;
}

#checkout {
    border: 2px solid #5ff7d2;
    font-size: 13px;
    font-weight: 700;
    padding: 3px 9px;
    position: absolute;
    top: 137px;
    left: 181px;
    color: #5ff7d2;
    display: none;
}

.product.large {
    width: 639px;
    margin-bottom: 25px;
    overflow: hidden;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}


/* ---------------- */

.floating-image-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.info-large {
    display: none;
    position: absolute;
    top: 0;
    left: 0px;
    padding: 42px;
    width: 245px;
    height: 395px;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.large .info-large {
    left: 310px;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.info-large h4 {
    text-transform: uppercase;
    font-size: 28px;
    color: #000;
    font-weight: 400;
    padding: 0;
}

.price-big {
    font-size: 34px;
    font-weight: 600;
    color: #5ff7d2;
    margin-top: 21px;
}

.price-big span {
    color: #d0d0d0;
    font-weight: 400;
    text-decoration: line-through;
}

.add-cart-large {
    border: 3px solid #000;
    font-size: 17px;
    background: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    width: 246px;
    margin-top: 38px;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.add-cart-large:hover {
    color: #5ff7d2;
    border-color: #5ff7d2;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    cursor: pointer;
}

.info-large h3 {
    letter-spacing: 1px;
    color: #262626;
    text-transform: uppercase;
    font-size: 14px;
    clear: left;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 3px;
}

.colors-large {
    margin-bottom: 38px;
}

.colors-large li {
    float: left;
    list-style: none;
    margin-right: 7px;
    width: 16px;
    height: 16px;
}

.colors-large li a {
    float: left;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.colors-large li a:hover {
    width: 19px;
    height: 19px;
    position: relative;
    top: -1px;
    left: -1px;
}

.sizes-large {}

.sizes-large span {
    font-weight: 600;
    color: #b0b0b0;
}

.sizes-large span:hover {
    color: #000;
    cursor: pointer;
}

.product.large:hover {
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
}


/*====================== */

.pagination {
    padding: 20px 0;
    border-top: 1px solid #efefef;
    width: 100%;
    text-align: center;
    position: relative;
}

.pagination a {
    color: #999;
    text-align: center;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
}

.pagination a:hover {
    color: rebeccapurple;
}

.pagination .more {
    color: #111;
}

.pagination .active {
    color: #65b32e;
    border: 1px solid #65b32e;
    border-radius: 2px;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 10px;
    font-size: .8em;
    text-transform: uppercase;
}

.pagination .prev {
    position: absolute;
    left: -10px;
}

.pagination .prev .icon {
    display: inline-block;
    margin-right: 10px;
}

.pagination .next {
    float: right;
}

.pagination .next .icon {
    margin-left: 10px;
}

.pagination-two {
    display: none;
    background: #efefef;
    padding: 20px 0;
    border-top: 1px solid #efefef;
    width: 100%;
    text-align: center;
    position: relative;
}

.pagination-two a {
    text-align: center;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
}

.pagination-two .more {
    color: #111;
}

.pagination-two .active {
    color: #111;
    border: 1px solid #111;
    border-radius: 2px;
}

.pagination-two .prev,
.pagination-two .next {
    font-size: 0;
    width: auto;
    padding: 0 10px;
    text-transform: uppercase;
}

.pagination-two .prev .icon,
.pagination-two .next .icon {
    font-size: 14px;
}

.pagination-two .prev {
    position: absolute;
    left: 10px;
}

.pagination-two .prev .icon {
    display: inline-block;
    margin-right: 10px;
}

.pagination-two .next {
    position: absolute;
    right: 10px;
}

.pagination-two .next .icon {
    margin-left: 10px;
}


/*============================= Seat Citilink */

.plane_content {
    overflow: auto;
    position: relative;
    /* padding: 0px 0px 2px 5px; */
    margin: 10px auto;
    width: 100%;
    /* max-width: 100%; */
    height: 500px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    top: -20px;
    right: -5%;
}

.bgplane {
    background: url(../img/seat-citilink.svg) 0 0 repeat-y;
    background-size: 100%;
}

.bgpesawat {
    background: url(../img/pesawat.svg) 0 0 no-repeat;
    background-size: 100%;
    left: -100px;
}

.aircitilink {
    margin: 20px auto;
    max-width: 380px;
    height: 155rem;
    position: relative;
}

.aircitilink-atr {
    margin: 20px auto;
    max-width: 380px;
    height: 105rem;
    position: relative;
}

.plane {
    height: 70rem;
    position: relative;
    top: 30px;
    width: 250px;
    margin: 0px auto;
}

.cockpit h1 {
    width: 60%;
    margin: 100px auto 35px auto;
}

.exit {
    position: relative;
    height: 50px;
}

.exit:before {
    left: 0;
}

.exit:after {
    right: 0;
}

ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

#seatmap-current-flight {
    margin-bottom: 11px;
    text-align: center;
    font-weight: 600;
}

.seats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.seats-small {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.seats li input[type="radio"] {
    display: none;
}

.seats-small li input[type="radio"] {
    display: none;
}

.seats .seat,
.seats .booked-seat,
.seats .booked-seat-female,
.seats .booked-seat-distance,
.seats .emergency-seat,
.seats .green-seat,
.seats .selected-seat,
.seats .selected-seat-female {
    padding: 5px;
    position: relative;
}

.seats-small .seat,
.seats-small .booked-seat,
.seats-small .booked-seat-female,
.seats-small .emergency-seat,
.seats-small .green-seat,
.seats-small .supergreen-seat,
.seats-small .selected-seat,
.seats-small .selected-seat-female {
    padding: 5px;
    position: relative;
}

.seat:nth-child(3) {}

.seat input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.seat input[type=checkbox]:checked + label {
    background: #bada55;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.seat input[type=checkbox]:disabled + label {
    background: #dddddd;
    text-indent: -9999px;
    overflow: hidden;
}

.seat input[type=checkbox]:disabled + label:after {
    content: "X";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.seat input[type=checkbox]:disabled + label:hover {
    box-shadow: none;
    cursor: not-allowed;
}

.seats li label {
    display: inline-block;
    float: left;
    position: relative;
    width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 4px 0;
    animation-duration: 300ms;
    animation-fill-mode: both;
    height: 30px;
}

.seats-small li label {
    display: inline-block;
    float: left;
    position: relative;
    width: 17px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5rem;
    padding: 4px 0;
    animation-duration: 300ms;
    animation-fill-mode: both;
    height: 17px;
}

.green-seat label {
    background: #3fc66b;
}

.green-seat label:hover {
    cursor: pointer;
    box-shadow: 0 0 0px 2px #3FC66B;
}

.green-seat:nth-child(3) {}

.green-seat input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.green-seat input[type=checkbox]:checked + label {
    background: #bada55;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.green-seat input[type=checkbox]:disabled + label {
    background: #dddddd;
    text-indent: -9999px;
    overflow: hidden;
}

.green-seat input[type=checkbox]:disabled + label:after {
    content: "X";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.green-seat input[type=checkbox]:disabled + label:hover {
    box-shadow: none;
    cursor: not-allowed;
}

.supergreen-seat label {
    background: #036c08;
}

.supergreen-seat label:hover {
    cursor: pointer;
    box-shadow: 0 0 0px 2px #3FC66B;
}

.supergreen-seat:nth-child(3) {}

.supergreen-seat input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.supergreen-seat input[type=checkbox]:checked + label {
    background: #bada55;
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.supergreen-seat input[type=checkbox]:disabled + label {
    background: #dddddd;
    text-indent: -9999px;
    overflow: hidden;
}

.supergreen-seat input[type=checkbox]:disabled + label:after {
    content: "X";
    text-indent: 0;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.supergreen-seat input[type=checkbox]:disabled + label:hover {
    box-shadow: none;
    cursor: not-allowed;
}

.seat label {
    background: #879985;
}

.seat label:hover {
    cursor: pointer;
    box-shadow: 0 0 0px 2px #879985;
}

.seat label.seat-info,
.green-seat label.seat-info,
.supergreen-seat label.seat-info,
.booked-seat label.seat-info,
.booked-seat-female label.seat-info,
.booked-seat-distance label.seat-info,
.emergency-seat label.seat-info,
.selected-seat label.seat-info,
.selected-seat-female label.seat-info{
    background: transparent !important;
    margin-left: -10px;
    box-shadow: none !important;
    border: none !important;
}

.booked-seat label {
    border-color: #ccc;
    background: url(../img/booked-seat.gif) no-repeat center center #fff;
}

.booked-seat label:hover {
    cursor: not-allowed !important;
}

.booked-seat-female label {
    border-color: #ccc;
    background: url(../img/booked-seat-female.png) no-repeat center center #fec6ef ;
}

.booked-seat-distance label {
    border-color: #ccc;
    background: url(../img/booked-seat-female.png) no-repeat center center #f54242;
}

.booked-seat-distance label:hover {
    cursor: not-allowed !important;
}

.booked-seat-female label:hover {
    cursor: not-allowed !important;
}

.emergency-seat label {
    border-color: #ccc;
    background-color:  #f5f055;
}

.emergency-seat label:hover {
    cursor: not-allowed !important;
}

.selected-seat label {
    background: url(../img/user-seat.png) no-repeat center center #4491A4;
    background-size: 18px;
}

.selected-seat-female label {
    background: url(../img/user-seat.png) no-repeat center center #fe72d8;
    background-size: 18px;
}

.seat-header .seat label.seat-info {
    margin-left: 0px;
}

.seat label.seat-info.seat-util {
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 3px;
}

.seat-header .seat label.seat-info > img {
    width: 75%;
}

.hint--bottom label.seat-info {
    width: 48px;
}

.hint--bottom label {
    border-radius: 2px;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}


/* ================ Tooltip Hover */

.hint {
    position: relative;
    display: inline-block;
}

.hint:before,
.hint:after {
    position: absolute;
    left: 0px;
    opacity: 0;
    z-index: 99999;
    -webkit-transition: margin 0.3s ease, opacity 0.3s ease;
    -moz-transition: margin 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.hint:hover:before,
.hint:hover:after {
    opacity: 1;
}

.hint:before {}

.hint:after {}


/* default: bottom */

.hint--bottom:before,
.hint--bottom:after {
    height: 0px;
    padding: 0px;
    margin-top: -25px;
}

.hint--bottom:before {
    background: #fff url("../img/pickseat.svg") no-repeat scroll 10px 10px / 6rem auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    content: attr(data-hint);
    font-size: 4rem;
    font-weight: 700;
    padding: 20px 20px 38px 6rem;
    width: 159px;
    top: 100%;
}

.hint--bottom:after {
    background: #2eb33b none repeat scroll 0 0;
    color: #fff;
    content: attr(data-price);
    font-weight: 600;
    left: 12px;
    width: 135px;
    top: calc(100% + 69px);
}

.seat.hint--bottom:after {
    background: #879985 none repeat scroll 0 0;
}

.hint--bottom:nth-child(4):before,
.hint--bottom:nth-child(5):before,
.hint--bottom:nth-child(6):before {
    left: auto;
    right: 0px;
}

.hint--bottom:nth-child(4):after,
.hint--bottom:nth-child(5):after,
.hint--bottom:nth-child(6):after {
    left: auto;
    right: 12px;
}

.hint--bottom:hover:before {
    height: 120px;
    margin-top: 0px;
}

.hint--bottom:hover:after {
    padding: 8px 10px;
    height: auto;
    margin-top: 0px;
}


/*========= sticky footer */

.sticky_price {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #5D5D5D;
    color: #fff;
    white-space: nowrap;
}

.sticky_price .allprice {
    position: relative;
    width: 990px;
    width: 39.5455rem;
    margin: 0 auto;
}

.sticky_price_fromto {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    left: -12%;
    position: relative;
    padding: 5px;
}

.sticky_price_fromto .typeflight {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.sticky_price_fromto .city {
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    display: initial;
    position: relative;
    top: -10px;
}

.sticky_price_content {
    float: right;
    padding: 10px;
}

.sticky_price_content:after {
    content: "";
    border-right: 1px solid #888;
    position: absolute;
    height: 65px;
    left: 59%;
    top: 13%;
}

.sticky_price_priceinfo {
    font-weight: normal;
    color: #fff;
    display: block;
}

.sticky_price_priceinfo > strong {
    line-height: 1;
    margin-left: 5px;
    font-weight: 700;
    font-size: 36px;
    font-size: 2.57143rem;
}

.sticky_price_btn {
    font-size: 19px;
    overflow: visible;
    position: absolute;
    color: #FFFFFF;
    display: -webkit-inline-box;
    vertical-align: middle;
    height: 42px;
    width: 160px;
    cursor: pointer;
    padding: 8px 0px 0px 38px;
    background-color: #65b32e;
    font-weight: 500;
    top: 23px;
    right: -30%;
}


/* Rounded checkbox */

.squaredThree input[type=checkbox] {
    visibility: hidden;
    position: absolute;
}

.squaredThree input[type="checkbox"]:checked {
    border: 1px solid red;
    background-color: #fff;
}


/* Detail Modal Meal */

.modal-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.modal-loading-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.modal-loading {
    padding: 15px;
    width: 800px;
    float: left;
    display: block;
    margin: 60% 0 0 -330px;
    position: relative;
    top: 55%;
    left: 45%;
    opacity: 0;
    color: white
}

.modal-loading-wrapper.open .modal-loading {
    margin-top: -235px;
    opacity: 1;
}

.modal-meal {
    padding: 0px;
    width: 480px;
    display: block;
    position: relative;
    background: transparent;
    margin: 40px auto 0;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.modal-wrapper.modal-show {
    visibility: visible;
    opacity: 1;
}

.image-frame {
    display: block;
    height: 300px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
}

.detail-meal-popdetaildesc {
    padding: 10px;
    display: block;
}

.detail-meal-popdetaildesc strong {
    font-weight: 100;
}

.detail-meal-popdetaildesc strong small {
    font-weight: 700;
    clear: both;
    display: block;
}

.detail-meal-popdetaildesc button {
    background: #2EB33B;
    border: medium none;
    color: #fff;
    font-size: 1.2rem;
    padding: 2px 11px;
    display: none;
}

.detail-meal-popdetaildesc span {
    display: block;
    margin-top: 1em;
}

#modal-wrapper .btn-close.trigger,
.modal-wrapper .btn-close.trigger {
    margin: 0 0 0 auto;
    color: #fff !important;
    left: auto;
    top: 0;
    width: 34px;
}

#modal-wrapper .btn-close:before,
#modal-wrapper .btn-close:after,
.modal-wrapper .btn-close:before,
.modal-wrapper .btn-close:after {
    background: none;
}

.modal-wrapper.open .modal-meal {
    margin-top: -235px;
    opacity: 1;
}

.modal-img img {
    /* border-radius: 3px; */
    position: absolute;
    top: 0px;
    left: 0;
    width: 40%;
    filter: alpha(opacity=0);
    background-size: cover;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    background-position: center top;
}

#modal-meal-content {
    position: relative;
    /* left: 5%; */
    width: 100%;
    background: #fff;
    border-bottom: 5px solid #65B32E;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

#modal-meal-content.flex-col {
    display: flex;
}

#modal-meal-content > img {
    width: 100%;
}

#modal-meal-content > ol.modal-terms {
    font-size: 1.3rem;
    list-style-position: outside;
    padding: 20px 24px 20px 42px;
    overflow-y: auto;
    height: 300px;
}

#modal-meal-content > ol.modal-terms li {
    list-style-type: decimal;
    line-height: 1.5;
    margin-bottom: 5px;
}


/*.modal-meal-content p{
    font-size: 16px;
    font-weight: 500;
    border-top: 1px solid #ddd;
    padding: 10px;
    position: relative;
    top: 20px;
}
*/

.modal-cart {
    box-sizing: border-box;
    position: absolute;
    right: -27px;
    bottom: 38px;
    padding: 11px 12px 18px 14px;
    width: 54px;
    height: 54px;
    color: #fff;
    text-align: center;
    background-color: #65b32e;
}

.cartmeal {
    background-image: url(../img/to_cart.svg);
    background-repeat: no-repeat;
}

.bouton_4 {
    width: 40px;
    height: 40px;
    border-radius: 1px;
    background-color: #949494;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    cursor: pointer;
    position: relative;
    top: 20px;
}

.bouton_4:hover {
    width: 200px;
    /* height: 40px; */
    /* border-radius: 40px; */
    background-color: #97bf0d;
}

.texteduboutton_4 {
    width: 88%;
    padding-right: 0px;
    float: right;
    line-height: 40px;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    right: -34px;
    position: relative;
}

.modal-meal-content .price {
    color: #65b32e;
    font-size: 30px;
    font-weight: 500;
}

.modal-meal-content .price span {
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    top: -10px;
}

.btn-close {
    display: block;
    height: 22px;
    position: relative;
    top: -30px;
    width: 22px;
}

.btn-close::before,
.btn-close::after {
    content: '';
    width: 23px;
    height: 3px;
    display: block;
    background: #65b32e;
}

.btn-close::before {
    margin-top: 12px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-close::after {
    margin-top: -3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* ===================== Passenger Details */

.passenger-details {
    padding: .8rem 0 6px;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
}

.passenger-details h4 {
    color: #797979;
    font-size: 17px;
    font-weight: 600;
    margin: 1.5em 0 -1px;
}

.passenger-details span {
    font-weight: 400;
    color: #797979;
    font-size: 14px;
}


/* ===================== Terms Details */

.terms-details {
    padding: 10px 10px 95px 10px;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 24px;
    top: 40px;
    position: relative;
}

.terms-details h4 {
    padding: 0px 0px 8px 0px;
    font-size: 2rem;
    font-weight: 600;
    color: #797979;
    border-bottom: 1px solid #d8e2e7;
    /*    position: relative;
*/
}

.terms-details span {
    padding-top: .8rem;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 16px;
}

.terms-details li {
    font-size: 12px;
    line-height: 1.5;
    list-style-type: disc;
    list-style-position: inside;
}

.terms-details-btn {
    font-size: 19px;
    overflow: visible;
    color: #FFFFFF;
    display: -webkit-inline-box;
    vertical-align: middle;
    height: 42px;
    width: 160px;
    cursor: pointer;
    padding: 8px 0px 0px 38px;
    background-color: #65b32e;
    font-weight: 500;
    top: 23px;
    right: -30%;
}
/*.nav-tabs {
    float: left;
    border-bottom: 0;
}

.nav-tabs li {
    float: none;
    margin: 0;
}

.nav-tabs li a {
    margin-right: 0;
    border: 0;
    /* background-color: #333; */
/*color: #808080;*/
/*}*/

.nav-tabs li a:hover {
    color: #65b32e;
}

.nav-tabs .glyphicon {
    color: #7c7c7c;
}

.nav-tabs .active .glyphicon {
    color: #65b32e;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: 0;
}


/*.tab-content {
    margin-left: 50px;
}

.tab-content .tab-pane {
    display: none;
    background-color: #fff;
    padding: 20px;
    height: 400px;
}

.tab-content .active {
    display: block;
}
*/

.list-group {
    width: 100%;
}

.list-group .list-group-item {
    height: 50px;
}

.list-group .list-group-item h4,
.list-group .list-group-item span {
    line-height: 11px;
}


/* Select Bags*/

.head-title-bags {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.disbags {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
}

.custom-counter {
    margin: 0;
    padding: 10px;
    list-style-type: none;
    width: 100%;
}

.custom-counter li {
    counter-increment: step-counter;
    margin-bottom: 4px;
    list-style-type: square;
    list-style-position: outside;
}


/*
.custom-counter li::before {
    content: counter(step-counter);
    margin-right: 5px;
    font-size: 80%;
    background-color: rgb(180,
    180,
    180);
    color: white;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
}
*/

.select {
    position: relative;
    z-index: 999999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select::before {
    position: absolute;
    top: 56%;
    right: 10px;
    width: 0px;
    height: 0px;
    content: "";
    border-width: 4px;
    border-style: solid;
    border-color: #686868 transparent transparent;
}

.select_value {
    padding: 10px 0 0 10px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.select.is-active .select_value {
    z-index: 1;
    -webkit-transition: none;
    transition: none;
}

.select_options {
    margin: 0 -15px;
    position: absolute;
    top: 0;
    min-width: calc( 100% + 30px);
    max-height: 520px;
    z-index: 2;
    left: 10px;
}

.select_back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scaleY(0.16) scaleX(0.93);
    transform: scaleY(0.16) scaleX(0.93);
    opacity: 0;
    -webkit-transition: opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
    transition: transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select_back::before {
    position: absolute;
    box-shadow: 0px 2px 9px black;
    -webkit-transform: scale(0.93);
    transform: scale(0.93);
    width: 100%;
    height: 100%;
    content: "";
    opacity: 1;
    -webkit-transition: all 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select_back::after {
    position: absolute;
    background: #f3f3f3;
    width: 100%;
    height: 100%;
    content: "";
}

.select.is-active .select_back {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    opacity: 1;
    -webkit-transition: opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.select.is-active .select_back::before {
    opacity: 0.4;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.select_list {
    position: relative;
    margin: 10px 0;
    width: 200px;
    max-height: 500px;
    overflow: auto;
    opacity: 0;
}

.select.is-active .select_list {
    opacity: 1;
}

.select_item {
    padding: 10px 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.2s;
    transition: opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.2s;
}

.select.is-active .select_item {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.25s;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.25s;
}

.select.is-active .select_item.is-active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
}

.select.is-active:not(.is-animating) .select_item:hover {
    background: rgba(111, 111, 111, 0.1);
    -webkit-transition: none;
    transition: none;
}

.select.is-active .select_item {
    padding: 10px 15px;
}

.overflow__select {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}


/*========= Tab Adult */

.box-typical-section > .col-md-12.col-sm-5 {
    position: relative;
    /*min-height: 320px; resize contact info box*/
    min-height: 370px;
}

.list-tabs-right {
    float: left;
    width: 30%;
    position: relative;
    z-index: 2;
}

.content-tabs-body-right {
    float: right;
    width: 70%;
    height: 100%;
}

ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: circle;
    width: 100%;
}

ul.tabs li {
    background: none;
    color: #797979;
    display: inline-block;
    padding: 15px 15px;
    cursor: pointer;
    width: 100%;
}

ul.tabs li.current {
    color: #666666;
    border: 1px dashed #65b32e;
    border-left: 10px solid #0D8B43;
    border-right: none;
    background: #fff;
    position: relative;
}

ul.tabs li.current:after {
    content: "";
}

/*.tab-content {
    display: none;
    padding: 0 50px 50px 0;
    opacity: 0;
}


/*============= slide */

.slide-promo {
    padding-top: 120px;
}


/* ==================================================================

================================================================== */

.cd-tabs {
    position: relative;
    width: 100%;
    /* max-width: 960px; */
    margin: 0px 0px -88px;
    top: -100px;
    z-index: 9;
}

.cd-tabs:after {
    content: "";
    display: table;
    clear: both;
}

.cd-tabs::after {
    /* subtle gradient layer on top right - to indicate it's possible to scroll */
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 50px;
    z-index: 1;
    pointer-events: none;
    background: -webkit-linear-gradient( right, #f8f7ee, rgba(248, 247, 238, 0));
    background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.no-cssgradients .cd-tabs::after {
    display: none;
}

.cd-tabs.is-ended::after {
    /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-tabs nav {
    overflow: auto;
    /*  -webkit-overflow-scrolling: touch;  */
    background: #f8f7ee;
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}

@media only screen and (min-width: 768px) {
    .cd-tabs::after {
        display: none;
    }
    .cd-tabs nav {
        height: 58px;
        box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
        z-index: 1;
    }
}

@media only screen and (min-width: 960px) {
    .cd-tabs nav {
        position: relative;
        float: none;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
    }
}

.cd-tabs-navigation {
    width: 360px;
    margin-bottom: 0px;
}

.cd-tabs-navigation:after {
    content: "";
    display: table;
    clear: both;
}

.cd-tabs-navigation li {
    float: left;
    margin-right: 2px;
    background-color: rgba(255, 255, 255, 0.9);
}

.cd-tabs-navigation a {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    text-align: center;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    color: #818181;
    padding-top: 34px;
}

.no-touch .cd-tabs-navigation a:hover {
    color: #29324e;
    background-color: rgba(250, 250, 250, 0.3);
}

.cd-tabs-navigation a.selected {
    background-color: #fafafa;
    box-shadow: inset 0 3px 0 #65b32e;
    color: #555555;
}

.cd-tabs-navigation a::before {
    /* icons */
    position: absolute;
    top: 12px;
    left: 50%;
    margin-left: -10px;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-image: url("../img/vicons.svg");
    background-repeat: no-repeat;
}

.cd-tabs-navigation a[data-content='inbox']::before {
    background-position: 0 0;
}

.cd-tabs-navigation a[data-content='new']::before {
    background-position: -20px 0;
}

.cd-tabs-navigation a[data-content='gallery']::before {
    background-position: -40px 0;
}

.cd-tabs-navigation a[data-content='store']::before {
    background-position: -60px 0;
}

.cd-tabs-navigation a[data-content='settings']::before {
    background-position: -80px 0;
}

.cd-tabs-navigation a[data-content='trash']::before {
    background-position: -100px 0;
}

.cd-tabs-navigation a[data-content='inbox'].selected::before {
    background-position: 0 -20px;
}

.cd-tabs-navigation a[data-content='new'].selected::before {
    background-position: -20px -20px;
}

.cd-tabs-navigation a[data-content='gallery'].selected::before {
    background-position: -40px -20px;
}

.cd-tabs-navigation a[data-content='store'].selected::before {
    background-position: -60px -20px;
}

.cd-tabs-navigation a[data-content='settings'].selected::before {
    background-position: -80px -20px;
}

.cd-tabs-navigation a[data-content='trash'].selected::before {
    background-position: -100px -20px;
}

@media only screen and (min-width: 768px) {
    .cd-tabs-navigation {
        /* move the nav to the left on medium sized devices */
        width: 80px;
        float: left;
    }
    .cd-tabs-navigation a {
        height: 80px;
        width: 80px;
        padding-top: 46px;
    }
    .cd-tabs-navigation a.selected {
        box-shadow: inset 2px 0 0 #65b32e;
    }
    .cd-tabs-navigation a::before {
        top: 22px;
    }
}

@media only screen and (min-width: 960px) {
    .cd-tabs-navigation {
        /* tabbed on top on big devices */
        width: auto;
        box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
    }
    .cd-tabs-navigation a {
        height: 60px;
        line-height: 60px;
        width: auto;
        text-align: left;
        font-size: 1.4rem;
        padding: 0 2.8em 0 4.6em;
    }
    .cd-tabs-navigation a.selected {
        border-top: 3px solid #65b32e;
        box-shadow: 2px 0px 14px 0px #E6E6E6;
    }
    .cd-tabs-navigation a::before {
        top: 50%;
        margin-top: -10px;
        margin-left: 0;
        left: 38px;
    }
}

.cd-tabs-content {
    min-height: 0;
    min-width: 1150px !important;
    width: 100%;
    background: #fafafa;
}

.cd-tabs-content li {
    display: none;
    padding: 1.4em;
}

.cd-tabs-content li.selected {
    display: block;
    -webkit-animation: cd-fade-in 0.5s;
    -moz-animation: cd-fade-in 0.5s;
    animation: cd-fade-in 0.5s;
}

.cd-tabs-content li p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
    /*  color: #8493bf;
*/
    margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
    .cd-tabs-content li {
        padding: 2em 2em 2em 7em;
    }
}

@media only screen and (min-width: 960px) {
    .cd-tabs-content li {
        padding: 3em;
        padding-top: 1em;
    }
    .cd-tabs-content li p {
        font-size: 18px;
    }
}

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* loader New */

#map-rally,
#map-national,
#map-distance {
    position: absolute;
    padding: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

#map-rally strong,
#map-national strong,
#map-distance strong {
    display: block;
}

#map-rally,
#map-national {
    margin-top: 10px;
}

#map-rally {
    left: 20%;
    margin-left: -70px;
    top: 42%;
    width: 140px;
}

#map-national {
    left: 83%;
    margin-left: -73px;
    top: 52%;
    width: 146px;
}

#map-distance {
    width: 25%;
    height: 25%;
    max-width: 140px;
    min-width: 70px;
    top: 40%;
    left: 50%;
    margin-left: -70px;
    padding-top: 60px;
    padding-bottom: 80px;
    background: url(http://deadbinky.com/projects/rallySnippets/national-parks-map-miles.png) 0 0 no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#plane-path {
    positon: relative;
    fill: none;
    opacity: .8;
    stroke: #93cd52;
    stroke-width: 1;
    stroke-dasharray: 2;
    z-index: 1;
}

#plane-shadow-path {
    fill: none;
    opacity: .2;
    stroke: #000;
    stroke-width: 3;
    stroke-dasharray: 4;
}

#flight-path {
    position: absolute;
    left: 20%;
    top: 14%;
    width: 66%;
    z-index: 2;
}

#flight-path-shadow {
    position: absolute;
    left: 20%;
    top: 23%;
    width: 67%;
}

#plane {
    opacity: 0;
    position: relative;
    z-index: 3;
    animation: plane 9s forwards;
}

#plane-shadow {
    opacity: 0;
    animation: plane-shadow 9s forwards;
}

.circle {
    position: relative;
    z-index: 2;
}

@media (min-width: 1110px) {
    #meeting-map {
        height: 600px;
        width: 1000px;
    }
    #map-rally,
    #map-national,
    #map-distance {
        font-size: 16px;
        line-height: 20px;
    }
    #map-rally strong,
    #map-national strong,
    #map-distance strong {
        font-size: 24px;
        text-transform: none;
    }
}

@media (max-width: 1109px) and (min-width: 451px) {
    #meeting-map {
        padding-bottom: 60%;
        width: 100%;
    }
    #map-rally,
    #map-national,
    #map-distance {
        font-size: 13px;
        line-height: 20px;
    }
    #map-rally strong,
    #map-national strong,
    #map-distance strong {
        font-size: 20px;
        text-transform: none;
    }
}

@media (max-width: 450px) {
    #meeting-map {
        padding-bottom: 60%;
        width: 100%;
    }
    #map-rally,
    #map-national,
    #map-distance {
        font-size: 8px;
        line-height: 20px;
    }
}

@keyframes plane {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    98% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes plane-shadow {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    98% {
        opacity: 0;
    }
}


/* Flight List container */

.page-flight-list {
    padding: 40px 55px 10px;
    transition: all .2s ease-in-out;
}

#change-schedule.page-flight-list {
    padding-top: 140px;
}


/*=======================================
    Tab - Payment
========================================*/

.table-responsive {
    display: block;
    width: 100%;
    min-height: .01%;
    overflow-x: auto;
}

.wrap-saldo {
    margin-bottom: 3px;
    display: inline-block;
    width: 100%;
}

.content_color {
    color: #6c7a86;
}

.para-no-mp {
    padding: 0;
    margin: 0;
}

.para-p {
    padding-top: 10px;
    padding-bottom: 0px;
    margin: 0;
    font-size: 12px;
}

.bg-table {
    background-color: #fff;
    padding: 25px 10px !important;
    text-align: center;
}

@media screen and (max-height: 580px) {
    body #cdawrap {
        display: none;
    }
}

.padding-tab {
    top: 20px;
    position: relative;
}

ul.tab-payment {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
}

ul.tab-payment li {
    float: left;
    margin: 0;
    cursor: pointer !important;
    padding: 5px 28px;
    line-height: 31px;
    background-color: #afafaf;
    color: #fff;
    overflow: hidden;
    position: relative;
    border-left: 1px solid #fff;
}

.tab_last {}

ul.tab-payment li:hover {
    background-color: #ccc;
    color: #333;
}

ul.tab-payment li.active {
    background-color: #484848;
    color: #fff;
    display: block;
}

.tab_container {
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
}

.tab_content {
    padding: 20px;
    background-color: #fafafa;
    display: inline-block;
    width: 100%;
    height: 100%
}

.tab_content_booking {
    padding: 20px;
    background-color: #fafafa;
    display: inline-block;
    width: 100%;
    height: 1000px;
}

.tab_drawer_heading {
    display: none;
}

@media screen and (max-width: 480px) {
    .tab-payment {
        display: none;
    }
    .tab_drawer_heading {
        background-color: #ccc;
        color: #fff;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .d_active {
        background-color: #666;
        color: #fff;
    }
}

.nextstepbtn {
    font-size: 19px;
    overflow: visible;
    position: relative;
    color: #FFFFFF;
    display: block;
    margin: 0px auto;
    height: 40px;
    width: 35%;
    float: right !important;
    cursor: pointer;
    background: #2eb33b;
}


/* One way radio padding */

.radio-1 {
    position: relative;
    margin-top: .80rem;
    display: block;
}

.radio-1 input+label {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    min-height: 18px;
    line-height: 18px;
    cursor: pointer;
    z-index: 2;
    padding: 0 0 0 4px;
}

.col-radio {
    width: 13.666667%;
    float: left;
    margin-left: 1%;
}

.container-fitur {
    width: 100%;
    max-width: 1240px;
    margin: 0px auto;
    padding: 1.5em 0 1em;
    border: 0px solid #fff;
    clear: both;
    display: flex;
    align-items: stretch;
}

#fixed-header .container-fitur {
    max-width: 1150px;
}

.icon-fitur {
    position: relative;
    margin-top: 40px;
    padding: 80px 20px 30px 20px;
    border-radius: 3px;
    text-align: center;
    height: calc(100% - 70px)
}

.icon-fitur .icon-img {
    position: absolute;
    left: 50%;
    top: -45px;
    margin-left: -45px;
    -moz-border-radius: 90px;
    border-radius: 90px;
    height: 80px;
    background: #fff;
}

.icon-fitur .icon-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.icon-fitur .icon-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.border-grey-2 {
    border: 5px solid #ededed;
}

.bg-grey{
    background: #2eb33b;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.bg-blue-2 {
    background: #2eb33b;
}


/* Step */


/* Promo DLL */

.wrap-promo {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -ms-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
    -webkit-transition: all 250ms ease-in-out 0s;
    -moz-transition: all 250ms ease-in-out 0s;
    -ms-transition: all 250ms ease-in-out 0s;
    -o-transition: all 250ms ease-in-out 0s;
    transition: all 250ms ease-in-out 0s;
}

.promo-pt20 {
    padding-bottom: 3rem;
}

.related-promo {
    overflow: hidden;
    padding: 10px 10px;
    position: relative;
    background: #f7f7f7;
    z-index: 5;
    display: none;
}

.related-promo:after {
    border-bottom: 10px solid #222;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    position: absolute;
    top: -10px;
    width: 0;
}

.related-promo .price {
    margin-bottom: -12px;
    top: -8px;
    font-size: 16px;
    /* color: #2eb33b; */
    position: relative;
}

.related-promo .price span {
    margin-bottom: 10px;
    top: 8px;
    font-size: 30px;
    position: relative;
    letter-spacing: 1px;
}

.related-promo .btnpromo {
    font-size: 15px;
    overflow: hidden;
    position: absolute;
    color: #FFFFFF;
    display: block;
    margin: 0px auto;
    /* height: 35px; */
    width: 35%;
    cursor: pointer;
    padding: 4px 4px 4px 25px;
    background: #2eb33b;
    top: 18px;
    border-radius: 2px;
    left: 150px;
}

.related-promo .btnpromo:hover {
    font-size: 15px;
    overflow: hidden;
    position: absolute;
    color: #2eb33b;
    display: block;
    margin: 0px auto;
    /* height: 35px; */
    width: 35%;
    cursor: pointer;
    padding: 4px 4px 4px 25px;
    border: 1px solid #2eb33b;
    top: 18px;
    border-radius: 2px;
    left: 150px;
    background: #f7f7f7;
}

.promo-wp {
    position: relative;
}

.promo-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.promo-wp a {
    height: 320px;
    text-align: right;
}

.promo-wp a img {
    height: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    zoom: 1;
}


/*.promo-wp:hover img{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
}*/

.promo-wp .text-hover {
    left: 0;
    max-width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.1s ease-in-out 0s;
    -webkit-transition: all 0.1s ease-in-out 0s;
    -ms-transition: all 0.1s ease-in-out 0s;
    cursor: pointer;
}

.promo-wp:hover span.text-hover {
    opacity: 1;
    visibility: visible;
    text-align: center;
    color: #fff;
    margin: 0px auto;
    padding: 4rem 3rem;
    font-size: 30px;
    width: 100%;
    background: rgba(46, 179, 59, 0.62);
    letter-spacing: 2px;
}

.promo-wp:hover .promo-img-op h3 {
    opacity: 0;
    visibility: visible;
}

.promo-wp a:before {
    content: '';
    opacity: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: opacity .35s, transform .35s;
    -o-transition: opacity .35s, transform .35s;
    transition: opacity .35s, transform .35s;
    cursor: pointer;
    z-index: 999;
}

.promo-wp a:hover:before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.promo-img-op {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .80) 70%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, .80)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .80) 70%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .80) 70%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .80) 70%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.7) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    top: 66%;
    content: "";
    display: block;
    height: 35%;
    /* left: 0; */
    position: absolute;
    width: 100%;
    margin-top: 20px;
    margin: 0px auto;
}

.promo-img-op p {
    padding: 1rem;
    color: #fff;
    bottom: 28px;
    position: absolute;
    font-size: 18px;
    display: inline-block;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.promo-img-op span {
    color: #fff;
    font-size: 22px;
    position: absolute;
    bottom: 20px;
    padding: 1rem;
    display: block;
    font-family: 'Roboto', sans-serif;
}

.promo-img-op h3 {
    bottom: 0;
    color: #7bc300;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
    padding: 2rem;
    position: absolute;
}

.promo-img-op h3 small {
    color: #fff;
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.promo-img-op h3 strong {
    font-weight: 900;
}

h5.bigtitle {
    text-align: center;
    padding-top: 1rem;
    font-size: 26px;
    color: #656565;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    font-weight: 500;
}

h5.bigtitle span {
    text-align: center;
    padding-top: 1rem;
    font-size: 26px;
    color: #2eb33b;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    font-weight: 500;
}

hr.titlegede {
    border-top: 1px solid #ccc;
    text-align: center;
    width: 40%;
    margin: 0px auto;
    padding-bottom: 2rem;
    position: relative;
    top: 5px;
}

hr.titlegede:after {
    content: "";
    background: url(../img/title.svg) #ffffff;
    background-position: center center;
    display: inline-block;
    position: relative;
    height: 24px;
    width: 46px;
    top: -13px;
}

.social-links {
    list-style: none;
    padding: 0;
    float: right;
    right: 10%;
    position: relative;
}

.social-links li {
    display: inline-block;
    padding: 0px 2px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.social-links li.opa-6 {
    opacity: .6;
}

.social-links li.opa-7 {
    opacity: .7;
}

.social-links li:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1 !important;
}

.pembayaran {
    text-align: center;
}

.we-accept {
    display: initial;
    padding: 21px 10px 22px 4px;
    background: #ededed;
    margin-right: 10px;
}

@media screen and (min-width: 768px) {
    .we-accept {
        padding: 2rem;
        background: #fff;
    }
    .cd-tabs-content {
        min-height: 0;
        min-width: 788px !important;
        width: 100%;
    }
}

@media screen and (min-width: 1000px) {
    .we-accept {
        padding: 0rem;
        background: #fff;
    }
    .cd-tabs-content {
        min-height: 0;
        min-width: 900px !important;
        width: 100%;
    }
}

h5.title-metod {
    text-align: center;
    padding-top: 4rem;
    font-size: 22px;
    color: #656565;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    font-weight: 500;
    padding-bottom: 1rem;
}


/* =========================
    PROGRESS TRACKER
========================= */

.progress-step {
    background: #f7f7f7;
    width: 100%;
    height: 80px;
    text-align: center;
}

#steps {
    width: 45%;
    margin: 0px auto;
    position: relative;
    top: 20px;
    text-align: center;
    display: inline-flex;
    justify-content: space-between;
}

.step {
    width: 25%;
    text-align: center;
    position: relative;
}

#page-check-in .step {
    width: 33%;
}

.step .circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #b8b8b8;
    display: inline-block;
    vertical-align: middle;
}

.step .circleactive {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2eb33b;
    display: inline-block;
}

.step .circle.active {
    background: url(../img/airprogress.svg);
    background-repeat: no-repeat;
    width: 65px;
    height: 20px;
    top: -2px;
    margin-left: -30px;
}

.step .circle.active2 {
    background: url(../img/airprogress.svg);
    background-repeat: no-repeat;
    width: 65px;
    height: 20px;
    top: -4px;
    margin-left: -5px;
}

.step .circle.active-last {
    background: url(../img/airprogress.svg);
    background-repeat: no-repeat;
    width: 65px;
    height: 20px;
    top: -2px;
    /*    margin-left: -30px;
*/
}

.step .line {
    width: calc(100% - 6px);
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: calc(50% + 4px);
}

.step .lineactive {
    width: calc(100% - 10px);
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: calc(50% + 5px);
}

.step .lineactive2 {
    width: calc(100% - 7px);
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: calc(58% + -8px);
}

.step .linepayment {
    width: calc(100% - 38px);
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 11px;
    left: calc(50% + 10px);
}

.step:last-child .line {
    display: none;
}

.step .text {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    color: #797979;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0px;
    font-family: 'Roboto', sans-serif;
}

.step .text.bold {
    font-weight: bold;
}

.step .text-1 {
    margin-left: -20px;
    font-weight: bold;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    color: #797979;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0px;
    font-family: 'Roboto', sans-serif;
}


/*==============================
  /* Sidebar  SUMMARY
================================*/

.sidebar {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.summary {
    background: #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    z-index: 1;
    padding-bottom: 1px;
    width: 312px;
    padding-right: 0px;
    padding-left: 0px;
}

.summary ul {
    position: relative;
    padding: 1em 5px;
    margin: 0;
}

.pricelist {
    background-image: url(../img/pricelist.svg);
    background-repeat: no-repeat;
    top: 20px;
    line-height: 40px;
    position: relative;
    float: left;
    width: 75px;
    height: 75px;
    z-index: 99;
    left: 20px;
}

.airline-summary {
    line-height: 40px;
    /*    padding-bottom: 11rem;
*/
}

div[ng-show="summary.return"] {
    margin-top: 2em;
}

.airline-summary .info {
    margin-bottom: 10px;
    overflow: hidden;
}

.airline-summary .tiket-info {
    width: 95%;
    float: left;
    border-top: 1px solid #b5b5b5;
    line-height: 0.1em;
    margin: 10px 0;
    padding-bottom: 15px;
}

.airline-summary .tiket-info span {
    background: #fff;
    padding: 0 10px;
    font-weight: bold;
    color: #464646;
    font-size: 18px;
}

.airline-summary .tiket-info small {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    font-size: 80%;
    height: 14px;
    margin-top: -2px;
    padding-left: 11px;
    padding-right: 6px;
    position: absolute;
}

.airline-summary .adult-details {
    /* top: 20px; */
    line-height: 40px;
    /* float: left; */
    width: 255px;
    height: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    /* margin-top: 20px; */
    margin-left: 10px;
}

.airline-summary .adult-details:before {
    background-image: url(../img/citilink-search.svg);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    content: "";
    position: absolute;
}

.airline-summary div[ng-show="summary.return"] .adult-details:before {
    transform: scaleX(-1);
}

.airline-summary .adult-details span {
    margin-left: 17%;
    font-size: 12px;
    font-weight: 500;
}

.airline-summary .adult-details .jam {
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: -30%;
}

.airline-summary .passenger {
    background-image: url(../img/adult-summary.svg);
    background-repeat: no-repeat;
    background-position: -10px 0px;
    line-height: 40px;
    width: 180px;
    height: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.airline-summary .passenger span {
    margin-left: 24%;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.passngeritem {
    font-size: 1.25rem;
    display: block;
}

.passngeritem:nth-last-child(1) {
    border-bottom: none;
}

.airline-summary .baggage {
    background-image: url(../img/baggage.svg);
    background-repeat: no-repeat;
    top: 140px;
    line-height: 40px;
    width: 180px;
    height: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 10px;
    /*    position: absolute;
*/
}

.airline-summary .baggage span {
    margin-left: 24%;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.airline-summary .other {
    background-image: url(../img/other.svg);
    background-repeat: no-repeat;
    top: 140px;
    line-height: 40px;
    width: 180px;
    height: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 10px;
}

.airline-summary .other span {
    margin-left: 24%;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.airline-summary .adult-details .tax {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85em;
}

.airline-summary .adult-details .tax span {
    font-size: 14px;
    float: right !important;
}

.sub-total-summary {}

.sub-total-summary-text {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(181, 181, 181, 0.3);
    border-bottom: 1px solid rgba(181, 181, 181, 0.3);
    margin-bottom: 1em;
    padding: 20px 25px;
    position: relative;
    width: 100%;
}

.sub-total-summary-text span {
    float: right !important;
    font-weight: 600;
}

.termsandcondition {
    position: relative;
    margin: 0px auto;
    text-align: center;
}

.termsandcondition .checkbox input+label {
    font-size: 13px !important;
}

.nextbtn-summary {
    overflow: visible;
    position: relative;
    display: block;
    margin: 0px auto;
    height: 50px;
    width: 80%;
    cursor: pointer;
    background: #2eb33b;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 1em;
    padding: 10px;
}

.nextbtn-summary span {
    font-size: 20px;
    color: #FFFFFF;
    margin-left: -10px;
}

.nextbtn-summary i {
    background-image: url(../img/arrow-summary.svg);
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    margin-bottom: -3px;
    display: inline-block;
    /* display: -webkit-flex; */
    display: -ms-flexbox;
    /* display: flex; */
    /* -webkit-flex-flow: row wrap; */
    -ms-flex-flow: row wrap;
    /* flex-flow: row wrap; */
    transform: rotate(180deg);
}

.nextbtn-summary.disabled {
    cursor: default;
    background: #ddd;
}


/* =========================
    Details Flight
========================= */

.flightstep {
    width: 41%;
    float: left;
    position: relative;
    top: 20px;
    left: 8%;
}

.flightstep .circle {
    width: 5px;
    height: 5px;
    background-color: #b8b8b8;
    display: inline-block;
    margin-left: 73%;
    top: -1px;
}

.flightstep .circle.active {
    background: url(../img/airprogress-.svg);
    background-repeat: no-repeat;
    width: 33px;
    height: 20px;
    top: -3px;
    margin-left: 40px;
}

.flightstep .line {
    width: calc(100% + 20px);
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: calc(50% + 12px);
}

.flightstep:last-child .line {
    display: none;
}

.flightstep .text {
    position: relative;
    transform: translateX(-50%);
    width: 200px;
    color: #797979;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
}

.flightstep .time {
    position: relative;
    width: 150px;
    color: #797979;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0px;
    display: inline;
    top: 0px;
    float: left;
    left: 5%;
}

.flightstep:nth-child(1) .text {
    margin-left: 35px;
    font-weight: bold;
    position: absolute;
    top: 0px;
}

.flightstep:last-child .time {
    color: #797979;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0px;
    display: inline-block;
    top: 0px;
    float: right;
    left: 0;
    margin-right: 0px;
    margin-top: 4px;
    text-align: right;
    width: 150px;
}

.flightnumber {
    display: block;
    font-size: 14px;
    top: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.flightavalibale {
    text-align: center;
    font-size: 14px;
    top: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.flightavalibale img {
    display: inline-block;
    position: relative;
    left: 7%;
    top: -6px;
    font-weight: 500;
    cursor: pointer;
}

.flight-class-header {
    height: 88px;
}

.economy,
.premium {
    border-top: 1px solid #ddd;
    position: relative;
    background: #fafafa;
    overflow: hidden;
    padding: 1em 0;
}

.economy ul li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 39px;
}

.economy ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.economy ul li label,
.premium ul li label,
.economy-transit ul li label {
    display: inline-block;
    position: relative;
    font-size: 16px;
    padding-left: 50px;
    margin: 0px auto;
    height: 29px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    top: 33%;
}

.economy ul li label span {
    position: relative;
    font-size: 16px;
    margin: 0px auto;
    height: 29px;
    z-index: 9;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all 0.25s linear;
    left: 15%;
}

.economy ul li:hover label {
    color: #2eb33b;
}

.economy ul li .check,
.premium ul li .check {
    display: block;
    display: block;
    position: absolute;
    border: 2px solid #AAAAAA;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 35%;
    left: 8%;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    background: #fff;
}

.economy ul li:hover .check,
.premium ul li:hover .check {
    border: 2px solid #2eb33b;
}

.economy input[type=radio]:checked ~ .check,
.premium input[type=radio]:checked ~ .check {
    border: 3px double #fff;
    background: #2eb33b;
}

.economy input[type=radio]:checked ~ .check::before,
.premium input[type=radio]:checked ~ .check {
    background: #2eb33b;
}

.economy input[type=radio]:checked ~ label,
.premium input[type=radio]:checked ~ .check {
    color: #2eb33b;
}

.economy-transit {
    border: 1px solid #ddd;
    top: 37px;
    position: relative;
    width: calc(100% + 3.9%);
    left: -16px;
    float: left;
    background: #fafafa;
    padding: 0rem;
    height: 95px;
}

.economy-transit ul li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 90px;
}

.economy-transit ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.economy-transit ul li label span {
    position: relative;
    font-size: 16px;
    margin: 0px auto;
    height: 29px;
    z-index: 9;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all 0.25s linear;
    left: 15%;
}

.economy-transit ul li:hover label {
    color: #2eb33b;
}

.economy-transit ul li .check {
    display: block;
    display: block;
    position: absolute;
    border: 2px solid #AAAAAA;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 35%;
    left: 8%;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    background: #fff;
}

.economy-transit ul li:hover .check {
    border: 2px solid #2eb33b;
}

.economy-transit ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 10px;
    width: 10px;
    top: 17%;
    left: 20%;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.economy-transit input[type=radio]:checked ~ .check {
    border: 2px solid #2eb33b;
}

.economy-transit input[type=radio]:checked ~ .check::before {
    background: #2eb33b;
}

.economy-transit input[type=radio]:checked ~ label {
    color: #2eb33b;
}

.premium {
    padding-bottom: 0px;
}

.premium ul li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 89px;
}

.premium ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.premium ul li label span {
    position: relative;
    font-size: 16px;
    margin: 0px auto;
    height: 29px;
    z-index: 9;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all 0.25s linear;
    left: 15%;
}

.premium ul li:hover label {
    color: #2eb33b;
}

.premium-transit {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    top: 37px;
    position: relative;
    width: calc(100% + 3.9%);
    left: -16px;
    float: left;
    background: #fafafa;
    padding: 0rem;
    height: 160px;
}

.premium-transit ul li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 75px;
    top: 35px;
}

.premium-transit ul li input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.premium-transit ul li label {
    display: inline-block;
    position: relative;
    font-size: 16px;
    padding-left: 65px;
    margin: 0px auto;
    height: 29px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    top: 33%;
}

.premium-transit ul li label span {
    position: relative;
    font-size: 16px;
    margin: 0px auto;
    height: 29px;
    z-index: 9;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all 0.25s linear;
    left: 15%;
}

.premium-transit ul li:hover label {
    color: #2eb33b;
}

.premium-transit ul li .check {
    display: block;
    display: block;
    position: absolute;
    border: 2px solid #AAAAAA;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 35%;
    left: 8%;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    background: #fff;
}

.premium-transit ul li:hover .check {
    border: 2px solid #2eb33b;
}

.premium-transit ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 10px;
    width: 10px;
    top: 20%;
    left: 20%;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.premium-transit input[type=radio]:checked ~ .check {
    border: 2px solid #2eb33b;
}

.premium-transit input[type=radio]:checked ~ .check::before {
    background: #2eb33b;
}

.premium-transit input[type=radio]:checked ~ label {
    color: #2eb33b;
}

.flight-class-detail {
    padding-bottom: 5px;
    margin: 0px;
}

.flight-class-detail p {
    color: #949494;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin: 0 0 0 0px;
    text-transform: capitalize;
    line-height: 1.2;
}

.flight-class-detail small {
    font-size: 1.1rem;
}

.flight-class-detail i {
    width: 27px;
    height: 29px;
    display: inline-block;
    background-repeat: no-repeat !important;
    background-position: left center !important;
}

.breakdown-head.flight-class-detail i {
    width: 14px;
    height: 14px;
    background-size: cover;
}

.flight-class-detail .water-small {
    background: url(../img/drink.svg);
    background-size: 30px;
}

.flight-class-detail .insurance-small {
    background: url(../img/insurance.svg);
    background-size: 25px;
}

.flight-class-detail .mealflight-small {
    background: url(../img/meals.svg);
    background-size: 25px;
}

.flight-class-detail .no-refundable-small {
    background: url(../img/no-refund.png);
    background-size: 25px;
}

.flight-class-detail .seatflight-small {
    background: url(../img/seat.svg);
    background-size: 25px;
}

.flight-class-detail .baggage-small {
    background: url(../img/baggage.svg);
    background-size: 25px;
}

.flight-class-detail .spb-baggage-small {
    background: url(../img/spb-baggage.png);
    background-size: 25px;
}

.flight-class-detail .fasttrack-small {
    background: url(../img/fasttrack_logo_small.png);
    background-size: 25px;
}

.flight-class-detail .refund-small {
    background: url(../img/refund.svg);
    background-size: 25px;
}

.flight-class-detail .concordia-small {
    background: url(../img/waiting.png);
    background-size: 25px;
}

.flight-class-detail .boarding-icon {
    background: url(../img/schedule/boarding.svg);
    background-size: 25px;
}

.flight-class-detail .lounge {
    background: url(../img/schedule/lounge.svg);
    background-size: 25px;
}

.flight-class-detail .merchandise {
    background: url(../img/schedule/merchandise.svg);
    background-size: 25px;
}

.flight-class-detail .mileage-icon {
    background: url(../img/schedule/mileage.svg);
    background-size: 25px;
}

.flight-class-detail .concierge {
    background: url(../img/schedule/concierge.svg);
    background-size: 25px;
}
.checkin-actions {
    border-left: 1px solid #ddd;
    margin-top: 34px;
}

.checkin-actions .btn {
    border-radius: 0px;
    width: 100px;
}

.noteflight {
    position: relative;
    padding: 20px 0;
    color: #969696;
    font-size: 12px;
}

.noteflight strong {
    color: #333;
}

.noteflight ul {}

.noteflight li {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 12px;
}

.termsflight {
    font-size: 18px;
    color: #65b32e;
    margin-top: 3rem;
    margin-bottom: .5em;
}

.termsflightcontent {
    background-color: #fafafa;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    padding: 5px 25px 12px;
    width: calc(100% + 3%);
    margin-top: 20px;
}

.termsflightcontent ul {
    list-style: disc;
}

.tansitline {
    width: calc(100% - 3%);
    text-align: center;
    border-top: 1px solid #65b32e;
    line-height: 0.1em;
    margin: 20px 0;
    position: relative;
    top: 450px;
    margin-left: 12px;
}

.transiticon {
    width: 285px;
    height: 80px;
    top: -40px;
    position: relative;
    background: #ffffff;
    justify-content: center;
    margin: 0px auto;
    text-align: center;
}

.transiticon img {
    display: block;
    position: absolute;
    margin: 0px 0px 0px 30px;
}

.transiticon p {
    font-weight: bold;
    font-size: 16px;
    display: -webkit-box;
    position: absolute;
    top: 28px;
    left: 115px;
}

.transiticon span {
    font-size: 15px;
    display: -webkit-box;
    margin-top: 20px;
    margin-left: -105px;
    font-weight: 500;
}


/* Page Initerary */

.box-initerary {
    background: #fff;
    padding: 20px;
    margin-top: -50px;
}

#page-check-in .box-initerary {
    margin-top: 0px;
}

.page-initerary {
    padding: 55px 10px;
    transition: all .2s ease-in-out;
}

#page-check-in .page-initerary {
    padding-top: 5px;
}

.initerary-title {
    padding-top: .8rem;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 24px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 1rem;
}

.initerary-title h4 {
    padding-top: .8rem;
    font-size: 22px;
    font-weight: 600;
    color: #797979;
    bottom: -12px;
    position: relative;
}

.initerary-title span {
    padding-top: .8rem;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 16px;
}

.barcodeiniterary {
    margin-right: 1em;
}

.barcodeiniterary img {
    width: 195px;
}

.barcodeiniterary,
.ptcitilink {
    display: inline-block;
    padding: 0 !important;
}

.ptcitilink p {
    font-size: 16px;
    letter-spacing: 2px;
    display: block;
    color: #737373;
    margin: 0px;
}

.information-initerary {
    font-weight: 700;
    text-transform: uppercase;
    color: #008c3c;
    margin: 55px -11px 30px;
}

.detailiniterary {
    letter-spacing: 1px;
    margin-left: -3%;
}

.detail-initerary-right {
    font-family: 'Roboto', sans-serif;
    color: #737373;
}

.detail-initerary-left {
    font-family: 'Roboto', sans-serif;
    color: #737373;
    letter-spacing: 3px;
}

.infobill {
    background: #fafafa url(../img/hourglass.svg) no-repeat no-repeat 10px center;
    text-align: right;
    color: #737373;
    font-style: italic;
    padding: 15px 15px 15px 50px !important;
    border: 1px solid #ddd;
    background-size: 35px;
}

.infobill strong {
    font-size: larger;
}

.reguired-chekin {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding-top: 2rem;
    clear: both;
}

.details-penumpang {
    padding: 0px 0px 95px 0px;
    width: 100%;
    font-weight: 500;
    color: #797979;
    font-size: 24px;
    top: 40px;
    position: relative;
}

.details-penumpang h4 {
    padding: 0px 0px 15px 0px;
    font-size: 19px;
    font-weight: 600;
    color: #797979;
    border-bottom: 1px solid #d8e2e7;
}


/*
.onward {
    float: left;
    border-left: 7px solid #65b32e;
    width: 100%;
    padding: 0px 0 0 18px;
    height: 50px;
    margin: -50px -15px;
    position: relative;
}
*/

.onward {
    border-left: 7px solid #65b32e;
    width: 100%;
    padding: 0px 0 0 18px;
    height: 50px;
}

.page-initerary .onward {
    margin-top: 3em;
}

.onward h4 {
    font-size: 18px;
    display: block;
    font-weight: 600;
    margin: 0px 0px 5px 0px;
}

.onward p {
    font-size: 18px;
    display: block;
}

.bx-onward {
    position: relative;
    bottom: -80px;
    padding-bottom: 5rem;
}

.box-onword {
    background: #fafafa;
    border: 1px solid #ececec;
    padding: 30px;
    margin-top: 2em;
    position: relative;
    display: -webkit-inline-box;
}

.box-onwardstep {
    margin: 0 auto;
    max-width: 680px;
    min-width: 400px;
    overflow: hidden;
}

.onwardstep {
    width: 50%;
    float: left;
    position: relative;
    height: 50px;
}

.onwardstep .circle {
    width: 5px;
    height: 5px;
    background-color: #b8b8b8;
    display: inline-block;
    margin-left: 73%;
    top: -3px;
}

.onwardstep .circle.active {
    background: url(../img/airprogress-.svg);
    background-repeat: no-repeat;
    width: 33px;
    height: 20px;
    top: -3px;
    margin-left: 40px;
}

.onwardstep .line {
    width: 100%;
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 22px;
    left: calc(50% + 7px);
}

.onwardstep:last-child .line {
    display: none;
}

.onwardstep .text {
    position: absolute;
    left: calc(50% - 64px);
    top: 11px;
    width: 50px;
    color: #797979;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
}

.onwardstep .time {
    position: relative;
    width: 250px;
    color: #797979;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
    display: inline;
    top: 0px;
    float: left;
    left: 5%;
}

.onwardstep:nth-child(1) .text {
    font-weight: bold;
    position: absolute;
    top: 11px;
}

.onwardstep:last-child .time {
    position: relative;
    width: 250px;
    color: #797979;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
    display: inline;
    top: 0px;
    float: left;
    left: 35%;
}

.onwardstep:last-child .text {
    left: calc(50% + 15px);
}

.box-onwardstep .duration {
    padding: 5px 15px 5px 15px;
    background: #65b32e;
    text-align: center;
    text-transform: uppercase;
    /* width: 25%; */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0px 0px -40px;
    width: 80px;
}

.onwardstep .one-way.circle {
    width: 5px;
    height: 5px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 20px;
    margin: 0px;
    left: calc(50% + 6px);
}

.onwardstep .one-way.circle.active {
    background: url(../img/airprogress-.svg);
    background-repeat: no-repeat;
    width: 33px;
    height: 20px;
    position: absolute;
    left: calc(50% - 32px);
    top: 10px;
    margin-left: 0px;
}

.onwardstep .one-way.line {
    width: calc(100% + 20px);
    height: 1px;
    background-color: #b8b8b8;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: calc(50% + 12px);
}

.onwardstep:last-child .one-way.line {
    display: none;
}

.onwardstep .one-way.text {
    position: relative;
    transform: translateX(-50%);
    width: 200px;
    color: #797979;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
}

.onwardstep .one-way.time {
    position: absolute;
    color: #797979;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
    display: inline;
    top: 30px;
    left: calc(50% - 64px);
}

.onwardstep:nth-child(1) .one-way.text {
    margin-left: 35px;
    font-weight: bold;
    position: absolute;
    top: 0px;
}

.onwardstep:last-child .one-way.time {
    position: absolute;
    color: #797979;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0px;
    top: 30px;
    right: calc(50% - 44px);
    text-align: right;
    width: auto;
}

.onwardstep .one-way.duration {
    padding: 5px 15px 5px 15px;
    background: #65b32e;
    text-align: center;
    text-transform: uppercase;
    /* width: 25%; */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0px auto;
    display: inline;
    position: absolute;
    top: -30px;
    left: -8%;
}

.itinerary-pax {
    width: 100%;
}

.box-adult {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 40px;
}

.adultonwoed {
    margin: 0px 15px;
    display: block;
}

.adultonwoed span {
    font-weight: 600;
    display: -webkit-box;
}

.discountadult {
    margin-top: 40px;
    text-align: center;
    display: block;
}

.discount-murah {
    font-weight: 600;
    text-align: center;
}

.box-icon {
    display: inline-block;
    margin-top: 34px;
    min-width: 44px;
    text-align: center;
}

.box-icon span {
    display: block;
    line-height: 1;
    margin-top: -4px;
}

.box-adult-all .flight-class-detail .box-icon i {
    position: static;
    margin: 0 auto;
    background-position: center center !important;
}

.seat-onward {
    background: url(../img/seatonward.svg);
    width: 70px;
    height: 39px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    left: -8px;
    top: -2px;
    position: relative;
}

.meal-small {
    background: url(../img/meal-small.svg);
    width: 70px;
    height: 39px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    left: -8%;
    top: -2px;
    position: relative;
}

.box-adult-all {
    margin-bottom: 1em;
    overflow: hidden;
    border-bottom: 1px dashed #6c7a86;
    padding-bottom: 1em;
}

.customize-pax-order {
    background: #fff;
    position: fixed;
    width: 20%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.27);
    padding: 0px 0px 20px;
}

#page-check-in .customize-pax-order {
    margin-top: 12px;
}

.customize-pax-order ul {
    position: relative;
    padding: 1em;
    margin: 0;
}

.customize-summary {
    line-height: 40px;
    padding-bottom: 11rem;
}

.customize-summary .info {
    margin-bottom: 10px;
    overflow: hidden;
}

.customize-summary .customize-info {
    width: 95%;
    float: left;
    border-top: 1px solid #b5b5b5;
    line-height: 0.1em;
    margin: 30px 0
}

.customize-summary .customize-info span {
    background: #fff;
    padding: 0 10px;
    font-weight: bold;
    color: #464646;
    font-size: 18px;
    top: -25px;
    position: relative;
}

.customize-summary .customize-info span:nth-last-child(1) {
    background: #fff;
    padding: 0 10px;
    color: #464646;
    font-size: 14px;
    top: -5px;
    left: -115px;
}

.customize-summary .adult-details {
    background-image: url(../img/citilink-search.svg);
    background-repeat: no-repeat;
    /* top: 20px; */
    line-height: 40px;
    float: left;
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 20px;
}

.customize-summary .adult-details span {
    margin-left: 15%;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    display: inline-block;
}

.customize-summary .adult-details .jam {
    font-weight: 600;
    display: block;
    position: absolute;
    bottom: 85px;
}

.customize-summary .webcheckin {
    background-image: url(../img/webchekin.svg);
    background-repeat: no-repeat;
    top: 35%;
    line-height: 40px;
    float: left;
    width: 210px;
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 10px;
    position: relative;
}

.customize-summary .webcheckin span {
    margin-left: 28%;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    display: block;
    top: -3px;
}

.customize-summary .webcheckin p {
    margin-left: 28%;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    display: block;
    top: 25%;
}

.customize-summary .ssr {
    background-image: url(../img/ssr.svg);
    background-repeat: no-repeat;
    top: 65%;
    line-height: 40px;
    float: left;
    width: 250px;
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 5px;
    position: relative;
}

.customize-summary .ssr span {
    margin-left: 25%;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    display: block;
    top: -5px;
}

.customize-summary .ssr p {
    margin-left: 25%;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    display: block;
    top: 20%;
}

.customize-summary .contact-menu {
    background-image: url(../img/contact-menu.svg);
    background-repeat: no-repeat;
    top: 65%;
    line-height: 40px;
    float: left;
    width: 250px;
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 5px;
    position: relative;
}

.customize-summary .contact-menu span {
    margin-left: 25%;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    display: block;
    top: -5px;
}

.customize-summary .contact-menu p {
    margin-left: 25%;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    display: block;
    top: 20%;
}

.customize-summary .jam-pesawat {
    background-image: url(../img/jam-pesawat.svg);
    background-repeat: no-repeat;
    top: 65%;
    line-height: 40px;
    float: left;
    width: 250px;
    height: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 5px;
    position: relative;
}

.customize-summary .jam-pesawat span {
    margin-left: 25%;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    display: block;
    top: -5px;
}

.customize-summary .jam-pesawat p {
    margin-left: 25%;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    display: block;
    top: 20%;
}

.airline-customize .baggage {
    background-image: url(../img/baggage.svg);
    background-repeat: no-repeat;
    top: 140px;
    line-height: 40px;
    float: left;
    width: 180px;
    height: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: 0;
    position: absolute;
}

.airline-customize .baggage span {
    margin-left: 24%;
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    display: block;
}


/* Table Base */

table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

.table {
    width: 100%;
    /* margin-top: -30px; */
    font-size: 1.3rem;
}

.table thead tr {
    background: black;
}

.table th,
.table td {
    font-weight: normal;
    padding: 8px 15px;
    line-height: 20px;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #FFF;
}

.table thead th {
    background: #eeeeee;
    vertical-align: bottom;
}

.table thead th:nth-child(even) {
    background: #eeeeee;
    vertical-align: bottom;
}

.table tbody > tr:nth-child(odd) > td,
.table tbody > tr:nth-child(odd) > th {
    background-color: #fafafa;
}

.table .t-medium {
    width: 15%;
}

.table .t-medium.bolder {
    font-weight: bold;
}

.table .t-medium:nth-last-child(1) {
    width: 15%;
    text-align: right;
}

.table .t-medium.bg1 {
    background: #eeeeee;
}

.table .t-medium.bg2 {
    background: #f3f3f3;
}

.table .t-status {
    font-weight: bold;
}


/* Small Sizes */

@media (max-width: 480px) {
    .table-action thead {
        display: none;
    }
    .table-action tr {
        border-bottom: 1px solid #fff;
    }
    .table-action td {
        border: 0;
    }
    .table-action td:not(:first-child) {
        display: block;
    }
}

.printer-initerary {
    text-align: center;
    margin: 0px auto;
    position: relative;
    /* left: 50%; */
    margin-top: 25px;
}

.printer-initerary-btn {
    font-size: 14px;
    overflow: visible;
    color: #FFFFFF !important;
    /* display: block; */
    margin: 0 auto;
    height: 42px;
    width: 160px;
    cursor: pointer;
    padding: 8px 20px;
    background-color: #65b32e;
    font-weight: 500;
    left: 5%;
    position: relative;
}

.panel {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #fff;
    background: none;
    box-shadow: none;
}

.panel:last-child {
    border-bottom: none;
}

.panel-group > .panel:first-child .panel-heading {
    border-radius: 4px 4px 0 0;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-group .panel + .panel {
    margin-top: 0;
}

.panel-heading {
    border-radius: 0;
    border: none;
    color: #fff;
    padding: 0;
}

.panel-title a {
    display: block;
    color: #fff;
    /*  padding: 15px;
*/
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

.panel-body,
.airline-summary .panel-body {
    padding: 0 15px;
    font-size: 12px;
}

.panel:last-child .panel-body {
    border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
    border-radius: 0 0 4px 4px;
    transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
    border-radius: 0;
    transition: border-radius linear 0s;
}


/* #bs-collapse icon scale option */

.panel-heading a:before {
    content: "\f077";
    font-size: 12px;
    position: absolute;
    font-family: 'FontAwesome';
    right: 5px;
    transform: rotate(180deg);
    transition: all 0.5s;
    color: #2eb33b;
}

.panel-heading.active a:before {
    content: ' ';
    transition: all 0.5s;
    transform: scale(0);
}

#bs-collapse .panel-heading a:after {
    content: "\f077";
    font-size: 12px;
    position: absolute;
    font-family: 'FontAwesome';
    right: 5px;
    top: 10px;
    transform: rotate(180deg);
    transition: all 0.5s;
    color: #2eb33b;
}

#bs-collapse .panel-heading.active a:after {
    content: "\e114";
    transform: scale(1);
    transition: all 0.5s;
}


/* #accordion rotate icon option */

#accordion .panel-heading a:before {
    content: "\f077";
    font-size: 12px;
    position: absolute;
    font-family: 'FontAwesome';
    right: 15%;
    transform: rotate(180deg);
    transition: all 0.5s;
    color: #2eb33b;
}

#accordion .panel-heading.active a:before {
    transform: rotate(90deg);
    transition: all 0.5s;
}

.details_payment_pop {
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    display: block;
    padding: 22px 0px 10px 0px;
    position: relative;
    margin-bottom: 10px;
    /* height: 100px; */
    /* float: left; */
}

.details_payment_pop .time.from {
    color: #2b2b2b;
    font-size: 28px;
    margin: 0px auto;
    float: left;
    display: inline-table;
    position: relative;
    /* margin-left: -2%; */
    /* width: 22%; */
}

.details_payment_pop .time.from:after {
    content: "";
    display: inline-block;
    background: url(../img/citilink--.svg) no-repeat right;
    width: 65px;
    height: 20px;
    top: 13px;
    position: absolute;
    float: right;
    right: -45%;
}

.details_payment_pop .time.to {
    color: #2b2b2b;
    font-size: 28px;
    margin: 0px auto;
    float: left;
    display: inline-table;
    position: relative;
    margin-left: 18%;
}

.details_payment_pop .time p {
    color: #737373;
    font-size: 13px;
    display: inline-block;
    font-weight: 400;
}

.details_payment_pop .time span {
    color: #737373;
    /* bottom: 12px; */
    font-size: 13px;
    font-weight: 600;
    display: -webkit-box;
}

.flightnumbermodal:before {
    content: '';
    background: url(../img/airprogress-.svg) no-repeat right;
    width: 65px;
    height: 20px;
    position: absolute;
    float: right;
    margin-left: -35%;
    font-size: 13px;
}

.flightnumbermodal {
    display: inline;
    top: 35px;
    position: relative;
    margin-left: -30%;
    font-size: 13px;
    /* top: -50%; */
}

.flightnumbermodal span {
    font-size: 13px;
    font-weight: 600;
    color: #65b32e;
}

.numbmodal {
    display: inline;
    top: 35px;
    position: relative;
    margin-left: -10%;
    font-size: 13px;
    /* top: -50%; */
}

.numbmodal span {
    font-size: 13px;
    font-weight: 600;
    color: #65b32e;
}

.numbmodal:before {
    content: '';
    background: url(../img/jam-small.svg) no-repeat right;
    width: 65px;
    height: 28px;
    position: absolute;
    /* float: right; */
    margin-left: -42%;
    font-size: 13px;
}

.modal-icon {
    display: inline-block;
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: 10px;
}

.modal-details-adult {
    /*overflow: hidden;*/
    padding: 0;
}

.modal-details-adult li {
    list-style-type: none;
    padding: 0;
}

.modal-details-adult_ctrl {
    background: #f3f3f3;
    border: none;
    /*    border-bottom: solid 1px #e0e0e0;
*/
    cursor: pointer;
    display: block;
    outline: none;
    padding: 1px;
    position: relative;
    width: calc(100% + 25px);
    height: 55px;
    margin-bottom: 5px;
    left: -2%;
}

.name-adult-modal {
    margin: 15px;
}

.modal-details-adult_ctrl:before {
    background: #44596B;
    content: '';
    height: 2px;
    margin-right: 37px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 14px;
}

.modal-details-adult_ctrl:after {
    background: #44596B;
    content: '';
    height: 2px;
    margin-right: 37px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
}

.modal-details-adult_ctrl.active:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.modal-details-adult_ctrl.active h2,
.modal-details-adult_ctrl:focus h2 {
    position: relative;
}

.modal-details-adult_panel {
    background: #fff;
    display: none;
    overflow: hidden;
}

.modal-left {
    text-align: left;
}

.modal-right {
    float: right;
}

.modal-payment-title {
    font-style: italic;
    color: #959595;
    font-size: 12px;
    display: inline-block;
}

.modal-payment-content {
    font-size: 12px;
    display: block;
}

.modal-left-content {
    text-align: left;
}

.modal-right-content {
    float: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.form-payment-debit {
    width: 92%;
    padding: .375rem .75rem;
    line-height: 1.5;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    /*
    -webkit-border-radius: .25rem;
    border-radius: .25rem;*/
}

.this-reservation {
    margin-left: -25px;
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    width: 66%;
    margin-top: 30px;
}

.termsandcondition-payment {
    position: relative;
    margin: 0px auto;
}

.termsandcondition-payment .checkbox input+label {
    font-size: 13px !important;
    color: #008c3c;
    font-weight: 600;
    font-style: italic;
}

.table-cc {
    width: 100%;
    /*  margin-top: 30px;
*/
}

.table-cc thead tr {
    background: black;
}

.table-cc th,
.table-cc td {
    font-weight: normal;
    padding: 8px 15px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    width: 20%;
}

.table-cc thead th {
    background: #eeeeee;
    vertical-align: bottom;
}

.table-cc thead th:nth-child(even) {
    background: #eeeeee;
    vertical-align: bottom;
}


/*.table-cc tbody > tr:nth-child(odd) > td,
.table-cc tbody > tr:nth-child(odd) > th {
  background-color: #fafafa;
}
*/

.table-cc .t-medium {
    width: 15%;
}

.table-cc .t-medium.bolder {
    font-weight: bold;
}

.table-cc .t-medium:nth-last-child(1) {
    width: 15%;
    text-align: right;
}

.table-cc .t-medium.bg1 {
    background: #eeeeee;
}

.table-cc .t-medium.bg2 {
    background: #f3f3f3;
}

.table-cc .t-status {
    font-weight: bold;
}

.formpd {
    padding: 4rem;
    margin: 0px auto;
    position: relative;
}

.form-control-cc {
    padding: .75rem .75rem;
    margin-bottom: 0;
}

.formpd-text {
    margin-left: -20px;
    position: relative;
    bottom: -20px;
}

.convenience {
    font-size: 14px;
    font-style: italic;
    color: #008c3c;
    display: block;
    line-height: 2rem;
}

.convenience span {
    font-size: 12px;
    display: block;
    color: black;
    font-style: normal;
    line-height: 2rem;
}

.box-voucher {
    padding: 20px;
    background: #fff;
    width: 75%;
    height: 110px;
    border: 1px solid #e0e0e0;
}

.box-voucher img {
    position: relative;
    margin: 0px auto;
    text-align: center;
    left: 15%;
}

.voucher-redeem {
    padding-left: 15px;
}

.form-control-reedem {
    min-height: 2.25rem;
    padding-top: .375rem;
    padding-bottom: 1.3rem;
    margin-left: -40px;
}


/* ===============================
    TAB ATM
==================================*/

.list-tabs-left {
    float: left;
    width: 20%;
    padding-left: 50px;
    border-left: 1px solid #ededed;
}

.content-tabs-body-right {
    float: right;
    width: 70%;
    height: 100%;
    position: absolute;
    right: 0;
}

ul.tabs-atm {
    margin: 0px;
    padding: 0px;
    list-style: circle;
    width: 100%;
}

ul.tabs-atm li {
    background: #FFF;
    display: inline-block;
    padding: 13px 15px;
    cursor: pointer;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid rgba(220, 220, 220, 0.67);
    border-left: 1px solid rgba(220, 220, 220, 0.67);
    border-top: 1px solid rgba(220, 220, 220, 0.67);
}

ul.tabs-atm li.current {
    background: #008c3c;
    color: #fff;
    border-bottom: 2px solid #65b32e;
}

/*.tab-content {
    display: none;
    padding: 0 50px 50px 0;
    opacity: 0;
}*/

fieldset.content-tabs-body-right > form {
    height: 100%;
}

.tab-content.current {
    display: block;
    opacity: 1;
    background: #fff;
    padding: 20px 30px;
    overflow: hidden;
    border: 1px dashed #65b32e;
    margin-left: 5px;
    height: auto;
}

.payment-options .tab-content.current {
    min-height: auto;
}

.atm-counter {
    margin: 0;
    padding: 10px;
    list-style-type: none;
    width: 100%;
}

.atm-counter li {
    counter-increment: step-counter;
    margin-bottom: 10px;
}

.atm-counter li::before {
    content: counter(step-counter);
    margin-right: 5px;
    font-size: 80%;
    color: black;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
}


/* ===============================
   END TAB ATM
==================================*

/* Home Responsive */

@media screen and (max-width: 768px) {
    .cd-tabs {
        top: -40px !important;
    }
    .related-promo .btnpromo {
        left: 175px !important;
    }
}

@media screen and (min-width: 768px) {
    .promo-wp:hover span.text-hover {
        padding: 5rem 3rem !important;
    }
    .cbp-hssubmenu > li a span {}
    .cd-tabs-navigation a {}
    .checkin-icon {
        margin: 0px auto !important;
        text-align: center !important;
    }
}


/* flip in */

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}


/* light speed out */

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.list-image-right {
    overflow: hidden;
    padding: 0px !important;
    height: 176px;
}

.list-image-right>img {
    width: 100%;
}

.detail-right-icon {
    height: 16px;
    vertical-align: baseline;
}

.dark-green {
    color: #0D8B43 !important;
}

.sy-box {
    height: 375px;
}

.dob-frame {}

.dob-frame select {
    padding: 6px !important;
    font-size: 16px !important;
}

input.form-control,
select.form-control {
    border-radius: 0;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

input.form-control:focus,
select.form-control:focus {
    border-color: #999;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(100, 100, 100, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(100, 100, 100, .6);
}

.onwardstep span.time {
    font-size: 12px !important;
    line-height: 1;
}

.flight-class-connecting {
    border-top: 1px solid #ddd;
    padding: 24px 0;
    text-align: center;
    position: relative;
}

.flight-class-connecting p:before,
.flight-class-connecting p:after {
    border-top: 1px solid #0B8744;
    content: "";
    position: absolute;
    width: calc(50% - 115px);
    opacity: 0.4;
}

.flight-class-connecting p:before {
    left: 0;
    margin-top: 21px;
}

.flight-class-connecting p:after {
    right: 0;
    top: 50%;
}

.flight-class-connecting p {
    background: url('../img/transit.svg') no-repeat 0px 0px;
    background-size: 76px;
    display: inline-block;
    font-size: 15px;
    margin: 0 auto;
    padding-left: 62px;
    text-align: left;
}

.flight-class-connecting p span {
    font-weight: 600;
}

.form-control-icon-right i.fa-calendar {
    margin-top: -3px;
}

.box-initerary .itinerary-list-header {
    padding: 1em 0 .5em;
    border-bottom: 1px solid #ddd;
    font-size: 2rem;
    color: #666;
}


/* my loading*/

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 50px;
    height: 50px;
    margin: auto;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*end my loading*/


/*new dashboard*/

.text-red {
    color: #cb6669 !important;
}

.text-green {
    color: #65b32e !important;
}

.text-green-hover:hover {
    color: #5AB22E !important;
}

.text-darkgreen {
    color: #0D8B43 !important;
}

.btn-darkgreen {
    background: #0D8B43;
    color: #fff !important;
}

#slippry-demo img {
    width: 100%;
    display: none;
}

#slippry-demo.sy-list img {
    display: block;
}

.center-desc {
    text-align: center;
    margin: 1em 0;
}

.home-superdeal {
    background: #fafafa;
    padding-bottom: 13px;
    margin-top: 20px;
    margin-bottom: 2px
}

.home-superdeal .input-group {
    border-color: #d7d7d7;
    height: 4.5rem;
}

.home-superdeal .input-group-addon {
    background: #fafafa;
    font-size: larger;
}

.home-superdeal .input-group .chosen-container {
    height: 4.5rem;
    font-size: 1.3rem;
}

.home-superdeal .input-group * {
    border-width: 0px !important;
}

.home-superdeal .chosen-single span {
    font-size: 1.5rem;
    color: #8e9fa7;
}

.home-superdeal .chosen-container-single .chosen-single {
    padding: 6px;
    height: 4.5rem;
}

.home-superdeal-item {
    display: block;
    text-align: center;
    margin-bottom: 1.5em;
}

.home-superdeal-item:hover .superdeal-dayname .superdeal-daynum .superdeal-price {
    color: #ffffff
}

.superdeal-dayname {
    display: block;
    color: #33B33A;
    /*border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-color: #919fa9;*/
}

.superdeal-daynum {
    display: block;
    font-size: 4rem;
    color: #919fa9;
    /*border-right-style: solid;
    border-left-style: solid;
    border-color: #919fa9;*/
}

/*.superdeal-daynum:hover {
    display: block;
    font-size: 4rem;
    color: #ffffff;
    background-color: #919fa9;
    border-right-style: solid;
    border-left-style: solid;
    border-color: #919fa9;
}*/

.home-superdeal-item.inactive .superdeal-daynum {
    color: #ccc;
}

.superdeal-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #33B33A;
    /*border-bottom-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-color: #919fa9;*/
}

.home-superdeal-paging {
    margin-bottom: 30px;
}

.home-superdeal-paging a {
    display: inline-block;
    margin: 0 4px;
    padding: 5px;
    font-weight: 600;
}

.home-superdeal-paging a span {
    vertical-align: text-top;
    margin: 0 5px;
}

.home-superdeal-paging #superdeal-paging-prev span {
    transform: rotate(180deg);
    vertical-align: sub;
}

.search-flight-tab label {
    display: inline-block;
    padding: 5px 0px;
    margin-right: 5px;
    color: #737373;
}

.search-flight-tab label.inactive {
    color: #aaa;
}

.search-flight-tab .row>div {
    margin-bottom: 5px;
}

.cd-tabs-content li input[type="text"],
.search-flight-tab .input-group a,
.search-flight-tab .input-group li,
.home-superdeal .chosen-results li,
.home-superdeal .chosen-search input {
    font-size: 1.3rem;
    padding: 6px 1px 6px 12px;
    height: 4.5rem;
}

.cd-tabs-content li .search-flight-tab .number-input input,
.search-flight-tab .number-input input {
    font-size: larger;
}

.search-flight-tab .input-group .chosen-container .chosen-results li,
.home-superdeal .chosen-container .chosen-results li {
    padding: 12px 6px;
    line-height: 1.5;
}

.cd-tabs-content li input[name="promocode"] {
    height: 4.7rem;
    font-size: inherit;
}

.search-flight-tab .input-group-addon {
    font-size: larger;
    background-color: inherit;
    border-radius: 0px !important;
}

.form-control:focus,
.chosen-container-active .chosen-single {
    box-shadow: 0px 0px 3px rgba(90, 178, 46, 0.3) inset !important;
}

.search-flight-tab .chosen-container-single a {
    border-radius: 0px !important;
    border-width: 0px !important;
    color: #8E9FA7 !important;
    font-size: 1.5rem;
}

.chosen-container-single .chosen-single div b {
    background-position: 0px 1.5rem !important;
}

.search-flight-tab .input-group * {
    border-width: 0px !important;
}

.search-flight-tab .input-group-addon:first-child {
    min-width: 62px;
    padding-left: 11px;
}

.search-flight-tab .input-group-addon:last-child {
    min-width: 38px;
}

.search-flight-tab .input-group input[type="text"] {
    padding-right: 1px !important;
}

.search-flight-tab .input-group .citilink-airline,
.search-flight-tab .input-group .citilink-airline-left {
    position: static;
    height: auto;
    width: 42px;
    background-repeat: none;
    background-position: center center;
}

.flight-modes-tab {}

.flight-modes-tab input[type="radio"] {
    margin: 0;
    display: none;
}

.flight-modes-tab label {
    padding: 5px 12px;
    cursor: pointer;
}

.flight-modes-tab label:hover {
    background: #ddd;
}

.flight-modes-tab input:checked + label,
.flight-modes-tab input:checked + label:hover {
    background: #2eb33b;
    color: #fff;
}

.flight-modes-tab label>span.glyphicon {
    visibility: hidden;
}

.flight-modes-tab input:checked + label>span.glyphicon {
    visibility: visible;
}

.flight-modes-tab input.citilink-airline-left {
    background-image: url(../img/citilink.svg);
    background-position: right center;
    transform: rotate(180deg);
}

.no-pad-right {
    padding-right: 3px !important;
}

.no-pad-left {
    padding-left: 2px !important;
}

.number-input {}

.number-input input {
    background-color: transparent;
    border: none;
    /* border-right: 0; */
    /* font-size: 1.5em; */
    overflow: hidden;
    height: 100%;
    text-align: right;
    padding: .15em .15em .15em .5em;
    transition: .5s ease all;
    z-index: 0;
    float: left;
    font-weight: 600;
    color: #717171;
    width: calc(100% - 35px);
}

.number-input input:focus,
.number-input input:active {
    background-color: white;
    outline: none;
    transition: .5s ease all;
}

.button-flight {
    overflow: hidden;
    float: right;
    width: 18px;
    z-index: 1;
}

.btn-counter {
    background: #717171;
    cursor: pointer;
    display: block;
    float: right;
    height: 20px;
    padding: 0px 0px 0px;
    text-align: center;
    width: 22px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 2px;
}

.btn-counter.btn-minus {
    line-height: 15px;
}

.form-label {
    font-size: 1.3rem;
    color: #797979;
}

.baggage-selector .box-user > p {
    width: 40%;
    overflow: hidden;
    line-height: 2;
}

.baggage-selector .box-user > .baggage-bundling {
    font-size: 1.2rem;
    padding: 10px 5px 0 0;
    right: 40%;
    text-align: right;
    width: 20%;
    cursor: pointer;
}

.baggage-selector .box-user > select {
    width: 40%;
    font-size: 1.25rem;
    padding-top: 0px;
}

#profile-page .box-initerary {
    margin-top: 0px;
}

.modal-big {
    padding: 0px;
    width: 800px;
    display: block;
    position: relative;
    background: transparent;
    margin: 24px auto 0;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.modal-big.tnc {
    width: 700px;
}

.modal-promo {
    /*width: 800px;*/
    display: block;
    margin: 40px auto 0;
    opacity: 0;
    box-shadow: 15px 20px 70px -5px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    width: 450px;
}

.modal-wrapper.open .modal-promo {
    opacity: 1;
}

.modal-big .itinerary-list-header {
    margin: 14px 0;
    line-height: 1;
}

.modal-big #modal-meal-content > .ng-scope {
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
}

.modal-big .onward {
    height: auto;
    margin: 1.5em 0;
}

.modal-big .onward h4 {
    font-size: 1.4rem;
}

.modal-big .onward p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.from-to {
    background: url("../img/citilink--.svg") no-repeat scroll 48% 50%;
    line-height: 1;
}

.from-to h4 {
    margin: 0px;
    font-weight: 600;
}

.from-to small {
    font-size: smaller;
}

.flight-breakdown .flight-num {
    font-size: smaller;
    text-align: center;
    /*background: url(../img/citilink-search.svg) no-repeat no-repeat 10px center;*/
}

.flight-breakdown .flight-time {
    font-size: smaller;
    text-align: center;
    /*background: url(../img/jam.svg) no-repeat no-repeat 10px center;*/
}

.payment-breakdown {
    margin-top: 1em;
}

.payment-breakdown > div {
    padding-top: 3px;
    padding-bottom: 3px;
}

.payment-breakdown > .col-sm-9 {
    font-size: smaller;
}

.payment-breakdown > .col-sm-3 {
    font-size: smaller;
    text-align: right;
}

.payment-breakdown > .breakdown-head {
    background: #f5f5f5;
    font-weight: 600;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: inherit;
}

.payment-breakdown > .breakdown-note {
    color: #999;
    font-size: inherit;
}

.payment-breakdown > .breakdown-sub {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-top: 3px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: inherit;
}

#breakdown-total {
    margin: 1.2em 0 1em;
    font-weight: 600;
}

#breakdown-total h4 {
    margin: 0px;
    font-weight: 700;
}

#breakdown-total small {
    font-weight: 600;
    color: #666;
    font-size: smaller;
}

.modal-promo-route {
    background: url("../img/citilink.svg") no-repeat center center;
    padding: 0;
}

.modal-promo-left {
    padding: 2em 0;
    border-right: 1px solid #ddd;
}

.modal-promo-left h4 {
    font-size: 14rem;
    line-height: 11rem;
    margin: 25px 0 0;
}

.modal-promo-left small {
    color: #999;
    font-size: 1.6rem;
}

.modal-promo-left h5 {
    font-size: 3rem;
    font-weight: 600;
    margin: 25px 0 0;
}

.modal-promo-right {
    padding: 2em 0;
}

.modal-promo-route strong {
    display: inline-block;
    width: 40%;
    text-align: left;
    font-size: 2rem;
}

.modal-promo-route strong:first-child {
    margin-right: 42px;
    text-align: right;
}

.box-initerary .box-onword {
    margin: 0 !important;
    width: 48%;
    padding: 30px 30px 8px;
}

.box-initerary .box-onword:nth-child(2) {
    margin-left: 1% !important;
}

.box-initerary .box-onwardstep {
    min-width: 346px;
    overflow: visible;
}

.box-initerary .onwardstep .duration {
    margin-top: -16px;
}

.box-initerary .box-onword:only-child {
    width: 100%;
}

.box-security {
    border: 1px solid #ccc;
    overflow: hidden;
    height: 300px;
    margin-top: 2em;
}

.box-security .security-bg {
    background: #fafafa;
    text-align: center;
    height: 100%;
}

.box-security img {
    width: 80%;
    margin-top: 65px;
}

.security-info {
    padding-top: 2em;
}

.security-info ol {
    list-style-type: decimal;
    list-style-position: outside;
    padding: 0 1.5em;
}

.security-info ol li {
    margin: 0.5em 0;
    line-height: 1.5;
}

.security-info ul {
    list-style-type: circle;
    list-style-position: outside;
    padding: 0 1.5em;
}

.security-info ul li {}


/*summary fix*/

.stickybar,
div[ng-include="'tpl/summary.html'"] {
    /*position: sticky;*/
    top: 0px;
    z-index: 1;
}

.summary {
    /*position: fixed;*/
}

.checkbox-detailed input:checked+label {
    background: #ccc;
}

#transfer-atm .col-sm-12 {
    display: flex;
    align-items: stretch;
}

#transfer-atm .col-sm-3 {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border: 1px solid #d8e2e7;
}

#transfer-atm img {
    margin: 0 auto;
}


/* override angular-loading-bar style */

#loading-bar {
    pointer-events: all;
    z-index: 99999;
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: wait;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
}

/* end override angular-loading-bar style */
.ngdialog.ngdialog-theme-custom {
    padding-top: 125px;
    padding-bottom: 125px;
}

.ngdialog.ngdialog-theme-custom .ngdialog-overlay {
    background: rgba(255,255,255,.5);
}

.ngdialog.ngdialog-theme-custom .ngdialog-content {
    background: rgba(255,255,255,.9);
    padding: 1.8em 2em;
    width: 440px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.mt {
    margin-top: 15px;
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1);
    -webkit-overflow-scrolling: touch
}
.navbar-collapse:after,
.navbar-collapse:before {
    content: " ";
    display: table
}

.navbar-collapse:after {
    clear: both
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }
    .navbar-collapse.collapse {
        display: block!important;
        height: auto!important;
        padding-bottom: 0;
        overflow: visible!important
    }
    .navbar-collapse.in {
        overflow-y: visible
    }
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 0;
    border: 1px solid transparent
}

.navbar:after,
.navbar:before {
    content: " ";
    display: table
}

.navbar:after {
    clear: both
}

@media (min-width:768px) {
    .navbar {
        border-radius: 0
    }
}

.navbar-header:after,
.navbar-header:before {
    content: " ";
    display: table
}

.navbar-header:after {
    clear: both
}

@media (min-width:768px) {
    .navbar-header {
        float: left
    }
}


.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}


#header {
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1)
}

#header h1 {
    margin-top: 0
}

#header .navbar-nav>li>a {
    text-transform: uppercase
}

#header #dropdown-profile {
    display: inline-block;
    text-decoration: none
}

#header #dropdown-profile:focus .profile-name,
#header #dropdown-profile:hover .profile-name {
    text-decoration: underline
}

#header {
    position: static
}
#header .navbar {
    min-height: 40px
}
#header .navbar-nav>li {
    border-right: 1px solid #ccc
}
#header .navbar-nav>li:last-child {
    border-right: 0
}
#header .navbar-nav>li a {
    padding-top: 5px;
    padding-bottom: 5px
}
#header .navbar-collapse {
    padding-left: 0;
    padding-right: 0
}

@media (min-width:768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left
    }
    .col-sm-1 {
        width: 8.3333333333%
    }
    .col-sm-2 {
        width: 16.6666666667%
    }
    .col-sm-3 {
        width: 25%
    }
    .col-sm-4 {
        width: 33.3333333333%
    }
    .col-sm-5 {
        width: 41.6666666667%
    }
    .col-sm-6 {
        width: 50%
    }
    .col-sm-7 {
        width: 58.3333333333%
    }
    .col-sm-8 {
        width: 66.6666666667%
    }
    .col-sm-9 {
        width: 75%
    }
    .col-sm-10 {
        width: 83.3333333333%
    }
    .col-sm-11 {
        width: 91.6666666667%
    }
    .col-sm-12 {
        width: 100%
    }
    .col-sm-pull-0 {
        right: auto
    }
    .col-sm-pull-1 {
        right: 8.3333333333%
    }
    .col-sm-pull-2 {
        right: 16.6666666667%
    }
    .col-sm-pull-3 {
        right: 25%
    }
    .col-sm-pull-4 {
        right: 33.3333333333%
    }
    .col-sm-pull-5 {
        right: 41.6666666667%
    }
    .col-sm-pull-6 {
        right: 50%
    }
    .col-sm-pull-7 {
        right: 58.3333333333%
    }
    .col-sm-pull-8 {
        right: 66.6666666667%
    }
    .col-sm-pull-9 {
        right: 75%
    }
    .col-sm-pull-10 {
        right: 83.3333333333%
    }
    .col-sm-pull-11 {
        right: 91.6666666667%
    }
    .col-sm-pull-12 {
        right: 100%
    }
    .col-sm-push-0 {
        left: auto
    }
    .col-sm-push-1 {
        left: 8.3333333333%
    }
    .col-sm-push-2 {
        left: 16.6666666667%
    }
    .col-sm-push-3 {
        left: 25%
    }
    .col-sm-push-4 {
        left: 33.3333333333%
    }
    .col-sm-push-5 {
        left: 41.6666666667%
    }
    .col-sm-push-6 {
        left: 50%
    }
    .col-sm-push-7 {
        left: 58.3333333333%
    }
    .col-sm-push-8 {
        left: 66.6666666667%
    }
    .col-sm-push-9 {
        left: 75%
    }
    .col-sm-push-10 {
        left: 83.3333333333%
    }
    .col-sm-push-11 {
        left: 91.6666666667%
    }
    .col-sm-push-12 {
        left: 100%
    }
    .col-sm-offset-0 {
        margin-left: 0
    }
    .col-sm-offset-1 {
        margin-left: 8.3333333333%
    }
    .col-sm-offset-2 {
        margin-left: 16.6666666667%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-4 {
        margin-left: 33.3333333333%
    }
    .col-sm-offset-5 {
        margin-left: 41.6666666667%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-7 {
        margin-left: 58.3333333333%
    }
    .col-sm-offset-8 {
        margin-left: 66.6666666667%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-10 {
        margin-left: 83.3333333333%
    }
    .col-sm-offset-11 {
        margin-left: 91.6666666667%
    }
    .col-sm-offset-12 {
        margin-left: 100%
    }
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

.padding-t-2x {
    padding-top: 8px
}

.padding-l-2x {
    padding-left: 8px
}

.dropdown,
.dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

#profile {
    border-left: 1px solid #ccc
}

#profile .profile-info,
#profile .profile-picture {
    display: inline-block
}

.navbar-brand {
    float: left;
    padding: 16px 15px;
    font-size: 26px;
    line-height: 18px;
    height: 50px
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-brand>img {
    display: block
}

footer #download-apps img,
.margin-r {
    margin-right: 8px
}

.navbar-default {
    background-color: transparent;
    border-color: transparent
}

.navbar-default .navbar-brand {
    color: #65b32e
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: #4e8a24;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav>li>a {
    color: #65b32e
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #65b32e
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #f8f8f8
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #f8f8f8
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #65b32e
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: transparent
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background-color: #65b32e;
    color: #fff
}

@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #65b32e
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: #65b32e
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #65b32e
}

.navbar-default .navbar-link:hover {
    color: #fff
}

.navbar-default .btn-link {
    color: #65b32e
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
    color: #fff
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

#footer {
    font-size: 11px
}

#footer>.bg-grey {
    background: #f0f0f0;
    color: #8e8e8e
}

#footer>.bg-grey a {
    color: #8e8e8e
}

#footer>.bg-grey strong.color-primary {
    font-size: 18px
}

#footer>.bg-black {
    background: #272727;
    color: #fff
}

#footer #social-media {
    margin-left: -12px;
    display: block;
    padding-bottom: 16px
}

#footer #social-media a {
    display: inline-block;
    width: 25px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    background: #ccc;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin-left: 16px;
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

#footer #download-apps img {
    max-height: 40px
}

#modal-payment .modal-body .nav-tabs>li>a,
.breadcrumb li a,
.color-default {
    color: #474747
}

.color-primary {
    color: #65b32e
}

.color-secondary {
    color: #008c3c
}


.containerHeader {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.containerHeader:after,
.containerHeader:before {
    content: " ";
    display: table
}

.containerHeader:after {
    clear: both
}

@media (min-width:768px) {
    .containerHeader {
        width: 750px
    }
}

@media (min-width:992px) {
    .containerHeader {
        width: 970px
    }
}

@media (min-width:1200px) {
    .containerHeader {
        width: 1170px
    }
}

.containerHeader-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 150px;
    padding-right: 150px
}

.containerHeader-fluid:after,
.containerHeader-fluid:before {
    content: " ";
    display: table
}

.containerHeader-fluid:after {
    clear: both
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: Glyphicons Halflings;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-envelope:before {
    content: "\2709"
}

#product-menu ul.nav-pills.nav-justified>li {
    display: table-cell;
    width: 1%
}

#product-menu .nav-tabs>li>a:focus,
#product-menu .nav-tabs>li>a:hover {
    background-color: hsla(0, 0%, 100%, .8);
    border-top-color: #eef9e7
}

#product-menu .nav-tabs>li.active>a,
#product-menu .nav-tabs>li.active>a:focus,
#product-menu .nav-tabs>li.active>a:hover {
    background-color: #f8f8f8;
    border-top-color: #65b32e
}

ul.nav-pills.nav-justified>li {
    border-right: 1px solid #ccc
}
ul.nav-pills.nav-justified>li:last-child {
    border-right: none
}

.nav-justified,
.nav-tabs.nav-justified {
    width: 100%
}

.nav-justified>li,
.nav-tabs.nav-justified>li {
    float: none
}

.nav-justified>li>a,
.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .nav-justified>li,
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }
    .nav-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs-justified,
.nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a,
.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 0
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-tabs-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 0 0 0 0
    }
    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:focus,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:focus,
    .nav-tabs.nav-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

#redeem .redeem-calendar .col-7,
.padding-v-2x {
    padding-top: 15px;
    padding-bottom: 8px
}

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"), url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: .75em;
    vertical-align: -15%
}

.margin-t-3x {
    margin-top: 8px
}

.text-right {
    text-align: right
}

@media (max-width:767px) {
    .hidden-xs {
        display: none!important
    }
}
.pull-right {
    float: right
}

.padding-l {
    padding-left: 8px
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-plane:before {
    content: ""
}
.fa-hotel:before {
    content: ""
}


@charset "UTF-8";
@font-face {
    font-family: Helvetica LT Std;
    font-style: normal;
    font-weight: 400;
    src: local("HelveticaLTStd Light"), local("HelveticaLTStd-Light"), url(../fonts/HelveticaLTStd-Light.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica LT Std Roman;
    font-style: normal;
    font-weight: 500;
    src: local("HelveticaLTStd Roman"), local("HelveticaLTStd-Roman"), url(../fonts/HelveticaLTStd-Roman.ttf) format("truetype")
}

@font-face {
    font-family: Helvetica LT Std Bold;
    font-style: normal;
    font-weight: 500;
    src: local("HelveticaLTStd Bold"), local("HelveticaLTStd-Bold"), url(../fonts/HelveticaLTStd-Bold.ttf) format("truetype")
}


/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */


/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

.breadcrumb li,
small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}


/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    *,
    :after,
    :before {
        background: transparent!important;
        color: #000!important;
        box-shadow: none!important;
        text-shadow: none!important
    }
    a,
    a:visited {
        text-decoration: underline
    }
    a[href]:after {
        content: " (" attr(href) ")"
    }
    abbr[title]:after {
        content: " (" attr(title) ")"
    }
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: ""
    }
    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    thead {
        display: table-header-group
    }
    img,
    tr {
        page-break-inside: avoid
    }
    img {
        max-width: 100%!important
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }
    h2,
    h3 {
        page-break-after: avoid
    }
    .navbar {
        display: none
    }
    .btn>.caret,
    .dropup>.btn>.caret {
        border-top-color: #000!important
    }
    .label {
        border: 1px solid #000
    }
    .table {
        border-collapse: collapse!important
    }
    .table td,
    .table th {
        background-color: #fff!important
    }
    .table-bordered td,
    .table-bordered th {
        border: 1px solid #ddd!important
    }
}

@font-face {
    font-family: Glyphicons Halflings;
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(../fonts/glyphicons-halflings-regular.woff) format("woff"), url(../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: Glyphicons Halflings;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\002a"
}

.glyphicon-plus:before {
    content: "\002b"
}

.glyphicon-eur:before,
.glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before,
.glyphicon-btc:before,
.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-jpy:before,
.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-rub:before,
.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

*,
:after,
:before {
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: Helvetica LT Std Roman;
    font-size: 13px;
    line-height: 1.428571429;
    color: #474747;
    background-color: #fff
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}


figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive {
    display: block;
    width: auto;
    height: auto;
}



.img-rounded {
    border-radius: 0
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    width: 588px;
    height: 248px
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 18px;
    margin-bottom: 18px;
    border: 0;
    border-top: 1px solid #ececec
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

[role=button] {
    cursor: pointer
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Helvetica LT Std Bold;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

#redeem .redeem-calendar .col-7 .h1 .day,
#redeem .redeem-calendar .col-7 .h1 .miles,
#redeem .redeem-calendar .col-7 .h2 .day,
#redeem .redeem-calendar .col-7 .h2 .miles,
#redeem .redeem-calendar .col-7 .h3 .day,
#redeem .redeem-calendar .col-7 .h3 .miles,
#redeem .redeem-calendar .col-7 .h4 .day,
#redeem .redeem-calendar .col-7 .h4 .miles,
#redeem .redeem-calendar .col-7 .h5 .day,
#redeem .redeem-calendar .col-7 .h5 .miles,
#redeem .redeem-calendar .col-7 .h6 .day,
#redeem .redeem-calendar .col-7 .h6 .miles,
#redeem .redeem-calendar .col-7 h1 .day,
#redeem .redeem-calendar .col-7 h1 .miles,
#redeem .redeem-calendar .col-7 h2 .day,
#redeem .redeem-calendar .col-7 h2 .miles,
#redeem .redeem-calendar .col-7 h3 .day,
#redeem .redeem-calendar .col-7 h3 .miles,
#redeem .redeem-calendar .col-7 h4 .day,
#redeem .redeem-calendar .col-7 h4 .miles,
#redeem .redeem-calendar .col-7 h5 .day,
#redeem .redeem-calendar .col-7 h5 .miles,
#redeem .redeem-calendar .col-7 h6 .day,
#redeem .redeem-calendar .col-7 h6 .miles,
.breadcrumb .h1 li,
.breadcrumb .h2 li,
.breadcrumb .h3 li,
.breadcrumb .h4 li,
.breadcrumb .h5 li,
.breadcrumb .h6 li,
.breadcrumb h1 li,
.breadcrumb h2 li,
.breadcrumb h3 li,
.breadcrumb h4 li,
.breadcrumb h5 li,
.breadcrumb h6 li,
.h1 #redeem .redeem-calendar .col-7 .day,
.h1 #redeem .redeem-calendar .col-7 .miles,
.h1 .breadcrumb li,
.h1 .small,
.h1 small,
.h2 #redeem .redeem-calendar .col-7 .day,
.h2 #redeem .redeem-calendar .col-7 .miles,
.h2 .breadcrumb li,
.h2 .small,
.h2 small,
.h3 #redeem .redeem-calendar .col-7 .day,
.h3 #redeem .redeem-calendar .col-7 .miles,
.h3 .breadcrumb li,
.h3 .small,
.h3 small,
.h4 #redeem .redeem-calendar .col-7 .day,
.h4 #redeem .redeem-calendar .col-7 .miles,
.h4 .breadcrumb li,
.h4 .small,
.h4 small,
.h5 #redeem .redeem-calendar .col-7 .day,
.h5 #redeem .redeem-calendar .col-7 .miles,
.h5 .breadcrumb li,
.h5 .small,
.h5 small,
.h6 #redeem .redeem-calendar .col-7 .day,
.h6 #redeem .redeem-calendar .col-7 .miles,
.h6 .breadcrumb li,
.h6 .small,
.h6 small,
h1 #redeem .redeem-calendar .col-7 .day,
h1 #redeem .redeem-calendar .col-7 .miles,
h1 .breadcrumb li,
h1 .small,
h1 small,
h2 #redeem .redeem-calendar .col-7 .day,
h2 #redeem .redeem-calendar .col-7 .miles,
h2 .breadcrumb li,
h2 .small,
h2 small,
h3 #redeem .redeem-calendar .col-7 .day,
h3 #redeem .redeem-calendar .col-7 .miles,
h3 .breadcrumb li,
h3 .small,
h3 small,
h4 #redeem .redeem-calendar .col-7 .day,
h4 #redeem .redeem-calendar .col-7 .miles,
h4 .breadcrumb li,
h4 .small,
h4 small,
h5 #redeem .redeem-calendar .col-7 .day,
h5 #redeem .redeem-calendar .col-7 .miles,
h5 .breadcrumb li,
h5 .small,
h5 small,
h6 #redeem .redeem-calendar .col-7 .day,
h6 #redeem .redeem-calendar .col-7 .miles,
h6 .breadcrumb li,
h6 .small,
h6 small {
    font-weight: 400;
    line-height: 1;
    color: #818181
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 18px;
    margin-bottom: 9px
}

#redeem .redeem-calendar .col-7 .h1 .day,
#redeem .redeem-calendar .col-7 .h1 .miles,
#redeem .redeem-calendar .col-7 .h2 .day,
#redeem .redeem-calendar .col-7 .h2 .miles,
#redeem .redeem-calendar .col-7 .h3 .day,
#redeem .redeem-calendar .col-7 .h3 .miles,
#redeem .redeem-calendar .col-7 h1 .day,
#redeem .redeem-calendar .col-7 h1 .miles,
#redeem .redeem-calendar .col-7 h2 .day,
#redeem .redeem-calendar .col-7 h2 .miles,
#redeem .redeem-calendar .col-7 h3 .day,
#redeem .redeem-calendar .col-7 h3 .miles,
.breadcrumb .h1 li,
.breadcrumb .h2 li,
.breadcrumb .h3 li,
.breadcrumb h1 li,
.breadcrumb h2 li,
.breadcrumb h3 li,
.h1 #redeem .redeem-calendar .col-7 .day,
.h1 #redeem .redeem-calendar .col-7 .miles,
.h1 .breadcrumb li,
.h1 .small,
.h1 small,
.h2 #redeem .redeem-calendar .col-7 .day,
.h2 #redeem .redeem-calendar .col-7 .miles,
.h2 .breadcrumb li,
.h2 .small,
.h2 small,
.h3 #redeem .redeem-calendar .col-7 .day,
.h3 #redeem .redeem-calendar .col-7 .miles,
.h3 .breadcrumb li,
.h3 .small,
.h3 small,
h1 #redeem .redeem-calendar .col-7 .day,
h1 #redeem .redeem-calendar .col-7 .miles,
h1 .breadcrumb li,
h1 .small,
h1 small,
h2 #redeem .redeem-calendar .col-7 .day,
h2 #redeem .redeem-calendar .col-7 .miles,
h2 .breadcrumb li,
h2 .small,
h2 small,
h3 #redeem .redeem-calendar .col-7 .day,
h3 #redeem .redeem-calendar .col-7 .miles,
h3 .breadcrumb li,
h3 .small,
h3 small {
    font-size: 65%
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    margin-top: 9px;
    margin-bottom: 9px
}

#redeem .redeem-calendar .col-7 .h4 .day,
#redeem .redeem-calendar .col-7 .h4 .miles,
#redeem .redeem-calendar .col-7 .h5 .day,
#redeem .redeem-calendar .col-7 .h5 .miles,
#redeem .redeem-calendar .col-7 .h6 .day,
#redeem .redeem-calendar .col-7 .h6 .miles,
#redeem .redeem-calendar .col-7 h4 .day,
#redeem .redeem-calendar .col-7 h4 .miles,
#redeem .redeem-calendar .col-7 h5 .day,
#redeem .redeem-calendar .col-7 h5 .miles,
#redeem .redeem-calendar .col-7 h6 .day,
#redeem .redeem-calendar .col-7 h6 .miles,
.breadcrumb .h4 li,
.breadcrumb .h5 li,
.breadcrumb .h6 li,
.breadcrumb h4 li,
.breadcrumb h5 li,
.breadcrumb h6 li,
.h4 #redeem .redeem-calendar .col-7 .day,
.h4 #redeem .redeem-calendar .col-7 .miles,
.h4 .breadcrumb li,
.h4 .small,
.h4 small,
.h5 #redeem .redeem-calendar .col-7 .day,
.h5 #redeem .redeem-calendar .col-7 .miles,
.h5 .breadcrumb li,
.h5 .small,
.h5 small,
.h6 #redeem .redeem-calendar .col-7 .day,
.h6 #redeem .redeem-calendar .col-7 .miles,
.h6 .breadcrumb li,
.h6 .small,
.h6 small,
h4 #redeem .redeem-calendar .col-7 .day,
h4 #redeem .redeem-calendar .col-7 .miles,
h4 .breadcrumb li,
h4 .small,
h4 small,
h5 #redeem .redeem-calendar .col-7 .day,
h5 #redeem .redeem-calendar .col-7 .miles,
h5 .breadcrumb li,
h5 .small,
h5 small,
h6 #redeem .redeem-calendar .col-7 .day,
h6 #redeem .redeem-calendar .col-7 .miles,
h6 .breadcrumb li,
h6 .small,
h6 small {
    font-size: 75%
}

.h1,
h1 {
    font-size: 22px
}

.h2,
h2 {
    font-size: 20px
}

.h3,
h3 {
    font-size: 18px
}

.h4,
h4 {
    font-size: 15px
}

.h5,
h5 {
    font-size: 13px
}

.h6,
h6 {
    font-size: 11px
}

p {
    margin: 0 0 9px
}

.lead {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width:768px) {
    .lead {
        font-size: 19.5px
    }
}

#redeem .redeem-calendar .col-7 .day,
#redeem .redeem-calendar .col-7 .miles,
.breadcrumb li,
.small,
small {
    font-size: 92%
}

.mark,
mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

#join-supergreen .col-sm-3,
.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.initialism,
.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #818181;
    font-size: 1.3rem;

}

.text-primary {
    color: #65b32e
}

a.text-green
{
    color: #65b32e
}

a.text-primary:focus,
a.text-primary:hover {
    color: #4e8a24
}

.text-success {
    color: #3c763d
}

a.text-success:focus,
a.text-success:hover {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:focus,
a.text-info:hover {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:focus,
a.text-warning:hover {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:focus,
a.text-danger:hover {
    color: #843534
}

#profile-box .hobby,
.bg-primary {
    color: #fff
}

#profile-box a.hobby:focus,
#profile-box a.hobby:hover,
a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #4e8a24
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 8px;
    margin: 36px 0 18px;
    border-bottom: 1px solid #f8f8f8
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 9px
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    margin-left: -5px
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 18px
}

dd,
dt {
    line-height: 1.428571429
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

.dl-horizontal dd:after,
.dl-horizontal dd:before {
    content: " ";
    display: table
}

.dl-horizontal dd:after {
    clear: both
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }
    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[data-original-title],
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #818181
}

.initialism {
    font-size: 90%
}

blockquote {
    padding: 9px 18px;
    margin: 0 0 18px;
    font-size: 16.25px;
    border-left: 5px solid #f8f8f8
}

blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
    margin-bottom: 0
}

#redeem .redeem-calendar .col-7 blockquote .day,
#redeem .redeem-calendar .col-7 blockquote .miles,
.breadcrumb blockquote li,
blockquote #redeem .redeem-calendar .col-7 .day,
blockquote #redeem .redeem-calendar .col-7 .miles,
blockquote .breadcrumb li,
blockquote .small,
blockquote footer,
blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.428571429;
    color: #818181
}

#redeem .redeem-calendar .col-7 blockquote .day:before,
#redeem .redeem-calendar .col-7 blockquote .miles:before,
.breadcrumb blockquote li:before,
blockquote #redeem .redeem-calendar .col-7 .day:before,
blockquote #redeem .redeem-calendar .col-7 .miles:before,
blockquote .breadcrumb li:before,
blockquote .small:before,
blockquote footer:before,
blockquote small:before {
    content: "\2014 \00A0"
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #f8f8f8;
    border-left: 0;
    text-align: right
}

#redeem .redeem-calendar .col-7 .blockquote-reverse .day:before,
#redeem .redeem-calendar .col-7 .blockquote-reverse .miles:before,
#redeem .redeem-calendar .col-7 blockquote.pull-right .day:before,
#redeem .redeem-calendar .col-7 blockquote.pull-right .miles:before,
.blockquote-reverse #redeem .redeem-calendar .col-7 .day:before,
.blockquote-reverse #redeem .redeem-calendar .col-7 .miles:before,
.blockquote-reverse .breadcrumb li:before,
.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.breadcrumb .blockquote-reverse li:before,
.breadcrumb blockquote.pull-right li:before,
blockquote.pull-right #redeem .redeem-calendar .col-7 .day:before,
blockquote.pull-right #redeem .redeem-calendar .col-7 .miles:before,
blockquote.pull-right .breadcrumb li:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
    content: ""
}

#redeem .redeem-calendar .col-7 .blockquote-reverse .day:after,
#redeem .redeem-calendar .col-7 .blockquote-reverse .miles:after,
#redeem .redeem-calendar .col-7 blockquote.pull-right .day:after,
#redeem .redeem-calendar .col-7 blockquote.pull-right .miles:after,
.blockquote-reverse #redeem .redeem-calendar .col-7 .day:after,
.blockquote-reverse #redeem .redeem-calendar .col-7 .miles:after,
.blockquote-reverse .breadcrumb li:after,
.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.breadcrumb .blockquote-reverse li:after,
.breadcrumb blockquote.pull-right li:after,
blockquote.pull-right #redeem .redeem-calendar .col-7 .day:after,
blockquote.pull-right #redeem .redeem-calendar .col-7 .miles:after,
blockquote.pull-right .breadcrumb li:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
    content: "\00A0 \2014"
}

address {
    margin-bottom: 18px;
    font-style: normal;
    line-height: 1.428571429
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, Courier New, monospace
}

code {
    color: #c7254e;
    background-color: #f9f2f4
}

code,
kbd {
    padding: 2px 4px;
    font-size: 90%;
    border-radius: 0
}

kbd {
    color: #fff;
    background-color: #333;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    box-shadow: none
}

pre {
    display: block;
    padding: 8.5px;
    margin: 0 0 9px;
    font-size: 12px;
    line-height: 1.428571429;
    word-break: break-all;
    word-wrap: break-word;
    color: #3d3d3d;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 0
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.container:after,
.container:before {
    content: " ";
    display: table
}

.container:after {
    clear: both
}

@media (min-width:768px) {
    .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid:after,
.container-fluid:before {
    content: " ";
    display: table
}

.container-fluid:after {
    clear: both
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.row:after,
.row:before {
    content: " ";
    display: table
}

.row:after {
    clear: both
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left
}

.col-xs-1 {
    width: 8.3333333333%
}

.col-xs-2 {
    width: 16.6666666667%
}

.col-xs-3 {
    width: 25%
}

.col-xs-4 {
    width: 33.3333333333%
}

.col-xs-5 {
    width: 41.6666666667%
}

.col-xs-6 {
    width: 50%
}

.col-xs-7 {
    width: 58.3333333333%
}

.col-xs-8 {
    width: 66.6666666667%
}

.col-xs-9 {
    width: 75%
}

.col-xs-10 {
    width: 83.3333333333%
}

.col-xs-11 {
    width: 91.6666666667%
}

.col-xs-12 {
    width: 100%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-pull-1 {
    right: 8.3333333333%
}

.col-xs-pull-2 {
    right: 16.6666666667%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-4 {
    right: 33.3333333333%
}

.col-xs-pull-5 {
    right: 41.6666666667%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-7 {
    right: 58.3333333333%
}

.col-xs-pull-8 {
    right: 66.6666666667%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-10 {
    right: 83.3333333333%
}

.col-xs-pull-11 {
    right: 91.6666666667%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-push-1 {
    left: 8.3333333333%
}

.col-xs-push-2 {
    left: 16.6666666667%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-4 {
    left: 33.3333333333%
}

.col-xs-push-5 {
    left: 41.6666666667%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-7 {
    left: 58.3333333333%
}

.col-xs-push-8 {
    left: 66.6666666667%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-10 {
    left: 83.3333333333%
}

.col-xs-push-11 {
    left: 91.6666666667%
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.3333333333%
}

.col-xs-offset-2 {
    margin-left: 16.6666666667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.3333333333%
}

.col-xs-offset-5 {
    margin-left: 41.6666666667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.3333333333%
}

.col-xs-offset-8 {
    margin-left: 66.6666666667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.3333333333%
}

.col-xs-offset-11 {
    margin-left: 91.6666666667%
}

.col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width:768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left
    }
    .col-sm-1 {
        width: 8.3333333333%
    }
    .col-sm-2 {
        width: 16.6666666667%
    }
    .col-sm-3 {
        width: 25%
    }
    .col-sm-4 {
        width: 33.3333333333%
    }
    .col-sm-5 {
        width: 41.6666666667%
    }
    .col-sm-6 {
        width: 50%
    }
    .col-sm-7 {
        width: 58.3333333333%
    }
    .col-sm-8 {
        width: 66.6666666667%
    }
    .col-sm-9 {
        width: 75%
    }
    .col-sm-10 {
        width: 83.3333333333%
    }
    .col-sm-11 {
        width: 91.6666666667%
    }
    .col-sm-12 {
        width: 100%
    }
    .col-sm-pull-0 {
        right: auto
    }
    .col-sm-pull-1 {
        right: 8.3333333333%
    }
    .col-sm-pull-2 {
        right: 16.6666666667%
    }
    .col-sm-pull-3 {
        right: 25%
    }
    .col-sm-pull-4 {
        right: 33.3333333333%
    }
    .col-sm-pull-5 {
        right: 41.6666666667%
    }
    .col-sm-pull-6 {
        right: 50%
    }
    .col-sm-pull-7 {
        right: 58.3333333333%
    }
    .col-sm-pull-8 {
        right: 66.6666666667%
    }
    .col-sm-pull-9 {
        right: 75%
    }
    .col-sm-pull-10 {
        right: 83.3333333333%
    }
    .col-sm-pull-11 {
        right: 91.6666666667%
    }
    .col-sm-pull-12 {
        right: 100%
    }
    .col-sm-push-0 {
        left: auto
    }
    .col-sm-push-1 {
        left: 8.3333333333%
    }
    .col-sm-push-2 {
        left: 16.6666666667%
    }
    .col-sm-push-3 {
        left: 25%
    }
    .col-sm-push-4 {
        left: 33.3333333333%
    }
    .col-sm-push-5 {
        left: 41.6666666667%
    }
    .col-sm-push-6 {
        left: 50%
    }
    .col-sm-push-7 {
        left: 58.3333333333%
    }
    .col-sm-push-8 {
        left: 66.6666666667%
    }
    .col-sm-push-9 {
        left: 75%
    }
    .col-sm-push-10 {
        left: 83.3333333333%
    }
    .col-sm-push-11 {
        left: 91.6666666667%
    }
    .col-sm-push-12 {
        left: 100%
    }
    .col-sm-offset-0 {
        margin-left: 0
    }
    .col-sm-offset-1 {
        margin-left: 8.3333333333%
    }
    .col-sm-offset-2 {
        margin-left: 16.6666666667%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-4 {
        margin-left: 33.3333333333%
    }
    .col-sm-offset-5 {
        margin-left: 41.6666666667%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-7 {
        margin-left: 58.3333333333%
    }
    .col-sm-offset-8 {
        margin-left: 66.6666666667%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-10 {
        margin-left: 83.3333333333%
    }
    .col-sm-offset-11 {
        margin-left: 91.6666666667%
    }
    .col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left
    }
    .col-md-1 {
        width: 8.3333333333%
    }
    .col-md-2 {
        width: 16.6666666667%
    }
    .col-md-3 {
        width: 25%
    }
    .col-md-4 {
        width: 33.3333333333%
    }
    .col-md-5 {
        width: 41.6666666667%
    }
    .col-md-6 {
        width: 50%
    }
    .col-md-7 {
        width: 58.3333333333%
    }
    .col-md-8 {
        width: 66.6666666667%
    }
    .col-md-9 {
        width: 75%
    }
    .col-md-10 {
        width: 83.3333333333%
    }
    .col-md-11 {
        width: 91.6666666667%
    }
    .col-md-12 {
        width: 100%
    }
    .col-md-pull-0 {
        right: auto
    }
    .col-md-pull-1 {
        right: 8.3333333333%
    }
    .col-md-pull-2 {
        right: 16.6666666667%
    }
    .col-md-pull-3 {
        right: 25%
    }
    .col-md-pull-4 {
        right: 33.3333333333%
    }
    .col-md-pull-5 {
        right: 41.6666666667%
    }
    .col-md-pull-6 {
        right: 50%
    }
    .col-md-pull-7 {
        right: 58.3333333333%
    }
    .col-md-pull-8 {
        right: 66.6666666667%
    }
    .col-md-pull-9 {
        right: 75%
    }
    .col-md-pull-10 {
        right: 83.3333333333%
    }
    .col-md-pull-11 {
        right: 91.6666666667%
    }
    .col-md-pull-12 {
        right: 100%
    }
    .col-md-push-0 {
        left: auto
    }
    .col-md-push-1 {
        left: 8.3333333333%
    }
    .col-md-push-2 {
        left: 16.6666666667%
    }
    .col-md-push-3 {
        left: 25%
    }
    .col-md-push-4 {
        left: 33.3333333333%
    }
    .col-md-push-5 {
        left: 41.6666666667%
    }
    .col-md-push-6 {
        left: 50%
    }
    .col-md-push-7 {
        left: 58.3333333333%
    }
    .col-md-push-8 {
        left: 66.6666666667%
    }
    .col-md-push-9 {
        left: 75%
    }
    .col-md-push-10 {
        left: 83.3333333333%
    }
    .col-md-push-11 {
        left: 91.6666666667%
    }
    .col-md-push-12 {
        left: 100%
    }
    .col-md-offset-0 {
        margin-left: 0
    }
    .col-md-offset-1 {
        margin-left: 8.3333333333%
    }
    .col-md-offset-2 {
        margin-left: 16.6666666667%
    }
    .col-md-offset-3 {
        margin-left: 25%
    }
    .col-md-offset-4 {
        margin-left: 33.3333333333%
    }
    .col-md-offset-5 {
        margin-left: 41.6666666667%
    }
    .col-md-offset-6 {
        margin-left: 50%
    }
    .col-md-offset-7 {
        margin-left: 58.3333333333%
    }
    .col-md-offset-8 {
        margin-left: 66.6666666667%
    }
    .col-md-offset-9 {
        margin-left: 75%
    }
    .col-md-offset-10 {
        margin-left: 83.3333333333%
    }
    .col-md-offset-11 {
        margin-left: 91.6666666667%
    }
    .col-md-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left
    }
    .col-lg-1 {
        width: 8.3333333333%
    }
    .col-lg-2 {
        width: 16.6666666667%
    }
    .col-lg-3 {
        width: 25%
    }
    .col-lg-4 {
        width: 33.3333333333%
    }
    .col-lg-5 {
        width: 41.6666666667%
    }
    .col-lg-6 {
        width: 50%
    }
    .col-lg-7 {
        width: 58.3333333333%
    }
    .col-lg-8 {
        width: 66.6666666667%
    }
    .col-lg-9 {
        width: 75%
    }
    .col-lg-10 {
        width: 83.3333333333%
    }
    .col-lg-11 {
        width: 91.6666666667%
    }
    .col-lg-12 {
        width: 100%
    }
    .col-lg-pull-0 {
        right: auto
    }
    .col-lg-pull-1 {
        right: 8.3333333333%
    }
    .col-lg-pull-2 {
        right: 16.6666666667%
    }
    .col-lg-pull-3 {
        right: 25%
    }
    .col-lg-pull-4 {
        right: 33.3333333333%
    }
    .col-lg-pull-5 {
        right: 41.6666666667%
    }
    .col-lg-pull-6 {
        right: 50%
    }
    .col-lg-pull-7 {
        right: 58.3333333333%
    }
    .col-lg-pull-8 {
        right: 66.6666666667%
    }
    .col-lg-pull-9 {
        right: 75%
    }
    .col-lg-pull-10 {
        right: 83.3333333333%
    }
    .col-lg-pull-11 {
        right: 91.6666666667%
    }
    .col-lg-pull-12 {
        right: 100%
    }
    .col-lg-push-0 {
        left: auto
    }
    .col-lg-push-1 {
        left: 8.3333333333%
    }
    .col-lg-push-2 {
        left: 16.6666666667%
    }
    .col-lg-push-3 {
        left: 25%
    }
    .col-lg-push-4 {
        left: 33.3333333333%
    }
    .col-lg-push-5 {
        left: 41.6666666667%
    }
    .col-lg-push-6 {
        left: 50%
    }
    .col-lg-push-7 {
        left: 58.3333333333%
    }
    .col-lg-push-8 {
        left: 66.6666666667%
    }
    .col-lg-push-9 {
        left: 75%
    }
    .col-lg-push-10 {
        left: 83.3333333333%
    }
    .col-lg-push-11 {
        left: 91.6666666667%
    }
    .col-lg-push-12 {
        left: 100%
    }
    .col-lg-offset-0 {
        margin-left: 0
    }
    .col-lg-offset-1 {
        margin-left: 8.3333333333%
    }
    .col-lg-offset-2 {
        margin-left: 16.6666666667%
    }
    .col-lg-offset-3 {
        margin-left: 25%
    }
    .col-lg-offset-4 {
        margin-left: 33.3333333333%
    }
    .col-lg-offset-5 {
        margin-left: 41.6666666667%
    }
    .col-lg-offset-6 {
        margin-left: 50%
    }
    .col-lg-offset-7 {
        margin-left: 58.3333333333%
    }
    .col-lg-offset-8 {
        margin-left: 66.6666666667%
    }
    .col-lg-offset-9 {
        margin-left: 75%
    }
    .col-lg-offset-10 {
        margin-left: 83.3333333333%
    }
    .col-lg-offset-11 {
        margin-left: 91.6666666667%
    }
    .col-lg-offset-12 {
        margin-left: 100%
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #818181
}

caption,
th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
    border-top: 0
}

.table>tbody+tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
    padding: 5px
}

.table-bordered,
.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #ddd
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 2px
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column
}

table td[class*=col-],
table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell
}

.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active {
    background-color: #f5f5f5
}

.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr.active:hover>th,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover {
    background-color: #e8e8e8
}

.table>tbody>tr.success>td,
.table>tbody>tr.success>th,
.table>tbody>tr>td.success,
.table>tbody>tr>th.success,
.table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
.table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>thead>tr.success>th,
.table>thead>tr>td.success,
.table>thead>tr>th.success {
    background-color: #dff0d8
}

.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr.success:hover>th,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover {
    background-color: #d0e9c6
}

.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
    background-color: #d9edf7
}

.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr.info:hover>th,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover {
    background-color: #c4e3f3
}

.table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
.table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
.table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>thead>tr.warning>th,
.table>thead>tr>td.warning,
.table>thead>tr>th.warning {
    background-color: #fcf8e3
}

.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr.warning:hover>th,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover {
    background-color: #faf2cc
}

.table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
.table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
.table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>thead>tr.danger>th,
.table>thead>tr>td.danger,
.table>thead>tr>th.danger {
    background-color: #f2dede
}

.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr.danger:hover>th,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: .01%
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 13.5px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }
    .table-responsive>.table {
        margin-bottom: 0
    }
    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>td,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>thead>tr>th {
        white-space: nowrap
    }
    .table-responsive>.table-bordered {
        border: 0
    }
    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 0
    }
    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>thead>tr>th:last-child {
        border-right: 0
    }
    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th {
        border-bottom: 0
    }
}

fieldset {
    margin: 0;
    min-width: 0
}

fieldset,
legend {
    padding: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    margin-bottom: 18px;
    font-size: 19.5px;
    line-height: inherit;
    color: #3d3d3d;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

input[type=search] {
    box-sizing: border-box
}

input[type=checkbox],
input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple],
select[size] {
    height: auto
}

input[type=checkbox]:focus,
input[type=file]:focus,
input[type=radio]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    padding-top: 7px
}

.form-control,
output {
    display: block;
    font-size: 13px;
    line-height: 1.428571429;
    color: #5f5f5f
}

.form-control {
    width: 100%;
    height: 32px;
    padding: 6px 12px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control:focus {
    border-color: #65b32e;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(101, 179, 46, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #f8f8f8;
    opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type=date].form-control,
    input[type=datetime-local].form-control,
    input[type=month].form-control,
    input[type=time].form-control {
        line-height: 32px
    }
    .input-group-sm>.input-group-btn>input[type=date].btn,
    .input-group-sm>.input-group-btn>input[type=datetime-local].btn,
    .input-group-sm>.input-group-btn>input[type=month].btn,
    .input-group-sm>.input-group-btn>input[type=time].btn,
    .input-group-sm>input[type=date].form-control,
    .input-group-sm>input[type=date].input-group-addon,
    .input-group-sm>input[type=datetime-local].form-control,
    .input-group-sm>input[type=datetime-local].input-group-addon,
    .input-group-sm>input[type=month].form-control,
    .input-group-sm>input[type=month].input-group-addon,
    .input-group-sm>input[type=time].form-control,
    .input-group-sm>input[type=time].input-group-addon,
    .input-group-sm input[type=date],
    .input-group-sm input[type=datetime-local],
    .input-group-sm input[type=month],
    .input-group-sm input[type=time],
    input[type=date].input-sm,
    input[type=datetime-local].input-sm,
    input[type=month].input-sm,
    input[type=time].input-sm {
        line-height: 30px
    }
    .input-group-lg>.input-group-btn>input[type=date].btn,
    .input-group-lg>.input-group-btn>input[type=datetime-local].btn,
    .input-group-lg>.input-group-btn>input[type=month].btn,
    .input-group-lg>.input-group-btn>input[type=time].btn,
    .input-group-lg>input[type=date].form-control,
    .input-group-lg>input[type=date].input-group-addon,
    .input-group-lg>input[type=datetime-local].form-control,
    .input-group-lg>input[type=datetime-local].input-group-addon,
    .input-group-lg>input[type=month].form-control,
    .input-group-lg>input[type=month].input-group-addon,
    .input-group-lg>input[type=time].form-control,
    .input-group-lg>input[type=time].input-group-addon,
    .input-group-lg input[type=date],
    .input-group-lg input[type=datetime-local],
    .input-group-lg input[type=month],
    .input-group-lg input[type=time],
    input[type=date].input-lg,
    input[type=datetime-local].input-lg,
    input[type=month].input-lg,
    input[type=time].input-lg {
        line-height: 57px
    }
}

.form-group {
    margin-bottom: 15px
}

.checkbox,
.radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkbox label,
.radio label {
    min-height: 18px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.checkbox-inline input[type=checkbox],
.checkbox input[type=checkbox],
.radio-inline input[type=radio],
.radio input[type=radio] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px\9
}

.checkbox+.checkbox,
.radio+.radio {
    margin-top: -5px
}

.checkbox-inline,
.radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 10px
}

.checkbox-inline.disabled,
.checkbox.disabled label,
.radio-inline.disabled,
.radio.disabled label,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio-inline,
fieldset[disabled] .radio label,
fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 31px
}

.form-control-static.input-lg,
.form-control-static.input-sm,
.input-group-lg>.form-control-static.form-control,
.input-group-lg>.form-control-static.input-group-addon,
.input-group-lg>.input-group-btn>.form-control-static.btn,
.input-group-sm>.form-control-static.form-control,
.input-group-sm>.form-control-static.input-group-addon,
.input-group-sm>.input-group-btn>.form-control-static.btn {
    padding-left: 0;
    padding-right: 0
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn,
.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0
}

.input-group-sm>.input-group-btn>select.btn,
.input-group-sm>select.form-control,
.input-group-sm>select.input-group-addon,
select.input-sm {
    height: 30px;
    line-height: 30px
}

.input-group-sm>.input-group-btn>select[multiple].btn,
.input-group-sm>.input-group-btn>textarea.btn,
.input-group-sm>select[multiple].form-control,
.input-group-sm>select[multiple].input-group-addon,
.input-group-sm>textarea.form-control,
.input-group-sm>textarea.input-group-addon,
select[multiple].input-sm,
textarea.input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn,
.input-lg {
    height: 57px;
    padding: 10px 16px;
    font-size: 26px;
    line-height: 1.3333333;
    border-radius: 0
}

.input-group-lg>.input-group-btn>select.btn,
.input-group-lg>select.form-control,
.input-group-lg>select.input-group-addon,
select.input-lg {
    height: 57px;
    line-height: 57px
}

.input-group-lg>.input-group-btn>select[multiple].btn,
.input-group-lg>.input-group-btn>textarea.btn,
.input-group-lg>select[multiple].form-control,
.input-group-lg>select[multiple].input-group-addon,
.input-group-lg>textarea.form-control,
.input-group-lg>textarea.input-group-addon,
select[multiple].input-lg,
textarea.input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 57px;
    padding: 10px 16px;
    font-size: 26px;
    line-height: 1.3333333;
    border-radius: 0
}

.form-group-lg select.form-control {
    height: 57px;
    line-height: 57px
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 57px;
    min-height: 44px;
    padding: 11px 16px;
    font-size: 26px;
    line-height: 1.3333333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 40px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    pointer-events: none
}

.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-group-lg>.form-control+.form-control-feedback,
.input-group-lg>.input-group-addon+.form-control-feedback,
.input-group-lg>.input-group-btn>.btn+.form-control-feedback,
.input-lg+.form-control-feedback {
    width: 57px;
    height: 57px;
    line-height: 57px
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-group-sm>.form-control+.form-control-feedback,
.input-group-sm>.input-group-addon+.form-control-feedback,
.input-group-sm>.input-group-btn>.btn+.form-control-feedback,
.input-sm+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success.checkbox-inline label,
.has-success.checkbox label,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.radio-inline label,
.has-success.radio label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning.checkbox-inline label,
.has-warning.checkbox label,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.radio-inline label,
.has-warning.radio label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error.checkbox-inline label,
.has-error.checkbox label,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.radio-inline label,
.has-error.radio label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label~.form-control-feedback {
    top: 23px
}

.has-feedback label.sr-only~.form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #878787
}

@media (min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .form-inline .form-control-static {
        display: inline-block
    }
    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .form-inline .input-group .form-control,
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn {
        width: auto
    }
    .form-inline .input-group>.form-control {
        width: 100%
    }
    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }
    .form-inline .checkbox,
    .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .form-inline .checkbox label,
    .form-inline .radio label {
        padding-left: 0
    }
    .form-inline .checkbox input[type=checkbox],
    .form-inline .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .checkbox,
.form-horizontal .radio {
    min-height: 25px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

.form-horizontal .form-group:after,
.form-horizontal .form-group:before {
    content: " ";
    display: table
}

.form-horizontal .form-group:after {
    clear: both
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 26px
    }
}

@media (min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.428571429;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #333;
    text-decoration: none
}

.btn.active,
.btn:active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default.focus,
.btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default.active,
.btn-default:active,
.btn-default:hover,
.open>.btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.btn-default.dropdown-toggle.focus,
.open>.btn-default.dropdown-toggle:focus,
.open>.btn-default.dropdown-toggle:hover {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default.active,
.btn-default:active,
.open>.btn-default.dropdown-toggle {
    background-image: none
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #65b32e;
    border-color: #5a9f29
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #4e8a24;
    border-color: #20390f
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:hover,
.open>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #4e8a24;
    border-color: #3e6e1c
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover {
    color: #fff;
    background-color: #3e6e1c;
    border-color: #20390f
}

.btn-primary.active,
.btn-primary:active,
.open>.btn-primary.dropdown-toggle {
    background-image: none
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: #65b32e;
    border-color: #5a9f29
}

.btn-primary .badge {
    color: #65b32e;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success.focus,
.btn-success:focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success.active,
.btn-success:active,
.btn-success:hover,
.open>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open>.btn-success.dropdown-toggle.focus,
.open>.btn-success.dropdown-toggle:focus,
.open>.btn-success.dropdown-toggle:hover {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success.active,
.btn-success:active,
.open>.btn-success.dropdown-toggle {
    background-image: none
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info.focus,
.btn-info:focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info.active,
.btn-info:active,
.btn-info:hover,
.open>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open>.btn-info.dropdown-toggle.focus,
.open>.btn-info.dropdown-toggle:focus,
.open>.btn-info.dropdown-toggle:hover {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info.active,
.btn-info:active,
.open>.btn-info.dropdown-toggle {
    background-image: none
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning.focus,
.btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning.active,
.btn-warning:active,
.btn-warning:hover,
.open>.btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open>.btn-warning.dropdown-toggle.focus,
.open>.btn-warning.dropdown-toggle:focus,
.open>.btn-warning.dropdown-toggle:hover {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning.active,
.btn-warning:active,
.open>.btn-warning.dropdown-toggle {
    background-image: none
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger.focus,
.btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger.active,
.btn-danger:active,
.btn-danger:hover,
.open>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open>.btn-danger.dropdown-toggle.focus,
.open>.btn-danger.dropdown-toggle:focus,
.open>.btn-danger.dropdown-toggle:hover {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger.active,
.btn-danger:active,
.open>.btn-danger.dropdown-toggle {
    background-image: none
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #65b32e;
    font-weight: 400;
    border-radius: 0
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    border-color: transparent
}

.btn-link:focus,
.btn-link:hover {
    color: #43761e;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
    color: #818181;
    text-decoration: none
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 10px 16px;
    font-size: 26px;
    line-height: 1.3333333;
    border-radius: 2px
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px
}

.btn-group-xs>.btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: 5px
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown,
.dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 8px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.428571429;
    color: #3d3d3d;
    white-space: nowrap
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #65b32e
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #65b32e
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
    color: #818181
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open>.dropdown-menu {
    display: block
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.428571429;
    color: #818181;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9;
    content: ""
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }
    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    float: left
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 2
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar:after,
.btn-toolbar:before {
    content: " ";
    display: table
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
    margin-left: 5px
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group>.btn:first-child {
    margin-left: 0
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group>.btn-group {
    float: left
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group-lg.btn-group>.btn+.dropdown-toggle,
.btn-group>.btn-lg+.dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-group-lg>.btn .caret,
.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-group-lg>.btn .caret,
.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before {
    content: " ";
    display: table
}

.btn-group-vertical>.btn-group:after {
    clear: both
}

.btn-group-vertical>.btn-group>.btn {
    float: none
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified>.btn-group .btn {
    width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
[data-toggle=buttons]>.btn-group>.btn input[type=radio],
[data-toggle=buttons]>.btn input[type=checkbox],
[data-toggle=buttons]>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: #5f5f5f;
    text-align: center;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 0
}

.input-group-addon.input-sm,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 0
}

.input-group-addon.input-lg,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.input-group-addon.btn {
    padding: 10px 16px;
    font-size: 26px;
    border-radius: 0
}

.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio] {
    margin-top: 0
}

.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group .form-control:first-child {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group-addon:last-child,
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle,
.input-group .form-control:last-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    font-size: 0;
    white-space: nowrap
}

.input-group-btn,
.input-group-btn>.btn {
    position: relative
}

.input-group-btn>.btn+.btn {
    margin-left: -1px
}

.input-group-btn>.btn:active,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:hover {
    z-index: 2
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
    margin-right: -1px
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav:after,
.nav:before {
    content: " ";
    display: table
}

.nav:after {
    clear: both
}

.nav>li,
.nav>li>a {
    position: relative;
    display: block
}

.nav>li>a {
    padding: 10px 15px
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: #f8f8f8
}

.nav>li.disabled>a {
    color: #818181
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
    color: #818181;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #f8f8f8;
    border-color: #65b32e
}

.nav .nav-divider {
    height: 1px;
    margin: 8px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 0 0 0 0
}

.nav-tabs>li>a:hover {
    border-color: #f8f8f8 #f8f8f8 #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #5f5f5f;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-pills>li {
    float: left
}

.nav-pills>li>a {
    border-radius: 0
}

.nav-pills>li+li {
    margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #65b32e;
    background-color: transparent
}

.nav-stacked>li {
    float: none
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified,
.nav-tabs.nav-justified {
    width: 100%
}

.nav-justified>li,
.nav-tabs.nav-justified>li {
    float: none
}

.nav-justified>li>a,
.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .nav-justified>li,
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }
    .nav-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs-justified,
.nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a,
.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 0
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-tabs-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 0 0 0 0
    }
    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:focus,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:focus,
    .nav-tabs.nav-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 0;
    border: 1px solid transparent
}

.navbar:after,
.navbar:before {
    content: " ";
    display: table
}

.navbar:after {
    clear: both
}

@media (min-width:768px) {
    .navbar {
        border-radius: 0
    }
}

.navbar-header:after,
.navbar-header:before {
    content: " ";
    display: table
}

.navbar-header:after {
    clear: both
}

@media (min-width:768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse:after,
.navbar-collapse:before {
    content: " ";
    display: table
}

.navbar-collapse:after {
    clear: both
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }
    .navbar-collapse.collapse {
        display: block!important;
        height: auto!important;
        padding-bottom: 0;
        overflow: visible!important
    }
    .navbar-collapse.in {
        overflow-y: visible
    }
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width:768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width:768px) {
    .navbar-fixed-bottom,
    .navbar-fixed-top {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 16px 15px;
    font-size: 26px;
    line-height: 18px;
    height: 50px
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-brand>img {
    display: block
}

@media (min-width:768px) {
    .navbar>.container-fluid .navbar-brand,
    .navbar>.container .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

@media (min-width:768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 8px -15px
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 100px;
    line-height: 18px;
}

@media (max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 25px
    }
    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 18px
    }
    .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-nav .open .dropdown-menu>li>a:hover {
        background-image: none
    }
}

@media (min-width:768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }
    .navbar-nav>li {
        float: left
    }
    .navbar-nav>li>a {
        padding-top: 16px;
        padding-bottom: 16px
    }
}

.navbar-form {
    margin: 9px -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1), 0 1px 0 hsla(0, 0%, 100%, .1)
}

@media (min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .navbar-form .form-control-static {
        display: inline-block
    }
    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .navbar-form .input-group .form-control,
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn {
        width: auto
    }
    .navbar-form .input-group>.form-control {
        width: 100%
    }
    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .checkbox,
    .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .checkbox label,
    .navbar-form .radio label {
        padding-left: 0
    }
    .navbar-form .checkbox input[type=checkbox],
    .navbar-form .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }
    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width:768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 9px;
    margin-bottom: 9px
}

.btn-group-sm>.navbar-btn.btn,
.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.btn-group-xs>.navbar-btn.btn,
.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 16px;
    margin-bottom: 16px
}

@media (min-width:768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }
}

@media (min-width:768px) {
    .navbar-left {
        float: left!important
    }
    .navbar-right {
        float: right!important;
        margin-right: -15px
    }
    .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: transparent;
    border-color: transparent
}

.navbar-default .navbar-brand {
    color: #65b32e
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: #4e8a24;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav>li>a {
    color: #65b32e
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #65b32e
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #f8f8f8
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #f8f8f8
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #65b32e
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: transparent
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background-color: #65b32e;
    color: #fff
}

@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #65b32e
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: #65b32e
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #65b32e
}

.navbar-default .navbar-link:hover {
    color: #fff
}

.navbar-default .btn-link {
    color: #65b32e
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
    color: #fff
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #090909
}

.navbar-inverse .navbar-brand {
    color: #a7a7a7
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>li>a,
.navbar-inverse .navbar-text {
    color: #a7a7a7
}

.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #090909
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:focus,
.navbar-inverse .navbar-nav>.disabled>a:hover {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
    background-color: #090909;
    color: #fff
}

@media (max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #a7a7a7
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: transparent
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #fff;
        background-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #a7a7a7
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #a7a7a7
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 18px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 0
}

.breadcrumb>li {
    display: inline-block
}

.breadcrumb>li+li:before {
    content: "> ";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb>.active {
    color: #818181
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 18px 0;
    border-radius: 0
}

.pagination>li {
    display: inline
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.428571429;
    text-decoration: none;
    color: #65b32e;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #43761e;
    background-color: #f8f8f8;
    border-color: #ddd
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    background-color: #65b32e;
    border-color: #65b32e;
    cursor: default
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #818181;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 26px;
    line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.pager {
    padding-left: 0;
    margin: 18px 0;
    list-style: none;
    text-align: center
}

.pager:after,
.pager:before {
    content: " ";
    display: table
}

.pager:after {
    clear: both
}

.pager li {
    display: inline
}

.pager li>a,
.pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li>a:focus,
.pager li>a:hover {
    text-decoration: none;
    background-color: #f8f8f8
}

.pager .next>a,
.pager .next>span {
    float: right
}

.pager .previous>a,
.pager .previous>span {
    float: left
}

.pager .disabled>a,
.pager .disabled>a:focus,
.pager .disabled>a:hover,
.pager .disabled>span {
    color: #818181;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

a.label:focus,
a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label-default {
    background-color: #818181
}

.label-default[href]:focus,
.label-default[href]:hover {
    background-color: #686868
}

.label-primary {
    background-color: #65b32e
}

.label-primary[href]:focus,
.label-primary[href]:hover {
    background-color: #4e8a24
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:focus,
.label-success[href]:hover {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:focus,
.label-info[href]:hover {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:focus,
.label-warning[href]:hover {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:focus,
.label-danger[href]:hover {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #818181;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-group-xs>.btn .badge,
.btn-xs .badge {
    top: 0;
    padding: 1px 5px
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
    color: #65b32e;
    background-color: #fff
}

.list-group-item>.badge {
    float: right
}

.list-group-item>.badge+.badge {
    margin-right: 5px
}

.nav-pills>li>a>.badge {
    margin-left: 3px
}

a.badge:focus,
a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    background-color: #f8f8f8
}

.jumbotron,
.jumbotron .h1,
.jumbotron h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 200
}

.jumbotron>hr {
    border-top-color: #dfdfdf
}

.container-fluid .jumbotron,
.container .jumbotron {
    border-radius: 0;
    padding-left: 15px;
    padding-right: 15px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }
    .container-fluid .jumbotron,
    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }
    .jumbotron .h1,
    .jumbotron h1 {
        font-size: 59px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 18px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail>img,
.thumbnail a>img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto
}

.thumbnail .caption {
    padding: 9px;
    color: #474747
}

a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
    border-color: #65b32e
}

.alert {
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid transparent;
    border-radius: 0
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: 700
}

.alert>p,
.alert>ul {
    margin-bottom: 0
}

.alert>p+p {
    margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 18px;
    width: 80%;
    margin-bottom: 18px;
    background-color: #f5f5f5;
    border-radius: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    text-align: center;
    background-color: #65b32e;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    transition: width .6s ease
}

.progress-bar-striped,
.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-size: 40px 40px
}

.progress-bar.active,
.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media,
.media-body {
    zoom: 1;
    overflow: hidden
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right,
.media>.pull-right {
    padding-left: 10px
}

.media-left,
.media>.pull-left {
    padding-right: 10px
}

.media-body,
.media-left,
.media-right {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

a.list-group-item,
button.list-group-item {
    color: #777
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
    text-decoration: none;
    color: #777;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
    background-color: #f8f8f8;
    color: #818181;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
    color: #818181
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    z-index: 2;
    color: #000;
    background-color: #fff;
    border-color: #ddd
}

#redeem .redeem-calendar .col-7 .list-group-item.active .list-group-item-heading>.day,
#redeem .redeem-calendar .col-7 .list-group-item.active .list-group-item-heading>.miles,
#redeem .redeem-calendar .col-7 .list-group-item.active:focus .list-group-item-heading>.day,
#redeem .redeem-calendar .col-7 .list-group-item.active:focus .list-group-item-heading>.miles,
#redeem .redeem-calendar .col-7 .list-group-item.active:hover .list-group-item-heading>.day,
#redeem .redeem-calendar .col-7 .list-group-item.active:hover .list-group-item-heading>.miles,
.breadcrumb .list-group-item.active .list-group-item-heading>li,
.breadcrumb .list-group-item.active:focus .list-group-item-heading>li,
.breadcrumb .list-group-item.active:hover .list-group-item-heading>li,
.list-group-item.active #redeem .redeem-calendar .col-7 .list-group-item-heading>.day,
.list-group-item.active #redeem .redeem-calendar .col-7 .list-group-item-heading>.miles,
.list-group-item.active .breadcrumb .list-group-item-heading>li,
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:focus #redeem .redeem-calendar .col-7 .list-group-item-heading>.day,
.list-group-item.active:focus #redeem .redeem-calendar .col-7 .list-group-item-heading>.miles,
.list-group-item.active:focus .breadcrumb .list-group-item-heading>li,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active:hover #redeem .redeem-calendar .col-7 .list-group-item-heading>.day,
.list-group-item.active:hover #redeem .redeem-calendar .col-7 .list-group-item-heading>.miles,
.list-group-item.active:hover .breadcrumb .list-group-item-heading>li,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>small {
    color: inherit
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
    color: #fff
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 18px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
    padding: 15px
}

.panel-body:after,
.panel-body:before {
    content: " ";
    display: table
}

.panel-body:after {
    clear: both
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: -1px;
    border-top-left-radius: -1px
}

.panel-heading>.dropdown .dropdown-toggle,
.panel-title {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px
}

#redeem .redeem-calendar .col-7 .panel-title>.day,
#redeem .redeem-calendar .col-7 .panel-title>.day>a,
#redeem .redeem-calendar .col-7 .panel-title>.miles,
#redeem .redeem-calendar .col-7 .panel-title>.miles>a,
.breadcrumb .panel-title>li,
.breadcrumb .panel-title>li>a,
.panel-title>.small,
.panel-title>.small>a,
.panel-title>a,
.panel-title>small,
.panel-title>small>a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: -1px;
    border-bottom-left-radius: -1px
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: -1px;
    border-top-left-radius: -1px
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: -1px;
    border-bottom-left-radius: -1px
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.list-group+.panel-footer,
.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0
}

.panel>.panel-collapse>.table,
.panel>.table,
.panel>.table-responsive>.table {
    margin-bottom: 0
}

.panel>.panel-collapse>.table caption,
.panel>.table-responsive>.table caption,
.panel>.table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel>.table-responsive:first-child>.table:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child {
    border-top-right-radius: -1px;
    border-top-left-radius: -1px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
    border-top-left-radius: -1px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
    border-top-right-radius: -1px
}

.panel>.table-responsive:last-child>.table:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-right-radius: -1px;
    border-bottom-left-radius: -1px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: -1px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: -1px
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
    border-top: 1px solid #ddd
}

.panel>.table>tbody:first-child>tr:first-child td,
.panel>.table>tbody:first-child>tr:first-child th {
    border-top: 0
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
    border: 0
}

.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 0
}

.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 0
}

.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
    border-bottom: 0
}

.panel>.table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 18px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 0
}

.panel-group .panel+.panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default>.panel-heading {
    color: #3d3d3d;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd
}

.panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #3d3d3d
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #65b32e
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #65b32e;
    border-color: #65b32e
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #65b32e
}

.panel-primary>.panel-heading .badge {
    color: #65b32e;
    background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #65b32e
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #d6e9c6
}

.panel-success>.panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #bce8f1
}

.panel-info>.panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #faebcc
}

.panel-warning>.panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ebccd1
}

.panel-danger>.panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 0
}

.well-sm {
    padding: 9px;
    border-radius: 0
}

.close {
    float: right;
    font-size: 19.5px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal,
.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0);
    transform: translate(0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header:after,
.modal-header:before {
    content: " ";
    display: table
}

.modal-header:after {
    clear: both
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.428571429
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer:after,
.modal-footer:before {
    content: " ";
    display: table
}

.modal-footer:after {
    clear: both
}

.modal-footer .btn+.btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }
    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }
    .modal-sm {
        width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: Helvetica LT Std Roman;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.428571429;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    right: 5px
}

.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    left: 5px
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: Helvetica LT Std Roman;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.428571429;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 13px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: -1px -1px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover>.arrow,
.popover>.arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover>.arrow {
    border-width: 11px
}

.popover>.arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top>.arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    bottom: -11px
}

.popover.top>.arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25)
}

.popover.right>.arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom>.arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
    top: -11px
}

.popover.bottom>.arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left>.arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

.popover.left>.arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel,
.carousel-inner {
    position: relative
}

.carousel-inner {
    overflow: hidden;
    width: 100%
}

.carousel-inner>.item {
    display: none;
    position: relative;
    -webkit-transition: left .6s ease-in-out;
    transition: left .6s ease-in-out
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 1
}

@media (-webkit-transform-3d),
(transform-3d) {
    .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        transition: -webkit-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }
    .carousel-inner>.item.active.right,
    .carousel-inner>.item.next {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.active.left,
    .carousel-inner>.item.prev {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.active,
    .carousel-inner>.item.next.left,
    .carousel-inner>.item.prev.right {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        left: 0
    }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block
}

.carousel-inner>.active {
    left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner>.next {
    left: 100%
}

.carousel-inner>.prev {
    left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0
}

.carousel-inner>.active.left {
    left: -100%
}

.carousel-inner>.active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .15;
    filter: alpha(opacity=15);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: transparent
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, .0001));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001));
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001), rgba(0, 0, 0, .5));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5));
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1)
}

.carousel-control:focus,
.carousel-control:hover {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: "\2039"
}

.carousel-control .icon-next:before {
    content: "\203a"
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000\9;
    background-color: transparent
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width:768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px
    }
    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }
    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right!important
}

.pull-left {
    float: left!important
}

.hide {
    display: none!important
}

.show {
    display: block!important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none!important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-lg,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
    display: none!important
}

@media (max-width:767px) {
    .visible-xs {
        display: block!important
    }
    table.visible-xs {
        display: table!important
    }
    tr.visible-xs {
        display: table-row!important
    }
    td.visible-xs,
    th.visible-xs {
        display: table-cell!important
    }
}

@media (max-width:767px) {
    .visible-xs-block {
        display: block!important
    }
}

@media (max-width:767px) {
    .visible-xs-inline {
        display: inline!important
    }
}

@media (max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block!important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block!important
    }
    table.visible-sm {
        display: table!important
    }
    tr.visible-sm {
        display: table-row!important
    }
    td.visible-sm,
    th.visible-sm {
        display: table-cell!important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block!important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline!important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block!important
    }
    table.visible-md {
        display: table!important
    }
    tr.visible-md {
        display: table-row!important
    }
    td.visible-md,
    th.visible-md {
        display: table-cell!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block!important
    }
}

@media (min-width:1200px) {
    .visible-lg {
        display: block!important
    }
    table.visible-lg {
        display: table!important
    }
    tr.visible-lg {
        display: table-row!important
    }
    td.visible-lg,
    th.visible-lg {
        display: table-cell!important
    }
}

@media (min-width:1200px) {
    .visible-lg-block {
        display: block!important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline {
        display: inline!important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block!important
    }
}

@media (max-width:767px) {
    .hidden-xs {
        display: none!important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none!important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none!important
    }
}

@media (min-width:1200px) {
    .hidden-lg {
        display: none!important
    }
}

.visible-print {
    display: none!important
}

@media print {
    .visible-print {
        display: block!important
    }
    table.visible-print {
        display: table!important
    }
    tr.visible-print {
        display: table-row!important
    }
    td.visible-print,
    th.visible-print {
        display: table-cell!important
    }
}

.visible-print-block {
    display: none!important
}

@media print {
    .visible-print-block {
        display: block!important
    }
}

.visible-print-inline {
    display: none!important
}

@media print {
    .visible-print-inline {
        display: inline!important
    }
}

.visible-print-inline-block {
    display: none!important
}

@media print {
    .visible-print-inline-block {
        display: inline-block!important
    }
}

@media print {
    .hidden-print {
        display: none!important
    }
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-search--inline {
    float: left
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

.select2-results__option[aria-selected] {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
    display: none
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0)
}

.select2-hidden-accessible {
    border: 0!important;
    clip: rect(0 0 0 0)!important;
    height: 1px!important;
    margin: -1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    width: 1px!important
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888;
    border-width: 0 4px 5px
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    margin-top: 5px;
    margin-right: 10px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
    float: right
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #000;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: #fff
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, #fff 50%, #eee);
    background-image: linear-gradient(180deg, #fff 50%, #eee);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    margin-right: 10px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eee 50%, #ccc);
    background-image: linear-gradient(180deg, #eee 50%, #ccc);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888;
    border-width: 0 4px 5px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #fff, #eee 50%);
    background-image: linear-gradient(180deg, #fff 0, #eee 50%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, #fff);
    background-image: linear-gradient(180deg, #eee 50%, #fff);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin-right: 2px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none
}

.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
    border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.7.0) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format("truetype"), url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.3333333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.2857142857em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.1428571429em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.1428571429em;
    width: 2.1428571429em;
    top: .1428571429em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.8571428571em
}

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: ""
}

.fa-music:before {
    content: ""
}

.fa-search:before {
    content: ""
}

.fa-envelope-o:before {
    content: ""
}

.fa-heart:before {
    content: ""
}

.fa-star:before {
    content: ""
}

.fa-star-o:before {
    content: ""
}

.fa-user:before {
    content: ""
}

.fa-film:before {
    content: ""
}

.fa-th-large:before {
    content: ""
}

.fa-th:before {
    content: ""
}

.fa-th-list:before {
    content: ""
}

.fa-check:before {
    content: ""
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: ""
}

.fa-search-plus:before {
    content: ""
}

.fa-search-minus:before {
    content: ""
}

.fa-power-off:before {
    content: ""
}

.fa-signal:before {
    content: ""
}

.fa-cog:before,
.fa-gear:before {
    content: ""
}

.fa-trash-o:before {
    content: ""
}

.fa-home:before {
    content: ""
}

.fa-file-o:before {
    content: ""
}

.fa-clock-o:before {
    content: ""
}

.fa-road:before {
    content: ""
}

.fa-download:before {
    content: ""
}

.fa-arrow-circle-o-down:before {
    content: ""
}

.fa-arrow-circle-o-up:before {
    content: ""
}

.fa-inbox:before {
    content: ""
}

.fa-play-circle-o:before {
    content: ""
}

.fa-repeat:before,
.fa-rotate-right:before {
    content: ""
}

.fa-refresh:before {
    content: ""
}

.fa-list-alt:before {
    content: ""
}

.fa-lock:before {
    content: ""
}

.fa-flag:before {
    content: ""
}

.fa-headphones:before {
    content: ""
}

.fa-volume-off:before {
    content: ""
}

.fa-volume-down:before {
    content: ""
}

.fa-volume-up:before {
    content: ""
}

.fa-qrcode:before {
    content: ""
}

.fa-barcode:before {
    content: ""
}

.fa-tag:before {
    content: ""
}

.fa-tags:before {
    content: ""
}

.fa-book:before {
    content: ""
}

.fa-bookmark:before {
    content: ""
}

.fa-print:before {
    content: ""
}

.fa-camera:before {
    content: ""
}

.fa-font:before {
    content: ""
}

.fa-bold:before {
    content: ""
}

.fa-italic:before {
    content: ""
}

.fa-text-height:before {
    content: ""
}

.fa-text-width:before {
    content: ""
}

.fa-align-left:before {
    content: ""
}

.fa-align-center:before {
    content: ""
}

.fa-align-right:before {
    content: ""
}

.fa-align-justify:before {
    content: ""
}

.fa-list:before {
    content: ""
}

.fa-dedent:before,
.fa-outdent:before {
    content: ""
}

.fa-indent:before {
    content: ""
}

.fa-video-camera:before {
    content: ""
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
    content: ""
}

.fa-pencil:before {
    content: ""
}

.fa-map-marker:before {
    content: ""
}

.fa-adjust:before {
    content: ""
}

.fa-tint:before {
    content: ""
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: ""
}

.fa-share-square-o:before {
    content: ""
}

.fa-check-square-o:before {
    content: ""
}

.fa-arrows:before {
    content: ""
}

.fa-step-backward:before {
    content: ""
}

.fa-fast-backward:before {
    content: ""
}

.fa-backward:before {
    content: ""
}

.fa-play:before {
    content: ""
}

.fa-pause:before {
    content: ""
}

.fa-stop:before {
    content: ""
}

.fa-forward:before {
    content: ""
}

.fa-fast-forward:before {
    content: ""
}

.fa-step-forward:before {
    content: ""
}

.fa-eject:before {
    content: ""
}

.fa-chevron-left:before {
    content: ""
}

.fa-chevron-right:before {
    content: ""
}

.fa-plus-circle:before {
    content: ""
}

.fa-minus-circle:before {
    content: ""
}

.fa-times-circle:before {
    content: ""
}

.fa-check-circle:before {
    content: ""
}

.fa-question-circle:before {
    content: ""
}

.fa-info-circle:before {
    content: ""
}

.fa-crosshairs:before {
    content: ""
}

.fa-times-circle-o:before {
    content: ""
}

.fa-check-circle-o:before {
    content: ""
}

.fa-ban:before {
    content: ""
}

.fa-arrow-left:before {
    content: ""
}

.fa-arrow-right:before {
    content: ""
}

.fa-arrow-up:before {
    content: ""
}

.fa-arrow-down:before {
    content: ""
}

.fa-mail-forward:before,
.fa-share:before {
    content: ""
}

.fa-expand:before {
    content: ""
}

.fa-compress:before {
    content: ""
}

.fa-plus:before {
    content: ""
}

.fa-minus:before {
    content: ""
}

.fa-asterisk:before {
    content: ""
}

.fa-exclamation-circle:before {
    content: ""
}

.fa-gift:before {
    content: ""
}

.fa-leaf:before {
    content: ""
}

.fa-fire:before {
    content: ""
}

.fa-eye:before {
    content: ""
}

.fa-eye-slash:before {
    content: ""
}

.fa-exclamation-triangle:before,
.fa-warning:before {
    content: ""
}

.fa-plane:before {
    content: ""
}

.fa-calendar:before {
    content: ""
}

.fa-random:before {
    content: ""
}

.fa-comment:before {
    content: ""
}

.fa-magnet:before {
    content: ""
}

.fa-chevron-up:before {
    content: ""
}

.fa-chevron-down:before {
    content: ""
}

.fa-retweet:before {
    content: ""
}

.fa-shopping-cart:before {
    content: ""
}

.fa-folder:before {
    content: ""
}

.fa-folder-open:before {
    content: ""
}

.fa-arrows-v:before {
    content: ""
}

.fa-arrows-h:before {
    content: ""
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: ""
}

.fa-twitter-square:before {
    content: ""
}

.fa-facebook-square:before {
    content: ""
}

.fa-camera-retro:before {
    content: ""
}

.fa-key:before {
    content: ""
}

.fa-cogs:before,
.fa-gears:before {
    content: ""
}

.fa-comments:before {
    content: ""
}

.fa-thumbs-o-up:before {
    content: ""
}

.fa-thumbs-o-down:before {
    content: ""
}

.fa-star-half:before {
    content: ""
}

.fa-heart-o:before {
    content: ""
}

.fa-sign-out:before {
    content: ""
}

.fa-linkedin-square:before {
    content: ""
}

.fa-thumb-tack:before {
    content: ""
}

.fa-external-link:before {
    content: ""
}

.fa-sign-in:before {
    content: ""
}

.fa-trophy:before {
    content: ""
}

.fa-github-square:before {
    content: ""
}

.fa-upload:before {
    content: ""
}

.fa-lemon-o:before {
    content: ""
}

.fa-phone:before {
    content: ""
}

.fa-square-o:before {
    content: ""
}

.fa-bookmark-o:before {
    content: ""
}

.fa-phone-square:before {
    content: ""
}

.fa-twitter:before {
    content: ""
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: ""
}

.fa-github:before {
    content: ""
}

.fa-unlock:before {
    content: ""
}

.fa-credit-card:before {
    content: ""
}

.fa-feed:before,
.fa-rss:before {
    content: ""
}

.fa-hdd-o:before {
    content: ""
}

.fa-bullhorn:before {
    content: ""
}

.fa-bell:before {
    content: ""
}

.fa-certificate:before {
    content: ""
}

.fa-hand-o-right:before {
    content: ""
}

.fa-hand-o-left:before {
    content: ""
}

.fa-hand-o-up:before {
    content: ""
}

.fa-hand-o-down:before {
    content: ""
}

.fa-arrow-circle-left:before {
    content: ""
}

.fa-arrow-circle-right:before {
    content: ""
}

.fa-arrow-circle-up:before {
    content: ""
}

.fa-arrow-circle-down:before {
    content: ""
}

.fa-globe:before {
    content: ""
}

.fa-wrench:before {
    content: ""
}

.fa-tasks:before {
    content: ""
}

.fa-filter:before {
    content: ""
}

.fa-briefcase:before {
    content: ""
}

.fa-arrows-alt:before {
    content: ""
}

.fa-group:before,
.fa-users:before {
    content: ""
}

.fa-chain:before,
.fa-link:before {
    content: ""
}

.fa-cloud:before {
    content: ""
}

.fa-flask:before {
    content: ""
}

.fa-cut:before,
.fa-scissors:before {
    content: ""
}

.fa-copy:before,
.fa-files-o:before {
    content: ""
}

.fa-paperclip:before {
    content: ""
}

.fa-floppy-o:before,
.fa-save:before {
    content: ""
}

.fa-square:before {
    content: ""
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
    content: ""
}

.fa-list-ul:before {
    content: ""
}

.fa-list-ol:before {
    content: ""
}

.fa-strikethrough:before {
    content: ""
}

.fa-underline:before {
    content: ""
}

.fa-table:before {
    content: ""
}

.fa-magic:before {
    content: ""
}

.fa-truck:before {
    content: ""
}

.fa-pinterest:before {
    content: ""
}

.fa-pinterest-square:before {
    content: ""
}

.fa-google-plus-square:before {
    content: ""
}

.fa-google-plus:before {
    content: ""
}

.fa-money:before {
    content: ""
}

.fa-caret-down:before {
    content: ""
}

.fa-caret-up:before {
    content: ""
}

.fa-caret-left:before {
    content: ""
}

.fa-caret-right:before {
    content: ""
}

.fa-columns:before {
    content: ""
}

.fa-sort:before,
.fa-unsorted:before {
    content: ""
}

.fa-sort-desc:before,
.fa-sort-down:before {
    content: ""
}

.fa-sort-asc:before,
.fa-sort-up:before {
    content: ""
}

.fa-envelope:before {
    content: ""
}

.fa-linkedin:before {
    content: ""
}

.fa-rotate-left:before,
.fa-undo:before {
    content: ""
}

.fa-gavel:before,
.fa-legal:before {
    content: ""
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: ""
}

.fa-comment-o:before {
    content: ""
}

.fa-comments-o:before {
    content: ""
}

.fa-bolt:before,
.fa-flash:before {
    content: ""
}

.fa-sitemap:before {
    content: ""
}

.fa-umbrella:before {
    content: ""
}

.fa-clipboard:before,
.fa-paste:before {
    content: ""
}

.fa-lightbulb-o:before {
    content: ""
}

.fa-exchange:before {
    content: ""
}

.fa-cloud-download:before {
    content: ""
}

.fa-cloud-upload:before {
    content: ""
}

.fa-user-md:before {
    content: ""
}

.fa-stethoscope:before {
    content: ""
}

.fa-suitcase:before {
    content: ""
}

.fa-bell-o:before {
    content: ""
}

.fa-coffee:before {
    content: ""
}

.fa-cutlery:before {
    content: ""
}

.fa-file-text-o:before {
    content: ""
}

.fa-building-o:before {
    content: ""
}

.fa-hospital-o:before {
    content: ""
}

.fa-ambulance:before {
    content: ""
}

.fa-medkit:before {
    content: ""
}

.fa-fighter-jet:before {
    content: ""
}

.fa-beer:before {
    content: ""
}

.fa-h-square:before {
    content: ""
}

.fa-plus-square:before {
    content: ""
}

.fa-angle-double-left:before {
    content: ""
}

.fa-angle-double-right:before {
    content: ""
}

.fa-angle-double-up:before {
    content: ""
}

.fa-angle-double-down:before {
    content: ""
}

.fa-angle-left:before {
    content: ""
}

.fa-angle-right:before {
    content: ""
}

.fa-angle-up:before {
    content: ""
}

.fa-angle-down:before {
    content: ""
}

.fa-desktop:before {
    content: ""
}

.fa-laptop:before {
    content: ""
}

.fa-tablet:before {
    content: ""
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: ""
}

.fa-circle-o:before {
    content: ""
}

.fa-quote-left:before {
    content: ""
}

.fa-quote-right:before {
    content: ""
}

.fa-spinner:before {
    content: ""
}

.fa-circle:before {
    content: ""
}

.fa-mail-reply:before,
.fa-reply:before {
    content: ""
}

.fa-github-alt:before {
    content: ""
}

.fa-folder-o:before {
    content: ""
}

.fa-folder-open-o:before {
    content: ""
}

.fa-smile-o:before {
    content: ""
}

.fa-frown-o:before {
    content: ""
}

.fa-meh-o:before {
    content: ""
}

.fa-gamepad:before {
    content: ""
}

.fa-keyboard-o:before {
    content: ""
}

.fa-flag-o:before {
    content: ""
}

.fa-flag-checkered:before {
    content: ""
}

.fa-terminal:before {
    content: ""
}

.fa-code:before {
    content: ""
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: ""
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: ""
}

.fa-location-arrow:before {
    content: ""
}

.fa-crop:before {
    content: ""
}

.fa-code-fork:before {
    content: ""
}

.fa-chain-broken:before,
.fa-unlink:before {
    content: ""
}

.fa-question:before {
    content: ""
}

.fa-info:before {
    content: ""
}

.fa-exclamation:before {
    content: ""
}

.fa-superscript:before {
    content: ""
}

.fa-subscript:before {
    content: ""
}

.fa-eraser:before {
    content: ""
}

.fa-puzzle-piece:before {
    content: ""
}

.fa-microphone:before {
    content: ""
}

.fa-microphone-slash:before {
    content: ""
}

.fa-shield:before {
    content: ""
}

.fa-calendar-o:before {
    content: ""
}

.fa-fire-extinguisher:before {
    content: ""
}

.fa-rocket:before {
    content: ""
}

.fa-maxcdn:before {
    content: ""
}

.fa-chevron-circle-left:before {
    content: ""
}

.fa-chevron-circle-right:before {
    content: ""
}

.fa-chevron-circle-up:before {
    content: ""
}

.fa-chevron-circle-down:before {
    content: ""
}

.fa-html5:before {
    content: ""
}

.fa-css3:before {
    content: ""
}

.fa-anchor:before {
    content: ""
}

.fa-unlock-alt:before {
    content: ""
}

.fa-bullseye:before {
    content: ""
}

.fa-ellipsis-h:before {
    content: ""
}

.fa-ellipsis-v:before {
    content: ""
}

.fa-rss-square:before {
    content: ""
}

.fa-play-circle:before {
    content: ""
}

.fa-ticket:before {
    content: ""
}

.fa-minus-square:before {
    content: ""
}

.fa-minus-square-o:before {
    content: ""
}

.fa-level-up:before {
    content: ""
}

.fa-level-down:before {
    content: ""
}

.fa-check-square:before {
    content: ""
}

.fa-pencil-square:before {
    content: ""
}

.fa-external-link-square:before {
    content: ""
}

.fa-share-square:before {
    content: ""
}

.fa-compass:before {
    content: ""
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
    content: ""
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
    content: ""
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
    content: ""
}

.fa-eur:before,
.fa-euro:before {
    content: ""
}

.fa-gbp:before {
    content: ""
}

.fa-dollar:before,
.fa-usd:before {
    content: ""
}

.fa-inr:before,
.fa-rupee:before {
    content: ""
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
    content: ""
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
    content: ""
}

.fa-krw:before,
.fa-won:before {
    content: ""
}

.fa-bitcoin:before,
.fa-btc:before {
    content: ""
}

.fa-file:before {
    content: ""
}

.fa-file-text:before {
    content: ""
}

.fa-sort-alpha-asc:before {
    content: ""
}

.fa-sort-alpha-desc:before {
    content: ""
}

.fa-sort-amount-asc:before {
    content: ""
}

.fa-sort-amount-desc:before {
    content: ""
}

.fa-sort-numeric-asc:before {
    content: ""
}

.fa-sort-numeric-desc:before {
    content: ""
}

.fa-thumbs-up:before {
    content: ""
}

.fa-thumbs-down:before {
    content: ""
}

.fa-youtube-square:before {
    content: ""
}

.fa-youtube:before {
    content: ""
}

.fa-xing:before {
    content: ""
}

.fa-xing-square:before {
    content: ""
}

.fa-youtube-play:before {
    content: ""
}

.fa-dropbox:before {
    content: ""
}

.fa-stack-overflow:before {
    content: ""
}

.fa-instagram:before {
    content: ""
}

.fa-flickr:before {
    content: ""
}

.fa-adn:before {
    content: ""
}

.fa-bitbucket:before {
    content: ""
}

.fa-bitbucket-square:before {
    content: ""
}

.fa-tumblr:before {
    content: ""
}

.fa-tumblr-square:before {
    content: ""
}

.fa-long-arrow-down:before {
    content: ""
}

.fa-long-arrow-up:before {
    content: ""
}

.fa-long-arrow-left:before {
    content: ""
}

.fa-long-arrow-right:before {
    content: ""
}

.fa-apple:before {
    content: ""
}

.fa-windows:before {
    content: ""
}

.fa-android:before {
    content: ""
}

.fa-linux:before {
    content: ""
}

.fa-dribbble:before {
    content: ""
}

.fa-skype:before {
    content: ""
}

.fa-foursquare:before {
    content: ""
}

.fa-trello:before {
    content: ""
}

.fa-female:before {
    content: ""
}

.fa-male:before {
    content: ""
}

.fa-gittip:before,
.fa-gratipay:before {
    content: ""
}

.fa-sun-o:before {
    content: ""
}

.fa-moon-o:before {
    content: ""
}

.fa-archive:before {
    content: ""
}

.fa-bug:before {
    content: ""
}

.fa-vk:before {
    content: ""
}

.fa-weibo:before {
    content: ""
}

.fa-renren:before {
    content: ""
}

.fa-pagelines:before {
    content: ""
}

.fa-stack-exchange:before {
    content: ""
}

.fa-arrow-circle-o-right:before {
    content: ""
}

.fa-arrow-circle-o-left:before {
    content: ""
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
    content: ""
}

.fa-dot-circle-o:before {
    content: ""
}

.fa-wheelchair:before {
    content: ""
}

.fa-vimeo-square:before {
    content: ""
}

.fa-try:before,
.fa-turkish-lira:before {
    content: ""
}

.fa-plus-square-o:before {
    content: ""
}

.fa-space-shuttle:before {
    content: ""
}

.fa-slack:before {
    content: ""
}

.fa-envelope-square:before {
    content: ""
}

.fa-wordpress:before {
    content: ""
}

.fa-openid:before {
    content: ""
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
    content: ""
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
    content: ""
}

.fa-yahoo:before {
    content: ""
}

.fa-google:before {
    content: ""
}

.fa-reddit:before {
    content: ""
}

.fa-reddit-square:before {
    content: ""
}

.fa-stumbleupon-circle:before {
    content: ""
}

.fa-stumbleupon:before {
    content: ""
}

.fa-delicious:before {
    content: ""
}

.fa-digg:before {
    content: ""
}

.fa-pied-piper-pp:before {
    content: ""
}

.fa-pied-piper-alt:before {
    content: ""
}

.fa-drupal:before {
    content: ""
}

.fa-joomla:before {
    content: ""
}

.fa-language:before {
    content: ""
}

.fa-fax:before {
    content: ""
}

.fa-building:before {
    content: ""
}

.fa-child:before {
    content: ""
}

.fa-paw:before {
    content: ""
}

.fa-spoon:before {
    content: ""
}

.fa-cube:before {
    content: ""
}

.fa-cubes:before {
    content: ""
}

.fa-behance:before {
    content: ""
}

.fa-behance-square:before {
    content: ""
}

.fa-steam:before {
    content: ""
}

.fa-steam-square:before {
    content: ""
}

.fa-recycle:before {
    content: ""
}

.fa-automobile:before,
.fa-car:before {
    content: ""
}

.fa-cab:before,
.fa-taxi:before {
    content: ""
}

.fa-tree:before {
    content: ""
}

.fa-spotify:before {
    content: ""
}

.fa-deviantart:before {
    content: ""
}

.fa-soundcloud:before {
    content: ""
}

.fa-database:before {
    content: ""
}

.fa-file-pdf-o:before {
    content: ""
}

.fa-file-word-o:before {
    content: ""
}

.fa-file-excel-o:before {
    content: ""
}

.fa-file-powerpoint-o:before {
    content: ""
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
    content: ""
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
    content: ""
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
    content: ""
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: ""
}

.fa-file-code-o:before {
    content: ""
}

.fa-vine:before {
    content: ""
}

.fa-codepen:before {
    content: ""
}

.fa-jsfiddle:before {
    content: ""
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
    content: ""
}

.fa-circle-o-notch:before {
    content: ""
}

.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
    content: ""
}

.fa-empire:before,
.fa-ge:before {
    content: ""
}

.fa-git-square:before {
    content: ""
}

.fa-git:before {
    content: ""
}

.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
    content: ""
}

.fa-tencent-weibo:before {
    content: ""
}

.fa-qq:before {
    content: ""
}

.fa-wechat:before,
.fa-weixin:before {
    content: ""
}

.fa-paper-plane:before,
.fa-send:before {
    content: ""
}

.fa-paper-plane-o:before,
.fa-send-o:before {
    content: ""
}

.fa-history:before {
    content: ""
}

.fa-circle-thin:before {
    content: ""
}

.fa-header:before {
    content: ""
}

.fa-paragraph:before {
    content: ""
}

.fa-sliders:before {
    content: ""
}

.fa-share-alt:before {
    content: ""
}

.fa-share-alt-square:before {
    content: ""
}

.fa-bomb:before {
    content: ""
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
    content: ""
}

.fa-tty:before {
    content: ""
}

.fa-binoculars:before {
    content: ""
}

.fa-plug:before {
    content: ""
}

.fa-slideshare:before {
    content: ""
}

.fa-twitch:before {
    content: ""
}

.fa-yelp:before {
    content: ""
}

.fa-newspaper-o:before {
    content: ""
}

.fa-wifi:before {
    content: ""
}

.fa-calculator:before {
    content: ""
}

.fa-paypal:before {
    content: ""
}

.fa-google-wallet:before {
    content: ""
}

.fa-cc-visa:before {
    content: ""
}

.fa-cc-mastercard:before {
    content: ""
}

.fa-cc-discover:before {
    content: ""
}

.fa-cc-amex:before {
    content: ""
}

.fa-cc-paypal:before {
    content: ""
}

.fa-cc-stripe:before {
    content: ""
}

.fa-bell-slash:before {
    content: ""
}

.fa-bell-slash-o:before {
    content: ""
}

.fa-trash:before {
    content: ""
}

.fa-copyright:before {
    content: ""
}

.fa-at:before {
    content: ""
}

.fa-eyedropper:before {
    content: ""
}

.fa-paint-brush:before {
    content: ""
}

.fa-birthday-cake:before {
    content: ""
}

.fa-area-chart:before {
    content: ""
}

.fa-pie-chart:before {
    content: ""
}

.fa-line-chart:before {
    content: ""
}

.fa-lastfm:before {
    content: ""
}

.fa-lastfm-square:before {
    content: ""
}

.fa-toggle-off:before {
    content: ""
}

.fa-toggle-on:before {
    content: ""
}

.fa-bicycle:before {
    content: ""
}

.fa-bus:before {
    content: ""
}

.fa-ioxhost:before {
    content: ""
}

.fa-angellist:before {
    content: ""
}

.fa-cc:before {
    content: ""
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
    content: ""
}

.fa-meanpath:before {
    content: ""
}

.fa-buysellads:before {
    content: ""
}

.fa-connectdevelop:before {
    content: ""
}

.fa-dashcube:before {
    content: ""
}

.fa-forumbee:before {
    content: ""
}

.fa-leanpub:before {
    content: ""
}

.fa-sellsy:before {
    content: ""
}

.fa-shirtsinbulk:before {
    content: ""
}

.fa-simplybuilt:before {
    content: ""
}

.fa-skyatlas:before {
    content: ""
}

.fa-cart-plus:before {
    content: ""
}

.fa-cart-arrow-down:before {
    content: ""
}

.fa-diamond:before {
    content: ""
}

.fa-ship:before {
    content: ""
}

.fa-user-secret:before {
    content: ""
}

.fa-motorcycle:before {
    content: ""
}

.fa-street-view:before {
    content: ""
}

.fa-heartbeat:before {
    content: ""
}

.fa-venus:before {
    content: ""
}

.fa-mars:before {
    content: ""
}

.fa-mercury:before {
    content: ""
}

.fa-intersex:before,
.fa-transgender:before {
    content: ""
}

.fa-transgender-alt:before {
    content: ""
}

.fa-venus-double:before {
    content: ""
}

.fa-mars-double:before {
    content: ""
}

.fa-venus-mars:before {
    content: ""
}

.fa-mars-stroke:before {
    content: ""
}

.fa-mars-stroke-v:before {
    content: ""
}

.fa-mars-stroke-h:before {
    content: ""
}

.fa-neuter:before {
    content: ""
}

.fa-genderless:before {
    content: ""
}

.fa-facebook-official:before {
    content: ""
}

.fa-pinterest-p:before {
    content: ""
}

.fa-whatsapp:before {
    content: ""
}

.fa-server:before {
    content: ""
}

.fa-user-plus:before {
    content: ""
}

.fa-user-times:before {
    content: ""
}

.fa-bed:before,
.fa-hotel:before {
    content: ""
}

.fa-viacoin:before {
    content: ""
}

.fa-train:before {
    content: ""
}

.fa-subway:before {
    content: ""
}

.fa-medium:before {
    content: ""
}

.fa-y-combinator:before,
.fa-yc:before {
    content: ""
}

.fa-optin-monster:before {
    content: ""
}

.fa-opencart:before {
    content: ""
}

.fa-expeditedssl:before {
    content: ""
}

.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
    content: ""
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: ""
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: ""
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: ""
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: ""
}

.fa-mouse-pointer:before {
    content: ""
}

.fa-i-cursor:before {
    content: ""
}

.fa-object-group:before {
    content: ""
}

.fa-object-ungroup:before {
    content: ""
}

.fa-sticky-note:before {
    content: ""
}

.fa-sticky-note-o:before {
    content: ""
}

.fa-cc-jcb:before {
    content: ""
}

.fa-cc-diners-club:before {
    content: ""
}

.fa-clone:before {
    content: ""
}

.fa-balance-scale:before {
    content: ""
}

.fa-hourglass-o:before {
    content: ""
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: ""
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: ""
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: ""
}

.fa-hourglass:before {
    content: ""
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: ""
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
    content: ""
}

.fa-hand-scissors-o:before {
    content: ""
}

.fa-hand-lizard-o:before {
    content: ""
}

.fa-hand-spock-o:before {
    content: ""
}

.fa-hand-pointer-o:before {
    content: ""
}

.fa-hand-peace-o:before {
    content: ""
}

.fa-trademark:before {
    content: ""
}

.fa-registered:before {
    content: ""
}

.fa-creative-commons:before {
    content: ""
}

.fa-gg:before {
    content: ""
}

.fa-gg-circle:before {
    content: ""
}

.fa-tripadvisor:before {
    content: ""
}

.fa-odnoklassniki:before {
    content: ""
}

.fa-odnoklassniki-square:before {
    content: ""
}

.fa-get-pocket:before {
    content: ""
}

.fa-wikipedia-w:before {
    content: ""
}

.fa-safari:before {
    content: ""
}

.fa-chrome:before {
    content: ""
}

.fa-firefox:before {
    content: ""
}

.fa-opera:before {
    content: ""
}

.fa-internet-explorer:before {
    content: ""
}

.fa-television:before,
.fa-tv:before {
    content: ""
}

.fa-contao:before {
    content: ""
}

.fa-500px:before {
    content: ""
}

.fa-amazon:before {
    content: ""
}

.fa-calendar-plus-o:before {
    content: ""
}

.fa-calendar-minus-o:before {
    content: ""
}

.fa-calendar-times-o:before {
    content: ""
}

.fa-calendar-check-o:before {
    content: ""
}

.fa-industry:before {
    content: ""
}

.fa-map-pin:before {
    content: ""
}

.fa-map-signs:before {
    content: ""
}

.fa-map-o:before {
    content: ""
}

.fa-map:before {
    content: ""
}

.fa-commenting:before {
    content: ""
}

.fa-commenting-o:before {
    content: ""
}

.fa-houzz:before {
    content: ""
}

.fa-vimeo:before {
    content: ""
}

.fa-black-tie:before {
    content: ""
}

.fa-fonticons:before {
    content: ""
}

.fa-reddit-alien:before {
    content: ""
}

.fa-edge:before {
    content: ""
}

.fa-credit-card-alt:before {
    content: ""
}

.fa-codiepie:before {
    content: ""
}

.fa-modx:before {
    content: ""
}

.fa-fort-awesome:before {
    content: ""
}

.fa-usb:before {
    content: ""
}

.fa-product-hunt:before {
    content: ""
}

.fa-mixcloud:before {
    content: ""
}

.fa-scribd:before {
    content: ""
}

.fa-pause-circle:before {
    content: ""
}

.fa-pause-circle-o:before {
    content: ""
}

.fa-stop-circle:before {
    content: ""
}

.fa-stop-circle-o:before {
    content: ""
}

.fa-shopping-bag:before {
    content: ""
}

.fa-shopping-basket:before {
    content: ""
}

.fa-hashtag:before {
    content: ""
}

.fa-bluetooth:before {
    content: ""
}

.fa-bluetooth-b:before {
    content: ""
}

.fa-percent:before {
    content: ""
}

.fa-gitlab:before {
    content: ""
}

.fa-wpbeginner:before {
    content: ""
}

.fa-wpforms:before {
    content: ""
}

.fa-envira:before {
    content: ""
}

.fa-universal-access:before {
    content: ""
}

.fa-wheelchair-alt:before {
    content: ""
}

.fa-question-circle-o:before {
    content: ""
}

.fa-blind:before {
    content: ""
}

.fa-audio-description:before {
    content: ""
}

.fa-volume-control-phone:before {
    content: ""
}

.fa-braille:before {
    content: ""
}

.fa-assistive-listening-systems:before {
    content: ""
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
    content: ""
}

.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
    content: ""
}

.fa-glide:before {
    content: ""
}

.fa-glide-g:before {
    content: ""
}

.fa-sign-language:before,
.fa-signing:before {
    content: ""
}

.fa-low-vision:before {
    content: ""
}

.fa-viadeo:before {
    content: ""
}

.fa-viadeo-square:before {
    content: ""
}

.fa-snapchat:before {
    content: ""
}

.fa-snapchat-ghost:before {
    content: ""
}

.fa-snapchat-square:before {
    content: ""
}

.fa-pied-piper:before {
    content: ""
}

.fa-first-order:before {
    content: ""
}

.fa-yoast:before {
    content: ""
}

.fa-themeisle:before {
    content: ""
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: ""
}

.fa-fa:before,
.fa-font-awesome:before {
    content: ""
}

.fa-handshake-o:before {
    content: ""
}

.fa-envelope-open:before {
    content: ""
}

.fa-envelope-open-o:before {
    content: ""
}

.fa-linode:before {
    content: ""
}

.fa-address-book:before {
    content: ""
}

.fa-address-book-o:before {
    content: ""
}

.fa-address-card:before,
.fa-vcard:before {
    content: ""
}

.fa-address-card-o:before,
.fa-vcard-o:before {
    content: ""
}

.fa-user-circle:before {
    content: ""
}

.fa-user-circle-o:before {
    content: ""
}

.fa-user-o:before {
    content: ""
}

.fa-id-badge:before {
    content: ""
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: ""
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: ""
}

.fa-quora:before {
    content: ""
}

.fa-free-code-camp:before {
    content: ""
}

.fa-telegram:before {
    content: ""
}

.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
    content: ""
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: ""
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: ""
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: ""
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: ""
}

.fa-shower:before {
    content: ""
}

.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
    content: ""
}

.fa-podcast:before {
    content: ""
}

.fa-window-maximize:before {
    content: ""
}

.fa-window-minimize:before {
    content: ""
}

.fa-window-restore:before {
    content: ""
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: ""
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: ""
}

.fa-bandcamp:before {
    content: ""
}

.fa-grav:before {
    content: ""
}

.fa-etsy:before {
    content: ""
}

.fa-imdb:before {
    content: ""
}

.fa-ravelry:before {
    content: ""
}

.fa-eercast:before {
    content: ""
}

.fa-microchip:before {
    content: ""
}

.fa-snowflake-o:before {
    content: ""
}

.fa-superpowers:before {
    content: ""
}

.fa-wpexplorer:before {
    content: ""
}

.fa-meetup:before {
    content: ""
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.cards>.padding,
.padding {
    padding: 8px
}

#loyalty-content>.meta-header,
.padding-v,
.table-block tr>td {
    padding-top: 8px;
    padding-bottom: 8px
}

.padding-h {
    padding-left: 8px;
    padding-right: 8px
}

.padding-t {
    padding-top: 8px
}

.padding-b,
.table-split-2 tr td:first-child {
    padding-bottom: 8px
}

.padding-l {
    padding-left: 8px
}

.padding-r {
    padding-right: 8px
}

.margin {
    margin: 8px
}

.margin-v {
    margin-top: 8px;
    margin-bottom: 8px
}

.margin-h {
    margin-left: 8px;
    margin-right: 8px
}

.margin-t {
    margin-top: 8px
}

#footer #download-apps img,
.margin-b {
    margin-bottom: 8px
}

.margin-l {
    margin-left: 8px
}

#footer #download-apps img,
.margin-r {
    margin-right: 8px
}

.padding-2x {
    padding: 8px
}

#redeem .redeem-calendar .col-7,
.padding-v-2x {
    padding-top: 8px;
    padding-bottom: 8px
}

.cards>.padding,
.padding-h-2x {
    padding-left: 8px;
    padding-right: 8px
}

.padding-t-2x {
    padding-top: 8px
}

.cards>.padding,
.padding-b-2x {
    padding-bottom: 8px
}

.padding-l-2x {
    padding-left: 8px
}

.padding-r-2x {
    padding-right: 8px
}

.padding-3x {
    padding: 8px
}

.padding-v-3x {
    padding-top: 8px;
    padding-bottom: 8px
}

.padding-h-3x,
.table.table-citilink thead tr>th,
.table tbody tr>td {
    padding-left: 8px;
    padding-right: 8px
}

.padding-t-3x {
    padding-top: 8px
}

.padding-b-3x {
    padding-bottom: 8px
}

.padding-l-3x {
    padding-left: 8px
}

.padding-r-3x {
    padding-right: 8px
}

.padding-4x {
    padding: 16px
}

.padding-v-4x {
    padding-top: 16px;
    padding-bottom: 16px
}

.padding-h-4x {
    padding-left: 16px;
    padding-right: 16px
}

.padding-t-4x {
    padding-top: 16px
}

.padding-b-4x {
    padding-bottom: 16px
}

.padding-l-4x {
    padding-left: 16px
}

.padding-r-4x {
    padding-right: 16px
}

.padding-5x {
    padding: 24px
}

.padding-v-5x {
    padding-top: 24px;
    padding-bottom: 24px
}

.padding-h-5x {
    padding-left: 24px;
    padding-right: 24px
}

.padding-t-5x {
    padding-top: 24px
}

.padding-b-5x {
    padding-bottom: 24px
}

.padding-l-5x {
    padding-left: 24px
}

.padding-r-5x {
    padding-right: 24px
}

.margin-2x {
    margin: 8px
}

.margin-v-2x {
    margin-top: 8px;
    margin-bottom: 8px
}

.margin-h-2x {
    margin-left: 8px;
    margin-right: 8px
}

.margin-t-2x {
    margin-top: 8px
}

.margin-b-2x {
    margin-bottom: 8px
}

.margin-l-2x {
    margin-left: 8px
}

.margin-r-2x {
    margin-right: 8px
}

.margin-3x {
    margin: 8px
}

.margin-v-3x {
    margin-top: 8px;
    margin-bottom: 8px
}

.margin-h-3x {
    margin-left: 8px;
    margin-right: 8px
}

.margin-t-3x {
    margin-top: 8px
}

.margin-b-3x {
    margin-bottom: 8px
}

.margin-l-3x {
    margin-left: 8px
}

.margin-r-3x {
    margin-right: 8px
}

.margin-4x {
    margin: 16px
}

.margin-v-4x {
    margin-top: 16px;
    margin-bottom: 16px
}

.margin-h-4x {
    margin-left: 16px;
    margin-right: 16px
}

.margin-t-4x {
    margin-top: 16px
}

.margin-b-4x {
    margin-bottom: 16px
}

.margin-l-4x {
    margin-left: 16px
}

.margin-r-4x {
    margin-right: 16px
}

.margin-5x {
    margin: 24px
}

.margin-v-5x {
    margin-top: 24px;
    margin-bottom: 24px
}

.margin-h-5x {
    margin-left: 24px;
    margin-right: 24px
}

.margin-t-5x {
    margin-top: 24px
}

.margin-b-5x {
    margin-bottom: 24px
}

.margin-l-5x {
    margin-left: 24px
}

.margin-r-5x {
    margin-right: 24px
}

@media screen and (min-width:768px) {
    .padding-2x {
        padding: 16px
    }
    #redeem .redeem-calendar .col-7,
    .padding-v-2x {
        padding-top: 16px;
        padding-bottom: 16px
    }
    .cards>.padding,
    .padding-h-2x {
        padding-left: 16px;
        padding-right: 16px
    }
    .padding-t-2x {
        padding-top: 16px
    }
    .cards>.padding,
    .padding-b-2x {
        padding-bottom: 16px
    }
    .padding-l-2x {
        padding-left: 16px
    }
    .padding-r-2x {
        padding-right: 16px
    }
    .padding-3x {
        padding: 24px
    }
    .padding-v-3x {
        padding-top: 24px;
        padding-bottom: 24px
    }
    .padding-h-3x,
    .table.table-citilink thead tr>th,
    .table tbody tr>td {
        padding-left: 24px;
        padding-right: 24px
    }
    .padding-t-3x {
        padding-top: 24px
    }
    .padding-b-3x {
        padding-bottom: 24px
    }
    .padding-l-3x {
        padding-left: 24px
    }
    .padding-r-3x {
        padding-right: 24px
    }
    .padding-4x {
        padding: 32px
    }
    .padding-v-4x {
        padding-top: 32px;
        padding-bottom: 32px
    }
    .padding-h-4x {
        padding-left: 32px;
        padding-right: 32px
    }
    .padding-t-4x {
        padding-top: 32px
    }
    .padding-b-4x {
        padding-bottom: 32px
    }
    .padding-l-4x {
        padding-left: 32px
    }
    .padding-r-4x {
        padding-right: 32px
    }
    .padding-5x {
        padding: 40px
    }
    .padding-v-5x {
        padding-top: 40px;
        padding-bottom: 40px
    }
    .padding-h-5x {
        padding-left: 40px;
        padding-right: 40px
    }
    .padding-t-5x {
        padding-top: 40px
    }
    .padding-b-5x {
        padding-bottom: 40px
    }
    .padding-l-5x {
        padding-left: 40px
    }
    .padding-r-5x {
        padding-right: 40px
    }
    .margin-2x {
        margin: 16px
    }
    .margin-v-2x {
        margin-top: 16px;
        margin-bottom: 16px
    }
    .margin-h-2x {
        margin-left: 16px;
        margin-right: 16px
    }
    .margin-t-2x {
        margin-top: 16px
    }
    .margin-b-2x {
        margin-bottom: 16px
    }
    .margin-l-2x {
        margin-left: 16px
    }
    .margin-r-2x {
        margin-right: 16px
    }
    .margin-3x {
        margin: 24px
    }
    .margin-v-3x {
        margin-top: 24px;
        margin-bottom: 24px
    }
    .margin-h-3x {
        margin-left: 24px;
        margin-right: 24px
    }
    .margin-t-3x {
        margin-top: 24px
    }
    .margin-b-3x {
        margin-bottom: 24px
    }
    .margin-l-3x {
        margin-left: 24px
    }
    .margin-r-3x {
        margin-right: 24px
    }
    .margin-4x {
        margin: 32px
    }
    .margin-v-4x {
        margin-top: 32px;
        margin-bottom: 32px
    }
    .margin-h-4x {
        margin-left: 32px;
        margin-right: 32px
    }
    .margin-t-4x {
        margin-top: 32px
    }
    .margin-b-4x {
        margin-bottom: 32px
    }
    .margin-l-4x {
        margin-left: 32px
    }
    .margin-r-4x {
        margin-right: 32px
    }
    .margin-5x {
        margin: 40px
    }
    .margin-v-5x {
        margin-top: 40px;
        margin-bottom: 40px
    }
    .margin-h-5x {
        margin-left: 40px;
        margin-right: 40px
    }
    .margin-t-5x {
        margin-top: 40px
    }
    .margin-b-5x {
        margin-bottom: 40px
    }
    .margin-l-5x {
        margin-left: 40px
    }
    .margin-r-5x {
        margin-right: 40px
    }
}

.hover-twitter {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-twitter:focus,
.hover-twitter:hover {
    background: #55acee!important;
    border-top: 2px solid #55acee!important;
    border-bottom: 2px solid #55acee!important
}

.hover-facebook {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-facebook:focus,
.hover-facebook:hover {
    background: #3b5998!important;
    border-top: 2px solid #3b5998!important;
    border-bottom: 2px solid #3b5998!important
}

.hover-instagram {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-instagram:focus,
.hover-instagram:hover {
    background: #c13584!important;
    border-top: 2px solid #c13584!important;
    border-bottom: 2px solid #c13584!important
}

.hover-youtube {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-youtube:focus,
.hover-youtube:hover {
    background: #dd4b39!important;
    border-top: 2px solid #dd4b39!important;
    border-bottom: 2px solid #dd4b39!important
}

.hover-gplus {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-gplus:focus,
.hover-gplus:hover {
    background: #dd4b39!important;
    border-top: 2px solid #dd4b39!important;
    border-bottom: 2px solid #dd4b39!important
}

.hover-android {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-android:focus,
.hover-android:hover {
    background: #08c65b!important;
    border-top: 2px solid #08c65b!important;
    border-bottom: 2px solid #08c65b!important
}

.hover-whatsapp {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-whatsapp:focus,
.hover-whatsapp:hover {
    background: #43d854!important;
    border-top: 2px solid #43d854!important;
    border-bottom: 2px solid #43d854!important
}

.hover-rss {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-rss:focus,
.hover-rss:hover {
    background: #f60!important;
    border-top: 2px solid #f60!important;
    border-bottom: 2px solid #f60!important
}

.hover-telegram {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-telegram:focus,
.hover-telegram:hover {
    background: #2ca5e0!important;
    border-top: 2px solid #2ca5e0!important;
    border-bottom: 2px solid #2ca5e0!important
}

.hover-email {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-email:focus,
.hover-email:hover {
    background: #3b9fff!important;
    border-top: 2px solid #3b9fff!important;
    border-bottom: 2px solid #3b9fff!important
}

.hover-print {
    -webkit-transition: background .5s ease, border-top .5s ease, border-bottom .5s ease;
    transition: background .5s ease, border-top .5s ease, border-bottom .5s ease
}

.hover-print:focus,
.hover-print:hover {
    background: #425563!important;
    border-top: 2px solid #425563!important;
    border-bottom: 2px solid #425563!important
}

.bg-twitter {
    background-color: #55acee
}

.bg-twitter:focus,
.bg-twitter:hover {
    background-color: #83c3f3
}

.bg-twitter:active {
    background-color: #3ea1ec
}

.bg-facebook {
    background-color: #3b5998
}

.bg-facebook:focus,
.bg-facebook:hover {
    background-color: #4c70ba
}

.bg-facebook:active {
    background-color: #344e86
}

.bg-instagram {
    background-color: #c13584
}

.bg-instagram:focus,
.bg-instagram:hover {
    background-color: #d1589c
}

.bg-instagram:active {
    background-color: #ad3076
}

.bg-youtube {
    background-color: #dd4b39
}

.bg-youtube:focus,
.bg-youtube:hover {
    background-color: #e47365
}

.bg-youtube:active {
    background-color: #d73925
}

.bg-gplus {
    background-color: #dd4b39
}

.bg-gplus:focus,
.bg-gplus:hover {
    background-color: #e47365
}

.bg-gplus:active {
    background-color: #d73925
}

.bg-android {
    background-color: #08c65b
}

.bg-android:focus,
.bg-android:hover {
    background-color: #0cf572
}

.bg-android:active {
    background-color: #07ad50
}

.bg-whatsapp {
    background-color: #43d854
}

.bg-whatsapp:focus,
.bg-whatsapp:hover {
    background-color: #6de17a
}

.bg-whatsapp:active {
    background-color: #2ed441
}

.bg-rss {
    background-color: #f60
}

.bg-rss:focus,
.bg-rss:hover {
    background-color: #ff8533
}

.bg-rss:active {
    background-color: #e65c00
}

.bg-telegram {
    background-color: #2ca5e0
}

.bg-telegram:focus,
.bg-telegram:hover {
    background-color: #58b8e7
}

.bg-telegram:active {
    background-color: #1f98d3
}

.bg-email {
    background-color: #3b9fff
}

.bg-email:focus,
.bg-email:hover {
    background-color: #6eb8ff
}

.bg-email:active {
    background-color: #2293ff
}

.bg-print {
    background-color: #425563
}

.bg-print:focus,
.bg-print:hover {
    background-color: #566f82
}

.bg-print:active {
    background-color: #384854
}

.btn-twitter {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #55acee;
    border-color: #3ea1ec
}

.btn-twitter.focus,
.btn-twitter:focus,
.btn-twitter:hover {
    color: #fff!important;
    background-color: #2795e9;
    border-color: #1d91e8
}

.btn-facebook {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #3b5998;
    border-color: #344e86
}

.btn-facebook.focus,
.btn-facebook:focus,
.btn-facebook:hover {
    color: #fff!important;
    background-color: #2d4373;
    border-color: #2a3f6c
}

.btn-instagram {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #c13584;
    border-color: #ad3076
}

.btn-instagram.focus,
.btn-instagram:focus,
.btn-instagram:hover {
    color: #fff!important;
    background-color: #992a69;
    border-color: #912863
}

.btn-youtube {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #dd4b39;
    border-color: #d73925
}

.btn-youtube.focus,
.btn-youtube:focus,
.btn-youtube:hover {
    color: #fff!important;
    background-color: #c23321;
    border-color: #b93120
}

.btn-gplus {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #dd4b39;
    border-color: #d73925
}

.btn-gplus.focus,
.btn-gplus:focus,
.btn-gplus:hover {
    color: #fff!important;
    background-color: #c23321;
    border-color: #b93120
}

.btn-android {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #08c65b;
    border-color: #07ad50
}

.btn-android.focus,
.btn-android:focus,
.btn-android:hover {
    color: #fff!important;
    background-color: #069544;
    border-color: #068b40
}

.btn-whatsapp {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #43d854;
    border-color: #2ed441
}

.btn-whatsapp.focus,
.btn-whatsapp:focus,
.btn-whatsapp:hover {
    color: #fff!important;
    background-color: #28c039;
    border-color: #26b837
}

.btn-rss {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #f60;
    border-color: #e65c00
}

.btn-rss.focus,
.btn-rss:focus,
.btn-rss:hover {
    color: #fff!important;
    background-color: #cc5200;
    border-color: #c24e00
}

.btn-telegram {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #2ca5e0;
    border-color: #1f98d3
}

.btn-telegram.focus,
.btn-telegram:focus,
.btn-telegram:hover {
    color: #fff!important;
    background-color: #1c88bd;
    border-color: #1a82b4
}

.btn-email {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #3b9fff;
    border-color: #2293ff
}

.btn-email.focus,
.btn-email:focus,
.btn-email:hover {
    color: #fff!important;
    background-color: #0886ff;
    border-color: #0081fd
}

.btn-print {
    margin-bottom: 5px!important;
    color: #fff!important;
    background-color: #425563;
    border-color: #384854
}

.btn-print.focus,
.btn-print:focus,
.btn-print:hover {
    color: #fff!important;
    background-color: #2e3b44;
    border-color: #2a353e
}

.browserupgrade {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

* {
    outline: 0!important
}

b,
strong {
    font-family: Helvetica LT Std Bold
}

ol,
ul {
    -webkit-padding-start: 20px
}

.btn-secondary {
    color: #fff;
    background-color: #008c3c;
    border-color: transparent
}

.btn-secondary.active,
.btn-secondary.focus,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.open>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #005926;
    border-color: transparent
}

.btn-secondary.active.focus,
.btn-secondary.active:focus,
.btn-secondary.active:hover,
.btn-secondary:active.focus,
.btn-secondary:active:focus,
.btn-secondary:active:hover,
.open>.btn-secondary.dropdown-toggle.focus,
.open>.btn-secondary.dropdown-toggle:focus,
.open>.btn-secondary.dropdown-toggle:hover {
    color: #fff;
    background-color: #003517;
    border-color: transparent
}

.btn-secondary.active,
.btn-secondary:active,
.open>.btn-secondary.dropdown-toggle {
    background-image: none
}

.btn-secondary.disabled.focus,
.btn-secondary.disabled:focus,
.btn-secondary.disabled:hover,
.btn-secondary[disabled].focus,
.btn-secondary[disabled]:focus,
.btn-secondary[disabled]:hover,
fieldset[disabled] .btn-secondary.focus,
fieldset[disabled] .btn-secondary:focus,
fieldset[disabled] .btn-secondary:hover {
    background-color: #008c3c;
    border-color: transparent
}

.btn-secondary .badge {
    color: #008c3c;
    background-color: #fff
}

.btn-citilink {
    color: #fff;
    background-color: #65b32e;
    border-color: transparent
}

.btn-citilink.active,
.btn-citilink.focus,
.btn-citilink:active,
.btn-citilink:focus,
.btn-citilink:hover,
.open>.btn-citilink.dropdown-toggle {
    color: #fff;
    background-color: #4e8a24;
    border-color: transparent
}

.btn-citilink.active.focus,
.btn-citilink.active:focus,
.btn-citilink.active:hover,
.btn-citilink:active.focus,
.btn-citilink:active:focus,
.btn-citilink:active:hover,
.open>.btn-citilink.dropdown-toggle.focus,
.open>.btn-citilink.dropdown-toggle:focus,
.open>.btn-citilink.dropdown-toggle:hover {
    color: #fff;
    background-color: #3e6e1c;
    border-color: transparent
}

.btn-citilink.active,
.btn-citilink:active,
.open>.btn-citilink.dropdown-toggle {
    background-image: none
}

.btn-citilink.disabled.focus,
.btn-citilink.disabled:focus,
.btn-citilink.disabled:hover,
.btn-citilink[disabled].focus,
.btn-citilink[disabled]:focus,
.btn-citilink[disabled]:hover,
fieldset[disabled] .btn-citilink.focus,
fieldset[disabled] .btn-citilink:focus,
fieldset[disabled] .btn-citilink:hover {
    background-color: #65b32e;
    border-color: transparent
}

.btn-citilink .badge {
    color: #65b32e;
    background-color: #fff
}

.btn-gray {
    color: #fff;
    background-color: #868686;
    border-color: transparent
}

.btn-gray.active,
.btn-gray.focus,
.btn-gray:active,
.btn-gray:focus,
.btn-gray:hover,
.open>.btn-gray.dropdown-toggle {
    color: #fff;
    background-color: #6d6d6d;
    border-color: transparent
}

.btn-gray.active.focus,
.btn-gray.active:focus,
.btn-gray.active:hover,
.btn-gray:active.focus,
.btn-gray:active:focus,
.btn-gray:active:hover,
.open>.btn-gray.dropdown-toggle.focus,
.open>.btn-gray.dropdown-toggle:focus,
.open>.btn-gray.dropdown-toggle:hover {
    color: #fff;
    background-color: #5b5b5b;
    border-color: transparent
}

.btn-gray.active,
.btn-gray:active,
.open>.btn-gray.dropdown-toggle {
    background-image: none
}

.btn-gray.disabled.focus,
.btn-gray.disabled:focus,
.btn-gray.disabled:hover,
.btn-gray[disabled].focus,
.btn-gray[disabled]:focus,
.btn-gray[disabled]:hover,
fieldset[disabled] .btn-gray.focus,
fieldset[disabled] .btn-gray:focus,
fieldset[disabled] .btn-gray:hover {
    background-color: #868686;
    border-color: transparent
}

.btn-gray .badge {
    color: #868686;
    background-color: #fff
}

.btn-blue-regular {
    color: #fff;
    background-color: #4e7d90;
    border-color: transparent
}

.btn-blue-regular.active,
.btn-blue-regular.focus,
.btn-blue-regular:active,
.btn-blue-regular:focus,
.btn-blue-regular:hover,
.open>.btn-blue-regular.dropdown-toggle {
    color: #fff;
    background-color: #3c606f;
    border-color: transparent
}

.btn-blue-regular.active.focus,
.btn-blue-regular.active:focus,
.btn-blue-regular.active:hover,
.btn-blue-regular:active.focus,
.btn-blue-regular:active:focus,
.btn-blue-regular:active:hover,
.open>.btn-blue-regular.dropdown-toggle.focus,
.open>.btn-blue-regular.dropdown-toggle:focus,
.open>.btn-blue-regular.dropdown-toggle:hover {
    color: #fff;
    background-color: #304c58;
    border-color: transparent
}

.btn-blue-regular.active,
.btn-blue-regular:active,
.open>.btn-blue-regular.dropdown-toggle {
    background-image: none
}

.btn-blue-regular.disabled.focus,
.btn-blue-regular.disabled:focus,
.btn-blue-regular.disabled:hover,
.btn-blue-regular[disabled].focus,
.btn-blue-regular[disabled]:focus,
.btn-blue-regular[disabled]:hover,
fieldset[disabled] .btn-blue-regular.focus,
fieldset[disabled] .btn-blue-regular:focus,
fieldset[disabled] .btn-blue-regular:hover {
    background-color: #4e7d90;
    border-color: transparent
}

.btn-blue-regular .badge {
    color: #4e7d90;
    background-color: #fff
}

#modal-payment .modal-body .nav-tabs>li>a,
.breadcrumb li a,
.color-default {
    color: #474747
}

.color-primary {
    color: #65b32e
}

.color-secondary {
    color: #008c3c
}

#profile-box .hobby,
.bg-primary {
    background-color: #65b32e
}

.bg-secondary {
    background-color: #008c3c
}

.bg-gray {
    background: #f8f8f8
}

.text-larger {
    font-size: 17px
}

.text-big {
    font-size: 26px
}

.text-huge {
    font-size: 78px
}

.text-normal {
    font-family: Helvetica LT Std Roman
}

#redeem .redeem-calendar .col-7 .day,
#redeem .redeem-calendar .col-7 .miles,
.breadcrumb li,
.small,
small {
    font-size: 11px
}

h2+h2 {
    margin-top: -6px!important
}

.row-cards {
    margin-left: -8px;
    margin-right: -8px
}

.col-cards {
    padding-left: 8px;
    padding-right: 8px

}

.cards {
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
    margin-bottom: 16px
}

.cards img {
    width: 100%
}

.breadcrumb {
    padding: 0;
    background-color: transparent
}

.breadcrumb li.active {
    font-weight: 700
}

#accordion .panel-primary {
    box-shadow: none;
    border-color: #fff;
    background-color: #f8f8f8
}

#accordion .panel-primary>.panel-heading {
    color: #65b32e;
    background-color: #fff;
    border-bottom: 1px solid #ececec
}

#accordion .panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-width: 0
}

a[data-toggle=collapse] {
    display: block
}

a[data-toggle=collapse]:after {
    font-family: FontAwesome;
    content: "";
    display: inline-block;
    float: right
}

a[data-toggle=collapse].collapsed:after {
    font-family: FontAwesome;
    content: "";
    display: inline-block;
    float: right
}

.table.table-citilink thead {
    background: #008c3c;
    color: #fff
}

.table tbody tr>td {
    vertical-align: middle
}

.table-block {
    width: 100%
}

.table-block tr>td {
    display: block
}

.table-split-2 {
    width: 100%
}

.table-split-2 tr td {
    display: block
}

.table-split-2 tr td:first-child {
    padding-right: 0
}

ul.nav-pills {
    background: #f8f8f8
}

ul.nav-pills li.active>a {
    color: #65b32e
}

ul.nav-pills li>a {
    color: #818181;
    padding: 5px 10px
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    font-weight: 700
}

.input-group>.addon-grey {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    width: 27px;
    background-color: #9e9e9e!important
}

.input-group>.addon-grey img {
    max-height: 18px
}

.modal-backdrop.in {
    opacity: .9
}

#loading-box {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 1000;
    background: hsla(0, 0%, 100%, .95)
}

#loading-box>#ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
    border: 2px dotted #008c3c;
    border-radius: 300px
}

#loading-box>#ring .holder {
    position: absolute;
    left: 0;
    top: 0;
    width: 296px;
    height: 296px;
    -webkit-animation: rotating 2s ease infinite;
    animation: rotating 2s ease infinite
}

#loading-box>#ring .holder .icon {
    position: absolute;
    left: 0;
    top: 60px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    width: 50px;
    height: 50px;
    color: #008c3c;
    border-radius: 50px
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.datepicker table tr td.today {
    background-color: #ff9;
    border-color: transparent
}

.datepicker table tr td.today:hover {
    background-color: #ff6;
    border-color: transparent
}

.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover:active {
    background-color: #65b32e;
    border-color: #5a9f29
}

.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover.active.focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active:hover:active:hover {
    background-color: #4e8a24;
    border-color: #43761e
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active {
    background-color: #65b32e;
    border-color: #5a9f29
}

.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active:active:hover {
    background-color: #4e8a24;
    border-color: #43761e
}

.input-date-flight input {
    text-align: left
}

.input-date-flight input:first-child,
.input-date-flight input:last-child {
    border-radius: 0
}

.input-date-flight #date-return-end,
.input-date-flight #date-return-start,
.input-date-flight #mileage-date-return-end,
.input-date-flight #mileage-date-return-start {
    display: none
}

.modal .modal-close {
    position: absolute;
    display: block;
    z-index: 2;
    right: 8px;
    top: -18px;
    font-size: 12px;
    color: #fff;
    opacity: 1;
    text-shadow: none
}

.modal .modal-body {
    padding-top: 0;
    padding-bottom: 0
}

#modal-mileage .modal-body .block-2 {
    border-top: 1px solid #ccc
}

#modal-payment .modal-body {
    border-bottom: 5px solid #65b32e
}

#modal-payment .modal-body .nav-tabs>li.active>a,
#modal-payment .modal-body .nav-tabs>li:active>a {
    background: #f8f8f8;
    font-weight: 700
}

#modal-payment .modal-body .nav-tabs>li:last-child>a {
    border-right: 0
}

#modal-payment .modal-body .nav-tabs>li>a {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 0;
    border-right: 1px solid #ddd
}

#header {
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1)
}

#header h1 {
    margin-top: 0
}

#header .navbar-nav>li>a {
    text-transform: uppercase
}

#header #dropdown-profile {
    display: inline-block;
    text-decoration: none
}

#header #dropdown-profile:focus .profile-name,
#header #dropdown-profile:hover .profile-name {
    text-decoration: underline
}

#slider {
    position: relative
}

#slider .slider-control {
    cursor: pointer;
    display: block;
    width: 15%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    color: #fff
}

#slider .slider-control[data-slide=prev] {
    left: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .15), rgba(0, 0, 0, .0001));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, .0001))
}

#slider .slider-control[data-slide=prev]:hover {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .3), rgba(0, 0, 0, .0001));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .0001))
}

#slider .slider-control[data-slide=prev]:hover>.fa {
    opacity: .8
}

#slider .slider-control[data-slide=next] {
    right: 0;
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .15), rgba(0, 0, 0, .0001));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, .0001))
}

#slider .slider-control[data-slide=next]:hover {
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .3), rgba(0, 0, 0, .0001));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .0001))
}

#slider .slider-control[data-slide=next]:hover>.fa {
    opacity: .8
}

#slider .slider-control>.fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -10px;
    font-size: 30px;
    opacity: .5;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .3)
}

.nav-tabs {
    position: relative;
    z-index: 1
}

.nav-tabs>li>a {
    background-color: hsla(0, 0%, 100%, .8);
    border-top: 3px solid transparent;
    border-bottom: 1px solid #ddd
}

.nav-tabs>li>a:hover {
    background-color: #fff
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    border-top: 3px solid #65b32e;
    border-bottom-color: transparent
}

#contact,
#profile {
    display: inline-block
}

#contact {
    color: #9d9d9d
}

#contact:focus,
#contact:hover {
    color: #65b32e
}

#profile {
    border-left: 1px solid #ccc
}

#profile .profile-info,
#profile .profile-picture {
    display: inline-block
}

#main {
    padding-top: 16px
}

#product-menu ul.nav-pills.nav-justified>li {
    display: table-cell;
    width: 1%
}

#product-menu .nav-tabs>li>a:focus,
#product-menu .nav-tabs>li>a:hover {
    background-color: hsla(0, 0%, 100%, .8);
    border-top-color: #eef9e7
}

#product-menu .nav-tabs>li.active>a,
#product-menu .nav-tabs>li.active>a:focus,
#product-menu .nav-tabs>li.active>a:hover {
    background-color: #f8f8f8;
    border-top-color: #65b32e
}

#product-menu #flight .tab-content {
    background: #f8f8f8;
    padding: 32px
}

#tab-search-flight .from-to .form-control {
    border-left: 0;
    border-right: 0
}

#tab-search-flight .input-date-flight .form-control {
    border-right: 0
}

#tab-search-flight .input-group .input-group-addon {
    background-color: #fff
}

.btn {
    font-weight: 700
}

.num {
    position: absolute;
    display: block;
    right: -3px;
    top: -5px;
    -webkit-transform: scale(.75);
    transform: scale(.75)
}

.num .btn-block+.btn-block {
    margin-top: 1px
}

.carousel-control:focus,
.carousel-control:hover {
    opacity: .5;
    filter: alpha(opacity=50)
}

.height-40 {
    height: 21px;
    margin-bottom: 8px
}

.box-shadow {
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2)
}

#profile-box .hobby,
#profile-box .level {
    text-align: center;
    color: #fff;
    padding: 4px;
    font-size: 11px;
    margin: 16px
}

#profile-box .level {
    background: #4e7d90
}

#profile-box hr {
    margin: 16px
}

#profile-box footer {
    background: #f8f8f8;
    color: #818181
}

#redeem .redeem-box {
    background: #f8f8f8
}

#redeem .redeem-box table {
    width: 100%
}

#redeem .redeem-calendar {
    display: table;
    width: 100%
}

#redeem .redeem-calendar .col-7 {
    display: table-cell;
    box-sizing: border-box;
    width: 14.3%;
    border: 1px solid #ececec;
    background: #fff;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

#redeem .redeem-calendar .col-7:focus,
#redeem .redeem-calendar .col-7:hover {
    background: #65b32e;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

#redeem .redeem-calendar .col-7:focus,
#redeem .redeem-calendar .col-7:focus .date,
#redeem .redeem-calendar .col-7:focus .day,
#redeem .redeem-calendar .col-7:focus .miles,
#redeem .redeem-calendar .col-7:hover,
#redeem .redeem-calendar .col-7:hover .date,
#redeem .redeem-calendar .col-7:hover .day,
#redeem .redeem-calendar .col-7:hover .miles {
    color: #fff
}

#redeem .redeem-calendar .col-7 .date,
#redeem .redeem-calendar .col-7 .day,
#redeem .redeem-calendar .col-7 .miles {
    display: block
}

#redeem .redeem-calendar .col-7 .day {
    color: #818181
}

#redeem .redeem-calendar .col-7 .date {
    font-size: 28px
}

#redeem .redeem-calendar .col-7 .miles {
    color: #65b32e
}

#payment .payment-method {
    position: relative;
    display: block;
    height: 40px
}

#payment .payment-method>.col-center,
#payment .payment-method>.col-left,
#payment .payment-method>.col-right {
    position: absolute;
    display: block;
    top: 0;
    height: 50px
}

#payment .payment-method>.col-left {
    left: 0;
    width: 40px
}

#payment .payment-method>.col-center {
    left: 40px;
    right: 40px
}

#payment .payment-method>.col-right {
    right: 0;
    width: 40px
}

#payment .owl-carousel {
    width: 100%;
    height: 40px
}

#payment .owl-carousel .item {
    box-sizing: border-box;
    border: 1px solid #ececec;
    text-align: center
}

#payment .owl-carousel .item img {
    max-height: 30px;
    max-width: 100%;
    width: auto;
    display: inline
}

#loyalty-terbang-list .cards img {
    /*max-height: 80px;  Default */
    max-height: 100px;
    max-width: 80%
}

#loyalty-content p {
    text-align: justify
}

#loyalty-content p>.color-primary {
    margin-top: 16px
}

#loyalty-content .content h3,
#loyalty-content .content h4,
#loyalty-content .content h5,
#loyalty-content .content h6 {
    font-family: Helvetica LT Std Roman
}

.progress {
    height: 16px
}

.progress.width-50 {
    width: 70%
}

#profile-box .progress .progress-bar.hobby,
.progress #profile-box .progress-bar.hobby,
.progress .progress-bar.bg-primary {
    background: #65b32e
}

.progress .progress-bar.bg-secondary {
    background: #008c3c
}

.img-promo {
    width: 100%;
    border-bottom: 5px solid #65b32e;
    height: 100%
}

#footer {
    font-size: 11px
}

#footer>.bg-grey {
    background: #f0f0f0;
    color: #8e8e8e
}

#footer>.bg-grey a {
    color: #8e8e8e
}

#footer>.bg-grey strong.color-primary {
    font-size: 18px
}

#footer>.bg-black {
    background: #272727;
    color: #fff
}

#footer #social-media {
    margin-left: -12px;
    display: block;
    padding-bottom: 16px
}

#footer #social-media a {
    display: inline-block;
    width: 25px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
    background: #ccc;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    margin-left: 16px;
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

#footer #download-apps img {
    max-height: 40px
}

@media screen and (min-width:768px) {
    .modal-dialog {
        margin: 100px auto
    }
    .table-block {
        width: 100%
    }
    .table-block tr>td {
        display: table-cell
    }
    .table-split-2 tr td {
        width: 50%;
        display: table-cell
    }
    .table-split-2 tr td:first-child {
        padding-right: 8px
    }
    #modal-mileage .modal-body .block-2 {
        border-top: 0;
        border-left: 1px solid #ccc
    }
    #modal-mileage .modal-body .text-huge {
        font-size: 120px;
        font-family: Helvetica LT Std Roman
    }
    #modal-mileage .modal-body .text-huge+p {
        margin-top: -20px
    }
    #header {
        position: static
    }
    #header .navbar {
        min-height: 40px
    }
    #header .navbar-nav>li {
        border-right: 1px solid #ccc
    }
    #header .navbar-nav>li:last-child {
        border-right: 0
    }
    #header .navbar-nav>li a {
        padding-top: 5px;
        padding-bottom: 5px
    }
    #header .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
    #main {
        padding-top: 30px
    }
    ul.nav-pills.nav-justified>li {
        border-right: 1px solid #ccc
    }
    ul.nav-pills.nav-justified>li:last-child {
        border-right: none
    }
    #flight .nav-tabs {
        margin-top: -42px
    }
    #join-supergreen .col-sm-3 {
        border-right: 1px solid #ececec
    }
    #join-supergreen .col-sm-3:last-child {
        border-right: 0
    }
    #join-supergreen .col-sm-3 img.img-circle {
        max-width: 100px
    }
}

#profile-box{
    padding-top: 17px !important;
}

@media screen and (min-width:992px) {
    #profile-box.affix {
        top: 8px;
        position: fixed!important;
        width: 204.5px
    }
}

@media screen and (min-width:1200px) {
    #profile-box.affix {
        width: 254.5px
    }
}

.profilehover:hover,
.profilehover:focus
{
    color:#000000;
    background-color:
}

.text-black{
    color:#000000;
}

.text-grey {
    color: #4b4948 !important;
}

.text-grey:hover {
    color: #9e9a98 !important;
}

.box-reedeme{
    border: 1px;

}

.box-reedeme: hover{
    background-color: #65b32e;
}

.padding-box-zero{
    padding-right:2px !important;
    padding-left:2px !important;
}

.no-padding{
    padding-right:0px !important;
    padding-left:0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.box-redeem{
    width: 80%;
    margin: 10px auto;
    border: 1px solid #919fa9;

}

.box-redeem:hover {
    background: #f8f8f8;
    width: 100%;
    height: 100%
    margin: 20px auto;
    border: 1px solid #46c35f;

}

.box-redeem:hover .superdeal-dayname .superdeal-daynum .superdeal-price{
    color: #ffffff;
}


.item-center{
    align-items: center !important;
    align-content: center !important;
}

.text-center-redeem{
    text-align: center;
    width:100% !important;
    padding-right: 5% !important;
    padding-left: 5%  !important;
    padding-bottom: 2% !important;
    color: #919fa9;
    font-size: 1rem;
    height: auto !important;
    font-family: 'HelveticaLTStd-Roman';
}

.box-trip{
    width: 100%;
}




/*========================================ROLLOVER DIV======================================*/

#container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#rollover {
    height: 100%;
    width: 100%;
    -webkit-animation-name: move;
    -webkit-animation-duration: 20s;
    -webkit-animation-delay: 0;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: right;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
}

#rollover:hover {
    -webkit-animation-play-state: paused;
}

@-webkit-keyframes move {
    from {
        margin-left: -100%;
    }

    to {
        margin-left: 100%;
    }

}

.ngdialog.ngdialog-custom-iframe .ngdialog-content {
    height: 110% !important;
}

.circletag-img{
    border: 5px solid #E6E7ED ;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    padding: 5px
}

#circle {
    width: 100px;
    height: 100px;
    background: red;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

/*----------------------------------Marquee-------------------------------------------------*/
.marquee {
    height: 20px;
    overflow: hidden;
    position: relative;
}

.marquee p {
    font-size: 1em;
    color: #4b4948;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 20px;
    text-align: center;

    /* Starting position */
    -moz-transform:translateX(100%);
    -webkit-transform:translateX(100%);
    transform:translateX(100%);

    /* Apply animation to this element */
    -moz-animation: marquee 15s linear infinite;
    -webkit-animation: marquee 15s linear infinite;
    animation: marquee 15s linear infinite;
}

/* Move it (define the animation) */
@-moz-keyframes marquee {
    0%   { -moz-transform: translateX(100%); }
    25%  { -moz-transform: translateX(50%); }
    50%  { -moz-transform: translateX(0%); }
    75% { -moz-transform: translateX(-50%); }
    100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes marquee {
    0%   { -webkit-transform: translateX(100%); }
    25% { -webkit-transform: translateX(50%); }
    50% { -webkit-transform: translateX(0%); }
    75% { -webkit-transform: translateX(-50%); }
    100% { -webkit-transform: translateX(-100%); }
}

@keyframes marquee {
    0%   {
        -moz-transform: translateX(100%); /* Firefox bug fix */
        -webkit-transform: translateX(100%); /* Firefox bug fix */
        transform: translateX(100%);
    }
    25% {
        -moz-transform: translateX(50%); /* Firefox bug fix */
        -webkit-transform: translateX(50%); /* Firefox bug fix */
        transform: translateX(50%);
    }
    50% {
        -moz-transform: translateX(0%); /* Firefox bug fix */
        -webkit-transform: translateX(0%); /* Firefox bug fix */
        transform: translateX(0%);
    }
    75% {
        -moz-transform: translateX(-50%); /* Firefox bug fix */
        -webkit-transform: translateX(-50%); /* Firefox bug fix */
        transform: translateX(-50%);
    }
    100% {
        -moz-transform: translateX(-100%); /* Firefox bug fix */
        -webkit-transform: translateX(-100%); /* Firefox bug fix */
        transform: translateX(-100%);
    }
}

.ngdialog.ngdialog-theme-custom-ins {
    padding-top: 125px;
    padding-bottom: 125px;
}

.ngdialog.ngdialog-theme-custom-ins .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-custom-ins .ngdialog-content {
    background: rgba(255,255,255,.9);
    padding: 1.8em 2em;
    width: 800px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom-ins .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom-ins .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom-ins .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom-ins .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*Dining Info*/
.ngdialog.ngdialog-theme-dining-info {
    padding-top: 70px;
}

.ngdialog.ngdialog-theme-dining-info .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-dining-info .ngdialog-content {
    background: rgba(255,255,255,.9);
    padding: 1.8em 2em;
    width: 800px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-dining-info .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-dining-info .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-dining-info .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-dining-info .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*Dining Cancle*/
.ngdialog.ngdialog-theme-custom-dining-cancle {
    padding-top: 125px;
    padding-bottom: 125px;
}

.ngdialog.ngdialog-theme-custom-dining-cancle .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-custom-dining-cancle .ngdialog-content {
    background: rgba(255,255,255,.9);
    padding: 1.8em 2em;
    width: 600px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom-dining-cancle .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom-dining-cancle .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom-dining-cancle .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom-dining-cancle .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*= Exemption=*/
.ngdialog.ngdialog-theme-custom-exemption {
    padding-top: 60px;
    padding-bottom: 80px;
}

.ngdialog.ngdialog-theme-custom-exemption .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-custom-exemption .ngdialog-content {
    background: rgba(255,255,255);
    padding: 0.5em;
    width: 627px;
    height: 540px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom-exemption .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom-exemption .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom-exemption .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom-exemption .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*= SelectTrip=*/
.ngdialog.ngdialog-theme-custom-trip {
    padding-top: 50px;
}

.ngdialog.ngdialog-theme-custom-trip .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-custom-trip .ngdialog-content {
    background: rgba(255,255,255);
    padding: 0.5em;
    width: 650px;
    height: 580px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom-trip .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom-trip .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom-trip .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom-trip .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*= Link Travelation=*/
.ngdialog.ngdialog-theme-custom-travelation {
    padding-top: 180px;
    padding-bottom: 100px;
}

.ngdialog.ngdialog-theme-custom-travelation .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-custom-travelation .ngdialog-content {
    background: rgba(255,255,255);
    padding: 1.2em;
    width: 550px;
    height: 230px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom-travelation .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom-travelation .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom-travelation .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom-travelation .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*= Link Aja=*/
.ngdialog.ngdialog-theme-custom-linkaja {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ngdialog.ngdialog-theme-custom-linkaja .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.ngdialog.ngdialog-theme-custom-linkaja .ngdialog-content {
    background: rgba(255,255,255);
    padding: 0.5em;
    width: 650px;
    height: 300px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ngdialog.ngdialog-theme-custom-linkaja .ngdialog-message h2 {
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
    margin-bottom: 20px;
}

.ngdialog.ngdialog-theme-custom-linkaja .ngdialog-message {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 22px;
}

.ngdialog.ngdialog-theme-custom-linkaja .ngdialog-message ul {
    padding: 0 0 5px 35px;
}

.ngdialog.ngdialog-theme-custom-linkaja .ngdialog-button.ngdialog-button-primary {
    background: #27ae60;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ancillary-popup-image{
    height: 80px; width: 80px; margin:10px
}

.ancillary-popup-div{
    background-color: #e1e1d0; border-width: 1px; border-style: solid; border-color: white; height: 220px
}
.disable {
  opacity: 0.5;
  pointer-events:none;  
}

.img-flightplus {
    width:16px;
    float:left;
}

.img-flightplus-schedule {
    width:24px;
    margin-left: 3px;
    margin-right: 3px;
    float:left;
}

.control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control_indicator {
    position: absolute;
    top: 1px;
    left: 0;
    height: 25px;
    width: 25px;
    background: #ffffff;
    border: 1px solid #07a700;
}
.control-radio .control_indicator {
    border-radius: undefined%;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #ffffff;
}

.control input:checked ~ .control_indicator {
    background: #07a700;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #07a700;
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 7px;
    top: 2px;
    width: 4px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}

input[type=range]::-moz-range-track {
  background-color: grey;
}

.btnDineExpand {
    font-size: 15px;
    overflow: visible;
    color: #FFFFFF;
    display: block;
    margin: 0 auto;
    height: 36px;
    width: 114px;
    cursor: pointer;
    background-color: #c7231e;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
    line-height: 35px;
}

.payment-border{
    border-style: solid;
    border-color: white;
}

.navbar-hover-container{
    width:300px;
}

.navbar-hover-content{
    margin: 5px;
    width: 130px;
    color: #65b32e;
}

.navbar-hover-content > a{
    color: #65b32e;
}

.background-green {
    background-color:rgba(225, 255, 226, 0.3);
    min-height: 115px;
}

.background-grey {
    background-color:rgba(224, 224, 224, 0.3);
    min-height: 115px;
}

.background-white {
    background-color:#ffff;
    margin: 10px;
    padding: 5px;
    border-radius: 15px;
    min-height: 125px;
}

.card-white {
    background-color:#ffff;
    margin: 10px;
    padding: 5px 5px;
    border-radius: 15px;
    min-height: 90px;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 10%);
}

.card-white h6{
    color: #65b32e;
}

.btn-green-blink {
  animation: blinker 2s linear infinite;
  -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #2eb33b;
    background: #2eb33b;
    color: #fff;
    font-weight: 600;
}

@keyframes blinker {
   0% {
    background-color: #2eb33b;
    box-shadow: 0 0 3px #2ba805;
  }
  50% {
    background-color: #49e819;
    box-shadow: 0 0 10px #49e819;
  }
  100% {
    background-color: #2eb33b;
    box-shadow: 0 0 3px #2ba805;
  }
}

.radio-green:after {
    width: 20px;
    height: 20px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.radio-green:checked:after {
    width: 20px;
    height: 20px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #65b32e;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.tag-discount{
    padding:4px;
    background-color: #65b32e; /* For browsers that do not support gradients */
    background-image: linear-gradient(#65b32e, #7fe03a);
    color: white;
    text-align: center;
    margin: 5px 2px 2px 2px;
    display: block;
    font-size: 12px;
}

.tag-discount-ancillary{
    padding:1px;
    background-color: #65b32e; /* For browsers that do not support gradients */
    background-image: linear-gradient(#65b32e, #7fe03a);
    color: white;
    width:50%;
    text-align: center;
    display: block;
    font-size: 9px;
}