﻿
/*#region PreLoader */
/*********************************************************
			2. PRELOADER
**********************************************************/
.load-full-screen {
    height: 100%;
    width: 100%;
}

#loader {
    position: relative;
    background: #f7f7f7;
}

#loader div {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%,-45%);
    margin-top: 0 !important;
}

#loader span {
    text-align: center;
}

/*********************************************************************************
			34. loading.html CSS Start
*********************************************************************************/
.loading-animation {
    position: relative;
    height: 100px;
    margin-top: 40px;
}

.loading-animation span {
    border-radius: 50%;
    font-size: 50px;
    height: 100px;
    padding: 15px;
    width: 100px;
    display: block;
    position: absolute;
    left: 42%;
}

.loading-animation span:nth-child(1) {
    opacity: 0;
    -webkit-animation: loader 2s infinite;
    animation: loader 2s infinite;
    color: #fff;
    background: #f9676b;
}

.loading-animation span:nth-child(2) {
    -webkit-animation: loader 2s infinite 0.5s;
    animation: loader 2s infinite 0.5s;
    opacity: 0;
    color: #fff;
    background: #F19C4F;
}

.loading-animation span:nth-child(3) {
    animation: loader 2s infinite 1s;
    -webkit-animation: loader 2s infinite 1s;
    opacity: 0;
    color: #fff;
    background: #00adef;
}

.loading-animation span:nth-child(4) {
    animation: loader 2s infinite 1.5s;
    -webkit-animation: loader 2s infinite 1.5s;
    opacity: 0;
    color: #fff;
    background: #07253F;
}

@keyframes loader {
    0% {
        opacity: 1;
        -webkit-transform: rotateY(90deg);
        -o-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
        -moz-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }

    25% {
        opacity: 1;
        -webkit-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    26% {
        opacity: 0;
        -webkit-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: rotateY(90deg);
        -o-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
        -moz-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }
}

@-webkit-keyframes loader {
    0% {
        opacity: 1;
        -webkit-transform: rotateY(90deg);
        -o-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
        -moz-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }

    25% {
        opacity: 1;
        -webkit-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    26% {
        opacity: 0;
        -webkit-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: rotateY(90deg);
        -o-transform: rotateY(90deg);
        -ms-transform: rotateY(90deg);
        -moz-transform: rotateY(90deg);
        transform: rotateY(90deg);
    }
}

.search-title {
    padding: 60px 0px;
}

.search-title p {
    font-size: 20px;
    line-height: 2;
}

.search-title p span {
    color: #f9676b;
    font-weight: bold;
}
/*#endregion */

/*#region zoom-hover panel */
.drop-down.hover-zoom:before {
    width: 20px;
    height: 20px;
    border: 10px solid;
    border-color: transparent transparent #7d7d7d transparent;
    position: absolute;
    top: -21px;
    right: 15px;
}

.flat-mega-menu .drop-down.hover-zoom {
    display: none;
}

.flat-mega-menu .drop-down {
    border-bottom-color: #ff7c00 !important;
}

.flat-mega-menu .drop-down {
    position: absolute;
    background: #FFFFFF;
    right: 0;
    z-index: 999;
    margin-left: 0px;
    width: 100%;
    width: 250px;
    border: 1px solid rgba(0,0,0,0.10);
    border-top: none;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
}

.flat-mega-menu:hover > .drop-down.hover-zoom {
    display: block;
    animation: hover-zoom 0.2s linear 0s forwards;
    -moz-animation: hover-zoom 0.2s linear 0s forwards;
    -ms-animation: hover-zoom 0.2s linear 0s forwards;
    -o-animation: hover-zoom 0.2s linear 0s forwards;
    -webkit-animation: hover-zoom 0.2s linear 0s forwards;
}

@keyframes hover-zoom {
    0% {
        opacity: 0;
        transform: scale(0.8, 0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.0, 1.0);
    }
}

@-moz-keyframes hover-zoom {
    0% {
        opacity: 0;
        -moz-transform: scale(0.8, 0.8);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1.0, 1.0);
    }
}

@-ms-keyframes hover-zoom {
    0% {
        opacity: 0;
        -ms-transform: scale(0.8, 0.8);
    }

    100% {
        opacity: 1;
        -ms-transform: scale(1.0, 1.0);
    }
}

@-o-keyframes hover-zoom {
    0%;

{
    opacity: 0;
    -o-transform: scale(0.8, 0.8);
}

100% {
    opacity: 1;
    -o-transform: scale(1.0, 1.0);
}

}

@-webkit-keyframes hover-zoom {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8, 0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.0, 1.0);
    }
}

/*#endregion */

/*#region Arrow and Bullet in Image Slider */
.jssortop {
    position: relative;
    margin: 0 auto;
    top: 0px;
    left: 0px;
    max-width: 100% !important;
    height: 340px;
    overflow: hidden;
    visibility: hidden;
    margin-top: -10px;
}

.jssorb01 {
    position: absolute;
}

.jssorb01 div, .jssorb01 div:hover, .jssorb01 .av {
    position: absolute;
    width: 12px;
    height: 12px;
    filter: alpha(opacity=70);
    opacity: .7;
    overflow: hidden;
    cursor: pointer;
    border: #000 1px solid;
}

.jssorb01 div {
    background-color: gray;
}

.jssorb01 div:hover, .jssorb01 .av:hover {
    background-color: #d3d3d3;
}

.jssorb01 .av {
    background-color: #fff;
}

.jssorb01 .dn, .jssorb01 .dn:hover {
    background-color: #555555;
}

.jssora05l, .jssora05r {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url('../../Images/a17.png') no-repeat;
    overflow: hidden;
}

.jssora05l {
    background-position: -10px -40px;
}

.jssora05r {
    background-position: -70px -40px;
}

.jssora05l:hover {
    background-position: -130px -40px;
}

.jssora05r:hover {
    background-position: -190px -40px;
}

.jssora05l.jssora05ldn {
    background-position: -250px -40px;
}

.jssora05r.jssora05rdn {
    background-position: -310px -40px;
}

.jssora05l.jssora05lds {
    background-position: -10px -40px;
    opacity: .3;
    pointer-events: none;
}

.jssora05r.jssora05rds {
    background-position: -70px -40px;
    opacity: .3;
    pointer-events: none;
}
/*#endregion */

/*#region breakingNews */

@charset "utf-8";
/* CSS Document */

