/* backup and training label

#tf_dev_container {
    background-color: #FF4848;
    color: white;
    padding: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: fixed;
    text-align: center;
    font-size: 11px;
    z-index: 10000000;
    cursor: default;
    color: #fff;
    padding: 12px;
}

@media (min-width:481px) {
    #tf_dev_container {
        top: 0px;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

@media (max-width:480px) {
    #tf_dev_container {
        bottom: 0;
        left: 0;
        right: 0
    }
}
*/
:root {
    --color-black: rgb(0, 0, 0);
    --color-grey-bdr: #dedede;
    --color-yellow-alert:#ffe699;
    --color-positive-green:#5cb85c;
}
.tf-loader-spinner {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background-color: transparent;
    font-size: 16px;
    overflow: hidden;
}

.tf-loader-spinner::-webkit-progress-bar {
    background-color: transparent;
}

/* Indeterminate */
.tf-loader-spinner:indeterminate {
    -webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%);
    animation: tf-loader-spinner 6s infinite cubic-bezier(0.3, 0.6, 1, 1);
}

:-ms-lang(x), .tf-loader-spinner:indeterminate {
    animation: none;
}

.tf-loader-spinner:indeterminate::before,
.tf-loader-spinner:indeterminate::-webkit-progress-value {
    content: "";
    display: block;
    box-sizing: border-box;
    margin-bottom: 0.25em;
    border: solid 0.25em transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    width: 100% !important;
    height: 100%;
    background-color: transparent;
    animation: tf-loader-spinner-pseudo 0.75s infinite linear alternate;
}

.tf-loader-spinner:indeterminate::-moz-progress-bar {
    box-sizing: border-box;
    border: solid 0.25em transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    animation: tf-loader-spinner-pseudo 0.75s infinite linear alternate;
}

.tf-loader-spinner:indeterminate::-ms-fill {
    animation-name: -ms-ring;
}

@keyframes tf-loader-spinner {
    0% {
        transform: rotate(0deg);
    }
    12.5% {
        transform: rotate(180deg);
        animation-timing-function: linear;
    }
    25% {
        transform: rotate(630deg);
    }
    37.5% {
        transform: rotate(810deg);
        animation-timing-function: linear;
    }
    50% {
        transform: rotate(1260deg);
    }
    62.5% {
        transform: rotate(1440deg);
        animation-timing-function: linear;
    }
    75% {
        transform: rotate(1890deg);
    }
    87.5% {
        transform: rotate(2070deg);
        animation-timing-function: linear;
    }
    100% {
        transform: rotate(2520deg);
    }
}

@keyframes tf-loader-spinner-pseudo {
    0% {
        transform: rotate(-30deg);
    }
    29.4% {
        border-left-color: transparent;
    }
    29.41% {
        border-left-color: currentColor;
    }
    64.7% {
        border-bottom-color: transparent;
    }
    64.71% {
        border-bottom-color: currentColor;
    }
    100% {
        border-left-color: currentColor;
        border-bottom-color: currentColor;
        transform: rotate(225deg);
    }
}
body {
    color: #696969;
    line-height: 1.6em;
    font-size: 13px;
}

.global-wrap {
    height: 100%;
}


/* pre loader */

#loader,
#challengeloader, #OpenBookingParamsLoader {
    overflow-x: hidden;
    overflow-y: hidden;
    vertical-align: middle;
    background-color: #fff;
    position: fixed;
    display: table;
    width: 100%;
    top: 0;
    height: 100%;
    min-height: 100%;
    z-index: 99999;
}

#challengeloader {
    z-index: 10;
    padding: 0 20px;
}
#OpenBookingParamsLoader {
    z-index:999991;
    padding: 0 20px;
}


.loader-container {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    z-index: 12;
    text-align: center;
}

.loader-container h4 {
    position: absolute;
    margin-top: -80px;
    left: 0;
    right: 0;
}
@media (max-width:480px) {
    .loader-container h4 {
        margin-top: -100px;
    }
}
.loader-container .spinner{
    width: 80px;
    height: 80px;
    border: 4px solid #f3f3f3;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color:#e66221;
    border-radius: 100%;
    margin: auto;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    from{
        transform: rotate(0deg);
    }to{
        transform: rotate(360deg);
    }
}

.success-checkmark {
    width: 88px;
    margin: 0 auto;
    margin: auto;

}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4caf50;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: "";
    height: 100px;
    position: absolute;
    background: #fff;
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4caf50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #fff;
}
@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
   }
    5% {
        transform: rotate(-45deg);
   }
    12% {
        transform: rotate(-405deg);
   }
    100% {
        transform: rotate(-405deg);
   }
}
@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
   }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
   }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
   }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
   }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
   }
}
@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
   }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
   }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
   }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
   }
}
#success-loader, #alert-loader, #confirm-delete{
   overflow-x: hidden;
   overflow-y: hidden;
   vertical-align: middle;
   background-color: #fff;
   position: fixed;
   display: table;
   width: 100%;
   top: 0;
   height: 100%;
   min-height: 100%;
   z-index: 99998;
}

/* default header */

body.default .global-wrap {
    padding-top: 55px;
    position: relative;
    top: 0;
}

body.default #header {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    height: 55px;
    border: 0;
    z-index: 10;
    color: #fff;
    background: #f3f3f2;
}

.default #header {
    width: 100%;
    position: fixed;
    z-index: 1000;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #0db4ff;
    transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
}

a,
a:hover {
    text-decoration: none;
}


/*i {
    vertical-align: middle;
}*/

.bg-grey {
    background: #f7f7f7;
    background-color: #f7f7f7;
}
.bg-white {
    background: #fff;
    background-color: #fff;
}
.panel-account,
.card.panel-account,
.panel-pax {
    border-left-width: 5px;
    border-left-style: solid;
}

@media (min-width:769px) {
    .panel-account {
        padding: 30px
    }
}

.results-data {
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bg-dk-grey,
.panel-default>.panel-heading.bg-dk-grey {
    color: #fff;
    background-color: #4d4d4d;
}

.panel-default>.panel-heading.bg-dk-grey {
    border-color: #4d4d4d;
}

.card {
    background: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.figure {
    margin-bottom: 20px;
}

.navbar-left .navbar-nav>li>a .navbar-nav>li,
.navbar-nav>li>a {
    height: 55px;
    font-size: 15px;
}

.navbar-nav>li.dropdown>a {
    padding-right: 25px
}

.navbar-nav>li.dropdown>a:after {
    content: "\f107";
    font-family: 'tf-portal' !important;
    opacity: 0.5;
    vertical-align: middle;
    margin-left: 3px;
    position: absolute;
    right: 10px;
    top: 17px;
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.1s linear;
}

.login-prompt h5, .summary-box h5 {
    position: relative;
    padding-right: 35px;
    cursor: pointer;
    display: block
}
.summary-box h5 {
    padding: 15px 15px 15px 36px;
    position: relative;
}
.hide-arrow.summary-box h5{
    cursor: default 
}
.hide-arrow.summary-box h5:after{
    content: "";
}
.login-prompt h5:after, .summary-box h5:after {
    content: "\f078";
    font-family: 'tf-portal' !important;
    vertical-align: middle;
    position: absolute;
    right: 0px;
    top: 0px;
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.1s linear;
}
.summary-box h5:after {
    right: 15px;
    top: 15px;
}
.summary-box .chnage-btn{
    padding: 10px 0 10px 15px;
    display: block;
}
.summary-box i.summary-ac{
    position: absolute;
    left: 12px;
    top: 16px;  
}

.panel-title>a:after {
    content: "\f078";
    font-family: 'tf-portal' !important;
    vertical-align: middle;
    position: absolute;
    left: 20px;
    top: 13px;
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.1s linear;
}
.panel-title>a[aria-expanded="true"]:after{
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: transform 0.1s linear;
}
.navbar-nav>li.dropdown>a[aria-expanded="true"]:after,
.login-prompt h5[aria-expanded="true"]:after, .summary-box[aria-expanded="true"] h5:after{
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: transform 0.1s linear;
}
.summary-box-body.panel-body{
    padding: 0;
    border-top: 1px solid white;
    border-bottom: 0px solid transparent;
    border-left: 1px solid white;
    background-color: #f2f2f2;
}
.list-inline.list-unstyled {
    margin-left: 0;
}

.list-group-item {
    margin-bottom: 10px
}

.list-group-item:last:child {
    margin-bottom: 0
}


/* nice animation for desktop drops */

header .dropdown-menu {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    display: block;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}

header .dropup .dropdown-menu {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.navbar-nav>li>a {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.navbar-right .navbar-nav>li:last-child>a {
    border-right: none
}

.navbar-left .navbar-nav>li>a,
.navbar-left .nav .open>a,
.navbar-left .nav .open>a:focus,
.navbar-left .nav .open>a:hover {
    background-color: #272626;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-right .navbar-nav>li a.no-brd {
    border-right: none
}

.navbar-nav li ul li:last-child a.btn-grey {
    border-color: #4d4d4d
}

.navbar-nav li ul li:last-child a.btn-default {
    border-color: #ccc;
}

.navbar-left .navbar-nav>li>a:hover,
.navbar-left .navbar-nav>li>a:focus,
.navbar-left .navbar-nav.nav .open>a:focus,
.navbar-left .navbar-nav.nav .open>a:hover,
.navbar-left .navbar-nav.nav .open>a {
    background-color: #0a0a0a;
}

.navbar-nav>li>a span {
    font-size: 12px;
    margin-left: 5px;
    vertical-align: middle;
}
#side-menu li>a> span {
    margin-left: 5px;
}

#header {
    background-color: #fff;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    border-bottom: 1px solid #eaeaea;
}

#company-phone {
    height: 55px;
    padding-left: 33px;
    padding: 17px 0px 0 28px;
    margin-left: 55px;
    display: inline-block;
    color: #fff
}

.mobile-company-name {
    font-weight: 700
}

@media (min-width: 769px) {
    .navbar-nav>li {
        float: left;
    }
    #company-phone {
        margin-left: 0
    }
}

