﻿

.iti__flag {
    background-image: url("build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("build/img/flags@2x.png");
    }
}







.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-bottom: 1px solid #ccc;
}

    .accordion h4 {
        position: absolute;
        margin-top: -2px;
    }

    .active, .accordion:hover {
        background-color: #ccc;
    }

    .accordion:after {
        content: '\002B';
        color: #777;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

/*.active:after {
    content: "\2212";
}*/

.panel {
    padding: 0;
    background-color: white;
    /*    max-height: 0;*/
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.w3-ul {
    position: absolute;
    background: #fff;
    /* border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    box-shadow: 5px 5px 5px #ccc;*/
    box-shadow: none;
    z-index: 500;
}

    /*    .w3-ul li {
        padding: 0;
    }
*/
    .w3-ul li .w3-button {
        width: 100%;
        text-align: left;
    }

.loader {
    margin-right: 0;
    margin-left: auto;
    /*margin-top: -36px*/
}

.loader-active {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #aaa;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



label {
    font-style: italic;
    color: #aaa;
}

form > div {
    margin-top: 10px;
}

#start_order {
    margin-bottom: 30px;
}

.w3-button-hover {
    background-color: #ccc;
}


.leaflet-routing-container {
    display: none;
    padding: 10px;
    min-height: 180px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 5px 5px 5px #ccc;
}

#select_point p {
    margin-top: 35px;
    text-align: center;
}

#select_point button {
    width: 50%;
}

#select_point .w3-bar {
    margin-bottom: 30px;
}

#select_point img {
    width: 50%;
}

.bold {
    font-weight: bold;
}

.larger {
    font-size: larger;
}

.red {
    color: red;
}

.smaller {
    font-size: smaller;
    font-weight: normal;
    font-style: normal;
}

#price_table {
    width: 100%;
}

    #price_table td:nth-child(1) {
        /* width: 180px;*/
        height: 32px;
    }

    #price_table td:nth-child(2), #price_table td:nth-child(3) {
        width: 90px;
        text-align: right;
    }


.border-bottom {
    border-bottom: solid #ccc 1px;
}

.border-bottom-bold {
    border-bottom: solid #ccc 3px;
}

#route_info_container {
    display: none;
}

.panel > .w3-ul {
    position: relative;
}

table.show-order {
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

/*    table.show-order td {
        padding: 5px;
    }*/

.v-pointer {
    width: 10px;
}

.h-pointer {
    width: 32px;
    text-align: center;
}

#btn-order-loading {
    margin-right: auto;
    margin-left: auto;
}

/* Dropup Button */
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

/* The container <div> - needed to position the dropup content */
.dropup {
    position: relative;
    display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
    display: none;
    position: absolute;
    bottom: 40px;
    background-color: #fff;
    /*min-width: 100px;*/
    border-left: solid #ccc 1px;
    border-right: solid #ccc 1px;
    border-top: solid #ccc 1px;
    z-index: 500;
}

    /* Links inside the dropup */
    .dropup-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

/* Change color of dropup links on hover */
/*   .dropup-content a:hover {
            background-color: #ddd
        }*/

/* Show the dropup menu on hover */
.dropup:hover .dropup-content {
    display: block;
}

/* Change the background color of the dropup button when the dropup content is shown */
.dropup:hover .dropbtn {
    background-color: #2980B9;
}


/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 38px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 5px;
        bottom: 6px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }



input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }



.small {
    font-size: small;
}

#empty_list p {
    text-align: center;
    font-style: italic;
    color: #ccc;
    padding: 25px 0px;
}

/*.accordion+.panel{
    overflow-y:auto;
}*/

#list_from, #list_to {
    max-height: 300px;
    overflow-y: auto;
    z-index: 99999;
    /*  top: 9.1em;*/
    margin: auto 0.6em;
    width: -webkit-fill-available;
    position: relative;
    background: #fff;
    /*    box-shadow: none;*/
}

    #list_from a, #list_to a {
        text-decoration: none;
    }


