.choices {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    font-size: 16px
}

    .choices:focus {
        outline: 0
    }

    .choices:last-child {
        margin-bottom: 0
    }

    .choices.is-open {
        overflow: initial
    }

    .choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
        background-color: #eaeaea;
        cursor: not-allowed;
        user-select: none
    }

    .choices.is-disabled .choices__item {
        cursor: not-allowed
    }

    .choices [hidden] {
        display: none !important
    }

    .choices[data-type*=select-one] {
        cursor: pointer
    }

        .choices[data-type*=select-one] .choices__inner {
            padding-bottom: 7.5px
        }

        .choices[data-type*=select-one] .choices__input {
            display: block;
            width: 100%;
            padding: 10px;
            border-bottom: 1px solid #ccc;
            background-color: #fff;
            margin: 0
        }

        .choices[data-type*=select-one] .choices__button {
            background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
            padding: 0;
            background-size: 8px;
            position: absolute;
            top: 50%;
            right: 0;
            margin-top: -10px;
            margin-right: 25px;
            height: 20px;
            width: 20px;
            border-radius: 10em;
            opacity: .25
        }

            .choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
                opacity: 1
            }

            .choices[data-type*=select-one] .choices__button:focus {
                box-shadow: 0 0 0 2px #00bcd4
            }

        .choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
            display: none
        }

        .choices[data-type*=select-one]:after {
            position: absolute;
            right: 11.5px;
            top: 50%;
            pointer-events: none;
            content: "\6b";
            font-family: var(--fontIcon);
            font-size: 10px;
            transform: translateY(-50%)
        }

        .choices[data-type*=select-one].is-open:after {
            transform: translateY(-50%) rotate(180deg)
        }

        .choices[data-type*=select-one][dir=rtl]:after {
            left: 11.5px;
            right: auto
        }

        .choices[data-type*=select-one][dir=rtl] .choices__button {
            right: auto;
            left: 0;
            margin-left: 25px;
            margin-right: 0
        }

    .choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
        cursor: text
    }

    .choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
        position: relative;
        display: inline-block;
        margin-top: 0;
        margin-right: -4px;
        margin-bottom: 0;
        margin-left: 8px;
        padding-left: 16px;
        border-left: 1px solid #008fa1;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
        background-size: 8px;
        width: 8px;
        line-height: 1;
        opacity: .75;
        border-radius: 0
    }

        .choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
            opacity: 1
        }

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #fff;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden
}

.is-focused .choices__inner, .is-open .choices__inner {
    border-color: #a6a6a6
}

.is-open .choices__inner {
    border-radius: 4px 4px 0 0
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 4px 4px
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%
}

[dir=rtl] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px
}

.choices__list--single .choices__item {
    width: 100%
}

.choices__list--multiple {
    display: inline
}

    .choices__list--multiple .choices__item {
        display: inline-block;
        vertical-align: middle;
        border-radius: 20px;
        padding: 4px 10px;
        font-size: 12px;
        font-weight: 500;
        margin-right: 3.75px;
        margin-bottom: 3.75px;
        background-color: #00bcd4;
        border: 1px solid #00a5bb;
        color: #fff;
        word-break: break-all;
        box-sizing: border-box
    }

        .choices__list--multiple .choices__item[data-deletable] {
            padding-right: 5px
        }

[dir=rtl] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaa;
    border: 1px solid #919191
}

.choices__list--dropdown {
    visibility: hidden;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    word-break: break-all;
    will-change: visibility
}

    .choices__list--dropdown.is-active {
        visibility: visible
    }

.is-open .choices__list--dropdown {
    border-color: #a6a6a6
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px
}

[dir=rtl] .choices__list--dropdown .choices__item {
    text-align: right
}

@media (min-width:640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px
    }

        .choices__list--dropdown .choices__item--selectable:after {
            content: attr(data-select-text);
            font-size: 12px;
            opacity: 0;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%)
        }

    [dir=rtl] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px
    }

        [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
            right: auto;
            left: 10px
        }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2
}

    .choices__list--dropdown .choices__item--selectable.is-highlighted:after {
        opacity: .5
    }

.choices__item {
    cursor: default
}

.choices__item--selectable {
    cursor: pointer
}

.choices__item--disabled {
    cursor: not-allowed;
    user-select: none;
    opacity: .5
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
    color: gray
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer
}

    .choices__button:focus {
        outline: 0
    }

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px
}

    .choices__input:focus {
        outline: 0
    }

[dir=rtl] .choices__input {
    padding-right: 2px;
    padding-left: 0
}

.choices__placeholder {
    opacity: .5
}

:root {
    --fontFamily: "BarlowCondensed-Regular",sans-serif;
    --shadow: 0px 0px 3px rgba(0, 0, 0, 0.1)
}

:focus, :hover {
    outline: 0 !important;
    box-shadow: none !important
}