.navbar-nav i {
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}

.dropdown-menu.hdropdown {
    padding: 0;
    z-index: 1060;
}
.navbar-right .dropdown-menu.hdropdown {
    min-width:280px;
}
.hdropdown .title {
    white-space: nowrap;
}

.title-avatar,
.title-details {
    vertical-align: middle;
    display: inline-block;
}

.title-avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-right: 10px;
}

.hdropdown .title:hover {
    background: transparent
}

@media (min-width: 768px) {
    .mobile-navbar.collapse.in {
        display: none
    }
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }
}

.dropdown-menu {
    font-size: 13px;
    border-radius: 3px;
}

.dropdown-menu.hdropdown li {
    font-size: 13px;
    text-align: left;
    background: #fafbfc;
    border-bottom: 1px solid #eaeaea;
}
.dropdown-menu.hdropdown li>a {
    padding: 9px 20px;
}
.dropdown-menu.hdropdown li>a.ff-profile-box{
    padding: 9px 20px;
    display:flex;
}
.dropdown-menu.hdropdown li ul {
    padding: 10px 10px 10px 20px;
}

.dropdown-menu.hdropdown li ul li {
    padding: 0;
    border-bottom: 0;
}

.dropdown-menu.hdropdown li:hover,
.dropdown-menu.filedropdown li:hover {
    background: transparent
}

.navbar-right {
    margin-right: 0;
}

.mobile-navbar {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
}

.mobile-navbar .navbar-nav {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
}

.mobile-navbar .navbar-nav>li>a {
    padding: 15px 15px;
    font-size: 14px;
    color: #6a6c6f;
    background: #fafbfc;
    border-bottom: 1px solid #eaeaea;
}


/* Menu */

#side-menu {
    font-size: 14px;
}

#side-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#side-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#side-menu li a {
    color: rgba(255, 255, 255, 1.0);
    padding: 15px 45px 15px 25px;
}

#side-menu li .nav-second-level li a {
    padding: 12px 45px 12px 35px;
    font-size: 13px;
}

#side-menu li .nav-second-level li a:active,
#side-menu li .nav-second-level li a:focus {
    background: inherit
}

#side-menu li .nav-second-level li.active a {
    background-color: #f7f9fa;
}

#side-menu.nav>li>a:hover,
#side-menu.nav>li>a:focus {
    background: #3e3d3d;
    color: rgba(255, 255, 255, 1.0);
}

#side-menu li.active {
    background: #3e3d3d;
}

#side-menu .fa-angle-left {
    float: right;
}

#side-menu .fa-angle-left:before {
    content: "\f104";
}

#side-menu .active>a>.fa-angle-left:before {
    content: "\f107";
}

.default-header {
    display: block;
    padding: 30px 0 30px;
    position: relative;
}
#default-portal{
    margin-top: 60px;
}
#default-portal.mt-0{
    margin-top: 0;
}
.company-logo {
    z-index: 9;
}

.company-logo img {
    max-width: 320px;
    height: auto;
    width: auto;
}

@media (max-width:768px) {
    .default-header {
        padding: 25px 0 25px;
    }
    .company-logo img {
        max-width: 190px;
        height: auto;
        width: auto;
    }
    .default-header .nice-title {
        font-size: 25px;
    }
}

h2.nice-title,
h1.nice-title,
.h2.nice-title,
.intro-content h1 {
    position: relative;
}

.default-header .nice-title {
    text-align: right
}
.default-header .nice-title i {
    margin-right:5px
}
.flight-seach-form label {
    margin-bottom: 7px;
    color: #737373;
}

.flight-seach-form {
    margin-top: 20px
}

@media screen and (min-width: 768px) {
    .dropdown.dropdown-lg {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .navbar-right {
        display: none;
    }
    #default-portal{
        margin-bottom: 30px;
    }
    .navbar-left {
        display: none;
    }
}

.open>.dropdown-menu {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* end of global default header css */


/* off canvas side bar for mobile */

.sidebar-toggle {
    position: fixed;
    display: block;
    /* position: relative; */
    /* float: right; */
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    height: 55px;
    font-size: 20px;
    padding: 10px 15px;
    min-width: 55px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    display: block;
    width: 55px;
}

.sidebar-togglable .sidebar-toggle {
    display: block;
}

.sidebar-wrapper {
    position: fixed;
    top: 55px;
    overflow: hidden;
    bottom: 0;
    width: 210px;
    cursor: default;
    -moz-user-select: -moz-none;
    user-select: none;
    -webkit-transform: translate3d(-210px, 0px, 0px);
    transform: translate3d(-210px, 0px, 0px);
}

.sidebar-wrapper.sidebar-ready {
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.sidebar-wrapper.sidebar-open {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.sidebar-wrapper .sidebar-scroller {
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    left: 0;
    right: -18px;
    height: 100%;
}

.sidebar-wrapper li>a {
    cursor: pointer;
}

.sidebar-swipe {
    position: fixed;
    z-index: 1001;
    width: 20px;
    left: 0;
    top: 55px;
    bottom: 0;
    -moz-user-select: -moz-none;
    user-select: none;
    pointer-events: none;
    background: transparent;
}

.sidebar-open+.sidebar-swipe,
.sidebar-force-open .sidebar-swipe {
    left: 210px;
}

.sidebar-trigger .sidebar-toggle {
    z-index: 11;
    left: 0
}

@media (min-width:769px) {
    .sidebar-trigger .sidebar-toggle {
        display: none
    }
}

.sidebar-trigger .sidebar-wrapper {
    z-index: 100;
}

.sidebar-wrapper.sidebar-default {
    color: #fff;
    background-color: #272626;
}

.sidebar-wrapper.sidebar-default.sidebar-open,
.sidebar-wrapper.sidebar-default.sidebar-dragging {
    -webkit-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.18);
    box-shadow: 3px 0 4px rgba(0, 0, 0, 0.18);
}

.sidebar-wrapper.sidebar-inverse.sidebar-open,
.sidebar-wrapper.sidebar-inverse.sidebar-dragging {
    -webkit-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.32);
    box-shadow: 3px 0 4px rgba(0, 0, 0, 0.32);
}

.sidebar-right .sidebar-toggle {
    left: auto;
    right: 0;
    padding-left: 20px;
    padding-right: 0;
}

.sidebar-right .sidebar-wrapper {
    right: 0;
    -webkit-transform: translate3d(210px, 0px, 0px);
    transform: translate3d(210px, 0px, 0px);
}

.sidebar-right .sidebar-wrapper.sidebar-open {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.sidebar-right .sidebar-wrapper.sidebar-default.sidebar-open,
.sidebar-right .sidebar-wrapper.sidebar-default.sidebar-dragging {
    -webkit-box-shadow: -3px 0 4px rgba(0, 0, 0, 0.18);
    box-shadow: -3px 0 4px rgba(0, 0, 0, 0.18);
}

.sidebar-right .sidebar-wrapper.sidebar-inverse.sidebar-open,
.sidebar-right .sidebar-wrapper.sidebar-inverse.sidebar-dragging {
    -webkit-box-shadow: -3px 0 4px rgba(0, 0, 0, 0.32);
    box-shadow: -3px 0 4px rgba(0, 0, 0, 0.32);
}

.sidebar-right .sidebar-swipe {
    left: auto;
    right: 0;
}

.sidebar-right .sidebar-open+.sidebar-swipe,
.sidebar-right .sidebar-force-open .sidebar-swipe {
    right: 210px;
}

@media (max-width: 768px) {
    .sidebar-wrapper {
        width: 80%;
        -webkit-transform: translate3d(-100%, 0px, 0px);
        transform: translate3d(-100%, 0px, 0px);
    }
    .sidebar-open+.sidebar-swipe,
    .sidebar-force-open .sidebar-open+.sidebar-swipe {
        left: 80%;
    }
    .sidebar-force-open .sidebar-swipe {
        left: 0;
    }
    .sidebar-right .sidebar-toggle {
        padding-left: 7px;
    }
    .sidebar-right .sidebar-wrapper {
        -webkit-transform: translate3d(100%, 0px, 0px);
        transform: translate3d(100%, 0px, 0px);
    }
    .sidebar-right .sidebar-open+.sidebar-swipe {
        left: auto;
        right: 80%;
    }
    .sidebar-right .sidebar-force-open .sidebar-swipe {
        left: auto;
        right: 0;
    }
}

@media (max-width: 991px) {
    .sidebar-force-open .sidebar-wrapper:not(.sidebar-open)+.sidebar-swipe {
        left: 0;
    }
}


/* disables the side bar on desktop*/

@media (min-width: 992px) {
    .sidebar-trigger.sidebar-locked .sidebar-toggle {
        display: none;
    }
    .sidebar-trigger.sidebar-locked .sidebar-wrapper {
        margin-top: 51px;
    }
    .sidebar-wrapper.sidebar-open-init {
        -webkit-transform: translate3d(0px, 0px, 0px);
        transform: translate3d(0px, 0px, 0px);
    }
    .sidebar-force-open .sidebar-wrapper.sidebar-open,
    .sidebar-force-open.sidebar-right .sidebar-wrapper.sidebar-open,
    .sidebar-force-open .sidebar-wrapper.sidebar-dragging,
    .sidebar-force-open.sidebar-right .sidebar-wrapper.sidebar-dragging {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.sidebar-wrapper {
    -ms-touch-action: none;
}

.sidebar-swipe {
    -ms-touch-action: none;
}

.profile {
    padding: 20px 20px 10px 20px;
}

@media (max-width: 480px) {
    .profile .btn-lg {
        font-size: 14px;
        padding: 10px 10px;
    }
}

.profile .title-avatar {
    background: #272626;
}

.underline {
    position: relative;
    margin-bottom: 30px;
}

.booking-item-passengers .underline:last-child {
    margin-bottom: 0
}

.profile .underline:after {
    width: 100%;
    height: 1px;
    content: " ";
    bottom: -20px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 0;
    margin-left: 0;
}

.profile .mobile-company-name {
    display: block
}

.profile .mobile-company-name a {
    color: rgba(255, 255, 255, 0.5);
}

.profile .mobile-company-name .underline {
    margin-bottom: 30px;
}

.profile .mobile-company-name .underline:after {
    width: 60px;
    background: rgba(255, 255, 255, 0.5);
    bottom: -20px;
}

.sidebar-wrapper.sidebar-default .profile-list li a {
    padding: 6px 0px 6px 15px;
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 300;
}

.sidebar-wrapper.sidebar-default .profile-list li a:hover,
.sidebar-wrapper.sidebar-default .profile-list li a:focus {
    background: transparent
}


/* end off canvas side bar for mobile */


/* step wizard */

.bs-wizard>.bs-wizard-step {
    padding: 0;
    position: relative;
}

.bs-wizard.complete>.bs-wizard-step>.bs-wizard-dot {
    pointer-events: none;
    background: #f5f5f5;
}

.bs-wizard.complete>.bs-wizard-step>.progress>.progress-bar {
    background: #f5f5f5;
}

.bs-wizard.complete>.bs-wizard-step i {
    color: #f5f5f5;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    display: block;
    background: #4d4d4d;
    top: 35px;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
}

.bs-wizard>.bs-wizard-step>.bs-wizard-dot:after {
    content: ' ';
    width: 34px;
    height: 34px;
    background: #ffffff;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    left: 5px;
}

.bs-wizard>.bs-wizard-step>.progress {
    position: relative;
    border-radius: 0px;
    height: 4px;
    box-shadow: none;
    margin-top: 40px;
    margin-bottom:35px
}

.bs-wizard>.bs-wizard-step i {
    color: #4d4d4d;
    font-size: 16px;
    position: absolute;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 44px;
}

.bs-wizard>.bs-wizard-step.disabled i {
    color: #fff
}

.bs-wizard>.bs-wizard-step>.progress>.progress-bar {
    width: 0px;
    box-shadow: none;
    background: #dfe1e2
}

.bs-wizard>.bs-wizard-step.complete>.progress>.progress-bar {
    width: 100%;
}

.bs-wizard>.bs-wizard-step.active>.progress>.progress-bar {
    width: 50%;
}

.bs-wizard>.bs-wizard-step:first-child.active>.progress>.progress-bar {
    width: 0%;
}

.bs-wizard>.bs-wizard-step:last-child.active>.progress>.progress-bar {
    width: 100%;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot {
    background-color: #f5f5f5;
}

.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot:after {
    opacity: 0;
}

.bs-wizard>.bs-wizard-step:first-child>.progress {
    left: 50%;
    width: 50%;
}

.bs-wizard>.bs-wizard-step:last-child>.progress {
    width: 50%;
}

.bs-wizard-step:last-child.active .bs-wizard-dot {
    background: #4CAF50;
}

.bs-wizard-step:last-child .bs-wizard-dot i {
    color: #fff!important
}

.bs-wizard-step:last-child .bs-wizard-dot:after,
.bs-wizard-step.active:last-child .bs-wizard-dot:after {
    background: #4CAF50
}

.bs-wizard>.bs-wizard-step.active a {
    pointer-events: none;
}

@media all and (max-width: 480px) {
    .bs-wizard>.bs-wizard-step>.bs-wizard-dot {
        width: 34px;
        height: 34px;
        top: 40px;
    }
    .bs-wizard>.bs-wizard-step>.bs-wizard-dot:after {
        width: 24px;
        height: 24px;
    }
    .bs-wizard>.bs-wizard-step i {
        line-height: 34px;
        font-size: 14px;
    }
}
.open_mods .Flights{
    display:none
}

.open_mods.bs-wizard>.bs-wizard-step.Summary>.progress>.progress-bar {
    background: linear-gradient(90deg, rgba(255,255,255,1) 49%, rgba(245,245,245,1) 51%);
}
.open_mods.bs-wizard>.bs-wizard-step.active.Summary>.progress>.progress-bar {
    background: #fff;
}
/* end step wizard */


/* typography */

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.3em;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}

.h1,
h1 {
    font-size: 32px;
}

h2, .h2 {
    font-size: 39px;
}

h3, .h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #272626;
    font-weight: 300;
}

h4, .h4 {
    font-size: 23px;
    line-height: 30px;
    font-weight: 300;
}

h5, .h5 {
    font-size: 16px;
    font-weight: 300;
}
@media (max-width: 768px) {
    h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #272626;
}

    h4 {
    font-size: 16px;
    line-height: 25px;
}
}
label {
    font-weight: 400
}
.weight-medium{
    font-weight:400
}
.strong_heading{
    color: rgb(50, 50, 50);
    font-size: 16px;
    font-weight: 700;
}
*>small,
small {
    color: #818181;
    line-height: 1.4em;
    font-size: 10px
}
a.external_link:after {
    font-family: 'tf-portal';
    content: "\e90a";
    font-size: 85%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em;
    font-weight:normal
}
.btn {
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    border-radius: 0
}

.btn-primary:hover {
    color: #ffffff;
}
.btn-primary:not(.spinnerStyle):focus, .btn-success:not(.spinnerStyle):focus, .btn-secondary:not(.spinnerStyle):focus, .btn-danger:focus {
    box-shadow: 0 0 0 0.2rem rgb(165 165 164 / 45%)!important
}

/* end typography*/
.btn-select {
    padding: 0;
    font-size: 10px;
    line-height: 10px;
    width: 20px;
    height: 20px;
}

/* sidebar */

.sidebar-widget {
    margin-bottom: 30px
}

.nav-pills.nav-stacked>li+li {
    margin-top: 0
}

.nav-pills>li>a {
    color: #686868;
    font-size: 13px;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    -webkit-border-radius: 0;
    border-bottom: 1px solid #eeeeef;
}

.nav>li>a:focus,
.nav>li>a:hover,
.nav>li>a.active {
    text-decoration: none;
}

.nav>li>a.active {
    cursor: default;
    pointer-events: none;
    background-color: #eee;
}

@media (min-width: 769px) {
    aside.sidebar-right {
        padding-left: 30px;
        border-left-color: #d4d4d4;
        border-left-width: 1px;
        border-left-style: solid;
        height: 100%
    }
}

aside.sidebar-left {
    padding-right: 30px;
    border-right-color: #d4d4d4;
    border-right-width: 1px;
    border-right-style: solid
}


/* end sidebar */
/* footer */
.list-inline.company-contact-list>li {
    line-height: 1.6em;
    font-size: 13px;
    margin-right: 0;
}
.list-inline.company-contact-list li:after{
    content: "|";
    padding-left: 3px;
    padding-right: 3px;
}
.list-inline.company-contact-list li:last-child:after{
    content: "";
    padding-left: 0px;
    padding-right: 0px;
}
@media (max-width: 768px) {
    .footer-links .list-inline>li {
        float: none
    }
    .footer-links .list-inline>li>a{
        padding-top: 5px;
        padding-bottom: 10px;
        display: block;
    }
    .list-inline.company-contact-list>li {
        display: block;
        margin-bottom:5px
    }
    .list-inline.company-contact-list>li:last-child {
        margin-bottom:0
    }
    .list-inline.company-contact-list li:after{
        content: "";
        padding-left: 0px;
        padding-right: 0px;
    }
}

.footer-links .list-inline {
    padding-top: 20px;
    padding-bottom: 20px;
}

.list-horizontal>li,
.list-inline>li {
    padding: 0;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px
}
.list-horizontal>li:last-child,
.list-inline>li:last-child {
    margin-right: 0
}

.sub-footer-links small {
    font-size: 12px;
}


/* end footer */

.nav-bar-icon {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    height: 29px;
    width: 20px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

.nav-bar-icon>span {
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 2px;
    -webkit-transition: -webkit-transform 0.3s, background 0.25s ease;
    -webkit-transition: background 0.25s ease, -webkit-transform 0.3s;
    transition: background 0.25s ease, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.25s ease;
    transition: transform 0.3s, background 0.25s ease, -webkit-transform 0.3s;
}

.nav-bar-icon>span:before,
.nav-bar-icon>span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #323232;
    -webkit-transition: -webkit-transform 0.3s, background 0.25s ease;
    -webkit-transition: background 0.25s ease, -webkit-transform 0.3s;
    transition: background 0.25s ease, -webkit-transform 0.3s;
    transition: transform 0.3s, background 0.25s ease;
    transition: transform 0.3s, background 0.25s ease, -webkit-transform 0.3s;
}

.nav-bar-icon>span,
.nav-bar-icon>span:before,
.nav-bar-icon>span::after,
.nav-bar-icon>span:before,
.nav-bar-icon>span::after,
.nav-bar-icon>span,
.nav-bar-icon>span:before,
.nav-bar-icon>span::after {
    background-color: #fff;
}

.nav-bar-icon>span:before {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -o-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
}

.nav-bar-icon>span:after {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    -o-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -moz-transform: translateY(6px);
}

.sidebar-toggle-opened .nav-bar-icon {
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.sidebar-toggle-opened .nav-bar-icon>span:before {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.sidebar-toggle-opened .nav-bar-icon>span:after {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}


/*form styles */

label {
    display: block
}

.form-group {
    position: relative
}

.form-group-lg.form-group {
    margin-bottom: 25px
}
@media (min-width: 768px) {
.form-group-lg.form-group.mb-lg-0 {
    margin-bottom: 0
}
}
.form-group-icon-right.form-group-lg.form-group .form-control {
    padding-right: 45px
}
.read-only select[readonly].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #eee;
}
.form-group-lg.form-group label {
    margin-bottom: 7px
}

.form-group-lg.form-group .form-control {
    padding: 10px 18px;
    height: 48px;
    font-size: 14px;
    border-radius: 0;
    line-height:1.5
}

.form-control {
    border-radius: 0;
    line-height: 1.6em;
    box-shadow: none;
    -webkit-box-shadow: none;
    -webkit-border-radius: 0;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.form-control:hover{
    border-color: #272626;
}
.form-control:focus {
    border-color: #272626;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.5), inset 0 0 4px #a9a9a9;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.5), inset 0 0 4px #a9a9a9;
}
.btn.focus-style:focus {
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.5), inset 0 0 4px #a9a9a9;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.5), inset 0 0 4px #a9a9a9;
}
.has-error .form-control:focus {
    border-color: #9f0737;
    -webkit-box-shadow: 0 1px 1px rgb(202 61 61 / 34%), 0 0 8px rgb(193 197 200 / 60%);
    box-shadow: 0 1px 1px rgb(202 61 61 / 34%), 0 0 8px rgb(193 197 200 / 60%);
}
.form-control.no-focus{
    pointer-events: none;
}
.form-control.no-focus:focus, .form-control.no-focus:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ccc;
}
.checkbox,
.radio {
    margin-top: 0;
    margin-bottom: 15px
}
.btn_white {
    box-shadow: 0 2px 1px 0 rgb(0 0 0 / 10%);
    border: 0.1rem solid #333;
    font-weight: 700;
    color: #333;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background: #fff;
    border-radius: 3px;
}
.btn_white:hover {
    -webkit-box-shadow: 0 0 6px 0 rgb(0 0 0 / 50%);
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 50%);
}
.btn_white:active {
    background: #e6e6e6;
    box-shadow: 0 0.2rem 0.1rem 0 rgb(0 0 0 / 10%);
}
.btn_white[disabled] {
    background: #d0cece;
    border: 0.1rem solid #d0cece;
    box-shadow: none;
}
.form-control[disabled]:not(#shipment_form input, .spinnerStyle, .global-disabled-style-exempt), .btn-success[disabled]:not(.spinnerStyle), .disable [readonly].form-control.error {
    border-color: inherit;
    background-color: #fafafa!important;
    color: transparent;
}
select.global-disabled-style-exempt{
    appearance: none;
}
.btn[disabled]:not(.spinnerStyle), .btn[disabled]:hover:not(.spinnerStyle) {
    border-color: #f1f1f1!important;
    color: transparent;
    opacity: 1.0;
    color: #bdbcbc;
    pointer-events:none
}

.disable label, .disable .input-helper__icon, .disable label small, .disable .input-set label,.disable .input-set label.top-set {
    color: #e6e6e6;
}
.disable .checkmark {
    border: solid #e6e6e6 2px;
    pointer-events: none;
}
[readonly].form-control {
    background-color: white;
}

.read-only [readonly].form-control {
    background-color: #eee;
}

.btn-conditional.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .25;
}
/* form error styles */