.breakingNews {
    width: 100%;
    height: 40px;
    position: relative;
    border: solid 1px #2096cd;
    overflow: hidden;
    margin: 10px 0px;
}

    .breakingNews > .bn-title {
        width: auto;
        height: 40px;
        display: inline-block;
        background: #2096cd;
        position: relative;
        float: left;
    }

        .breakingNews > .bn-title > h2 {
            display: inline-block;
            margin: 0;
            padding: 0 10px;
            line-height: 40px;
            font-size: 14px;
            color: #FFF;
            height: 40px;
            box-sizing: border-box;
        }

        .breakingNews > .bn-title > span {
            width: 0;
            position: absolute;
            right: -10px;
            top: 10px;
            height: 0;
            border-style: solid;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent #2096cd;
        }

    .breakingNews > ul {
        padding: 0;
        margin: 0;
        list-style: none;
        position: absolute;
        left: 210px;
        top: 0;
        right: 40px;
        height: 40px;
        font-size: 16px;
    }

        .breakingNews > ul > li {
            position: absolute;
            height: 40px;
            width: 100%;
            line-height: 40px;
            display: none;
            font-size: 13px;
        }

            .breakingNews > ul > li > a {
                text-align: left;
                text-decoration: none;
                color: #333;
                overflow: hidden;
                display: block;
                white-space: nowrap;
                text-overflow: ellipsis;
                font-weight: normal;
            }

                .breakingNews > ul > li > a > span {
                    color: #2096cd;
                }

                .breakingNews > ul > li > a:hover {
                    color: #2096cd;
                }

    .breakingNews > .bn-navi {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        opacity: 0;
    }

        .breakingNews > .bn-navi > span {
            width: 20px;
            height: 40px;
            position: absolute;
            top: 0;
            cursor: pointer;
            opacity: 0.3;
            background-image: url(../../Images/bn-arrows.png);
            background-repeat: no-repeat;
        }

            .breakingNews > .bn-navi > span:hover {
                opacity: 1;
            }

            .breakingNews > .bn-navi > span:first-child {
                background-position: left center;
                left: 0;
            }

            .breakingNews > .bn-navi > span:last-child {
                background-position: right center;
                right: 0;
            }

    .breakingNews:hover .bn-navi {
        opacity: 1;
    }

.bn-large {
    height: 50px;
}

    .bn-large > .bn-title {
        height: 50px;
    }

        .bn-large > .bn-title > h2 {
            line-height: 50px;
            font-size: 26px;
        }

        .bn-large > .bn-title > span {
            top: 15px;
        }

    .bn-large > ul {
        height: 50px;
        left: 250px;
        font-size: 20px;
    }

        .bn-large > ul > li {
            height: 50px;
            line-height: 50px;
        }

    .bn-large > .bn-navi {
        height: 50px;
    }

        .bn-large > .bn-navi > span {
            height: 50px;
        }

.bn-small {
    height: 30px;
}

    .bn-small > .bn-title {
        height: 30px;
    }

        .bn-small > .bn-title > h2 {
            line-height: 30px;
            font-size: 18px;
        }

        .bn-small > .bn-title > span {
            top: 5px;
        }

    .bn-small > ul {
        height: 30px;
        left: 200px;
        font-size: 14px;
    }

        .bn-small > ul > li {
            height: 30px;
            line-height: 30px;
        }

    .bn-small > .bn-navi {
        height: 30px;
    }

        .bn-small > .bn-navi > span {
            height: 30px;
        }

/*color styles -----------------------------*/


.bn-bordernone {
    border: none;
}

.bn-italic > ul > li > a {
    font-style: italic;
}

.bn-bold > ul > li > a {
    font-weight: bold;
}

.breakingNews > .bn-navi,
.breakingNews > ul > li > a,
.breakingNews > .bn-navi > span {
    transition: .25s linear;
    -moz-transition: .25s linear;
    -webkit-transition: .25s linear;
}

/*#endregion */

/*#region Marquee */

/*!
 * reparsoft - LESS  last compressed 
 * @licence reparsoft - v1.0.0 (2015-01-19)
 * http://56hm.com/ | Licence: MIT
 */
.block-hdnews {
    width: 100%;
    height: 215px;
    background-repeat: round;
    background-image: url(../../Images/elements_header_background.png);
}

.list-wrpaaer {
    height: 215px;
}

ul.list-aggregate {
    padding: 10px;
    width: 100%;
}

.list-aggregate li {
    border-bottom: 1px dashed;
    border-bottom-color: #e5e5e5;
    list-style-type: none;
}
#marquee-vertical.list-aggregate li {
    min-height:225px;
}

    .list-aggregate li a {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

        .list-aggregate li a:hover {
            color: #fff;
        }

    .list-aggregate li p {
        color: #fff;
        padding: 0 10px;
        font-size: 13px !important;
    }

ul.list-aggregate#marquee-horizontal {
    padding: 0px;
    width: 100%;
    display: -webkit-flex;
    margin: 11px;
    background-color: #fff;
}

    ul.list-aggregate#marquee-horizontal li {
        border: none;
    }

        ul.list-aggregate#marquee-horizontal li:nth-child(1) {
            margin-left: 350px;
        }

        ul.list-aggregate#marquee-horizontal li p {
            color: #333;
            margin: 0;
            padding: 5px;
        }

        ul.list-aggregate#marquee-horizontal li:hover p {
            color: #fff;
        }
/*#endregion */

/*#region Textbox */
:focus {
    outline: none;
}

input[type="text"] {
    color:  #5d5c5c;
    width: 100%;
    letter-spacing: 1px;
}

.txt-anim {
    border: 1px solid #ced4da;
    padding: 7px 14px;
    transition: 0.4s;
    height: 38px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
}
/*#endregion */

/*#region Tiles */
.clstile1 {
    color: #fff;
    height: 80px;
    line-height: 60px;
    font-size: 25px;
    padding: 10px 5px !important;
}

@media (max-width:767px) {
    .clstile1 {
        line-height: 60px;
        font-size: 20px;
        height: 30px;
        line-height: 10px;
    }
    .mobwidth100per {
    width: 100% !important;
}
}
/*#endregion */

/*#region nice-Select */

