
/* /Components/Dashboard/B2BDashboard.razor.rz.scp.css */
.service-stat{
    text-align: right !important;
    background-position: bottom left;
    background-repeat: no-repeat;
    min-height: 160px;
    padding: 1rem;
    background-size: 120px;
    border-radius: 0.6rem;
    background-color: white;
}

.hotel-service{
    background-image: url(images/hotel-desk.svg);
    background-color: #c4e5e7;
}

.service-stat > div{
    font-weight: bold;
    font-size: 0.8rem;
}
.service-stat > div:first-of-type{
    text-align: start;
    font-size: 1rem;
    margin-bottom: 10px;
}

.trans-service{
    background-image: url(images/trans-en.svg);
    background-color: #eed3d4;
}

.total-service{
    background-image: url(images/total.svg);
    background-color: #e3f2ec;
}

.chart-area{
    background-repeat: no-repeat;
    
}
/* /Components/Hotel/ChildAgeInput.razor.rz.scp.css */
/* /Components/Hotel/HotelCard.razor.rz.scp.css */
.hotel-card{
    position: relative;
    display: grid;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 1px 0 rgba(49, 53, 65, .2);
    grid-template-columns: 250px 2fr 0.85fr;
    grid-template-rows: 250px;
    transition: all .3s ease-in-out;
}

.hotel-card .carousel-item{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.hotel-card .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-height: 250px;
    max-height: 250px;
}

.hotel-card .hotel-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 15px;
}

.hotel-card .hotel-info h4{
    text-transform: capitalize;
    margin-bottom: 0px;
}

.hotel-card .alternative-deals{
    display: flex;
    padding-top: .75rem;
    align-items: center;
    box-shadow: inset 0 1px 0 0 #f1f2f8;
}

.hotel-card .alternative-deals .deals-row{
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    border-radius: 0;
    overflow: hidden;
}

.hotel-card .alternative-deals .deals-row a{
    display: flex;
    width: 33%;
    padding-left: .75rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #444560;
    box-shadow: inset -1px 0 0 0 #dddde5;
}

.hotel-card .alternative-deals .deals-row a .provider{
    display: flex;
    width: 100%;
    height: 1.125rem;
    align-items: center;
    font-size: .75rem;
}

.hotel-card .alternative-deals .deals-row a .provider span{
    max-width: 80%;
    height: 1.125rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 400;
}

.hotel-card .alternative-deals .deals-row a .deal{
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 700;
}

.hotel-card .alternative-deals .deals-row a:last-child{
    box-shadow: none;
}

.hotel-card .best-deal{
    padding: 10px;
    border-left: 1px solid rgba(49, 53, 65, .07);
}

html[dir="rtl"] .hotel-card .best-deal{
    border-right: 1px solid rgba(49, 53, 65, .07);
    border-left: none;
}

.hotel-card .best-deal .deal{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: none;
    overflow: hidden;
}

.hotel-card .best-deal .deal .deal-info{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: end !important;
}

.hotel-card .best-deal .deal .deal-info .rate{
    font-size: 20px;
    font-weight: 700;
}

.hotel-card .best-deal .deal .deal-info .rate small{
    font-weight: inherit;
}

.hotel-card .best-deal .deal .deal-info .deal-notes{
    font-size: 12px;
    font-weight: 600;
}

.hotel-card .best-deal .deal .deal-button{
    width: 100%;
}

.hotel-card .best-deal .deal .deal-button a{
    width: 100%;
}

.prop-container{
    margin-top: 3px;
    margin-bottom: 7px;
    display: flex;
    flex-direction: row;
}

.prop-container .prop{
    border-radius: 2px;
    height: 100%;
    font-size: 0.8rem;
    padding: 4px;
    max-width: 320px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 1px;
}

.amenity{
    background-color: rgba(225, 221, 236, .5);
}

.imgaes-container{
    position: relative;
    overflow: hidden;
}

.imgaes-container img{
    width: 250px;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-top-left-radius: 0.55rem;
    border-bottom-left-radius: 0.55rem;
}

.carousel-inner{
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
}

html[dir="rtl"] .carousel-inner{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
}

@media (max-width:37.5em) {
    .hotel-card{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        box-shadow: 0 0 7px 0 rgba(49, 53, 65, .1);
    }
    .hotel-card .carousel-item{
        width: 100%;
        height: 180px;
    }
    .hotel-card .carousel-item img{
        width: 100%;
        height: 180px;
    }
}
/* /Components/Hotel/RoomCard.razor.rz.scp.css */
.room-panel{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
    height: auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    min-height: 130px;
}

.room-panel:last-child{
    border-bottom-right-radius: 0.55rem !important;
}