.parsley-errors-list {
    list-style: none;
    margin-bottom: 0
}

.disable label.error,
.disable .parsley-errors-list {
    display: none
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error,
[readonly].form-control.parsley-error,
.parsley-error>input.form-control,
.parsley-error select.form-control,
.parsley-error textarea.form-control, 
.parsley-error .bootstrap-select>.btn {
    border: 1px solid #9f0737;
    background-color: #ffffd5!important
}

.parsley-errors-list {
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

label.error,
.parsley-errors-list.filled {
    padding: 7px 11px;
    color: #a94442;
    background-color: #f2dede;
}

.has-success .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.popover-content {
    font-size: 12px;
    padding: 9px 14px;
}

.popTip{
    vertical-align: middle;
    cursor: pointer;
}
.popTip i{
    font-size: 16px;
    margin-left: 5px;

}
.popover-title {
    font-size: 12px;
    font-weight: 700;
    padding: 8px 38px 6px 14px;
    margin: 0;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content h5 {
    font-size: 13px;
    text-transform: none;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold
}
.popover-content p{
    margin-bottom:0
}

.popover .close {
    position: absolute;
    top: 7px;
    right: 10px;
}
.popPadding {
    padding-right: 25px;
}

/* buton styles */
.utility-btn-list {
    margin: 0;
    padding: 0;
   margin-bottom:10px;
}
.utility-btn-list>li {
    margin: 0;
    padding: 0;
    margin-right: 0;
    
}
.utility-btn-list>li:last-child {
    margin-right: 0;
}

@media (min-width: 768px) {
    .utility-btn-list>li {
    margin-right: 10px;
}
}
@media (max-width:640px){
  .utility-btn-list__item {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 5px;
    width: 100%;
}
}
@media (max-width: 480px){
    .utility-btn-list>li{
        display:block;
        margin-bottom: 8px;
    }
    .tf-flight__carddetail-header__item.badge {
        display: block;
        margin-top: 8px;
    }
}
.utility-btn-list__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #696969;
    border-radius: 6px;
    padding: 5px 10px;
    color: #696969;
    text-decoration: none;
    font-size:12px;
    position:relative;
    background:#fff
}
.utility-btn-list__item:hover {
    background: #fff;
    box-shadow: 0 0 0 0.2rem rgb(199 199 198 / 45%);
    color: #696969;
}
.utility-btn-list__item:focus, .utility-btn-list__item[aria-expanded="true"] {
    outline: 0;
    box-shadow: none;
    color: #696969;
    text-decoration: none;
    background: #eef2f9;
}
.utility-btn-list__item:active{
    transition: transform 0.1s linear;
    transform: translateY(2px); 
    outline: 0;
    background: #eef2f9; 
    box-shadow: none;
}
.utility-btn-list__item.squareify{
    padding:6px

}

.list__item-icon{
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #696969;
    font-size: 16px;
}
.list__item-label {
    padding-left: 5px;
}
.utility-btn-list__item.lg{
    padding: 10px 20px;
    font-size: 15px;
}

.utility-btn-list__item.utility-arrowfy{
    position:relative;
    padding: 10px 40px 10px 20px;
}
.utility-btn-list__item.utility-arrowfy:after{
    content: "\f107";
    font-family: 'tf-portal' !important;
    vertical-align: middle;
    position: absolute;
    right: 15px;
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    font-size: 18px;
}
.utility-btn-convert-center.utility-btn-list__item .list__item-label {
padding-left:0!important
}
.nav-action-btns .utility-btn-list__item.btn-outline .list__item-icon{
color:#fff
}
.nav-action-btns .utility-btn-list__item.btn-outline:hover{
background:transparent;
color:#fff
}
.nav-action-btns .utility-btn-list__item.btn-outline:focus {
    color: #fff;
    background: transparent;
    transition: transform 0.1s linear;
    transform: translateY(2px);
}
.lg .list__item-icon {
    font-size: 19px;
}
.lg .list__item-label {
    flex-grow: 1;
    text-align: center;
}

.utility-btn-list__item:hover
.btn-success.utility-btn-list__item .list__item-icon {
    color: white;
}
.bg-white.utility-btn-list__item:hover {
    background: #fff;
}
a.utility-btn-list__item.btn-success, .utility-btn-list__item.btn-success {
    background: #5cb85c;
    color: #fff;
    border-color: #5cb85c;
}
.utility-btn-list__item.btn-success i{
    color:#fff
}
.nav-action-btns {
    margin: 1.25rem 1.5rem 1.8125rem;
}
.sidebar-scroller .nav-action-btns {
    margin: 10px 20px 0 20px;
}
.nav-action-btns>div{
    margin-bottom:10px
}
.nav-action-btns>div:last-child{
    margin-bottom:0
}
.brand-btn.no-brd {
    border: none;
}
.btn-45.pad-width{
    min-width:130px
}
.btn.pad-width {
    padding-left: 30px;
    padding-right: 30px;
}
.btn-45{
    height: 45px;
}
a.btn-45, .btn-45-vc {
    line-height: 2;
}
.btn-61{
    height: 61px
}
a.btn-61{
    line-height: 61px
}
.btn.btn-side-pad{
    padding: 6px 23px;
}
.btn-labeled {
    padding-bottom: 6px;
    padding-top: 6px;
    padding-right: 42px;
    position: relative;
}

.btn-labeled.labled-lg {
    padding-right: 55px;
    height: 45px;
}

.btn-label {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.15);
}

.btn-labeled.labled-lg .btn-label {
    padding: 13px 15px 10px 15px;
    width: 45px;
}

.btn-labeled.labled-sm {
    height: 30px;
    font-size: 11px;
}

.btn-labeled.left-icon {
    padding-left: 59px;
    padding-right: 30px;
}

.btn-labeled.left-icon .btn-label {
    left: 0;
    right: auto;
}

.btn-labeled.disabled .fa-chevron-right:before {
    font-family: tf-portal;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    content: "\f110";
    animation: spin 0.5s infinite linear;
    -webkit-animation: spin 0.6s infinite linear;
    display: inline-block;
    color: #0a0a0a;
}

.btn-outline.labled-sm {
    border-radius: 4px;
}

.btn-outline.labled-sm .btn-label {
    border-radius: 0 4px 4px 0;
}

.btn-outline {
    background-color: transparent;
    color: inherit;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline.with-states {
    color: #fff;
    transition: all 0.2s ease;
}

.btn-outline.with-states:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff; 
    color: #fff;
}

.btn-outline.with-states:active {
    background-color: rgba(255, 255, 255, 0.2); 
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2); 
}