.chat-left {
    margin-right: 30%;
    background: #fbfbfb;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.chat-right {
    margin-left: 30%;
    background: #fbfbfb;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.chat-time {
    height: 25px;
    opacity: 0.5;
}

.w3-modal-content h2 {
    color: #aaa;
}

#chat_form div.w3-container {
    max-height: 400px;
    overflow-y: auto;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.5;
    }
}

#chat_input {
    padding: 5px;
    outline: none;
}

#chat_send {
    margin-top: 15px;
    margin-bottom: 30px;
    float: right;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #aaa;
    opacity: 0.8; /* Firefox */
}

.navbar-brand {
    height: initial;
    /*padding: 0 10px;*/
}

    .navbar-brand img {
        height: 60px;
    }

.navbar-toggle {
    margin-top: 12px;
}
/*#form_panel, #order_form, #controlid {
    height: 100%;
}*/
#form_panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/*    #form_panel .slideshow-container {
        height: 70%;
    }*/
.slideshow-container .title {
    display: flex;
    justify-content: space-between;
    padding-top: 0.4em;
}

#auto_location {
    display: block;
    position: absolute;
    margin-top: 0.7rem;
    z-index: 9999;
    right: 0.6em;
    /* border-radius: 0.2em;*/
    background-color: #f9fafb;
    height: 2.5rem;
    width: 2.5rem;
    border: 0px solid rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px 0px #7a7a7a;
}

#route_info {
    display: block;
    position: absolute;
    margin-top: 0.7rem;
    z-index: 9999;
    right: 0.6em;
    /*border-radius: 0.2em;*/
    padding: 0.4em 0.65em;
    background-color: #f9fafb;
    height: 2.5rem;
    width: 2.5rem;
    border: 0px solid rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px 0px #7a7a7a;
}

.slideshow-control {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

slideshow-control.solo {
    justify-content: center;
}

.slideshow-control button {
    display: flex;
    border-radius: 0.5em;
    box-shadow: 0 1px 10px 0px #7a7a7a;
}
/*
    .slideshow-control > div {
        padding: 0.2em;
        border: 1px solid #fff;
        border-radius: 0.2em;
    }*/

.slideshow-control #prev-slide {
    font-size: 1.5em;
}

/*        .slideshow-control #prev-slide > span {
            font-weight: bold;
        }*/

/*    .slideshow-control #prev-slide {
        width: 20%;
    }

    .slideshow-control.proceed #prev-slide {
        width: 30%;
    }

    .slideshow-control.home #prev-slide {
        width: 30%;
        opacity: 0;
    }*/

.slideshow-control #options-slide {
    display: none;
}

.slideshow-control button > i {
    font-size: 1.5em;
    margin-left: 1em;
}

    .slideshow-control button > i.invers {
        font-size: 1.5em;
        margin-right: 1em;
        margin-left: initial;
    }

.slideshow-control.options #options-slide,
.slideshow-control.start #options-slide {
    /* width: 50%;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slideshow-control.options.solo #options-slide,
.slideshow-control.start.solo #options-slide {
    display: none !important;
}

.slideshow-control #next-slide {
    /* width: 100%;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.slideshow-control.options #next-slide {
    width: 50%;
}

.slideshow-control.start #next-slide {
    display: none;
}

.slideshow-control #start-slide {
    display: none;
}



.slideshow-control.start #start-slide {
    /*        width: 50%;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*   .slideshow-control.start.solo #start-slide {
        width: 100%;
    }*/

.disabled {
    opacity: 0.7;
}

.disabled-line {
    opacity: 0.7;
    border-bottom: 3px solid #5a5a5a !important;
}


.nav-link span, .nav-link-title span {
    margin-left: 1em;
    margin-top: -0.25em;
}

