﻿

@font-face {
    font-family: 'AlmoniDemiBold';
    src: url('../fonts/Almoni/almoni-tzar-demibold-aaa.woff') format('woff');
}
@font-face {
    font-family: 'AlmoniTzarRegular';
    src: url('../fonts/Almoni/almoni-tzar-regular-aaa.woff') format('woff');
}
@font-face {
    font-family: 'AlmoniRegular';
    src: url('../fonts/Almoni/almoni-regular-aaa.woff') format('woff');
}
body {
    background-color: #f5f5f5;
    font-family: AlmoniDemiBold;
    font-size: 22px;
}
.form-wrapper, .success-wrapper, .error-wrapper, .exist-wrapper {
    display: block;
    align-self: center;
    background-color: #fff;
    padding: 30px;
    margin-top: 60px;
    border-radius: 38px;
    direction: rtl;
}

.lang-wrapper {
}
.lang-btn {
    float: right;
    width: 80px;
    height: 80px;
    color: #fff;
    background: #fc5726;
    font-size: 17px;
    text-align: center;
    vertical-align: central;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}
    .lang-btn.off {
        color: #999999;
        background: #f5f5f5;
        cursor: pointer;
    }
    .lang-btn:active, .lang-btn:hover, .lang-btn:visited {
        color: #fff;
        text-decoration: none;
    }

    .lang-btn.off:active, .lang-btn.off:hover, .lang-btn.off:visited {
        color: #999;
        text-decoration: none;
    }
.navbar {
    padding:0;
}
.title-wrapper {
    font-size: 58px;
    display: block;
    text-align: center;
    width: 100%;
}
.info-wrapper {
    font-size: 34px;
    display: block;
    text-align: center;
    width: 100%;
    direction: ltr;
    background: #fff;
}
.orange {
    color: #fc5726;
}

.note {
    font-size: 22px;
}
.current-station {
    border-radius: 8px;
    background: rgba(252, 87, 38, 0.1);
    margin: 12px 0 22px 0;
    padding: 10px;
}
.miss-station {
    border-radius: 8px;
    color: rgba(252, 87, 38, 1);
    background: rgba(252, 87, 38, 0.1);
    border: solid 2px rgba(252, 87, 38, 1);
    margin: 12px 0 22px 0;
    padding: 10px;
}
.details-wrapper {
    padding: 0 0 20px 0;
}
.details-column:after {
    content: "";
    display: table;
    clear: both;
}
.details-item {
    float: right;
    width: 50%;
    height: 50px;
    padding: 10px;
    direction: ltr;
}
.city-search-wrapper {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 0 20px;
    display: table;
    width: 100%;
    vertical-align: central;
}
.search-label {
    
    display:inline-block;
}
.map-wrapper {
    float: right;
    width: 50%;
    margin-top: 10px;
}
.station-list {
    float: right;
    direction: ltr;
    width: 50%;
    padding-left: 20px;
    max-height: 400px;
    overflow: auto;
    margin-top:10px;
}
.station-list::-webkit-scrollbar-track {
    background: rgba(194, 194, 194, 0.23);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    background-clip: padding-box;
}

.station-list::-webkit-scrollbar-thumb {
    background: #fc5726;
    border-radius: 11px;
}

.station-list::-webkit-scrollbar {
    width: 13px;
}
.station-item {
    position:relative;
    border-radius: 8px;
    background:rgba(252, 87, 38, 0.1) ;
    margin: 12px 12px 0 0;
    padding: 10px;
    cursor:pointer;
}
    .station-item:first-child {
        margin-top: 0;
    }
    .station-item:after {
        content: "";
        display: table;
        clear: both;
    }

    .station-item:nth-child(2n) {
        background: rgba(0, 0, 0, 0.07);
    }
    .station-item.active {
        color: #fff;
        background: #fc5726;
    }
    .station-item-list-icon {
        position: absolute;
        right: -30px;
        top: 5px;
    }
.station-name-city-wrapper {
    display: block;
    width: 100%;
}

    .station-name-city-wrapper:after {
        content: "";
        display: table;
        clear: both;
    }
    .station-name-city-wrapper .station-name {
        float: left;
        font-size: 22px;
        font-weight: bold;
        margin: 0 12px 0 0;
    }
.station-name-city-wrapper .station-city {
    float: left;
    font-size: 22px;
}
.station-address {
    float: left;
    text-align: left;
    font-size: 18px;
}
    .station-address:after {
        content: "";
        display: table;
        clear: both;
    }
.clear:after {
    content: "";
    display: table;
    clear: both;
}
.button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding:22px 12px;
}

.btn, .btn-submit {
    color: #fff;
    background: #fc5726;
    padding: 0 24px;
    border-radius: 7px;
    font-size: 30px;
    height: auto;
}
a.btn, a.btn-submit {
    text-decoration:none;
}
input, input.form-control {
    color: #000;
    border: 0;
    border-bottom: solid 1px #fc5726;
    width: 65%;
    font-weight: bold;
    font-size: 28px;
    outline: none;
    line-height: 1;
    height: 30px;
}

    input:focus {
        border: 0;
        border-bottom: solid 1px #fc5726;
    }
    input:active {
        border: 0;
        border-bottom: solid 1px #fc5726;
    }
    input::placeholder {
        color: #b3adad;
        font-size: 28px;
        text-align: center;
    } 
    
    input.search {
        width: 370px;
        border: 0;
        padding: 0 12px;
        margin: 0 12px 6px;
        border-radius: 10px;
        height:auto;
    }
        input.search:focus, input.search:active {
            border-bottom: none;
        }

    label {
        color: #000;
        width: 140px;
        padding: 0 6px;
        font-size: 28px;
        font-weight: bold;
    }