.btn-dark-outline.with-states {
    color:#000;
    transition: all 0.2s ease;
    background:transparent
}

.btn-dark-outline.with-states:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark-outline.with-states:active {
    
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2); 
}

.btn-grey {
    background: #4d4d4d;
    color: #ffffff;
    border-color: #4d4d4d;
}
.btn-dark-outline{
    background-color: #fff;
    border-radius: 0.3rem;
    border: 1px solid #000;
}
.btn-dark-outline:hover {
    box-shadow: 0 0 6px 0 rgb(0 0 0/50%)
}

.btn-dark-outline:active, .btn-dark-outline:focus {
    background: #f6fafe;
}
.book-icon {
    border-radius: 50%;
    color: #fff;
    height: 28px;
    width: 28px;
    text-align: center;
    display: inline-block;
    line-height: 28px!important;
}

.generic-booking-item {
    display: block;
    position: relative;
    padding: 17px;
    border: 1px solid #e6e6e6;
    cursor: default;
    background: #fff;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.generic-booking-item .booking-item-title {
    margin-bottom: 7px;
    margin-top: 10px;
    font-weight: 700;
}

.generic-booking-item .booking-item-address {
    line-height: 1em;
    font-size: 13px;
    margin-bottom: 0;
   
}
.route-data .booking-item-address{
    margin-right:10px
}
@media (min-width: 768px) {
    .generic-booking-item .booking-item-address {
        line-height: 2em;
        display: block;
    }
    .route-data .booking-item-address{
        margin-right:0
    }
    .generic-booking-item .booking-item-title {
        margin-top: 0
    }
}