html {
    scroll-behavior: smooth
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--fontFamily);
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #f8fbff;
    color: #151515;
    font-size: 14px
}

@media (min-width:992px) {
    body {
        font-size: var(--fontSize)
    }
}

.map-select h2 {
    font-size: 24px;
    font-weight: 500;
    font-weight: 500;
    color: #585858;
    letter-spacing: .025em
}

.map-select h3 {
    position: relative;
    color: #575757;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    display: flex;
    align-items: center;
    margin-top: 25px
}

    .map-select h3:before {
        font-family: icomoon;
        content: "\e908";
        color: #d23d27;
        font-size: 22px;
        font-style: normal;
        padding-right: 5px
    }

.map-select .select {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column
}

@media (min-width:992px) {
    .map-select .select {
        flex-wrap: nowrap;
        flex-direction: row
    }
}

.map-select .select-item {
    padding-right: 0;
    margin-top: 30px
}

@media (min-width:992px) {
    .map-select .select-item {
        padding-right: 30px;
        margin-top: 10px
    }
}

.map-select .select-item h4 {
    font-size: 16px;
    color: #b1b1b1;
    font-weight: 400;
}

.map-select .select-item .choices {
    width: 100%
}

@media (min-width:992px) {
    .map-select .select-item .choices {
        width: 360px
    }
}

.map-select .select-item .choices__inner {
    background-color: #ededed;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    color: #585858;
    font-weight: 400;
    min-height: 50px
}

.map-select .select-item .choices:after {
    content: "\41";
    font-family: "3-kopru" !important;
    transform: rotate(90deg);
    transform-origin: center center;
    top: calc(50% - 12px);
    color: rgba(0,0,0,.2);
    font-size: 18px
}

.map-select .select-item .choices__list {
    border: 0
}

.map-select .select-item .choices__item {
    font-weight: 400;
    font-size: 16px;
    color: #585858
}

.map-car {
    background-color: rgba(247,247,247,.46);
    width: calc(100% - 20px);
    margin-left: 10px;
    display: flex;
    padding: 30px 0 25px 0;
    margin-top: 40px;
    flex-wrap: wrap
}

@media (min-width:1200px) {
    .map-car {
        flex-wrap: nowrap
    }
}

@media (min-width:1500px) {
    .map-car {
        padding: 0px 65px 35px 65px;
        width: calc(100% - 70px);
        margin-left: 35px
    }
}

.map-car-item {
    margin: 15px;
    background-color: #fff;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 11px;
    box-shadow: var(--shadow);
    opacity: .3;
    cursor: pointer
}

@media (min-width:768px) {
    .map-car-item {
        width: calc(50% - 30px)
    }
}

@media (min-width:992px) {
    .map-car-item {
        width: calc(33% - 30px)
    }
}

@media (min-width:1200px) {
    .map-car-item {
        width: 100%
    }
}

.map-car-item span {
    background-color: #237dc0;
    height: 27px;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    letter-spacing: -.011em;
    font-style: italic;
    margin-top: -13px
}

.map-car-item picture {
    height: 105px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.map-car-item .map-car-text {
    min-height: 65px;
    text-align: center;
    padding: 0 15px
}

    .map-car-item .map-car-text p {
        font-weight: 400;
        font-size: 9px;
        color: #575757;
        margin: 0;
        padding: 0;
        line-height: 1.8
    }

.map-car-item .map-car-dots {
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto
}

    .map-car-item .map-car-dots i {
        font-size: 8px;
        color: #575757
    }

.map-car-item.active, .map-car-item:hover {
    opacity: 1
}

.map-result {
    margin-top: 40px;
    margin-bottom: 120px;
    display: none
}

.map-result-alert {
    background-color: #d50e0e;
    height: 50px;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    display: none;
    align-items: center;
    padding-left: 15px
}

@media (min-width:992px) {
    .map-result-alert {
        padding-left: 50px
    }
}

.map-result-alert i {
    font-size: 25px;
    color: #fff
}

.map-result-alert p {
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-left: 10px
}

    .map-result-alert p a {
        font-weight: 700;
        color: #fff
    }

.map-result-alert.open {
    display: flex
}

.map-result-content {
    background-color: #38a7f5;
    display: flex;
    flex-wrap: wrap
}

@media (min-width:992px) {
    .map-result-content {
        flex-wrap: nowrap
    }
}

.map-result-text {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column
}

@media (min-width:992px) {
    .map-result-text {
        flex-direction: row
    }
}

.map-result-text div {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px
}

@media (min-width:992px) {
    .map-result-text div {
        flex-wrap: nowrap;
        width: 50%;
        padding: 0 0 0 40px
    }
}

.map-result-text div span {
    font-weight: 700;
    font-size: 19px;
    color: #fff
}

    .map-result-text div span:first-child {
        padding-right: 24px
    }

    .map-result-text div span:last-child:before {
        content: ":";
        margin-right: 10px
    }

.map-result-total {
    background-color: #237dc0;
    width: 100%;
    font-weight: 900;
    color: #fff;
    font-size: 33px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto
}

@media (min-width:992px) {
    .map-result-total {
        width: 33%
    }
}

.map-result.open {
    display: block
}

.map-alert {
    background-color: rgba(247,247,247,.5);
    padding-left: 15px;
    height: 72px;
    display: flex;
    align-items: center
}

@media (min-width:992px) {
    .map-alert {
        padding-left: 60px
    }
}

.map-alert i {
    color: #d23d27;
    font-size: 45px
}

.map-alert span {
    color: #575757;
    font-size: 12px;
    font-weight: 400;
    padding-left: 16px
}

.map-chosen {
    background-color: rgba(247,247,247,.9);
    height: 104px;
    display: none;
    align-items: center;
    padding: 0 15px
}

@media (min-width:992px) {
    .map-chosen {
        padding-left: 130px;
        padding: 0 15px 0 130px
    }
}

.map-chosen h3 {
    color: #585858;
    font-size: 13px;
    letter-spacing: .015em;
    padding: 0;
    margin: 0
}

@media (min-width:992px) {
    .map-chosen h3 {
        font-size: 27px
    }
}

.map-chosen-item {
    border: 1px solid #707070;
    margin-left: 15px;
    color: #585858;
    font-size: 13px;
    letter-spacing: .015em;
    padding: 5px 10px
}

@media (min-width:992px) {
    .map-chosen-item {
        font-size: 19px;
        margin-left: 30px
    }
}

.map-chosen.open {
    display: flex
}

#map {
    height: 800px
}