.nice-select {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    outline: none;
    padding-left: 15px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

    .nice-select:hover {
        border-color: #dbdbdb;
    }

    .nice-select:active, .nice-select.open, .nice-select:focus {
        border-color: #999;
    }

    .nice-select:after {
        border-bottom: 2px solid rgba(38, 38, 38, 0.82);
        border-right: 2px solid rgba(38, 38, 38, 0.82);
        content: '';
        display: block;
        height: 5px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        right: 12px;
        top: 50%;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 5px;
    }

    .nice-select.open:after {
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nice-select.open .list {
        opacity: 1;
        width: 100%;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none; 
    }
    .nice-select.disabled:after {
       border-color: #cccccc; 
    }

    .nice-select.wide {
        width: 100%;
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .nice-select.right {
        float: right;
    }

        .nice-select.right .list {
            left: auto;
            right: 0;
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

        .nice-select.small:after {
            height: 4px;
            width: 4px;
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px;
        }

    .nice-select .list {
        max-height: 300px;
      overflow-y: auto !important;
    }

    .nice-select .list {
    
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 101;
    }
    .maxhit200 .nice-select .list {
         max-height: 200px;
    }

        .nice-select .list:hover .option:not(:hover) {
            background-color: transparent !important;
        }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: none;
        padding-left: 10px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
            background-color: #f6f6f6;
            width: 100% !important;
        }

        .nice-select .option.selected {
            font-weight: bold;
        }

        .nice-select .option.disabled {
            background-color: transparent;
            color: #999;
            cursor: default;
        }

.no-csspointerevents .nice-select .list {
    display: none;nice-select .list 
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*#endregion */

/*#region Bounce Button */
/* Bounce To Bottom */
.btnRays {
    font-family: 'Open Sans',Arial,Helvetica,sans-serif !important;
    cursor: pointer;
    display: inline-block;
    margin: 15px 0px;
    letter-spacing: 1px;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 0;
    border: 2px solid !important;
    height: 50px;
    line-height: 40px;
}

    .btnRays:after {
        content: '';
        position: absolute;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .btnRays:before {
        font-family: 'icomoon';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        position: relative;
        -webkit-font-smoothing: antialiased;
    }

.btnRays-1 {
    border: 3px solid #fff;
    color: #fff;
}

.btnRays-1e {
    overflow: hidden;
}

    .btnRays-1e:after {
        width: 100%;
        height: 0;
        top: 50%;
        left: 50%;
        background: #fff;
        opacity: 0;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .btnRays-1e:hover,
    .btnRays-1e:active {
        color: #000;
    }

        .btnRays-1e:hover:after {
            height: 190%;
            opacity: 1;
        }

        .btnRays-1e:active:after {
            height: 400%;
            opacity: 1;
        }
/*#endregion */

/*#region Comming soon */
div.foo {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

div.foocus {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.letter {
    display: inline-block;
    font-weight: 900;
    font-size: 8vw;
    margin: 0.2em;
    position: relative;
    color: #00B4F1;
    transform-style: preserve-3d;
    perspective: 400;
    z-index: 1;
}

    .letter:before, .letter:after {
        position: absolute;
        content: attr(data-letter);
        transform-origin: top left;
        top: 0;
        left: 0;
    }

    .letter, .letter:before, .letter:after {
        transition: all 0.3s ease-in-out;
    }

        .letter:before {
            color: #fff;
            text-shadow: -1px 0px 1px rgba(255,255,255,.8), 1px 0px 1px rgba(0,0,0,.8);
            z-index: 3;
            transform: rotateX(0deg) rotateY(-15deg) rotateZ(0deg);
        }

        .letter:after {
            color: rgba(0,0,0,.11);
            z-index: 2;
        }

        .letter:hover:before {
            color: #fafafa;
            transform: rotateX(0deg) rotateY(-40deg) rotateZ(0deg);
        }

        .letter:hover:after {
            transform: scale(1.08,1) rotateX(0deg) rotateY(40deg) rotateZ(0deg) skew(0deg,22deg);
        }

.foocus .letter {
    font-size: 26px;
    font-weight: 600 !important;
    margin: 0 !important;
    letter-spacing: 0px !important;
}

@media (min-width:768px) {
    .foocus .letter {
        font-size: 20px;
    }

    .hdr-info.foocus .letter {
        font-size: 20px;
    }
}
/*#endregion */

/*#region Checkbox */
.cntr {
    line-height: 34px;
}

    .cntr label {
        margin: 0;
    }

.cbx {
    position: relative;
    top: 1px;
    width: 20px;
    height: 20px;
    border: 1px solid #c8ccd4 !important;
    border-radius: 3px;
    vertical-align: middle;
    transition: background 0.1s ease;
    cursor: pointer;
}

    .cbx:after {
        content: '';
        position: absolute;
        top: 3px;
        left: 6px;
        width: 5px;
        height: 10px;
        opacity: 0;
        transform: rotate(45deg) scale(0);
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transition: all 0.3s ease;
        transition-delay: 0.15s;
    }

.lbl {
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
    color:#212529;
}
.fltcntnt {
    color: #333;
    font-size: 12px;
    font-weight: 600;
}

.cb:checked ~ .cbx {
    border-color: transparent !important;
    animation: jelly 0.6s ease;
    background:#00afe1;
}

    .cb:checked ~ .cbx:after {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }

@-moz-keyframes jelly {
    from {
        transform: scale(1, 1);
    }

    30% {
        transform: scale(1.25, 0.75);
    }

    40% {
        transform: scale(0.75, 1.25);
    }

    50% {
        transform: scale(1.15, 0.85);
    }

    65% {
        transform: scale(0.95, 1.05);
    }

    75% {
        transform: scale(1.05, 0.95);
    }

    to {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes jelly {
    from {
        transform: scale(1, 1);
    }

    30% {
        transform: scale(1.25, 0.75);
    }

    40% {
        transform: scale(0.75, 1.25);
    }

    50% {
        transform: scale(1.15, 0.85);
    }

    65% {
        transform: scale(0.95, 1.05);
    }

    75% {
        transform: scale(1.05, 0.95);
    }

    to {
        transform: scale(1, 1);
    }
}

@-o-keyframes jelly {
    from;

{
    transform: scale(1, 1);
}

30% {
    transform: scale(1.25, 0.75);
}

40% {
    transform: scale(0.75, 1.25);
}

50% {
    transform: scale(1.15, 0.85);
}

65% {
    transform: scale(0.95, 1.05);
}

75% {
    transform: scale(1.05, 0.95);
}

to {
    transform: scale(1, 1);
}

}

@keyframes jelly {
    from {
        transform: scale(1, 1);
    }

    30% {
        transform: scale(1.25, 0.75);
    }

    40% {
        transform: scale(0.75, 1.25);
    }

    50% {
        transform: scale(1.15, 0.85);
    }

    65% {
        transform: scale(0.95, 1.05);
    }

    75% {
        transform: scale(1.05, 0.95);
    }

    to {
        transform: scale(1, 1);
    }
}

/*#endregion */

/*#region toggle radio */

.radio-group {
    width: 100%;
    max-width: 400px;
    display: table;
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: separate;
}

.radio-group__label {
    display: table-cell;
    height: 35px;
    vertical-align: middle;
    text-align: center;
    position: relative;
    border: 1px solid #4F5167 !important;
    border-style: solid none solid solid !important;
    border-radius: 5px 0 0 5px !important;
    color: #4F5167 !important;
    -moz-transition: border 250ms, color 250ms;
    -o-transition: border 250ms, color 250ms;
    -webkit-transition: border 250ms, color 250ms;
    transition: border 250ms, color 250ms;
    cursor: pointer;
    font-weight:500;
}

    .radio-group__label + input + .radio-group__label {
        border-radius: 0 5px 5px 0 !important;
        border-style: solid solid solid none !important;
    }

        .radio-group__label + input + .radio-group__label:before {
            content: " ";
            display: block;
            position: absolute;
            top: -1px;
            width: 100%;
            height: 35px;
            border: 1px solid;
            border-radius: 5px 0 0 5px;
            transform: translate3d(-100%, 0, 0);
            transition: all 250ms;
        }

    .radio-group__label + input:checked + .radio-group__label:before {
        border-radius: 0 5px 5px 0 !important;
        transform: translate3d(1px, 0, 0) !important;
    }

.radio-group__option {
    display: none !important;
}

/*#endregion */

/*#region ShareButton */

.share, .share:before, .share:after, .fab {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}

.share {
    position: relative;
}

    .share:before, .share:after {
        content: '';
        will-change: transform;
    }

    .share:before {
        background: url(http://goo.gl/dVG3Fd) center/28px no-repeat;
        z-index: 5;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        right: 0px;
    }

    .share:after {
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        z-index: -1;
        -webkit-transition: 0.39s;
        transition: 0.39s;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .share.active:before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .share.active:after {
        width: 3000px;
        height: 3000px;
        background: rgba(0,0,0,0.5);
    }

.fab {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-animation: 0.3s down forwards;
    animation: 0.3s down forwards;
    opacity: 0;
    will-change: animation;
}

    .fab:nth-child(1) {
        background: #1DA1F2 url(http://goo.gl/TsaqFB) center/28px no-repeat;
        top: -132px;
    }

    .fab:nth-child(2) {
        background: #46629E url(http://goo.gl/4g3NlE) center/28px no-repeat;
        top: -66px;
    }

    .fab:nth-child(3) {
        background: #DB4437 url(http://goo.gl/rFa6zA) center/28px no-repeat;
    }

    .fab.active {
        -webkit-animation: 0.48s up forwards;
        animation: 0.48s up forwards;
    }

        .fab.active:nth-child(1) {
            -webkit-animation-delay: 0.39s;
            animation-delay: 0.39s;
        }

        .fab.active:nth-child(2) {
            -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
        }

    .fab.no {
        -webkit-animation: none;
        animation: none;
    }

@-webkit-keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%);
    }
}

@keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%);
    }
}

@-webkit-keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0;
    }
}

@keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0;
    }
}

/*#endregion */

/*#region Table-saranrya */
.tblbnk {
    border: 1px solid #ccc;
}

.tblbnk th {
    color: #000000;
    background: #e8e8e8;
    border-bottom: 0px solid #f3f3f3;
    border-right: 1px solid #ababab;
    font-size: 12px !important;
    font-weight: 600;
    padding: 15px 2%;
    text-align: left;
    vertical-align: middle;
}

    .tblbnk th:first-child {
        border-top-left-radius: 3px;
    }

    .tblbnk th:last-child {
        border-top-right-radius: 3px;
        border-right: none;
    }

.tblbnk tr {
    border-top: 1px solid #C1C3D1;
    border-bottom-: 1px solid #C1C3D1;
    color: #666B85;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

    .tblbnk tr:hover td {
        background: #00afe1;
        color: #FFFFFF;
    }

    .tblbnk tr:first-child {
        border-top: none;
    }

    .tblbnk tr:last-child {
        border-bottom: none;
    }

    .tblbnk tr:nth-child(odd) td {
        background: #EBEBEB;
    }

    .tblbnk tr:nth-child(odd):hover td {
        background: #27a5f5;
    }

    .tblbnk tr:last-child td:first-child {
        border-bottom-left-radius: 3px;
    }

    .tblbnk tr:last-child td:last-child {
        border-bottom-right-radius: 3px;
    }

.tblbnk td {
    background: #FFFFFF;
    padding: 15px 2%;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 12px !important;
    border-right: 1px solid #C1C3D1;
}

    .tblbnk td:last-child {
        border-right: 0px;
    }

.tblbnk th.text-left {
    text-align: left;
}

.tblbnk th.text-center {
    text-align: center;
}

.tblbnk th.text-right {
    text-align: right;
}

.tblbnk td.text-left {
    text-align: left;
}

.tblbnk td.text-center {
    text-align: center;
}

.tblbnk td.text-right {
    text-align: right;
}
/*#endregion */

/*#region error msg */

.animationdive {
    margin: 5px 3% !important;
}

.animationdivuser {
    margin: 15px 3% !important;
}

.loginbtn {
    margin: 0 !important;
}

@media (max-width:768px) {
    .loginbtn {
        width: 100%!important;
    }

    .animationdive {
        margin: 5px 0% !important;
    }

    .animationdivuser {
        margin: 15px 0% !important;
    }

    .message_wrap {
        margin: 5px 0% 30px 0% !important;
    }

    .flat-mega-menu .drop-down {
        right: -80px !important;
        width: 220px;
    }

    .drop-down.hover-zoom:before {
        right: 95px !important;
    }
}


.validationcls {
    color: red;
}

.message_wrap {
    display: none;
    height: 0;
    padding: 0;
    position: relative;
    text-align: center;
    border: 0;
    overflow: hidden;
    height: auto;
    margin: 4px 0;
    border: 1px solid #eb423f;
    width: 100%;
}

    .message_wrap.showhide {
        transition: 0.4s;
        display: none;
        margin: 5px 0% !important;
    }

    .message_wrap .message {
        width: 100%;
        font-size: .9em;
        margin: 0;
        padding: .50em !important;
        border: 0;
        background-color: #eb423f;
        color: #fff;
        position: relative;
        -ms-transition: all 150ms ease-in-out;
        -moz-transition: all 150ms ease-in-out;
        -webkit-transition: all 150ms ease-in-out;
        transition: all 150ms ease-in;
    }

        .message_wrap .message.animation {
            background-color: rgba(0,0,0,0.7);
            color: #eb423f;
            -ms-transform: scaleX(1.1);
            -moz-transform: scaleX(1.1);
            -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
        }

        .message_wrap .message.error {
            background-color: #ffd6d5;
            border: 1px solid #de322f;
            border-bottom-width: 2px;
            color: #de322f;
        }

        .message_wrap .message .error_active {
            display: block;
            opacity: 1;
        }

.has_error .message_wrap {
    display:block !important;
}

    .has_error .message_wrap.showhide {
        display: block;
 
    }

/*#endregion */

/*#region Agent Balance */
.clsAgnBal {
    padding: 10px 30px;
    margin-top: 7px;
    position: absolute;
    white-space: nowrap;
    margin-left: -205px;
    display: none;
    box-shadow: 2px 0px 5px 0px #ccc;
    z-index: 2;
    color: #fff;
}
    
div.clsAgnBal:before {
    border: 13px solid;
    border-color: transparent transparent #fff transparent;
    content: '';
    margin-left: 55px;
    position: absolute;
    top: -26px;
}
/*#endregion */

/*#region Animations */

/*base code*/
.animated1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*the animation definition*/
@-webkit-keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

/*the animation definition*/
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/*the animation definition*/
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/*#endregion */

/*#region No-More-Tables */
/*No More Tables*/
@media only screen and (max-width: 768px) {
    /* Force table to not be like tables anymore */
    .no-more-tables table,
    .no-more-tables thead,
    .no-more-tables tbody,
    .no-more-tables th,
    .no-more-tables td,
    .no-more-tables tr {
        display: block !important;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        .no-more-tables thead tr {
            position: absolute !important;
            top: -9999px !important;
            left: -9999px !important;
        }

    .no-more-tables tr {
        border: 1px solid #ccc !important;
    }

    .no-more-tables td {
        /* Behave  like a "row" */
        border: none !important;
        border-bottom: 1px solid #eee !important;
        position: relative !important;
        padding-left: 31% !important;
        white-space: normal !important;
        text-align: left !important;
    }

        .no-more-tables td:before {
            position: absolute !important;
            left: 12px !important;
            width: auto !important;
            padding-right: 10px !important;
            white-space: nowrap !important;
            text-align: left !important;
            font-weight: bold !important;
        }

    .td-stop {
        padding: 25px !important;
    }

    .td-flightno {
        padding: 15px !important;
    }
    /*
	Label the data
	*/
    .no-more-tables td:before {
        content: attr(data-title) !important;
    }
    /*#region General Css Added by udhaya */
    .col-margin-3 {
        margin-top: 3%;
    }


    /*#endregion */
}
/*No More Tables End*/


/*#endregion */

/*#region FareDesign */

.mini-stat {
    padding: 0px;
    margin-bottom: 0px;
}

.rounded {
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px;
    border-radius: 8px !important;
}

.bg-twitter {
    background-color: #30a4ed !important;
    border: 1px solid #00a0d1;
    color: white;
}

    .bg-twitter span {
        color: white;
    }

.mini-stat-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    background: none repeat scroll 0% 0% #EEE;
    border-radius: 100%;
    float: left;
    margin-right: 10px;
    color: #FFF;
}

.bg-twitter {
    background-color: #30a4ed !important;
    border: 1px solid #00a0d1;
    color: white;
}

.fg-twitter {
    color: #2ca1ea !important;
}

.mini-stat-info {
    font-size: 12px;
    padding-top: 5px;
}

    .mini-stat-info span {
        display: block;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 0px;
        margin-top: 10px;
    }

.bg-twitter span {
    color: white;
}

.list-real-estate {
    position: relative;
    margin: 0;
}

    .list-real-estate li {
        padding: 3px 0;
        border-bottom: 1px dashed #DDD;
    }

        .list-real-estate li a {
            text-decoration: none;
        }

            .list-real-estate li a p {
                margin: 0;
                font-size: 11px;
                color: #222;
                text-transform: uppercase;
                font-weight: 300;
            }

            .list-real-estate li a h3 {
                margin: 3px 0 0 0;
                color: #333;
                font-size: 20px;
                font-weight: 300;
            }

                .list-real-estate li a h3 .counter {
                    font-size: 20px !important;
                }

                .list-real-estate li a h3 span {
                    font-size: 15px;
                }
/*#endregion */

/*#region scroll to Top */

 #scrolls {
            position: fixed;
            right: 10px;
            bottom: 10px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            background-color: #4caf50;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
            text-indent: -9999px;
            display: none;
            z-index: 10;
            -webkit-border-radius: 60px;
            -moz-border-radius: 60px;
            border-radius: 60px;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
            -ms-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
            -moz-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
            -o-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
            transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
        }

 #scrolls span {
                position: absolute;
                top: 50%;
                left: 50%;
                margin-left: -8px;
                margin-top: -12px;
                height: 0;
                width: 0;
                border: 8px solid transparent;
                border-bottom-color: #ffffff;
            }

 #scrolls:hover {
                background-color: #99cc33;
                text-decoration: none;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 3px 15px rgba(0, 0, 0, 0.5);
                opacity: 1;
                filter: "alpha(opacity=100)";
                -ms-filter: "alpha(opacity=100)";
            }

