/********** Template CSS **********/
:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}
/*body {
    background-image: url('file:///D:\VISA\VISA\wwwroot\img\BG1.png');
}*/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 10000;
}
/*body {
    overflow-x: hidden!important;
}*/

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 400 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: white;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    /*border-bottom: 1px solid rgba(53, 94, 252, .07);*/
    background-color: #fff !important;
    box-shadow: 0 1px 7px 0 rgb(0 0 0 / 40%) !important;
    /* background: #dee2fb;*/
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    /*padding: 25px 15px;*/

    color: #fff;
    font-weight: 500;
    outline: none;
    border-right: 1px dashed #fff;
}

.nav-link {
    padding: 0rem;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

        .navbar .navbar-nav .nav-link {
            padding: 10px 0;
        }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: #c9c9c9;
    border: 10px solid #c9c9c9;
    color:white;
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    /*padding-top: 12rem;*/
    padding-bottom: 3rem;
    /* background: url(../img/header.jpg) top left no-repeat;*/
    background-size: cover;
}

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-weight: 500;
    }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: var(--tertiary);
        }


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

    .callback::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
        background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
        z-index: -1;
    }


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

    .feature .feature-box:hover {
        background: var(--primary);
        border-color: var(--primary) !important;
    }

        .feature .feature-box:hover * {
            color: #FFFFFF !important;
        }


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
    border-radius: 21px !important;
    margin-bottom: 0.4rem;
}

    /* .Search-Country {
        background: rgb(1, 26, 65);
        border-radius: 20px;
    }*/

    .service .nav .nav-link.active {
        border-color: #027db6 !important;
        background: #027db6 !important;
    }

        .service .nav .nav-link.active h5 {
            color: #FFFFFF !important;
        }

            .service .nav .nav-link.active h5 i {
                color: #FFFFFF !important;
            }


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

    .project-item .project-img a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        opacity: 0;
        transition: .5s;
    }

    .project-item:hover .project-img a {
        opacity: 1;
    }

    .project-item .project-title {
        position: absolute;
        top: 3rem;
        right: 0;
        bottom: 0;
        left: 3rem;
        border: 1px solid var(--light);
        border-radius: 8px;
        display: flex;
        align-items: flex-end;
        padding: 18px;
        z-index: -1;
        transition: .5s;
    }

    .project-item:hover .project-title {
        background: var(--primary);
        border-color: var(--primary);
    }

    .project-item .project-title h4 {
        transition: .5s;
    }

    .project-item:hover .project-title h4 {
        color: #FFFFFF;
    }

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: var(--light);
        border-radius: 45px;
        font-size: 22px;
        transition: .5s;
    }

        .project-carousel .owl-nav .owl-prev:hover,
        .project-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            color: var(--light);
        }


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

    .team-item img {
        position: relative;
        z-index: 2;
    }

    .team-item .team-text {
        position: absolute;
        top: 0;
        right: 3rem;
        bottom: 0;
        left: 3rem;
        padding: 15px;
        border: 1px solid var(--light);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: .5s;
        z-index: 1;
    }

    .team-item:hover .team-text {
        background: var(--primary);
        border-color: var(--primary);
    }

    .team-item .team-text h4 {
        transition: .5s;
    }

    .team-item:hover .team-text h4 {
        color: #FFFFFF;
    }

    .team-item .team-social .btn {
        background: var(--light);
        color: var(--primary);
    }

    .team-item:hover .team-social .btn {
        background: #FFFFFF;
    }

    .team-item .team-social .btn:hover {
        background: var(--primary);
        color: var(--light);
    }


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

    .testimonial-item .testimonial-text {
        position: relative;
        text-align: center;
    }

        .testimonial-item .testimonial-text .btn-square {
            position: absolute;
            width: 60px;
            height: 60px;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonial-item .testimonial-text::before {
            position: absolute;
            content: "";
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            border: 30px solid;
            border-color: var(--light) transparent transparent transparent;
        }

        .testimonial-item .testimonial-text::after {
            position: absolute;
            content: "";
            bottom: -59px;
            left: 50%;
            transform: translateX(-50%);
            border: 30px solid;
            border-color: #FFFFFF transparent transparent transparent;
        }

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot::after {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        top: 6px;
        left: 6px;
        border-radius: 16px;
        background: var(--light);
        transition: .5s;
    }

    .testimonial-carousel .owl-dot.active {
        border-color: var(--primary);
    }

        .testimonial-carousel .owl-dot.active::after {
            background: var(--primary);
        }


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--primary);
        letter-spacing: 1px;
        box-shadow: none;
    }