a.flex-display {
    display: flex;
}

    a.flex-display span {
        margin-top:1.3em;
    }

.nav-link-title span {
    font-weight: bold;
}

.language-css {
    width: 1.25em;
}

.sidebar {
    border-bottom: 1px solid #ccc;
}

    .sidebar hr {
        margin: 1em 2em;
    }

.sidebar-left {
    position: absolute;
    z-index: 9999;
    background: #fff;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: 1px 1px 10px 0px #ddd;
    transition: all 0.2s ease-out;
    width:300px;
}

    .sidebar-left.collapsed {
        left: -100%;
    }

.btn-link.close {
    position: absolute;
    right: 0.3em;
    font-size: 1.2rem;
}

.btn-link:hover {
    color: initial;
}

input.form-control.close {
    padding-right: 2em;
}

.mySlides {
    padding-top: 0.5em;
}

.box-shadow-top {
    /* box-shadow: 0 -1px 10px 0px #7a7a7a;*/
    z-index: 999;
}

.box-shadow-bottom {
    box-shadow: 0 1px 10px 0px #7a7a7a;
    z-index: 999;
}

#from, #to {
    padding-right: 35px;
    max-height:70px;
}

#wrapper-info {
    overflow: auto;
    height: 100%;
    padding: 0.5em 1em;
}

    #wrapper-info > div {
        padding: 0.5em;
    }

        #wrapper-info > div input {
            scale: 1.5
        }

    #wrapper-info a {
        display: block;
        text-decoration: none;
        margin-bottom: 2px;
    }

        #wrapper-info a > input {
            margin-right: 25px;
        }

.box-shadow-bottom {
    overflow: auto;
}

.nav-link-title > i,
.nav-item > .nav-link > i {
    padding: 0.2em;
    border-radius: 0.2em;
    width: 2em;
    text-align: center
}

.w3-input {
    text-overflow: ellipsis;
}

.step-indicator {
    text-align: center;
    /*   margin-top: -0.7em;*/
}

.order-tab {
    padding: 0;
    /*height: 80%;*/
}

.order-current-info {
    text-align: right !important;
}

#icon-center-map {

    width: 50px;
    height: 50px;

    position: absolute;
    z-index: 999;
    left: calc(50% - 24px);
    top: calc(50% + 110px);
}

#loader-search-location {
    width: 64px;
    height: 64px;
    position: absolute;
    z-index: 999;
    left: calc(50% - 32px);
    top: calc(50% + 78px);
    font-size: 3.5em;
}

.hidden {
    display: none !important;
}

/*#wrapper_options {
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    width: 80%;

    left: 0;
    box-shadow: 1px 1px 10px 0px #ddd;
    transition: all 0.2s ease-out;
    bottom: 10em;
}*/


/*    #wrapper_options.collapsed {
        left: -80% !important;
    }*/

#wrapper_options button {
    border-bottom: 1px solid #fff
}

.w3-show {
    animation: fade-in 1s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#history_panel ul,
#delayed_panel ul {
    height: 100%;
}

    #history_panel ul li,
    #delayed_panel ul li {
        /*        border: 1px solid #ccc;
        border-radius: 0.5em;
        box-shadow: 1px 1px 5px 2px #ccc;*/
        margin-bottom: 1em;
    }

        #history_panel ul li .repeat-order,
        #history_panel ul li .review-order,
        .cancel-order, .chat-order {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

#history_panel .slideshow-control,
#delayed_panel .slideshow-control {
    font-size: smaller;
    margin: 10px auto;
}

    #history_panel .slideshow-control button,
    #delayed_panel .slideshow-control button {
        border-radius: 0.25em;
        box-shadow: 0 1px 5px 0px #7a7a7a;
    }

li.loading, div.loading {
    border: initial !important;
    border-radius: initial !important;
    box-shadow: initial !important;
    height: 100%;
    display: flex;
    justify-content: center;
    font-size: 3em;
    flex-direction: unset;
    align-items: center;
}