/* modal global styles */

body.modal-open {
    padding-right: 0 !important;
}

.modal-content.card {
    background: #fff;
}

.modal-content {
    padding: 0px;
}

.modal-content .modal-header {
    padding: 15px;
    border-bottom-color: #e5e5e5;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    min-height: 16px;
    background: #f7f7f7;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.modal-content .modal-header.bg-white{
background:#fff
}
.modal-body {
    padding-bottom: 0;
}

.legal-wrapper.modal-body {
    position: relative;
    overflow-y: auto;
    height: 400px;
}

.ajax-modal-loader {
    height: 400px;
    position: relative;
}

.ajax-modal-loader:after {
    font-family: tf-portal;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    content: "\f110";
    font-size: 20px;
    animation: spin 0.9s infinite linear;
    -webkit-animation: spin 0.9s infinite linear;
    display: inline-block;
    color: #797878;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
}
.spinnerStyle.btn[disabled]{
    position: relative;
    color: transparent;
}
.spinnerStyle.btn.disabled {
    pointer-events: none;
    opacity: .65;
}
button.spinnerStyle[disabled]:after, .spinnerStyle[disabled]:after  {
    font-family: tf-portal;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    content: "\f110";
    animation: spin .5s infinite linear;
    -webkit-animation: spin .6s infinite linear;
    display: inline-block;
    color: #2b323a;
    vertical-align: middle;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-left:0!important
}
.btn-labeled[disabled] .fa-chevron-right:before,
.btn-labeled[disabled] .fa-search:before,
.btn-labeled[disabled] .fa-check:before {
    font-family: tf-portal;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    content: "\f110";
    animation: spin 0.5s infinite linear;
    -webkit-animation: spin 0.6s infinite linear;
    display: inline-block;
    color: #0a0a0a;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.pop-ac {
    pointer-events: none!important
}

.passenger-passport-date input {
    display: inline-block;
    width: 30%;
    text-align: center;
}

.alert-outline {
    border-color: #4d4d4d;
}

.login-prompt .col-sm-4:last-child .form-group-lg.form-group {
    margin-bottom: 0
}

@media (min-width: 768px) {
    .login-prompt .form-group-lg.form-group {
        margin-bottom: 0
    }
}
a.modify-search {
    vertical-align: middle;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}
a.modify-search span, a.stopsLink, a.stopsLink:hover, a.customer-pickup-info-url, a.customer-pickup-info-url:hover{
    position: relative;
    display: inline-block;
    text-decoration: underline;
}

a.modify-search span:after {
    content: "\f040";
    font-family: 'tf-portal';
    position: absolute;
    right: -13px;
    top: -4px
}
.reports-link{
    position: relative;
    display: inline-block;
}
.reports-link span:after{
    content: "\f0f6";
    font-family: 'tf-portal';
    position: absolute;
    right: -13px;
    top: -2px;
}
@media (max-width: 767px) {
    a.modify-search {
        display: block;
    }
}
.grecaptcha-badge {
    visibility: hidden !important;
    pointer-events: none !important;
}

#recaptchaDiv {
    width: 304px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 30px;
}

#recaptchaText {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    top: 18px;
    left: 0px;
}

.recaptcha-onsubmit #recaptchaDiv {
    margin-left: 0;
    margin-top: 10px;
    top: 0;
}

.recaptcha-onsubmit #recaptchaText {
    text-align: left;
    top: 0;
}

#custom-header .alert p a {
    text-decoration: none;
    font-weight: 700;
}

#custom-header .alert-success p a {
    color: #69763d;
    border-bottom-style: dotted;
    border-width: 1px;
    border-color: #69763d;
}

#custom-header .alert-danger p a {
    color: #a94442;
    border-bottom-style: dotted;
    border-width: 1px;
    border-color: #a94442;
}

#custom-header .alert-warning p a {
    color: #8a6d3b;
    border-bottom-style: dotted;
    border-width: 1px;
    border-color: #8a6d3b;
}

#custom-header .alert-info p a {
    color: #31708f;
    border-bottom-style: dotted;
    border-width: 1px;
    border-color: #31708f;
}

.pretty-shadow {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
}
.success-border{
    border: 2px solid #37b37e;   
}
.fixed_alert  {
	position: fixed;
	right: -600px;
	box-sizing: border-box;
	bottom: 20px;
	z-index: 9999;
	display: block
}
.alert_reveal {
	right: 16px !important;
}
.transition {
	transition: all .5s ease-in-out;
}
.alert_container {
	box-shadow: 0 0 24px 0 rgb(0 0 0 / 22%), 0 24px 24px 0 rgb(0 0 0 / 30%);
	position: relative;
	width: 390px;
}
.alert_container.wide-alert {
	width: 490px;
}
.alert.alert-dismissible {
    position: relative;
}
.alert-dismissible .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: .75rem 1.25rem;
	color: inherit;
}
@media (min-width: 0px) and (max-width: 767px) {
	.alert_container {
		width: calc(100% - 32px);
		right: -32px;
	}
}
.confirm-content {
	padding: 2.95rem 2.45rem;
	font-size: 1.5rem;
	
}
.confirm-content.confirm-success {
	background-color: #5cb85c;
	color: #fff;
}
.confirm-content.confirm-error {
	background-color: #ebccd1;
	color: #a94442;
}
.confirm-error .fa-check:before {
    content: "\f12a";
}
.confirm-error .check-wrapper {
    color: #a94442;
    border: solid 3px #a94442;

}
.confirm-content-body {
	-ms-flex: 1;
	flex: 1;
}
.check-wrapper {
	font-size: 1.78571rem !important;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffffff;
	border: solid 3px #ffffff;
	margin-right: 1.3rem;
}
.booking-total-currency-link:link, .booking-total-currency-link:visited {
    font-size: 90%;
    line-height: 1.4em;
    font-size: 11px;
    color: #377841;
    border-bottom: dotted 1px #377859;
    text-decoration: none;
}

.tf-fieldset {
    border: solid #ffffff 2px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #d0d1d1;
}
.checkbox-fieldset.tf-fieldset.fieldsetHide {
    border: none;
    padding: 0;
    margin-bottom: 0;
}
.checkbox-fieldset.tf-fieldset {
    border: 1px solid #5cb85c;
}
.checkbox-fieldset input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox-fieldset label {
    display: block;
    position: relative;
    padding-left: 33px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-fieldset label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    border: solid #5cb85c 2px;
    border-radius: 4px;
    background: #fff;
}
.checkbox-fieldset label input:checked~.checkmark {
    border-color: #5cb85c;
    color: #5cb85c;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-fieldset label input:checked~.checkmark:after {
    display: block;
}
.checkbox-fieldset label .checkmark:after {
    left: 0;
    content: "\f00c";
    font-family: 'tf-portal';
    text-align: center;
    width: 100%;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}