.copyright {
    margin-top: 25rem;
    color: var(--light);
    background: #000B1C;
    /* position:fixed;*/
    bottom: 0px;
    z-index: 9999;
}

    .copyright a {
        color: var(--light);
    }

        .copyright a:hover {
            color: var(--primary);
        }



.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 8px;
    /* background: #FFFFFF 0% 0% no-repeat padding-box!important;
    box-shadow: 0px 5px 10px #8f0a1140;*/
}

.div-box {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    border-radius: 15px;
    padding: 25px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.table {
    /*border: 1px solid #027db6;*/
    border: 1px solid #dee2e6;
}

.rounded-icon {
    background: white;
    padding: 0rem;
    border-radius: 46px;
    /*border: 1px dashed;*/
}

th {
    font-size: 14px !important;
}

td {
    font-size: 13px !important;
}

.color-white {
    color: white;
}

.mr-1 {
    margin-right: 1rem !important;
}

.font-size-2 {
    font-size: 2rem;
}

.section-title h2 span {
    font-family: var(--base-headingfont-main);
    font-style: italic;
    font-weight: 600;
    display: inline-block;
    color: var(--base-skin);
}

.section-title.title-style-center_text h2.title {
    margin-bottom: 0px;
}

element.style {
}

.section-title.title-style-center_text h2.title {
    margin-bottom: 0px;
}

.section-title h2 {
    font-weight: 600;
    font-size: 46px;
    line-height: 57px;
    margin-bottom: 12px;
}

.form-box {
    /*  border: 1px solid rgba(128, 137, 150, 0.1);*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgb(82 85 90 / 10%);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgb(82 85 90 / 10%);
}

.title {
    font-size: 18px;
    color: #027db6;
}

.form-title-wrap {
    padding: 10px;
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

.padding-bottom-70px {
    padding-bottom: 70px;
}

.padding-top-100px {
    padding-top: 100px;
}

.form-content {
    /*padding: 20px;*/
    padding: 15px 15px 15px 15px;
}

input[type=text]:focus {
    border: 1px solid #555!important;
}
input[type=password]:focus {
    border: 1px solid #555!important;
}
input[type=email]:focus {
    border: 1px solid #555!important;
}
input[type=file]:focus {
    border: 1px solid #555!important;
}

/*.form-control:focus {
    border: 1px solid #555;
}*/
/*.form-control:focus {
     border: 1px solid #c0bcbc!important;
}*/
.contact-form-action .form-control {
    height: auto;
    line-height: inherit;
    /* padding: 10px 20px 10px 20px;*/
    padding: 10px 13px 10px 13px;
    font-size: 13px;
    color: #0d233e;
    /* border: 2px dashed #dddddd75;*/
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
}

.label-text {
    font-size: 14px;
    color: #0d233e;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.contact-form-action .form-group .form-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #5d646d;
    font-size: 18px;
}

.list-items-flush li {
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

ul {
    padding: 0;
    margin: 0;
}

.list-items-2 li span {
    display: inline-block;
    width: 150px;
    color: #0d233e;
    font-weight: 500;
}

.section-block {
    height: 1px;
    background-color: #F5F7FC;
}

.list-items li {
    margin-bottom: 6px;
    color: #5d646d;
}

.theme-btn {
    font-size: 15px;
    color: #fff;
    line-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #287dfa;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #287dfa;
    font-weight: 500;
}

.text-right {
    text-align: right;
}

.color-white {
    color: white;
}















@charset "UTF-8";
/* Some stylesheet reset */
#cssmenu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    line-height: 1;
}
/* The container */
#cssmenu > ul {
    display: flex;
    position: relative;
    width: 100%;
}
    /* The list elements which contain the links */
    #cssmenu > ul li {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
    }
        /* General link styling */
        #cssmenu > ul li a {
            display: block;
            position: relative;
            border-top: 1px dotted #fff;
            /*    border-bottom: 1px dotted #d9d9d9;*/
            padding: 11px;
            font-family: Verdana;
            color: #868684;
            text-decoration: none;
            text-shadow: 0px .2px 0 black;
            font-size: 13px;
            font-weight: normal;
            background: rgb(1, 26, 65);
            outline: none;
            margin-bottom: 3px;
            color: white !important;
            border-right: 1px dashed !important;
        }
        /* Rounded corners for the first link of the menu/submenus */
        #cssmenu > ul li:first-child > a {
            /* border-top-left-radius: 4px;
            border-top-right-radius: 4px;
            border-top: 0;*/
        }
        /* Rounded corners for the last link of the menu/submenus */
        #cssmenu > ul li:last-child > a {
            /*border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            border-bottom: 0;*/
        }
        /* The hover state of the menu/submenu links */
        #cssmenu > ul li a:hover,
        #cssmenu > ul li:hover > a {
            color: #ffffff !important;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
            background-color: #355EFC;
        }

        #cssmenu > ul li > a.active {
            color: #ffffff !important;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
            background-color: #355EFC;
        }

    /* The arrow indicating a submenu */
    #cssmenu > ul .has-sub > a::after {
        content: "";
        position: absolute;
        top: 13px;
        right: 10px;
        width: 0px;
        height: 0px;
        border: 5px solid transparent;
        border-left: 7px solid #868684;
    }
    /* The same arrow, but with a darker color, to create the shadow effect */
    #cssmenu > ul .has-sub > a::before {
        content: "";
        position: absolute;
        top: 14px;
        right: 10px;
        width: 0px;
        height: 0px;
        border: 5px solid transparent;
        border-left: 7px solid #fff;
    }
    /* Changing the color of the arrow on hover */
    #cssmenu > ul li > a:hover::after,
    #cssmenu > ul li:hover > a::after {
        border-left: 7px solid #fff;
    }

    #cssmenu > ul li > a:hover::before,
    #cssmenu > ul li:hover > a::before {
        border-left: 7px solid rgba(0, 0, 0, 0.25);
    }
    /* THE SUBMENUS */
    #cssmenu > ul ul {
        position: absolute;
        top: 4rem;
        margin-top: 2rem;
        opacity: 0;
        min-width: 273px;
        -webkit-transition: opacity 0.3s ease-in;
        -moz-transition: opacity 0.3s ease-in;
        transition: opacity 0.3s ease-in;
        background-color: White !important;
    }

        #cssmenu > ul ul li a {
            font-size: 12px;
        }
    /* Showing the submenu when the user is hovering the parent link */
    #cssmenu > ul li:hover > ul {
        top: 0px;
        opacity: 1;
        z-index: 1;
    }