.info {
    width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 3px
}

    .info ul li {
        list-style-type: decimal;
        margin-left: 10px
    }

    .info img {
        border: 0
    }

    .info p, .info ul {
        padding: 0;
        margin: 0
    }

    .info, .info p {
        text-align: center;
        color: #585858;
        font-size: 19px;
        font-weight: 500;
        font-weight: 300;
        line-height: 1.5;
        letter-spacing: .5px
    }

.info-img {
    height: 220px;
    width: 200px
}

.infoBox img {
    margin: 11px 5px 5px 5px !important
}

.infoBox .arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    left: 50% !important;
    top: -7px
}

.map-wrapper {
    position: relative
}

.map-popup {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(56,166,245,.678);
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center
}

    .map-popup .close {
        position: absolute;
        font-size: 20px;
        color: #fff;
        right: 20px;
        top: 20px;
        opacity: 1
    }

.map-popup-head {
    background-color: #38a7f5;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .015em;
    color: #fff
}

@media (min-width:992px) {
    .map-popup-head {
        font-size: 27px
    }
}

@media (max-width:992px) {
    .map-popup-head {
        font-size: 19px;
        display: grid;
    }
    .price-line{
        display:none;
    }
}

.map-popup-content {
    display: flex;
    background-color: #237dc0;
    padding: 10px;
    flex-wrap: wrap
}

@media (min-width:992px) {
    .map-popup-content {
        padding: 25px
    }
}

@media (min-width:1200px) {
    .map-popup-content {
        flex-wrap: nowrap
    }
}

.map-popup-item {
    height: auto;
    width: 50%;
    border-right: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .015em;
    color: #fff;
    padding: 10px
}

@media (min-width:768px) {
    .map-popup-item {
        width: 50%;
        height: 100px;
        padding: 0 10px
    }
}

@media (min-width:992px) {
    .map-popup-item {
        width: 33%;
        height: 150px
    }
}

@media (min-width:1200px) {
    .map-popup-item {
        width: 100%;
        font-size: 19px
    }
}

@media (min-width:1200px) {
    .map-popup-item:last-child {
        border-right: 0
    }
}

@media (max-width:992px) {
    .map-popup-item:nth-child(2n) {
        border-right: 0
    }
}

.map-popup-item picture {
    height: 60px
}

@media (min-width:992px) {
    .map-popup-item picture {
        height: 80px
    }
}

.map-popup-item picture img {
    max-width: 100%
}

.map-popup-item h5 {
    font-size: 13px;
    margin: 0
}

@media (min-width:1200px) {
    .map-popup-item h5 {
        font-size: 19px
    }
}

.map-popup-alert {
    background-color: #fff;
    height: 100px;
    font-weight: 400;
    font-size: 12px;
    color: #d92626;
    display: none;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    flex-direction: column
}

@media (min-width:992px) {
    .map-popup-alert {
        padding-left: 50px;
        height: 70px
    }
}

.map-popup-alert i {
    font-size: 28px;
    color: #d92626
}

.map-popup-alert p {
    font-size: 12px;
    color: #d92626;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-left: 10px
}

    .map-popup-alert p a {
        font-weight: 700;
        color: #d92626
    }

.map-popup-alert.open {
    display: flex
}

.map-popup.open {
    display: flex
}