.caption {
    float: left;
    font-size: 47px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    vertical-align: central;
}
.search-wrapper {
    float: right;
    width: 100%;
    text-align: left;
    padding: 16px 0 8px;
    direction: ltr;
}
a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}
iframe.payment-wrapper {
    width: 100%;
    min-height: 645px;
    border: none;
    border-radius: 38px;
    padding: 15px 0;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}
.leaflet-popup-content-wrapper {
    border: 3px solid #f04c24;
    position: relative;
}

.leaflet-popup-content {
    direction: ltr;
    padding: 10px;
    text-align: center;
}
.leaflet-popup-tip {
    border: 8px solid #f04c24;
}

.leaflet-popup-content {
    color: #212529;
}


/*FOOTER*/

.footer {
    direction: ltr;
    background: #000;
    color: #fff;
    margin-top: 60px;
    padding: 65px 50px 25px;
}

    .footer a {
        color: inherit;
        text-decoration: none;
    }

    .footer .container {
        position: relative;
        margin: 0 auto;
        max-width: 1260px;
        padding: 0 10px;
        width: 100%;
    }

ol, ul {
    list-style: none;
}

.footer__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 33px;
}

.footer__item-1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-right: 110px;
}

.footer__item-1-text {
    margin-top: auto;
    font-size: 17px;
}

.footer__item-5 {
    font-family: AlmoniTzarRegular;
    font-size: 110px;
    line-height: 120px;
    transition: all 0.3s;
}

    .footer__item-5:hover {
        color: #F04C24;
    }

.footer__item-6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    width: 145px;
    margin: 11px -5px -10px;
}

    .footer__item-6 li {
        margin: 0 5px 10px;
    }

    .footer__item-6 a {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s;
    }

        .footer__item-6 a:hover {
            background: rgba(255, 255, 255, 0.5);
        }

.footer__title {
    font-size: 24px;
}

.footer__menu {
    min-width: 90px;
    margin-top: 20px;
}

    .footer__menu li {
        margin-bottom: 7px;
    }

        .footer__menu li:last-child {
            margin-bottom: 0;
        }

    .footer__menu a {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s;
    }

        .footer__menu a:hover {
            color: #F04C24;
        }

.footer__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__row-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__row-copywrite {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

    .footer__row-copywrite p {
        margin-left: 9px;
        color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s;
    }

    .footer__row-copywrite:hover p {
        color: rgba(255, 255, 255, 0.6);
    }

.loader {
    display: inline-block;
    border: 10px solid #fc5726;
    border-radius: 50%;
    border-top: 10px double #fc5726;
    border-right: 10px double #fc5726;
    border-left: 10px double #fc5726;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 4s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 20px;
}

.contacts-wrapper {
    direction: ltr;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 10px;
    width: 250px;
}
a.header__phone {
    vertical-align: middle;
    align-items: center;
    font-size: 40px;
    width: 130px;
    height: 55px;
    text-decoration: none;
}
a.header__phone span {
    display: inline-block;
    margin-left: 15px;
    color: #F04C24;
}
a.header__watsup {
    width: 90px;
    height: 55px;
    text-decoration: none;
    color: #FB5726;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Sticky footer styles
-------------------------------------------------- */

@media screen and (max-width: 1200px) {
    .caption {
        font-size: 40px;
        width: 100%;
    }
 
    .search-wrapper {
        width: 100%;
        text-align: left;
    }
    input {
        width: 60%;
    }
}
@media screen and (max-width: 1000px) {
        .details-item {
            width: 100%;
        }

        .details-wrapper {
            padding: 0 20px 20px 20px;
        }

        input {
            width: 60%;
        }

        .map-wrapper, .station-list {
            width: 100%;
        }

        .caption {
            
            width: 100%;
        }

        .search-wrapper {
            width: 100%;
            text-align: left;
        }

        iframe.payment-wrapper {
            min-height: 645px;
        }
}
@media screen and (max-width: 770px) {
        .details-item {
            width: 100%;
            height: 100px;
        }

        input {
            width: 100%;
        }

        label {
            width: 100%;
            text-align: left;
        }

        .map-wrapper, .station-list {
            width: 100%;
        }

        .caption {
            font-size: 37px;
            width: 100%;
        }

        .search-wrapper {
            width: 100%;
            text-align: left;
        }

        input.search {
            width: 100%;
            margin: 12px 0;
        }

        .btn {
            width: 100%;
        }

        #map {
            width: 100%;
        }

        .form-wrapper {
            padding: 16px;
        }
        iframe.payment-wrapper {
            min-height: 645px;
        }
        .lang-btn {
            width: 60px;
            height: 60px;
        }
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
@media screen and ( max-width: 448px) {
    iframe.payment-wrapper {
        min-height: 880px;
    }
    .lang-btn {
        width: 60px;
        height: 60px;
    }
}

    .border-top {
        border-top: 1px solid #e5e5e5;
    }

    .border-bottom {
        border-bottom: 1px solid #e5e5e5;
    }

    .box-shadow {
        box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    }

    button.accept-policy {
        font-size: 1rem;
        line-height: inherit;
    }

    /* Sticky footer styles
-------------------------------------------------- */
    html {
        position: relative;
        min-height: 100%;
    }

    body {
        direction: ltr;
    }

 