.h-100 {
    height: 100%;
}

#active-orders-list .w3-bar:not(.border-bottom) {
    padding: 0 1em;
}

.border-bottom {
    border-bottom: 1px solid #ccc;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.alt-bg-color {
    background-color: #f7f7f7;
}

/*.w3-ul > .w3-bar{
    margin-bottom:15px;
}*/
.no-shadow {
    border: none !important;
    box-shadow: initial !important;
}

/*.order-result div {
    padding: 0px 5px;
    border-radius: 0.25em;
}

    .order-result div table {
        font-size: smaller;
    }*/

.w3-canceled, .w3-hover-w3-canceled:hover {
    color: #565656 !important;
    background-color: #fdd4d1 !important;
}

.w3-succeded, .w3-hover-succeded:hover {
    color: #626262 !important;
    background-color: #b5d9b7 !important;
}

#chat-contents {
    display: flex;
    flex-direction: column-reverse;
}

.driver-info-history {
    display: flex;
    padding: 5px 16px;
    justify-content: space-between;
    margin-left: -16px;
    margin-right: -16px;
}

.driver-info {
    display: flex;
    padding: 5px 16px;
    justify-content: space-between;
    margin-left: -16px;
    margin-right: -16px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.driver-info-message {
    padding: 5px 16px;
    margin-left: -16px;
    margin-right: -16px;
    font-size: smaller;
    font-style: italic;
    position: absolute;
    bottom: 0;
    width: 100%;
}
/*.show-order .driver-info {
    margin-right: -16px;
}*/
.order-info span {
    overflow: hidden;
    white-space: nowrap;
}

.driver-info > div {
    font-size: smaller;
    font-style: italic;
}

    .driver-info > div img {
        width: 53px;
        margin-right: 5px;
    }

.leaflet-control-attribution.leaflet-control {
    display: none;
}

/*.box-shadow-top .slideshow-control {
    color: #fff !important;
    background-color: #f9c53149 !important
}*/
.forgotten_items {
    margin-top: 10px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10%;
}

p {
    margin-bottom: 0;
}

#pre-order p {
    font-size: medium;
}

#pre-order .alt-bg-color {
    margin: auto -16px;
    padding: 0px 16px;
}

.options-item {
    background-color: #fff;
    padding: 0.5em;
}

#wrapper_options {
    margin-bottom: 1em;
}

#wrapper-number-taxies button,
#wrapper-tips button {
    margin-right: 0.5em;
    margin-bottom: 0.5em;
}

.w3-modal footer {
    text-align: right;
    padding: 1em;
}

#route_info_container footer {
    text-align: left;
}

.checked {
    color: #f9c531 !important;
}

.mlr-fit {
    margin-left: -16px;
    margin-right: -16px;
}

    .mlr-fit .show-order td {
        padding: 10px 16px;
    }

.order-time {
    text-align: right;
}

.slideshow-container {
    padding: 0 16px;
}

#pre-order > div > div > p,
#wrapper_options_set {
    padding: 10px 0;
}

.order-tab {
    overflow-x: clip;
    overflow-y: auto;
}

.nav-item img {
    margin-top: 1.25em;
}

.slideshow-control button {
    border-top-right-radius: initial;
    border-bottom-left-radius: initial;
}
.shadow {

    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    /* Similar syntax to box-shadow */
}

#order-details, #discription{
    max-height:80px;
}

#multi_player_backup_companies{
    position:relative;
}


#page-new-order svg{
    height:42px;
    width:42px;
}

.no-provider {
    padding: 1rem;
    color: red;
}
.adhs-container.adhs-android.adhs-chrome .adhs-android-chrome-bouncing-arrow-container img,
.adhs-container.adhs-ios.adhs-safari .adhs-ios-safari-bouncing-arrow-container img {
    animation: none !important;
}