.bg-card {
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 7px 0 rgb(0 0 0 / 40%) !important;
    border: none !important;
}


.bg-gradient-primary {
    background-image: linear-gradient(310deg,#007db5,#007db5);
}

.icon-shape {
    width: 48px;
    height: 48px;
    background-position: 50%;
    border-radius: 0.75rem;
    float: left;
    margin-top: -2rem !important;
}

.border-radius-md {
    border-radius: 0.5rem;
}

.text-success {
    color: #82d616 !important;
}

.text-sm {
    line-height: 1.5;
}

.text-sm {
    font-size: .875rem !important;
}

.font-weight-bolder {
    font-weight: 700 !important;
}

.icon-shape i {
    color: #fff;
    opacity: .8;
    top: 11px;
    position: relative;
}

.icon-shape .ni {
    top: 14px;
}

.text-lg {
    font-size: 1.125rem !important;
}

.opacity-10 {
    opacity: 1 !important;
}

.ni {
    display: inline-block;
    font: normal normal normal 14px/1 NucleoIcons;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.heading_theme {
    border-bottom: 1px solid rgb(1, 26, 65);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 20px;
}


.add-pass-details .re-btn {
    display: inline-block;
    margin: 10px 0 0 0;
    padding: 5px 10px;
}

.re-btn {
    width: auto;
    padding: 10px 45px;
    min-width: 150px;
    border: 1px solid #013851;
    border-radius: 15px;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    transition: 0.5s;
    background: #013851;
    position: relative;
    text-align: center;
}

.pl-0 {
    padding-left: 0px !important;
}

.borderblue {
    /*border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;*/
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    box-shadow: 0px 5px 10px #8f0a1140;
    border-bottom: 5px solid #027db6;
}

.review-right {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px #8f0a1140;
    border: 0;
    border-radius: 10px;
    padding: 15px;
    margin: 15px auto;
    display: inline-block;
}

modify-section {
    width: 100%;
    margin: 0 auto;
    background: rgba(189, 29, 36, 0.06);
    padding: 15px 0;
    position: relative;
    z-index: 5;
}
/*.sidebar {
    position: absolute;
}*/
.price-break {
    width: 100%;
    box-shadow: 0px 10px 20px #8f0a1140;
    border: 0;
    border-radius: 10px;
   background: #FFFFFF;
    overflow: hidden;
    /* padding: 15px 0 0 0;*/
    padding: 0px 0 0 0;
}

    .price-break .total-fare-box {
        background: #027db6;
        padding: 15px 15px;
        margin: 0px 0 0px 0;
        color: #fff;
        font-weight: bold;
        font-size: 18px;
        display: inline-block;
        width: 100%;
        float: left;
    }

.price-info {
    color: #CC2128;
    float: left;
    font-size: 12px;
    margin: 10px 10px 10px 10px;
}

.price-break ul, .price-break ul li {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
}

.modify-section {
    width: 100%;
    margin: 0 auto;
    background: #0276b3;
    padding: 15px 0;
    position: relative;
    z-index: 5;
    padding-bottom: 0px;
}

.search-section .widget-box {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    border-radius: 15px;
    opacity: 1;
    display: block;
}

.widget-search-tabs {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
}

.tab-container {
    display: inline-block;
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    color: #2C3039;
    margin: 10px auto 0;
}

.search-section .re-btn {
    padding: 10px 15px 10px 25px;
    margin: 0px auto;
    display: inline-block;
    bottom: 10px;
}

.tab-container .re-btn:before {
    content: "";
    position: absolute;
    height: 6px;
    display: block;
}

.tab-container {
    display: inline-block;
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    color: #2C3039;
    margin: 8px auto 0;
}


.head-name {
    font-size: 16px;
    margin: 5px 0 5px 0;
    font-weight: 600;
}

.payment-drop .total-fare-box {
    padding: 0;
    margin: 0;
    color: rgb(1, 26, 65);
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    width: 100%;
}

.right-btn {
    float: right;
}


.html5-qrcode-element {
    text-decoration: underline;
    line-height: inherit;
    padding: 5px 13px;
    font-size: 13px;
    color: rgb(13, 35, 62);
    border: 2px dashed rgba(221, 221, 221, 0.46);
    box-shadow: none;
    transition: all 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    /* margin-top: 1rem;*/
    display: inline-block;
}


.html5-qrcode-element {
    text-decoration: underline;
    line-height: inherit;
    padding: 5px 13px;
    font-size: 13px;
    color: rgb(13, 35, 62);
    border: 2px dashed rgba(221, 221, 221, 0.46);
    box-shadow: none;
    transition: all 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    display: inline-block;
}


.fareTypeWrap {
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0;
}

.fareRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.makeFlex.hrtlCenter {
    align-items: center;
}

.appendTop5 {
    margin-top: 5px;
}

.fareHeader {
    font-size: calc(var(--font-scale, 1)*14px);
    font-weight: 500;
    font-size: 15px;
}

.fareContentWrap {
    width: 100%;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(1,0,1,0);
    height: auto;
    max-height: 9999px;
}

.fareSubList {
    padding-left: 25px;
}

.appendTop5 {
    margin-top: 5px;
}

.fareRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.darkText {
    color: #4a4a4a;
}

.fontSize14 {
    font-size: calc(var(--font-scale, 1 )*14px);
}












a.link {
    cursor: help;
    text-decoration: none;
}

    a.link.btn {
        border-color #d900ae;
    }

    a.link:hover {
        background-color: #0085a6;
        color: #fff;
        text-decoration: none;
    }

[data-ml-modal] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    width: 0;
    height: 0;
    opacity: 0;
}

    [data-ml-modal]:target {
        width: auto;
        height: auto;
        opacity: 1;
        -webkit-transition: opacity 1s ease;
        transition: opacity 1s ease;
    }

        [data-ml-modal]:target .modal-overlay {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            cursor: pointer;
            background-color: #000;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

    [data-ml-modal] .modal-dialog {
        border-radius: 6px;
        box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
        position: relative;
        width: 90%;
        max-width: 660px;
        max-height: 70%;
        margin: 10% auto;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 2;
    }

.modal-dialog-lg {
    max-width: 820px !important;
}

[data-ml-modal] .modal-dialog > h3 {
    background-color: #eee;
    border-bottom: 1px solid #b3b3b3;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0.8em 56px .8em 27px;
}

[data-ml-modal] .modal-content {
    background: #fff;
    padding: 23px 27px;
}

[data-ml-modal] .modal-close {
    position: absolute;
    top: 13px;
    right: 13px;
    color: #0085a6;
    background-color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    [data-ml-modal] .modal-close:hover {
        background-color: #0085a6;
        color: #fff;
        cursor: pointer;
    }

[data-ml-modal] p:first-child, [data-ml-modal] p:last-child {
    margin: 0;
}

@media (max-width:767px) {
    [data-ml-modal] .modal-dialog {
        margin: 20% auto;
    }
}
/* End Modals ------------------------------*/

/* General*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
   /*font-family: 'Roboto', sans-serif!important;*/
    /*font-family: 'Poppins', sans-serif;*/
    color: #333;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.42857143;
    min-height: auto !important;
    /* padding-bottom: 10rem!important;*/
    overflow-x:hidden;
}

a {
    color: #027db6;
    text-decoration: none;
    outline: 0;
    -webkit-transition all .3s ease-in-out;
    -moz-transition all .3s ease-in-out;
    -o-transition all .3s ease-in-out;
    transition all .3s ease-in-out;
}

    a:hover {
        color: #0085a6;
        text-decoration: none;
    }

.center {
    text-align: center !important;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    white-space: normal;
    padding: 5px 14px;
    /*   font-size: 18px;*/
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-default {
    border: 1px solid #ced4da;
}

a.btn-default:hover {
    background-color: #0085a6;
    color: #fff;
}

pre {
    overflow: auto;
    font-size: 1em;
}


.menu-area {
    position: relative;
    z-index: 10;
}

    .menu-area:after {
        /*  content: "";
        position: absolute;
        top: 0;
        right: -50px;
        width: 117%;
        height: 100%;
        background: #013851 !important;
        transform: skew(-6deg);
        z-index: -1;*/
    }


ol.progtrckr {
    margin: 0;
    padding: 0;
    list-style-type none;
}

    ol.progtrckr li {
        display: inline-block;
        text-align: center;
        line-height: 3.5em;
    }

    ol.progtrckr[data-progtrckr-steps="2"] li {
        width: 49%;
    }

    ol.progtrckr[data-progtrckr-steps="3"] li {
        width: 33%;
    }

    ol.progtrckr[data-progtrckr-steps="4"] li {
        width: 24%;
    }

    /*  ol.progtrckr[data-progtrckr-steps="5"] li {
            width: 19%;
        }*/

    ol.progtrckr[data-progtrckr-steps="6"] li {
        width: 16%;
    }

    ol.progtrckr[data-progtrckr-steps="7"] li {
        width: 14%;
    }

    ol.progtrckr[data-progtrckr-steps="8"] li {
        width: 12%;
    }

    ol.progtrckr[data-progtrckr-steps="9"] li {
        width: 11%;
    }

    ol.progtrckr li.progtrckr-done {
        color: black;
        border-bottom: 4px solid yellowgreen;
    }

    ol.progtrckr li.progtrckr-todo {
        color: silver;
        border-bottom: 4px solid silver;
    }

    ol.progtrckr li:after {
        content: "\00a0\00a0";
    }

    ol.progtrckr li:before {
        position: relative;
        bottom: -2.5em;
        float: left;
        left: 50%;
        line-height: 1em;
    }

.progtrckr-dones:before {
    content: "\2713";
    color: white;
    background-color: #f3943c !important;
    height: 2.2em;
    width: 2.2em;
    line-height: 2.2em;
    border: none;
    border-radius: 2.2em;
}

.progtrckr-dones {
    color: black;
    border-bottom: 4px solid #f3943c !important;
}




ol.progtrckr li.progtrckr-done:before {
    content: "\2713";
    color: white;
    background-color: yellowgreen;
    height: 2.2em;
    width: 2.2em;
    line-height: 2.2em;
    border: none;
    border-radius: 2.2em;
}

ol.progtrckr li.progtrckr-todo:before {
    content: "\039F";
    color: silver;
    background-color: white;
    font-size: 2.2em;
    bottom: -1.2em;
}



.intLink {
    cursor: pointer;
}

img.intLink {
    border: 0;
}

#toolBar1 select {
    font-size: 10px;
}

#textBox {
    height: 200px;
    border: 1px #000000 solid;
    padding: 12px;
    overflow: scroll;
}

    #textBox #sourceText {
        padding: 0;
        margin: 0;
        min-width: 498px;
        min-height: 200px;
    }