.checkbox-fieldset .parsley-errors-list.filled {
    margin-left: 33px;
    position: relative
}
.checkbox-fieldset .parsley-errors-list.filled:before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #f2dede transparent;
    border-style: solid;
    position: absolute;
    top: -8px;
}
.checkbox-fieldset .form-group:last-child {
    margin-bottom: 0
}
.checkbox-fieldset a {
    text-decoration: underline;
}
.tf-fieldset-padded {
    .form-group {
      margin-bottom: 1rem !important;
      border: .0625rem solid #eee;
      border: 1px solid rgba(0, 0, 0, .15);
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
    }
  
    label {
      display: -webkit-flex;
      display: flex;
      padding-top: 20px;
      padding-bottom: 20px;
      margin-bottom: 0;
  
      .checkmark-label {
        margin-right: 20px;
        font-weight: 700;
      }
  
      .checkmark {
        position: relative;
        margin-right: 20px;
      }
    }
  
    .notice-warning, 
    .notice-warning label {
      background-color: #fcf8e3;
    }
  }
.disable label.check-container {
    pointer-events: none;
}
.pane-separator {
    border-top: 1px solid #eee;
    margin-top: 30px;
    margin-bottom: 20px;
    height: 1px;
}
.pane-separator div {
      font-size: 19px;
    text-align: center;
    background-color: #fff;
    padding: 5px;
    font-weight: 300;
}
.card .pane-separator div, .bg-grey .pane-separator div {
  background-color: #f7f7f7;
}
.contact_row {
    flex: 1 1 auto;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.customer_contact {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact_label {
    flex: 0 0 38%;
    font-weight: 700;
}
@media (min-width: 480px) {
    .contact_row {
        flex: 1 1 auto;
        flex-direction: row;
    }
}
@media (min-width: 768px) {
	.pane-separator{
		margin-top: 50px;
	}
}
.spinnerStyle{
    position:relative;
    -webkit-transition: background-color 0.4s ease-in;
    transition: background-color 0.4s ease-in;
}
.spinnerStyle.btn[disabled], .spinnerStyle.btn[disabled]{
    color:transparent!important;
    opacity: 1.0;
}
.spinnerStyle.btn[disabled]:after, .spinnerStyle.btn[disabled]:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid #fefefe;
  border-radius: 50%;
  border-left-color: transparent;
  -webkit-animation: spinLoad 0.5s infinite linear;
  animation: spinLoad 0.5s infinite linear;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
@-webkit-keyframes spinLoad {
	0% {
	  -webkit-transform: translate(-50%, -50%) rotate(0deg);
	  transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
	  -webkit-transform: translate(-50%, -50%) rotate(360deg);
	  transform: translate(-50%, -50%) rotate(360deg);
	}
  }
  @keyframes spinLoad {
	0% {
	  -webkit-transform: translate(-50%, -50%) rotate(0deg);
	  transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
	  -webkit-transform: translate(-50%, -50%) rotate(360deg);
	  transform: translate(-50%, -50%) rotate(360deg);
	}
  }


.copy-tooltip {
    font-size: 13px;
    padding: 6px;
    cursor: pointer;
    background: none;
    border-radius: 2px;
    cursor: pointer;
    height: 32px;
    width: 32px;
    justify-content: center;
    text-decoration: none;
    border: solid 1px #dfdcdc;
    margin-left: 3px;
}
.alert-info .copy-tooltip {
    border: solid 1px #a5bfcc;
}
.btn.copy-tooltip:active, .btn.copy-tooltip:focus {
    box-shadow: none;
    border: #dfdcdc solid 1px;
    background: #f2f2f2;
}
.alert-success .copy-tooltip{
    border: solid 1px #3c763d;
}
.btn.copy-tooltip:hover{
    border: #dfdcdc solid 1px;
    background: #e2e6ea;
}
.btn.copy-tooltip:active, .btn.copy-tooltip:focus{
    border: solid 1px #272626;
}
.edit-this-btn a {
    color: #696969;
    border: solid 1px #696969;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    margin: 0 0 0 1rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: block;
}
.edit-this-btn a:hover {
	background: #f7f7f7;
    color: #696969;
}
.edit-this-btn a:active {
    box-shadow: 0 0 0 0.2rem rgb(199 199 198 / 45%);
}
.edit-this-btn .desktop {
	display: none;
}
.edit-this-btn .mobile {
	display: block;
	font-size: 13px;
	text-align: center;
	line-height: 24px;
}
@media (min-width: 767px) {
	.edit-this-btn a {
		align-self: start;
		border-radius: 4px;
		line-height: normal;
		min-height: auto;
		min-width: auto;
		padding: 3px 0.65rem;
		text-decoration: none;
		white-space: nowrap;
		width: auto;
		height: auto;
	}
	.edit-this-btn .desktop {
		display: block;
	}
	.edit-this-btn .mobile {
		display: none;
	}

}
#multiTabModal .modal-body {
    margin: 20px;
    padding: 15px;
}
#multiTabModal p {
    font-size: 14px;
    line-height: 1.8em;
}

.payment-iframe iframe{
    width: 100%;
    height: 308px;
    border: none;
}

.payment-iframe #iframeloader{
    display: none;
    width: 100%;
    height: 308px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    vertical-align: middle;
    background-color: #fff;
    min-height: 100%;
    z-index: 99999;
}
.bootstrap-select .dropdown-menu>.active>a, .bootstrap-select .dropdown-menu>.active>a:focus, .bootstrap-select .dropdown-menu>.active>a:hover {
    background-color: #4d4d4d;
}
.bootstrap-select .dropdown-menu li a {
    padding: 6px 20px;
    font-size: 14px;
}
.bs-actionsbox, .bs-donebutton, .bs-searchbox {
    position: relative;
}
.bs-searchbox .form-control {
    padding: 5px 10px 5px 35px!important;
}
.bootstrap-select.btn-group>.btn{
    border-radius:0
}
.bootstrap-select.btn-group>.btn:hover{
    z-index: 0;
}
.mbsc-popup .btn_cancel {
    border: solid 1px #ccc;
    height: 32px;
    background: #fff;
    width: 32px;
}
/* horizontal sub section nav */
.hz-sub-nav{
    background-color: #fff;
    width: 100%;
    border-bottom: 1px solid #dedede;
}

.hz-sub-nav .sub-nav-link{
    color: #111111;
    padding: 17px 15px 15px 15px;
    border-bottom: 2px solid transparent;
}
.sub-nav-link.current{
    border-bottom-style:solid;
    border-bottom-width:2px;
}
.hz-sub-nav .sub-nav-link:hover, .vert-sub-nav .sub-nav-link:hover {
    background: #fafafa;
    text-decoration:none
}
.hz-sub-nav .sub-nav-link:active, .hz-sub-nav .sub-nav-link:focus, .vert-sub-nav .sub-nav-link:active, .vert-sub-nav .sub-nav-link:focus {
    background: #f7f7f7;
    text-decoration:none
}

/* vertical sub section nav */
.vert-sub-nav{
    background-color: #f3f3f3;
    width: 100%;
    padding: 20px;
}
.vert-sub-nav .sub-nav-link {
    color: #111111;
    padding: 17px 15px 15px 15px;
    border-bottom: 2px solid #eeeeee;
}
.vert-sub-nav .sub-nav-link.current{
    background:#fff
}
mark {
    color: #000;
    background: #ff0;
}
#content p a {
    text-decoration: underline;
}
    