/*#endregion */

/*#region Typeahead list design */
.clstyphead p{
    font-size: 13px;
    color: #888;
    margin: 0;
}
.typeahead.dropdown-menu .active .clstyphead p {
    color: #fff;
}
.clsthmail {
    color:#222;
    font-size:14px;
}

.clsthright{
    float: right;
    padding: 2px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 12px;
    text-shadow: 0px 1px 3px #ccc;
    font-weight: 600;
}
ul.typeahead li{
    border-bottom: 1px solid #eee;
}
.typeahead.dropdown-menu {
       height: 300px;
       max-height:300px !important;
       overflow-x: hidden !important;
}

/*#endregion */

/*#region toggle-switch(Segmented controll) */

.segmented-control {
  position: relative;
  display: inline-table;
  border: 1px solid currentColor;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  overflow: hidden;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  transition-duration: 0.7s;
  -moz-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-tap-highlight-color: transparent;
}
.segmented-control > input {
  position: absolute;
  left: -10000px;
  opacity: 0;
}
.segmented-control > label {
  display: inline-block;
  padding: 0 .71em;
  cursor: pointer;
  float: left;
  color: #333;
  font-size:13px;
  margin-bottom:0;
  line-height: 26px;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  -moz-transition-property: none;
  -o-transition-property: none;
  -webkit-transition-property: none;
  transition-property: none;
  -moz-transition-duration: inherit;
  -o-transition-duration: inherit;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -moz-transition-timing-function: inherit;
  -o-transition-timing-function: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}