#editMode label {
    cursor: pointer;
}


select {
    word-wrap: normal;
    padding: 8px 13px 8px 13px !important;
    font-size: 13px;
    color: #0d233e;
    border-radius: 5px;
    width: 100% !important;
    background-color: #fff !important;
    /* box-shadow: 0 5px 10px rgb(0 0 0 / 10%) !important;*/
    /*border: 1px solid white;*/
    border: 1px solid #c0bcbc;
}


:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
    /*background-image: url(../../img/Bg1.png);*/
}

body {
    background-image: url(../img/Bg1.png);
    background-size: contain;
}



.bg-table {
    padding: 1rem;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: rgb(0 0 0 / 10%) 0px 5px 10px !important;
    border: 1px solid white !important;
    border-radius: 8px;
}

th {
    /* background: #027db6;
    color: white;*/
    border-bottom-width: 2px;
    background: #cdcdcd;
    color: #000;
    font-weight: 600;
}

.fa:hover {
    color: #007db5;
    /*   font-size: 16px;*/
}

.color-white {
    color: white;
}

.sub-menu-item {
    width: 300px;
    border-bottom: 1px dashed #007db5;
}


.ml-0 {
    margin-left: 0px !important;
}

.countries-font {
    font-weight: 500;
    font-size: 16px;
}


