.wrapper {
    padding: 0 30px;
    position: relative;
    z-index: 2;
    background: #fff;
}

/* Spinner */
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    z-index: 2000000000000000000;
}

.spinner .loader {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid #000;
    border-top-color: var(--ylw);
    border-bottom-color: var(--ylw);
    -webkit-animation: spin 0.6s ease infinite;
    -moz-animation: spin 0.6s ease infinite;
    animation: spin 0.6s ease infinite;
}

.spinner .loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Slider */

.slider-container {
    overflow: hidden;
}

.slider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-direction: column;
    -moz-box-direction: normal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
    height: 1005px;
}

.slide {
    padding: 0 15px;
    margin-bottom: 15px;
    min-height: 320px;
}

.slider-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32px;
    -webkit-box-pack: center;
    -ms-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider-btn {
    margin: 0 4px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--ylw);
    font-size: 24px;
}

.slider-btn:hover,
.slider-btn:focus {
    color: #000;
    background: (--d-ylw);
}

.map-holder {
    padding: 0;
    max-width: 100%;
}

.mapid {
    margin: 0;
    height: 600px;
}

.map-holder .search-container .search-picker {
    width: 18%;
    border: 1px solid #000;
    padding: 8px 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-box-align: center;
    -moz-box-align: center;
    align-items: center;
    color: #121315;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.map-holder .search-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-box-pack: justify;
    justify-content: space-between;
}

.map-holder .search-container .search-picker i {
    color: var(--ylw);
}

.map-holder .search-container .search-picker:hover {
    text-decoration: none;
    -webkit-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.04);
    box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.04);
}

/* Titles */
.main-h {
    position: relative;
}

.main-h::after {
    width: 75px;
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 3px;
    background: var(--ylw);
}

.fs-wrapper {
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: none;
}

.fs-wrapper .fs-content {
    max-width: 30%;
    height: 100%;
    background: #fff;
}

.fs-wrapper .fs-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    font-weight: normal;
}

.fs-wrapper .fs-closer {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: var(--ylw);
    font-size: 20px;
}

.fs-wrapper .fs-brand .fs-logo {
    max-width: 150px;
}

.fs-wrapper .fs-body {
    padding: 30px;
}

.fs-wrapper a {
    color: #000;
}

.fs-search {
    margin-bottom: 30px;
}
.fs-wrapper form {
    display: flex;
}

.fs-wrapper form button {
    border-radius: 0;
    background: var(--ylw);
    display: flex;
    align-items: center;
    color: #000;
}

.fs-wrapper form input:focus {
    border-color: #000;
}
.fs-locale a {
    text-transform: uppercase;
}

/* Search popups */

.result {
    display: inline-block;
    padding: 12px 24px;
    background: #f4f4f4;
    color: #888;
}

.result span {
    color: #121315;
}

.no-result {
    margin: 6rem 0;
}

/* Sidebar categories */
.categories {
    margin-bottom: 20px;
}

.categories ul form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.categories li {
    margin-right: 16px;
    border: 2px solid #000;
    margin-bottom: 16px;
    border-radius: 25px;
    font-weight: bold;
    padding: 5px 16px;
    -webkit-box-pack: center;
    -ms-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    color: #000;
}

.categories li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.categories li input {
    display: none;
}

.categories li.active,
.categories li:hover {
    background: var(--ylw);
    color: #000;
}

/* Media queries */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}

@media screen and (max-width: 992px) {
    .map-holder .search-container {
        -webkit-box-orient: vertical;
        -ms-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-direction: column;
        -moz-box-direction: normal;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .map-holder .search-container .search-picker {
        width: 100%;
        margin-bottom: 16px;
    }

    .search-popup {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .input-box {
        -webkit-box-orient: vertical;
        -ms-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-direction: column;
        -moz-box-direction: normal;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .input-box div {
        width: 100%;
        margin-right: 0;
    }

    .top__left-menu nav,
    .top__right-menu nav {
        display: none;
    }

    .fs-wrapper .fs-content {
        max-width: 100%;
        overflow: auto;
    }
}

@media (max-width: 568px) {
    html,
    body {
        height: auto;
        margin-bottom: 0;
    }

    section {
        margin: 0;
        padding: 32px 0;
    }
    section .main-h {
        margin-bottom: 16px;
    }

    footer {
        position: static;
    }
    footer .footer-box {
        text-align: center;
        margin-bottom: 24px;
    }
    footer ul {
        -webkit-box-pack: center;
        -ms-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    footer img {
        max-width: 50%;
    }
    footer .copyright {
        width: 100%;
        margin: 0;
    }
    footer .footer-wrapper .ft_logo {
        text-align: center;
    }

    .wrapper {
        padding: 0 15px;
    }

    .map-holder {
        padding: 0;
        max-width: 100%;
    }

    .mapid {
        height: 300px;
    }

    .about p {
        text-align: justify;
    }

    .notify {
        max-width: calc(100% - 8px);
        min-width: calc(100% - 8px);
    }

    .slider {
        height: 795px;
    }

    .slide {
        min-height: 250px;
    }
}