.segmented-control > input:disabled:nth-child(1) ~ label:nth-of-type(1) {
  opacity: 0.3;
  cursor: not-allowed;
}
.segmented-control > input:nth-child(1):checked ~ label:nth-of-type(1):after, .segmented-control > input:nth-child(1):checked ~ label:nth-of-type(1):before {
  opacity: 1;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1):after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1):before, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1) ~ label:after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(1) ~ label:before {
  left: 0%;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2):after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2):before, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:before {
  left: 0%;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3):after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3):before, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:before {
  left: 0%;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4):after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4):before, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
  left: 0%;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5):after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5):before, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
  left: 0%;
}
.segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(6):after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(6):before, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > input:nth-child(1):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:before {
  left: 0%;
}
.segmented-control > input:disabled:nth-child(2) ~ label:nth-of-type(2) {
  opacity: 0.3;
  cursor: not-allowed;
}
.segmented-control > input:nth-child(2):checked ~ label:nth-of-type(2):after, .segmented-control > input:nth-child(2):checked ~ label:nth-of-type(2):before {
  opacity: 1;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2):after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2):before, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(2) ~ label:before {
  left: 50%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3):after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3):before, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:before {
  left: 33.33333%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4):after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4):before, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
  left: 25%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5):after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5):before, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
  left: 20%;
}
.segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(6):after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(6):before, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > input:nth-child(2):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:before {
  left: 16.66667%;
}
.segmented-control > input:disabled:nth-child(3) ~ label:nth-of-type(3) {
  opacity: 0.3;
  cursor: not-allowed;
}
.segmented-control > input:nth-child(3):checked ~ label:nth-of-type(3):after, .segmented-control > input:nth-child(3):checked ~ label:nth-of-type(3):before {
  opacity: 1;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3):after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3):before, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(3) ~ label:before {
  left: 66.66667%;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4):after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4):before, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
  left: 50%;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5):after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5):before, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
  left: 40%;
}
.segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(6):after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(6):before, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > input:nth-child(3):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:before {
  left: 33.33333%;
}
.segmented-control > input:disabled:nth-child(4) ~ label:nth-of-type(4) {
  opacity: 0.3;
  cursor: not-allowed;
}
.segmented-control > input:nth-child(4):checked ~ label:nth-of-type(4):after, .segmented-control > input:nth-child(4):checked ~ label:nth-of-type(4):before {
  opacity: 1;
}
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4):after, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4):before, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:after, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(4) ~ label:before {
  left: 75.0%;
}
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5):after, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5):before, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
  left: 60%;
}
.segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(6):after, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(6):before, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > input:nth-child(4):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:before {
  left: 50%;
}
.segmented-control > input:disabled:nth-child(5) ~ label:nth-of-type(5) {
  opacity: 0.3;
  cursor: not-allowed;
}
.segmented-control > input:nth-child(5):checked ~ label:nth-of-type(5):after, .segmented-control > input:nth-child(5):checked ~ label:nth-of-type(5):before {
  opacity: 1;
}
.segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5):after, .segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5):before, .segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:after, .segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(5) ~ label:before {
  left: 80%;
}
.segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(6):after, .segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(6):before, .segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > input:nth-child(5):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:before {
  left: 66.66667%;
}
.segmented-control > input:disabled:nth-child(6) ~ label:nth-of-type(6) {
  opacity: 0.3;
  cursor: not-allowed;
}
.segmented-control > input:nth-child(6):checked ~ label:nth-of-type(6):after, .segmented-control > input:nth-child(6):checked ~ label:nth-of-type(6):before {
  opacity: 1;
}
.segmented-control > input:nth-child(6):checked ~ label:first-of-type:nth-last-of-type(6):after, .segmented-control > input:nth-child(6):checked ~ label:first-of-type:nth-last-of-type(6):before, .segmented-control > input:nth-child(6):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > input:nth-child(6):checked ~ label:first-of-type:nth-last-of-type(6) ~ label:before {
  left: 83.33333%;
}
.segmented-control > label:before, .segmented-control > label:after {
  position: absolute;
  left: 0;
  /*top: 0;*/
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.segmented-control > label:after {
  color: #ffffff;
  content: attr(data-value);
  text-align: center;
  padding: inherit;
  z-index: 2;
  font-style: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  opacity: 0;
  -moz-transition-property: opacity, left;
  -o-transition-property: opacity, left;
  -webkit-transition-property: opacity, left;
  transition-property: opacity, left;
  -moz-transition-duration: inherit;
  -o-transition-duration: inherit;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -moz-transition-timing-function: inherit;
  -o-transition-timing-function: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}
.segmented-control > label:after, .segmented-control > label {
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.segmented-control > label:before {
  content: '';
  color: inherit;
  /*background: rgba(255,255,255,0.2);*/
  background: var( --color-primary);
  -moz-transition-property: left;
  -o-transition-property: left;
  -webkit-transition-property: left;
  transition-property: left;
  -moz-transition-duration: inherit;
  -o-transition-duration: inherit;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -moz-transition-timing-function: inherit;
  -o-transition-timing-function: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}
.segmented-control > label:first-of-type:nth-last-of-type(1), .segmented-control > label:first-of-type:nth-last-of-type(1):after, .segmented-control > label:first-of-type:nth-last-of-type(1):before, .segmented-control > label:first-of-type:nth-last-of-type(1) ~ label, .segmented-control > label:first-of-type:nth-last-of-type(1) ~ label:after, .segmented-control > label:first-of-type:nth-last-of-type(1) ~ label:before {
  width: 100%;
}
.segmented-control > label:first-of-type:nth-last-of-type(2), .segmented-control > label:first-of-type:nth-last-of-type(2):after, .segmented-control > label:first-of-type:nth-last-of-type(2):before, .segmented-control > label:first-of-type:nth-last-of-type(2) ~ label, .segmented-control > label:first-of-type:nth-last-of-type(2) ~ label:after, .segmented-control > label:first-of-type:nth-last-of-type(2) ~ label:before {
  width: 50%;
}
.segmented-control > label:first-of-type:nth-last-of-type(3), .segmented-control > label:first-of-type:nth-last-of-type(3):after, .segmented-control > label:first-of-type:nth-last-of-type(3):before, .segmented-control > label:first-of-type:nth-last-of-type(3) ~ label, .segmented-control > label:first-of-type:nth-last-of-type(3) ~ label:after, .segmented-control > label:first-of-type:nth-last-of-type(3) ~ label:before {
  width: 33.33333%;
}
.segmented-control > label:first-of-type:nth-last-of-type(4), .segmented-control > label:first-of-type:nth-last-of-type(4):after, .segmented-control > label:first-of-type:nth-last-of-type(4):before, .segmented-control > label:first-of-type:nth-last-of-type(4) ~ label, .segmented-control > label:first-of-type:nth-last-of-type(4) ~ label:after, .segmented-control > label:first-of-type:nth-last-of-type(4) ~ label:before {
  width: 25%;
}
.segmented-control > label:first-of-type:nth-last-of-type(5), .segmented-control > label:first-of-type:nth-last-of-type(5):after, .segmented-control > label:first-of-type:nth-last-of-type(5):before, .segmented-control > label:first-of-type:nth-last-of-type(5) ~ label, .segmented-control > label:first-of-type:nth-last-of-type(5) ~ label:after, .segmented-control > label:first-of-type:nth-last-of-type(5) ~ label:before {
  width: 20%;
}
.segmented-control > label:first-of-type:nth-last-of-type(6), .segmented-control > label:first-of-type:nth-last-of-type(6):after, .segmented-control > label:first-of-type:nth-last-of-type(6):before, .segmented-control > label:first-of-type:nth-last-of-type(6) ~ label, .segmented-control > label:first-of-type:nth-last-of-type(6) ~ label:after, .segmented-control > label:first-of-type:nth-last-of-type(6) ~ label:before {
  width: 16.66667%;
}
.segmented-control.italic, .segmented-control .italic {
  font-style: italic;
}
.segmented-control.bold, .segmented-control .bold {
  font-weight: bold;
}
.segmented-control.underline, .segmented-control .underline {
  text-decoration: underline;
}
.segmented-control.line-through, .segmented-control .line-through {
  text-decoration: line-through;
}

/*#endregion */

/*#region Owl.Carousel */
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /*padding-top: 10px;*/
    padding-bottom: 25px;
    /* fix firefox animation glitch */ 
  }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); 
  }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 

    position:absolute;
    top:35%;
    background: rgba(0,0,0,0.5);
    padding: 0px 10px;
    color: #fff;
  }
    .owl-carousel .owl-nav .owl-next {
            right: 0;
    }
    .owl-carousel .owl-nav .owl-prev i,
    .owl-carousel .owl-nav .owl-next i
    {
        font-size:50px;
    }

  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
    background: #fff;
  }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.add-section {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    cursor:pointer;
}
    .add-section:hover {
       background: radial-gradient(circle at 53% 76%, #35ae50, #2678c6);
    }
    .add-section:hover > .item img {
        opacity:0.2;
    }
    .add-section:hover .item div.det {
        opacity:0.1;
    }

.add-section .item img {
    width:100%;
     transition:0.5s;
}

.add-section .item div.det {
    padding: 5px;
    margin: 0;
}
    .add-section .item div.det h2 {
        letter-spacing:1px;
        margin:0;
        font-size:14px;
        color:#000;
    }
    .add-section .item div.det div {
        text-transform:uppercase;
    }
.add-section .item div.hov-det {
    z-index:-1;
    color:#fff;
    border:1px solid #fff;
    padding:10px;
    position:absolute;
    top:36%;
    left:40%;
}
 .add-section:hover > .item div.hov-det {
        z-index:0 !important;
    }

/*#endregion */

/*#region Responsive */
@media (max-width:900px) {
    .message_wrap {
        margin: 0px 0px 20px 0px !important;
    }
    .animationdive, .animationdivuser {
        margin: 10px 0% !important;
    }
}
/*#endregion */

/*#region Multicity Search*/ 
.input-style {
    position: relative;
    float: left;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

    .input-style img {
        vertical-align: middle;
        position: absolute;
        left: 5px;
        top: 11px;
    }

    .input-style input {
        /*background: none;*/
        width: 100%;
        padding-left: 23px;
        border-radius: 0;
        height: 38px;
        border:0;
    }
    .input-style .datepicker {
    padding: 4px 5px 4px 25px!important;
    }
.visuallyhidden {
        visibility:hidden;
    }
    .clsMultiCityRoutes {
        list-style-type:none;
    }
        .clsMultiCityRoutes li div div {
            margin-top:2px;
        }
    .clslefttorightarrow {
        text-align:center;
    }
    .clsCloseMRow {
        background: transparent;
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 30px;
        height: 29px;
        padding: 0;
        line-height: 32px;
    }
        .clsCloseMRow:hover {
            background: rgba(0,0,0,0.3);
        }
    button[disabled] {
        cursor:not-allowed !important;
    }
    .form-control[readonly] {
        cursor:default !important;
    }
    .clsAddNewforMCity {
        border: 2px dashed #fff;
        border-radius:5px;
        padding:8px;
        width:80%;
        text-transform:uppercase;
        background-color:transparent;
        color:#fff;
        margin-top:15px;
        transition:0.4s;
        font-size: 14px;
        line-height: 16px;
        height: 35px;
        margin-bottom:15px;
    }
     .clsAddNewforMCity:hover {
        border: 2px solid #27a5f5;
        border-radius:5px;
        background-color:#27a5f5;
        color:#fff;
    }
    #ul-multi-city-routes li:nth-child(1) .clsCloseMRow, #ul-multi-city-routes li:nth-child(2) .clsCloseMRow {
        background-color:#ddd;
        color:#aaa;
    }
/*#endregion*/

/*#region PriceingTable */

.pricingTable{
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: 40px 15px 15px 15px;
    text-align: center;
    margin-top: 30px;
    color: #292929;
    perspective: 700px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    background:#fff;
}
.rts.pricingTable {
    background: #3485ef !important;
}

/*.rt.pricingTable:hover{ color: #fff; }*/

.pricingTable:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #3485ef;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transform: rotateY(70deg);
    transition: all 0.3s ease-in-out 0s;
}