@media screen and (max-width: 768px) {
    .column {
        width: 100%;
    }

    .xs-menu {
        position: fixed;
        z-index: 9999;
        /*   margin-top: -1.4rem;*/
        width: 100%;
        margin-bottom: 22rem;
    }

    .hidden-lg {
        display: block !important;
    }
}

.hidden-lg {
    display: none;
}

.offcanvas {
    z-index: 9999 !important;
}


.mandatory {
    color: red !important;
}

.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: inherit !important;
}

.MandatorySymbol {
    color: red !important;
}

.font-10 {
    font-size: 10px;
}



.runtext-container {
    background-color: #013851;
    background-repeat: repeat-x;
    border-radius: 18px;
    padding-top: 6px;
    /**background-color: #ccf;
    background-image: -moz-linear-gradient(top,#ccf,#fff);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#ccf),to(#fff));
    background-image: -webkit-linear-gradient(top,#ccf,#fff);
    background-image: -o-linear-gradient(top,#ccf,#fff);
    background-image: linear-gradient(to bottom,#ccf,#fff);*/
    background-repeat: repeat-x;
    /* border: 4px solid #000000;*/
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);*/
    /* width: 850px;*/
    /* overflow-x: hidden;*/
    /* overflow-y: visible;
    margin: 0 60px 0 30px;
    padding: 0 3px 0 3px;*/
}