.access-field label input.form-control, .access-field label select.form-control {
    margin-top: 5px;
}
.access-field label {
    margin-bottom: 0;
}
.access-field .iti {
    margin-top: 5px;
}
.no-wordwrap{
    white-space: nowrap;
}
@media (min-width: 768px) {
    .no-wordwrap-md{
        white-space: normal;
    } 
}
.sml-bdr{
    margin-top: 10px;
    margin-bottom: 10px;
}
.ajax-loader{
    height: 100%;
}
.ajax-label{
    color: #fff;
    font-size: 16px;
    margin-right:20px
}
.ajax-pulse {
    position: relative;
    left: -9999px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    box-shadow: 9999px 0 0 -5px;
    animation: ajax-pulse 1.5s infinite linear;
    animation-delay: 0.25s;
  }
  .ajax-pulse::before, .ajax-pulse::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
  }
  .ajax-pulse::before {
    box-shadow: 9984px 0 0 -5px;
    animation: ajax-pulse-before 1.5s infinite linear;
    animation-delay: 0s;
  }
  .ajax-pulse::after {
    box-shadow: 10014px 0 0 -5px;
    animation: ajax-pulse-after 1.5s infinite linear;
    animation-delay: 0.5s;
  }
  
  @keyframes ajax-pulse-before {
    0% {
      box-shadow: 9984px 0 0 -5px;
    }
    30% {
      box-shadow: 9984px 0 0 2px;
    }
    60%, 100% {
      box-shadow: 9984px 0 0 -5px;
    }
  }
  @keyframes ajax-pulse {
    0% {
      box-shadow: 9999px 0 0 -5px;
    }
    30% {
      box-shadow: 9999px 0 0 2px;
    }
    60%, 100% {
      box-shadow: 9999px 0 0 -5px;
    }
  }
  @keyframes ajax-pulse-after {
    0% {
      box-shadow: 10014px 0 0 -5px;
    }
    30% {
      box-shadow: 10014px 0 0 2px;
    }
    60%, 100% {
      box-shadow: 10014px 0 0 -5px;
    }
  }

  .circle-loader {
    margin-bottom: 3.5em;
    border: 4px solid rgb(235 233 233);
    border-left-color: var(--color-positive-green);
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
}
    
    .load-complete {
        -webkit-animation: none;
        animation: none;
        border-color: var(--color-positive-green);
        transition: border 500ms ease-out;
    }
    
    .ajax-checkmark {
        display: none;
    }
    .ajax-checkmark.draw:after {
        animation-duration: 800ms;
        animation-timing-function: ease;
        animation-name: ajax-checkmark;
        transform: scaleX(-1) rotate(135deg);
    }
    .ajax-checkmark:after {
        opacity: 1;
        height: 3.5em;
        width: 1.75em;
        transform-origin: left top;
        border-right: 4px solid var(--color-positive-green);
        border-top: 4px solid var(--color-positive-green);
        content: "";
        left: 1.50em;
        top: 3.5em;
        position: absolute;
    }
    
    @keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    }
    @keyframes ajax-checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 1.75em;
        opacity: 1;
    }
    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
    }
    .arrow-link{
        position:relative
    }
    .arrow-link:after {
        content: "\f105";
        font-family: 'tf-portal' !important;
        margin-left: 5px;
        transition: margin-left 0.3s ease;
    }

    .arrow-link:hover:after {
        margin-left: 8px;
    }
    /* Alert Styles to update default Bootstrap */
    .alert-warning {
        color: #856404;
        background-color: #fff3cd;
        border-color: #ffeeba;
    }
    .alert-danger {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }
    .alert-success {
        color: #155724;
        background-color: #d4edda;
        border-color: #c3e6cb;
    }
    .alert-info {
        color: #0c5460;
        background-color: #d1ecf1;
        border-color: #bee5eb;
    }
    .alert-primary {
        color: #004085;
        background-color: #cce5ff;
        border-color: #b8daff;
    }
    .toggle-switch {
        position: relative;
        display: inline-block;
        white-space: nowrap;
        line-height: 1;
    }
    
    .toggle-switch input {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        opacity: 0;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }
    
    /* LABEL CONTAINER */
    .toggle-switch .state {
        position: relative;
    }
    
    .toggle-switch .state label {
        position: initial;
        display: inline-block;
        font-weight: 400;
        margin: 0;
        text-indent: 2.5em;
        min-width: calc(1em + 2px);
        color: #acadae; /* Unchecked label text */
    }
    
    /* Base ::before / ::after styles for dot/track */
    .toggle-switch .state label::after,
    .toggle-switch .state label::before {
        content: '';
        width: calc(1em + 2px);
        height: calc(1em + 2px);
        display: block;
        box-sizing: border-box;
        border-radius: 100%;
        border: 1px solid transparent;
        z-index: 0;
        position: absolute;
        left: 0;
        top: calc(-108% + 1em);
        background-color: transparent;
        transition: 0.2s;
        transform: scale(0.8);
    }
    
    .toggle-switch .state label::before {
        border-color: #bdc3c7;
    }
    
    .toggle-switch .state label::after {
        background-color: #bdc3c7 !important;
    }
    
    .toggle-switch .state::before {
        content: '';
        position: absolute;
        border: 1px solid #bdc3c7;
        border-radius: 60px;
        width: 2em;
        height: calc(1em + 2px);
        top: calc(-116% + 1em);
        z-index: 0;
        transition: 0.2s;
        background-color: #fff;
        box-sizing: unset;
    }
    
    /* Checked styles */
    .toggle-switch input:checked ~ .state::before {
        border-color: #337ab7;
        background-color: #337ab7 !important;
    }
    
    .toggle-switch input:checked ~ .state label {
        color: #5a656b;
    }
    
    .toggle-switch input:checked ~ .state label::before {
        opacity: 0;
    }
    
    .toggle-switch input:checked ~ .state label::after {
        background-color: #fff !important;
        left: 1em;
    }
    
    /* --------------------------------- */
    /* .switch-lg MODIFIER STYLES BELOW */
    /* --------------------------------- */
    
    .toggle-switch.switch-lg input {
        min-width: 38px;
    }
    
    .toggle-switch.switch-lg .state::before {
        width: 38px;
        height: 21px;
        top: -1px;
        transition: all 0.5s ease;
    }
    
    .toggle-switch.switch-lg .state label {
        text-indent: 31.5px;
        min-width: 21px;
        height: 21px;
    }
    
    .toggle-switch.switch-lg .state label::after,
    .toggle-switch.switch-lg .state label::before {
        width: 21px;
        height: 21px;
        top: 0;
        border-radius: 100%;
        transform: scale(0.8);
    }
    
    .toggle-switch.switch-lg input:checked ~ .state label::after {
        left: 1.4em;
    }
    .toggle-switch.switch-lg.has-label  .state label {
        text-indent: 51px;
        display: -webkit-flex;
        display: flex;
        -ms-flex-item-align: center;
        align-items: center;
        height: 21px;
    }
    .panel-signup{
        position: relative;
        padding-left: 80px;
        width:100%
    }
    .panel-signup:after {
        content: "\e91d";
        font-family: 'tf-portal' !important;
        position: absolute;
        left: 0px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 40px;
        border-radius: 5px;
        display: block;
        padding: 20px;
        color:#fff
    }
      @media screen and (min-width: 768px) {
        .panel-signup{
          width:75%
        }
        .panel-signup.width-100{
            width:100%
        }
      }
      @media screen and (min-width: 1200px) {
        .panel-signup{
          width:50%
        }
        .panel-signup.width-100{
            width:100%
        }
      }

    .simple-container{
        border-radius: 16px;
        border-color: #d4dbe0;
        border-width: 1px;
        border-style: solid;
        text-decoration: none;
    }
    .sc-item{
        padding: 3rem;
        gap: 2rem;
        font-size: 1.4rem;
    }
    p.text-lg{
        font-size: 1.4rem; 
    }
    .sc-item:not(:last-child) {
        border-bottom: 1px solid #d3d3d3;
    }
    .sc-icon{
        font-size: 1.9rem;
    }
    .sc-body{
        flex-grow: 1;
        gap: 1rem
    }
    .skeleton-text {
  /* Dimensions and spacing */
  height: 1em; /* Adjust to match your font size */
  margin-bottom: 0.5em;
  border-radius: 4px;
  /* Appearance */
  background-color: #e0e0e0; /* Light gray color */
  color: transparent; /* Makes any accidental text invisible */
  animation: pulse 0.7s infinite alternate; /* Animates between two states */
}

@keyframes pulse {
  0% {
    background-color: #e0e0e0; /* Start color */
  }
  100% {
    background-color: #f5f5f5; /* End color */
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0; /* Start position off-screen left */
  }
  100% {
    background-position: 200% 0; /* End position off-screen right */
  }
}