.pricingTable:hover:after{
    opacity: 1;
    transform: rotateY(0deg);
}

.pricingTable .icon{
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    font-size: 25px;
    color: #3485ef;
    position: absolute;
    top: -34px;
    left: 0;
    right: 0;
}

.pricingTable .pricingTable-header{
    padding:5px;
    margin-bottom: 20px;
    background:#fff;
}

.pricingTable .title{
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.pricingTable .price-value{
    display: inline-block;
    /*border-bottom: 2px solid #3485ef;*/
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease-in-out 0s;
}

.pricingTable:hover .price-value{
    border-bottom-color: #fff;
}

.pricingTable .pricing-content{
    list-style: none;
    padding: 0; 
    margin: 0 0 10px 0;
    background:#fff;
}

.pricingTable .pricing-content li{
    font-size: 12px;
    line-height: 35px;
}

@media only screen and (max-width: 990px){
    .pricingTable{ margin-bottom: 30px; }
}

@media only screen and (max-width: 767px){
    .pricingTable{ margin-bottom: 50px; }
}

.pricingTable .re {
    color:#3dc114;
}
.pricingTable .non-re {
    color:#ff2f2f ;
}
.pricingTable .no-re {
    color:#fda636;
}

.fltComparePlus {
    position: absolute;
    top: 50%;
    border: 1px solid;
    padding: 8px 12px;
    border-radius: 50%;
    margin-left: -18px;
    border-color: #fff;
    color: #3485ef;
    background: #fff;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.cmpRoundtrpParnt {
    background: #fafafa;
}
.btncmpr {
    border:none;
    border-radius:5px;
    margin:10px;
}
.p-t-15 {
    padding-top:15px;
}
.assincur {
    font-size: 12px;
    color: #9a9a9a;
    margin-right:5px;
}
.boldtxt {
    font-weight:600;
    font-size:14px;
}
.ptotfr {
    margin-top: 5px;
    margin-bottom: 0;
}
    .ptotfr .fr {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }
.rtnflt {
    transform:rotateY(180deg);
}
.m-l-5 {
    margin-left:5px;
}

/*#endregion */
.indexz
{
    z-index:0;
}



.moreflightcss{
   font-family: 'Open Sans',Arial,Helvetica,sans-serif !important;
    text-transform: uppercase;
    font-family: fantasy;
    font-size: 9px;
    color: #28a5f5;
    /*background: #daebff;*/
    padding: 4px 7px;
     /*background-image: linear-gradient(282deg,#0aa0fb,#90a9ca);*/ 
    border-radius: 0px 0px 18px 1px;
    cursor: pointer;
    font-weight: 700;
    cursor:pointer;
}
.seletedcls
{
        display: inline-block;
    /* background: white !important; */
    /* font-size: 0.8333em; */
    line-height: 2.5em;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px;
    padding: 3px !important;
    border-color: black;
    background-color: white !important;
    color: black !important;
    border: 1px solid #2cc185 !important;

}


.bordecls
{
border-top: 1px dashed #ccc ;
    position: relative;
    margin-top: 15px;
}

.orglaycls
{
    font-size: 10px !important;
    font-weight: 400 !important;
    top: -24px !important;
    position: absolute !important;
}
.doticonlaycls
{
    top: -4px !important;
    margin-left: 0px !important;
    position: absolute !important;
}
.flitimelay
{

    top: 8px !important;
    position: absolute !important;
}
.finaldescls
{

    right: 0px;
    font-weight:600 !important;
}
.finaltimecls
{

    right: 0px;
}
.visibilityhdncls
{
    visibility:hidden;

}
/*.laytime
{

        margin-left: 47%;
    font-size: 10px !important;
    font-weight: 400 !important;
    top: -8px;
    position: relative;
    top: -16px !important;
    position: absolute !important;

}*/



@media only screen and (max-width: 768px){
    .mobmrgbtn {
    
    margin-bottom: 12px;
    }
    .mobdestmargin {
       right: 3px;
    
    }
    .mobdestdot
    {
        left: -13px !important;
    }

    .mobdestnatime {
    
    left: -40px;
    }
    .mobclswidth {
    
    padding-right: 0px !important;
    }
    .mobroundtripclsimg {
    
    left: 10px !important;
    }
    .mobroundtripclstext {
    
    left: 5px !important;
    }

    .multicityclsoption {
    
    width:50% !important;
    padding-left:initial !important;
    margin-bottom:18px !important;

    
    }
    .fontstylmul {
    
    font-size: 13px !important;
    }

    .dispnonecls {
    
    display:none;
    }
    .positionrela {
    position:relative !important;
    margin-top:unset !important;

    }
    .colxs50 {
    width:50% !important;
    
    }
    .fontcls {
    
    font-size:10px
    }
    .hegcls {
    
    height:24px;
    }
    .roundtripcls {
    padding-left: 0px;
    
    }
}

 .mobdestdot
    {
       right: 0px !important;
    }

 .commonclsgrp
 {
     padding:0px 2px 0px 2px !important;
 }

 .boxshadcls
 {
     /*margin-bottom: 3px;*/
    background-color: #584f4f;

 }
 .artiboxsha
 {

     box-shadow: 1px 0px 10px 3px #d9d9d9 !important;

 }


 .commontoggle .clsavail_dtls:after{

     content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #EA2330;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
 }

 .message_wrap .egyptrunningtxt { 
     background-color: #f3f3f3 !important;
     color: #616161 !important;
}

#viewbalance_display .AgentLabel {
    text-align:left;
    padding-left:4px;
}

#SHOWMONEY .AgentLabel:nth-last-child(1) {
     border-bottom: none !important;
}

#SHOWMONEY .AgentLabel:nth-child(even) label{
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 200;
    font-size: 14px;
}
#SHOWMONEY .AgentLabel:nth-child(odd) label{
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 200;
    font-size: 14px;
}

h5#hCorp{
   color: #333 !important;
    font-size: 16px !important;
    border-bottom: 1px solid #e4e4e4;
    margin: 0px -30px 12px -30px;
    text-align: left;
    padding: 0px 0px 11px 13px;
}

._MPNR {
     margin-top: 15px;
}
._MPNR .col-lg-12, ._MPNR .col-lg-1{
    padding:0 !important;
}
._MPNR .txt-anim ~ label {
    margin:0;
}
.panel-heading-re {
    padding: 0;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.dv_width {
    padding: 0px 5px;
}

/*#endregion */


/*#region*/
.selectedbtndesn
{
    background: #26a5f5 !important;
    color: #fff !important;
}

/*#endregion*/


    .AvailFlagCache {
    width: 8px;
    border-bottom: 1px solid #b90c8b;
    margin-left: 25%;
}


.AvailFlagHost {
    width: 8px;
    border-bottom: 1px solid #0ac425;
    margin-left: 25%;
}
.whatup_sec i {
    color:#fff;
    background:#29ac00;
    border-radius:3px;
    padding: 3px 5px;
    font-size: 18px;
    margin: 3px 10px 0px 0px;
}

/*Bootstrap old coding added by kalai - 06/08/2024*/
@media (max-width:767px) {
    .hidden-xs {
        display: none!important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none!important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none!important;
    }
}

@media (min-width:1200px) {
    .hidden-lg {
        display: none!important;
    }
}