.main-runtext {
    margin: 0 auto;
    overflow: visible;
    position: relative;
    /* height: 40px;*/
}

.runtext-container .holder {
    position: relative;
    overflow: visible;
    display: inline;
    float: left;
}

    .runtext-container .holder .text-container {
        display: inline;
    }

    .runtext-container .holder a {
        text-decoration: none;
        /*  font-weight: bold;*/
        color: #fff;
        text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
        line-height: -0.5rem !important;
        font-size: 13px;
    }

        .runtext-container .holder a:hover {
            text-decoration: none;
            /* color: #6600ff;*/
        }

.mr-1 {
    margin-right: 1rem;
}

.heding-body {
    padding: 25px;
    /*padding-top: 0px !important;*/
}

.heading-div {
    padding: 9px !important;
    padding-left: 15px !important;
    padding-bottom: 13px !important;
}


.word-break {
    word-break: break-all;
}

.modal-lg {
    max-width: 800px !important;
}


.atag {
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    text-decoration: none;
    /*padding: 35px 130px 13px 60px;*/
    padding: 2rem;
    color: #444;
}

    .atag:hover {
        border-color: #444;
        /* background: #FFFFFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 5px 10px #8f0a1140;*/
    }

    .atag:active {
        border-color: #ccc;
        box-shadow: none;
    }

    .atag[href$=".ppt"]:before, .atag[href$=".pdf"]:before, .atag[href$=".doc"]:before, .atag[href$=".xls"]:before, .atag[href$=".zip"]:before {
        position: relative;
        top: 16px;
        left: -56px;
        transition: all .4s;
    }

    .atag[href$=".ppt"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/ppt.png');
    }

    .atag[href$=".pdf"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/pdf.png');
    }

    .atag[href$=".doc"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/doc.png');
    }

    .atag[href$=".xls"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/xls.png');
    }

    .atag[href$=".zip"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/zip.png');
    }

    .atag[href$=".ppt"]:hover:before, .atag[href$=".pdf"]:hover:before, .atag[href$=".doc"]:hover:before, .atag[href$=".xls"]:hover:before, .atag[href$=".zip"]:hover:before {
        opacity: 1;
    }

    .atag[href$=".ppt"]:after, .atag[href$=".pdf"]:after, .atag[href$=".doc"]:after, .atag[href$=".xls"]:after, .atag[href$=".zip"]:after {
        content: "Download";
        position: absolute;
        top: 10px;
        left: 60px;
        color: #aaa;
    }


.border-bottom-none {
    border-bottom: none !important;
}


.document-div {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    padding: 1rem;
    /*padding-bottom: 0px;*/
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #fff;
}
    .document-div:hover {
        border: 1px solid #007db5;
        /*transform: scale(1.1);*/
    }
.cursor-event {
    text-underline-offset: 3px;
    cursor: pointer;
    text-decoration: underline !important;
    color: #4183C4 !important;
}
    .download-font {
        color: #aaa;
    }

.document-img {
    content: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/zip.png);
}

.mandatory {
    color: #ff0000;
}

.div-padding {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
}

.h-23 {
    height: 25rem;
}

.cursor {
    cursor: pointer;
}

.buttop-pt-1 {
    padding-top: 1.7rem !important;
}

.text-capitalize {
    white-space: nowrap;
}

/*.w-7{
    width:4.5rem!important;
}*/

.border-right-icon {
    border-right: 2px dashed #027db6;
    margin-right: 1rem;
}

.ml-3rem {
    margin-left: 1rem;
}
.margin-auto{
    margin:auto;
}
.whitespace{
    white-space:nowrap;
}
.font-17 {
    font-size: 17px;
}

Total-amt {
    color: #fff !important;
    font-weight: bold;
    font-size: 20px;
}

.Total-Fare-amt {
    font-size: 16px;
    font-weight: bold;
    color: #013851;
}

.ui-datepicker-title {
    /* width: 50% !important;*/
    display: flex;
}
.swal-footer {
    margin-top: 0px;
    padding: 0px 15px 15px 0px;
}

.swal-title:not(:last-child) {
    margin-bottom: 0px;
}

.swal-title {
    color: rgba(0,0,0,.65);
    font-weight: 600;
    text-transform: none;
    position: relative;
    display: block;
    padding: 0px 16px;
    font-size: 20px;
}
.swal-icon {
    margin: 0px auto;
}

    .swal-icon:first-child {
        margin-top: 13px;
    }

.swal-modal {
    width: 450px;
}

/*.swal-icon--success__line--tip {
    width: 21px;
    left: 15px;
    top: 35px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animateSuccessTip .75s;
    animation: animateSuccessTip .75s;
}*/

/*.swal-icon--success__line--long {
    width: 30px;
    right: 24px;
    top: 31px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: animateSuccessLong .75s;
    animation: animateSuccessLong .75s;
}

.swal-icon--success__ring {
    width: 70px;
    height: 70px;
    border: 4px solid hsla(98,55%,69%,.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}*/

.f-17 {
    font-size: 17px;
}

.download {
    text-decoration: underline !important;
    color: #007db5;
    cursor: pointer;
}

.ddlagentid-select {
    padding: 3px 4px 3px 4px !important;
}

@media screen and (max-width:1200px) and (min-width:1400px) {
    .container {
        max-width: 1300px;
    }
}

.icon-right{
    margin-right:0.5rem!important;
}
.Acction-width{
    width:9%!important;
}
.cursor {
    cursor: pointer;
    margin-left: 1rem;
    color: #027db6!important;
}
.payment-request {
    background: #002c50;
    color: #fff;
    font-size:14px;
}

#togglePassword{
    z-index:999;
}

#togglMailPassword {
    cursor: pointer;
    z-index: 999!important;
}

#togglSmsPassword {
    cursor: pointer;
    z-index: 999!important;
}
















@font-face {
    font-family: Poppins-Regular;
    src: url(../fonts/poppins/Poppins-Regular.ttf)
}

@font-face {
    font-family: Poppins-Medium;
    src: url(../fonts/poppins/Poppins-Medium.ttf)
}

@font-face {
    font-family: Poppins-Bold;
    src: url(../fonts/poppins/Poppins-Bold.ttf)
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url(../fonts/poppins/Poppins-SemiBold.ttf)
}

@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/montserrat/Montserrat-Bold.ttf)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

a {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s
}

    a:focus {
        outline: none !important
    }

    a:hover {
        text-decoration: none;
        color: #333
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0
}


ul, li {
    margin: 0;
}

input {
    outline: none;
    border: none
}

textarea {
    outline: none;
    border: none
}

    textarea:focus, input:focus {
        border-color: transparent !important
    }

input::-webkit-input-placeholder {
    color: #999
}

input:-moz-placeholder {
    color: #999
}

input::-moz-placeholder {
    color: #999
}

input:-ms-input-placeholder {
    color: #999
}

textarea::-webkit-input-placeholder {
    color: #999
}

textarea:-moz-placeholder {
    color: #999
}

textarea::-moz-placeholder {
    color: #999
}

textarea:-ms-input-placeholder {
    color: #999
}

button {
    outline: none !important;
    border: none;
    background: 0 0
}

    button:hover {
        cursor: pointer
    }

iframe {
    border: none !important
}

.txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #999
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #00ad5f
}

.txt3 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.4;
    color: #00ad5f;
    text-transform: uppercase
}

.size1 {
    width: 355px;
    max-width: 100%
}

.size2 {
    width: calc(100% - 43px)
}

.limiter {
    width: 100%;
    margin: 0 auto
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2
}

.wrap-login100 {
    width: 1170px;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse
}

.login100-more {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1
}

    .login100-more::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,.3)
    }

.login100-form {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 303px 65px 40px
}

.login100-form-title {
    font-family: Poppins-Regular;
    font-size: 20px;
    color: #555;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6
}

.rs1-wrap-input100, .rs2-wrap-input100 {
    width: 50%
}

.rs2-wrap-input100 {
    border-left: none
}

.input100 {
    display: block;
    width: 100%;
    background: 0 0;
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    padding: 0 25px
}

input.input100 {
    height: 55px
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #00ad5f;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3)
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background: #00ad5f;
    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

    .login100-form-btn:hover {
        background: #333
    }

@media(max-width: 992px) {
    .login100-form {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px
    }

    .login100-more {
        width: 40%
    }
}

@media(max-width: 768px) {
    .login100-form {
        width: 100%
    }

    .login100-more {
        width: 100%
    }
}

@media(max-width: 576px) {
    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 150px
    }

    .rs1-wrap-input100, .rs2-wrap-input100 {
        width: 100%
    }

    .rs2-wrap-input100 {
        border-left: 1px solid #e6e6e6
    }
}

.validate-input {
    position: relative
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1
}

@media(max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1
    }
}


.swal-button--loading ~ .swal-button__loader {
    opacity: 0!important;
}


@media(max-width: 768px) {
   .mobilescroll{
       overflow:auto;
   }
   .white-space{
       white-space:nowrap;
   }
    .copyright{
        display:none;
    }
}