.room-row{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.room-col{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.room-col:nth-child(n+2){
    box-shadow: inset 1px 0 0 #e3e3e3;
}

.room-col.benefits{
    width: 38%;
}

.room-col.capacity{
    width: 10%;
}

.room-col.price{
    width: 22%;
}

.room-col.qty{
    width: 10%;
}

.room-col.book{
    width: 20%;
}
/* /Components/Hotel/RoomInput.razor.rz.scp.css */
.room-input{
    background-color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 8px 0px;
    border-radius: 7px;
}

.room-input-header{
    -moz-box-align: center;
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-pack: justify;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 6px 14px;

}
    .room-input-header h4{
        color: rgb(54, 91, 106);
        font-size: 14px;
        font-weight: 500;
        margin: 0px;
        padding: 0px;
        border-bottom: 0px none;
        line-height: 1.3;
    }

    .room-input-header .btn{
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        min-width: 40px;
        height: 32px;
    }


.room-input-body{
    padding: 0px 14px 8px;
    margin: 0px;
    position: relative;
}

.passenger-input{
    -moz-box-align: center;
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-pack: justify;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 6px 0;
}

.age-selectors {
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    display: flex;
    flex-flow: row nowrap;
    padding: 5px 0px 8px 5px;
    overflow: auto hidden;
}


html[dir="ltr"] .room-input-header .btn{
    margin-left: 5px;
}

html[dir="rtl"] .room-input-header .btn{
    margin-right: 5px;
}


.controller{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px 0px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.controller .btn{
    height: 38px;
    font-size: 12px;
}
/* /Components/Hotel/RoomSelect.razor.rz.scp.css */
#btnRoomsSelectToggler{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#inputRoomsList{
    background: white none repeat scroll 0% 0%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: 1px solid rgb(239, 241, 242);
    max-height: 370px;
    overflow-y: scroll;
    
}

#roomsListHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 7px;
    border-bottom: #eef1f4 solid 1px;
    margin-bottom: 9px;
}
/* /Components/Hotel/RoomSelectDropdown.razor.rz.scp.css */
.select-rooms .select{
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #b1dce3;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    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;
    width: 100%;
}

.select-rooms .select .dropdown-rooms-list{
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(173, 213, 213);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    -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: 9;
}

.select-rooms .select::after {
    border-bottom: 2px solid #58898f;
    border-right: 2px solid #58898f;
    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;
}

.select-rooms .select.open::after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.select-rooms .select.open .dropdown-rooms-list{
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.select-rooms .select .dropdown-rooms-list .option{
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.select-rooms .select .dropdown-rooms-list .option:hover,
.select-rooms .select .dropdown-rooms-list .option.focus,
.select-rooms .select .dropdown-rooms-list .option.selected{
    background-color: #eef8f9;
}

.dropdown-rooms-list .option.selected{
    font-weight: 700 !important;
}
/* /Components/Hotel/SearchUpdater.razor.rz.scp.css */
.search-criteria{
    box-shadow: inset 0 0 10px 0 rgba(24, 137, 155, 0.05);
    border-top: 1px solid rgba(24, 137, 155, 0.1);
    border-bottom: 1px solid rgba(24, 143, 155, 0.1);
    padding: 15px 0;
    background-color: #12909d;
}

.search-criteria .search-form{
    display: grid;
    grid-template-columns: 1fr 2fr 2fr auto;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.search-criteria .search-form .search-item{
    display: flex;
    align-items: center;
}

.search-criteria .search-form .search-item .txt-content{
    margin-bottom: 0;
    font-size: 13px;
    margin-right: 10px;
    font-weight: 700;
}

.search-criteria .search-form .search-item label{
    color: #fff;
}

.search-criteria .search-form .search-item span{
    color: #c8dbda;
}

.search-criteria .search-form .search-item.guests label>span::before {
    margin-left: 8px;
    content: "";
}

h5.destination{
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
/* /Components/Inputs/NumericInput.razor.rz.scp.css */
.btn-inc-dec {
    font-weight: bold;
}
/* /Components/Inputs/Typeahead.razor.rz.scp.css */
/*.autocomplete-suggestions {*/
/*    position: absolute;*/
/*    top: auto;*/
/*    left: 4px;*/
/*    min-width: 374px;*/
/*    background: #fff;*/
/*    box-shadow: 0 12px 30px 0 rgba(0,0,0,.1);*/
/*    border-radius: 10px;*/
/*    padding: 20px;*/
/*    max-height: 270px;*/
/*    overflow-x: hidden;*/
/*    */
/*}*/

/*.autocomplete-suggestions ul {*/
/*    font-size: 0;*/
/*    padding: 0;*/
/*    list-style-type: none;*/
/*    */
/*}*/

/*.autocomplete-suggestions ul li {*/
/*    font-size: 13px;*/
/*    font-weight: bold;*/
/*    padding: 5px 0;*/
/*    cursor: pointer;*/
/*    transition: all .3s ease-in-out;*/
/*}*/

/*.autocomplete-suggestions ul li:hover {*/
/*    color: #0E76A8;*/
/*}*/

.autocomplete-suggestions{
    position: absolute;
    top: auto;
    left: 4px;
    min-width: 276px;
    background: #fff;
    box-shadow: 0 12px 30px 0 rgba(0,0,0,.1);
    border-radius: 10px;
    max-height: 270px;
    overflow-x: hidden;
    z-index: 1000;
    padding: 4px 0;
    margin-top: 4px;
    width: 374px;
    transition: opacity 0.1s ease-out;
    opacity: 0;
}

.autocomplete-suggestions.visible{
    opacity: 1;
}

.autocomplete-suggestions div[role=option]{
    display: grid;
    padding: 0 14px;
    align-items: center;
    height: 40px;
    margin: 0 4px;
    color: #2B2B2B;
    line-height: 20px;
    border-radius: 2px;
    border: 2px solid transparent;
    position: relative;
}

.autocomplete-suggestions div[role=optiin]:first-child{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.autocomplete-suggestions div[role=optiin]:last-child{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.autocomplete-suggestions div[role=option]:hover{
    cursor: pointer;
    background: #D6F0F096;
}

.autocomplete-suggestions div[role=option]:active{
    background: #D6F0F096;
}

.autocomplete-suggestions div[role=option]:after {
    content: '\f64f';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 14px;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 300;
    font-size: 16px;
}
/* /Components/Shared/BookingProgressbar.razor.rz.scp.css */
.booking-progressbar{
    margin-top: 16px;
    margin-bottom: 16px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

.nav-progressbar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

.nav-progressbar li{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6b6b6b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    box-sizing: border-box;
}

.progress-indicator{
    border-radius: 50%;
    background: #60b9bf;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    width: 24px;
    height: 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: auto 6px;
}

.nav-progressbar li[disabled]{
    color: #6b6b6b;
}

.progress-indicator[disabled], .progress-title[disbled]{
    color: #fff;
    background: #6b6b6b;
}

.progress-icon{
    width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: #fff;
}

.progress-title{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}



.progress-divider{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    height: 1px;
    background: #e6e6e6;
    margin: 0 8px;
    min-width: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* /Components/Shared/ExValidationSummary.razor.rz.scp.css */
html[dir="rtl"] .messages-container {
    border-right: 3px solid #f64e60;
}

html[dir="ltr"] .messages-container {
    border-left: 3px solid #f64e60;
}
/* /Components/Shared/FilteringCard.razor.rz.scp.css */
.filtering-card {
    background: #fff;
    box-shadow: 0 0 35px rgba(140, 152, 164, 0.15) !important;
    border: none;
    border-radius: 9px;
    margin-bottom: 10px;
}

    .filtering-card .card-header {
        padding: 15px 20px;
        border: 0;
        background: #fff;
        border-radius: 9px;
        position: relative;
        cursor: pointer;

    }

        .filtering-card .card-header h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            display: inline-block;
        }

    .filtering-card .card-body {
        padding-top: 5px;
    }

 ul.filtering-list {
    font-size: 0;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

 ul.filtering-list li {
        position: relative;
        font-size: 14px;
        margin-bottom: 10px;
        cursor: pointer;
    }

      ul.filtering-list li .item {
            display: inline-block;
            margin-left: 20px;

        }

         ul.filtering-list li .items-count {
            position: absolute;
            right: 0; 
            top: 2px;
        }

/* /Components/Shared/Header/LoginDisplay.razor.rz.scp.css */
.notification-area {
    list-style: outside none none;
    margin: 0px;
    padding: 0px;
    display: flex;
}

.notification-area li {
    text-decoration: none;
    width: auto;
    margin: 0px 5px;
    list-style-type: none;
    position: relative;
}

.counter {
    width: 16px;
    position: absolute;
    background-color: #a39161;
    color: white;
    right: 0px;
    top: 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px 0px;
    border-radius: 100%;
    font-size: 10px;
    text-align: center;
    z-index: 1;
}

@media (max-width:37.5em) {
    .signin-options {
        display: none !important;
    }
}
/* /Components/Shared/Header/MainMenu.razor.rz.scp.css */
.login-side {
    visibility: hidden;
}

@media (max-width:37.5em) {
    .login-side {
        visibility: visible;
    }
}
/* /Components/Shared/Header/TopBar.razor.rz.scp.css */
.call-us {
    font-size: 12px;
    padding: 2px 10px;
    margin: 6px 0 0 0;
    border-radius: 10px;
}
/* /Components/Shared/Ribbon.razor.rz.scp.css */
.ribbon {
    position: absolute;
    top: -6.1px;
    color: #fff;
    right: 10px;
}


html[dir="rtl"] .ribbon {
    right: auto;
    left: 10px;
}

.ribbon:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 10px solid #F8463F;
}
.ribbon span {
    position: relative;
    display: block;
    text-align: center;
    background: #F8463F;
    font-size: 14px;
    line-height: 1;
    padding: 12px 8px 10px;
    border-top-right-radius: 8px;
    width: 90px;
}

html[dir="rtl"] .ribbon span {
    border-top-right-radius: 0;
    border-top-left-radius: 8px;
}

    .ribbon span:before, .ribbon span:after {
        position: absolute;
        content: "";
    }

    .ribbon span:before {
        height: 6px;
        width: 6px;
        left: -6px;
        top: 0;
        background: #F8463F;
    }

html[dir="rtl"] .ribbon span:before {
    left: 0;
    right: -6px;
}

    .ribbon span:after {
        height: 6px;
        width: 8px;
        left: -8px;
        top: 0;
        border-radius: 8px 8px 0 0;
        background: #C02031;
    }

html[dir="rtl"] .ribbon span:after {
    left: 0;
    right: -8px;
}
/* /Components/Shared/Shimmer.razor.rz.scp.css */
/* /Components/Shared/ShoppingCartWidget.razor.rz.scp.css */
/* /Components/Shared/TaskItemWidget.razor.rz.scp.css */
.task-item {
    position: fixed;
    bottom: 20px;
    z-index: 9999999;
    right: 20px;
    width: 400px;
    background: #fff;
    border: 1px dashed #0e4b51 !important;
    border-radius: 1rem;
    padding: 8px;
}
/* /Components/Transportation/B2CSearchCard.razor.rz.scp.css */
.search-card {
}
/* /Pages/Counter.razor.rz.scp.css */
p {
    color: red;
}
/* /Pages/Hotel/MainPage.razor.rz.scp.css */
.main-search {
    position: relative;
    transition: all .1s;
    background-image: none;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 1920px 1080px;
}

.main-search::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    background: url(../images/top-banner.svg) repeat-x;
    height: 70px;
}

.search-box {
    padding: 80px 0 0 0;
    margin: auto;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background: rgba(0, 0, 0, 0) linear-gradient(rgb(23, 153, 161), rgb(8, 54, 85)) repeat scroll 0% 0%;
}

.search-box .inner-box {

    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    position: relative;
    top: 30px;
}

.bg-arc {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    display: inline-block;
    height: 0;
    padding-top: 6.4516%;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 101% 100%;
    background-image: url(/images/arc.png);
}
/* /Pages/Index.razor.rz.scp.css */
   .list-type5 ol {
        list-style-type: none;
        list-style-type: decimal !ie; /*IE 7- hack*/
        margin: 0;
        margin-left: 1em;
        padding: 0;
        counter-reset: li-counter;
    }

    .list-type5 ol li {
        position: relative;
        margin-bottom: 0.5rem;
        padding: 0.5em;
        padding-left: 0.5em;
        background-color: #FBEFCF;
        padding-left: 58px;
        cursor: pointer;
        /*background-color: #F0D756;*/
     
    }

    .list-type5 a {
        text-decoration: none;
        color: black;
        font-size: 15px;
        font-family: 'Raleway', sans-serif;
    }

    .list-type5 li:hover {
        box-shadow: inset -1em 0 #6CD6CC;
        -webkit-transition: box-shadow 0.5s; /* For Safari 3.1 to 6.0 */
        transition: box-shadow 0.5s;
    }

.list-type5 ol li:before {
    position: absolute;
    top: -0.3em;
    left: -0.5em;
    width: 1.1em;
    height: 1.1em;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: #6CD6CC;
    transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    z-index: 4;
    overflow: hidden;
    content: counter(li-counter);
    counter-increment: li-counter;
    border-radius: 50%;
}

html[dir="ltr"] .features-content img {
    float: left !important;
    margin-right: 30px;
    margin-left: 0 !important;
}

html[dir="rtl"] .features-content img {
    float: right !important;
    margin-left: 30px;
    margin-right: 0 !important;
}
/* /Pages/My/CompanyProfile.razor.rz.scp.css */
.invalid {
    border-color: #F64E60;
    padding-right: calc(1.5em + 1.3rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23F64E60' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F64E60' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.325rem) center;
    background-size: calc(0.75em + 0.65rem) calc(0.75em + 0.65rem);
}
/* /Pages/Transportation/Listing.razor.rz.scp.css */
.trans-list {
    text-align: start;
}

.first-label {
    width: 100%;
}

.filter-text {
    width: 85%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth) {
        display: none;
    }

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row a {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */

