* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;

}

:root {
    --main-color: #cf9f3f;
    --white-color: #ffffff;
    --black-color: #000000;
    --background-color: #5c5b5b;
    --para-text: #1d1b1b;
    --border-radius: 15px;
    --button-border-raduis: 5px;
    --title-font: 'Lato', sans-serif;
    --bg-color: #ece7da;
}

p {
    color: var(--para-text);
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    font-family: var(--title-font);
    font-weight: 500;
    margin-bottom: 5px;
}

.white-title {
    color: var(--white-color);
}

.black-title {
    color: var(--black-color);
}

.section-title h3 {
    color: var(--main-color);
    font-size: 1rem;
    font-family: var(--title-font);
}

/* Breadcrumb Styles */
.breadcrumb-section {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--background-color);
}

.breadcrumb-inner-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breadcrumb-inner-wrapper a {
    color: var(--white-color);
    font-size: 1.3rem;
}

.breadcrumb-inner-wrapper a:hover {
    color: var(--main-color);
}

.breadcrumb-inner-wrapper a:focus {
    color: var(--main-color);
}

a.active-breadcrumb {
    color: var(--main-color);
}

/* Navigation */
.logo img {
    width: 150px;
}

.navbar {
    background-color: var(--white-color);
    overflow: hidden;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
}

.navbar a {
    display: block;
    color: var(--black-color);
    text-align: center;
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-color);
    min-width: 170px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--white-color);
    margin-bottom: 10px;
    margin-top: 10px;
}

.close-icon {
    display: none;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item.dropdown i {
    font-size: 20px;
}


@media only screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-list {
        display: none;
        flex-direction: column;
    }

    .nav-list.active {
        display: flex;
    }

    .navbar a {
        text-align: left;
    }

    .nav-item {
        margin-right: 0;
        /* margin-bottom: 10px; */
    }

    .close-icon {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-content {
        position: relative;
        padding: 2px 10px;
    }
}

@media screen and (min-width:770px) and (max-width: 1400px) {

    div#mobile-menu-close,
    .menu-toggle {
        display: none !important;
    }

    .mobile-header {
        width: 50%;
    }

    .nav-list {
        gap: 25px;
        justify-content: flex-start;
    }
}

/* ################################# HOME PAGE ################################# */
/* ------------ Hero Section ------------ */
.hero-section {
    background-color: var(--black-color);
}

.hero-inner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border-radius: var(--border-radius);
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero-image-wrapper {
    width: 100%;
}

.hero-image-wrapper .shakingImage {
    width: 100%;
    border-radius: var(--border-radius);
}

.hero-text,
.hero-image {
    width: 50%;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white-color);
    font-family: var(--title-font);
}

.shakingImage {
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.search-container {
    display: flex;
    max-width: 500px;
    margin-top: 30px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.search-button {
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    width: 250px;
}

.search-input:focus {
    outline: none;
}

/* ------------ Services Section ------------ */
.services-text h5 {
    color: var(--para-text);
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
}

.services-slider {
    padding: 0px 50px;
}

div#splide01-track {
    padding-left: 0px;
    padding-right: 0px;
}

.splide__slide {
    position: relative;
}

.splide__slide img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-text {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--white-color);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    font-size: 20px;
    font-weight: 500;
}

.splide__pagination__page.is-active {
    background: var(--main-color);
}

.splide__pagination {
    bottom: 0;
    z-index: 0;
}

.splide__arrow {
    background: var(--para-text);
    width: 3em;
    height: 3em;
    background: var(--black-color);
}

.splide__arrow svg {
    fill: var(--main-color);
}

.splide__arrow--prev {
    left: 0;
}

.splide__arrow--next {
    right: 0;
}

.splide__list {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

/* ------------ Top Salons Section ------------ */
.top-salons-section {
    background-color: var(--black-color);
}

.listing-row {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 65px;

}

.listing-card {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    text-align: center;
}

.listing-dtl-wrp {
    margin-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listing-dtl-head {
    align-items: center;
    justify-content: center;
}

.listing-dtl-ttl {
    color: var(--para-text);
    font-size: 1rem;
    line-height: 30px;
    text-align: center;
}

.listing-serv-offr {
    margin-top: 10px;
    border-top: 1px solid var(--main-color);
    padding-top: 8px;
}

.dflex_column {
    display: flex;
    flex-direction: column;
}

.listing_img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px 15px 3px 3px;
    box-shadow: 8px 8px 10px 3px rgb(158, 156, 156);
}

.top-salons-img {
    width: 30px;
    height: 30px;
}

.offr_ttl {
    color: var(--para-text);
    font-size: 0.75rem;

}

/* ------------ Recent Artical Section ------------ */
.articals-section {
    background-color: var(--black-color);
}

.articles_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
    margin-top: 20px;
}

.articles_list_item {
    min-height: 280px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    box-shadow: 0 3px 6px #00000026;
    border-radius: 20px;
}

.article_img_block {
    align-content: stretch;
    display: grid;
    height: 200px;
}

.recent-articals-section-img {
    max-height: 200px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.article_content_block {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: max-content;
    background-color: var(--white-color);
    border-radius: var(--border-radius);

}

.article_ttl {
    color: var(--main-color);
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 70px;
    max-height: 70px;
    text-transform: capitalize;
}

.article_date {
    font-size: 12px;
    color: #444;
    padding-top: 5px;
}

.article-btn-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.article-btn-inner-wrapper {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr 1fr;
}

.single-article-btn {
    text-align: center;
}

.single-article-btn span {
    color: var(--white-color);
    background-color: transparent;
    border: 2px solid var(--white-color);
    background-color: transparent;
    width: max-content;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: var(--button-border-raduis);
    font-weight: 600;
}

.single-article-btn span:hover {
    background-color: transparent;
}

.single-article-btn.active-price-btn span {
    background-color: var(--white-color);
    color: var(--black-color);
}

.articles-more-btn {
    text-align: center;
    margin-top: 50px;
}

.articles-more-btn a {
    display: inline-block;
    padding: 5px 40px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--black-color);
    border-radius: var(--button-border-raduis);
    color: var(--white-color);
    background-color: var(--black-color);
}

.articles-more-btn a:hover {
    background-color: transparent;
    border: 2px solid var(--black-color);
    color: var(--black-color);
}

/* ------------ Testimonials Section ------------ */

.testi-carousel {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.testi-card {
    background-color: #fff;
    padding: 25px;
    height: auto;
    border-left: 3px solid var(--main-color);
    border-top: 3px solid var(--main-color);
    border-radius: 20px;
    box-shadow: 9px 7px rgba(22, 22, 22, 0.16);
    text-align: center;
}

.testi_client {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.testi-client-name {
    color: var(--black-color);
    font-weight: bold;
    font-size: 1rem;
    padding-top: 15px;
}

.testi_client img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;

}

.star-rate i {
    color: var(--icon-color);

}

p.testi-message {
    font-size: 0.9rem;
    line-height: 20px;
}

/* ------------ Why Choose Us ------------ */
.why-choose-us-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.why-choose-us-wrapper {
    margin-top: 50px;
}

.why-choose-us-card {
    border: 1px solid var(--main-color);
    padding: 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.why-choose-us-card {
    display: block;
    position: relative;
    max-width: 100%;
    background-color: #f8f9f2;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
}

.why-choose-us-card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: var(--main-color);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.why-choose-us-card:hover:before {
    transform: scale(40);
}

.why-choose-us-card h3 {
    padding-top: 10px;
}

.why-choose-us-card img {
    width: 35px;
    position: absolute;
    top: 10px;
    right: 20px;
    filter: brightness(0.1);
}

.why-choose-us-card:hover:before .why-choose-us-card img {
    z-index: 1;
}

.why-choose-us-card.card-two img {
    width: 40px;
}

.why-choose-us-card.card-four img {
    width: 45px;
}

/* ------------ About Section ------------ */
.about-section {
    background-color: var(--black-color);
}

.about-section-inner-wrapper {
    display: flex;
    gap: 50px;
}

.about-section-image,
.about-section-text {
    width: 50%;
}

.about-section-image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
}

.about-section-wrapper {
    margin-top: 50px;
}

.about-section-text p {
    font-size: 18px;
    color: var(--white-color);
}

.about-section-text {
    margin-top: 38px;
}

/* ------------ Professionals Section ------------ */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}

.professionals-section {
    background-color: var(--black-color);
}

.professionals-slide-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.professionals-slide-image,
.professionals-slide-text {
    width: 50%;
}

.swiper-pagination-progressbar {
    background: var(--background-color);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-color);
}

.professionals-slide-image img {
    border-radius: var(--border-radius);
}

.professionals-slide-text-wrapper {
    background-color: var(--white-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: var(--border-radius);
}

.professionals-slide-text-wrapper h3 {
    margin-bottom: 20px;
}

.professionals-section .section-title {
    margin-bottom: 30px;
}

.professionals-slide-text-wrapper p {
    font-size: 18px;
}

/* ------------ Footer ------------ */
footer {
    background-color: var(--black-color);
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 350px;
}

.footer-tabs-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-grid-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 3px;
}

.footer-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h5.footer-tabs-btn {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    cursor: pointer;
}

footer a {
    font-weight: 200;
    font-size: 14px;
    color: var(--white-color);
}

footer a:hover {
    color: var(--main-color);
}

footer h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f8f9f2;
}

ul.socials-icon-list {
    display: flex;
    gap: 15px;
}

ul.socials-icon-list li a i {
    font-size: 1.5rem;
}

ul.socials-icon-list li a i:hover {
    color: var(--main-color);
}

.footer-bottom {
    border-top: 1px solid var(--white-color);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.footer-bottom-social {
    width: 25%;
}

.footer-nav-links {
    width: 75%;
}

.footer-nav-links ul {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
}

.footer-tabs-btn.active-footer-btn {
    border-bottom: 1px solid var(--main-color);
}

/* ################################# HOME PAGE END ################################# */

/* ################################# PRODUCT LIST PAGE ################################# */
/* ------------ Title Section ------------ */
.product-list-title-section {
    background: var(--black-color);
    color: var(--white-color);
}

/* ------------ Search n Sort Section ------------ */
section.search-n-sort {
    padding-bottom: 0;
}

.search-n-sort-content {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    border: 2px solid var(--main-color);
    border-radius: var(--border-radius);
}

.search-n-sort-content {
    margin-left: auto;
    margin-right: auto;
    padding: 5px 15px;
}

.sort-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 20px;
    border: 2px solid #eee;
    border-radius: var(--button-border-raduis);
    padding: 10px 15px;
    margin: 30px 0;
}

.sort-content a {
    color: var(--para-text);
    font-size: 1rem;
}

.sort-content a:hover,
.sort-content span:hover {
    color: var(--main-color);
}

.sort-content span {
    color: var(--para-text);
    width: 25px;
    margin-left: 8px;
}

.sort-content span i {
    font-size: 1rem;
}

/* ------------ Product List Section ------------ */
.product-list {
    display: flex;
    width: 100%;
    gap: 50px;
}

.map-container {
    width: 30%;
}

.product-list-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-list-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-list-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.product-list-img-wrapper {
    width: 50%;
    position: relative;
    height: 260px;
}

.location-details {
    display: flex;
    width: 100%;
    justify-content: space-around;
    position: absolute;
    bottom: 5px;
}

.location-gallery {
    display: flex;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    background: #f8f9f2;
    border-radius: var(--border-radius);
    padding: 5px 10px;
}

.location-gallery span {
    color: var(--white-color);
    font-size: 15px;
}

.location-gallery p {
    color: var(--para-text);
}

.location-status {
    background: #f8f9f2;
    border-radius: var(--border-radius);
    padding: 5px 10px;
    font-size: 15px;
}

.location-status p {
    color: var(--para-text);
}

.product-list-txt-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

.product-list-txt-wrapper .brands {
    color: var(--main-color);
    font-weight: 700;
}

.product-list-item-first-line {
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
}

.icon-text-wrapper a {
    color: var(--para-text);
}

.icon-text-wrapper a:hover {
    color: var(--main-color);
}

.icon-text-wrapper span {
    width: 25px;
}

.location-name {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1.2rem;
}

.product-list-item-second-line {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background: var(--black-color);
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.distance-line {
    display: flex;
    gap: 8px;
}

.distance {
    padding-left: 8px;
    border-left: 2px solid var(--para-text);
    font-weight: 700;
}

.product-list-item-second-line a {
    color: var(--white-color);
}

.product-list-item-second-line a:hover {
    color: var(--main-color);
}

.product-list-item i {
    font-size: 1rem;
    color: var(--main-color);
}

.product-list-item-second-line i {
    margin-right: 5px;
}

.product-list-item:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
}

.icon-text-wrapper {
    display: flex;
    gap: 8px;
}

.favourite-suite-list i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 40px;
}

.mapouter {
    width: 100%;
    max-width: 100%;
}

/* ------------ Favourite ------------ */
.featured-suites {
    border: 2px solid transparent;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin-top: 50px;
}

.featured-salon-suites-title h2 {
    color: var(--white-color);
    background: var(--main-color);
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 25px;
    border: 2px solid var(--main-color);
}

.featured-card-item {
    position: relative;
    border: 2px solid var(--main-color);
    border-radius: var(--border-radius);
    padding: 15px 10px;
    margin: 0 15px 15px 15px;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card-img {
    height: 150px;
}

/* ################################# PRODUCT LIST PAGE END ################################# */

/* ################################# SINGLE SALON PAGE ################################# */
/* single-salon slider */
.single-salon-nearby-locations-slider,
.single-salon-slider,
.other-nearby-location-slider {
    padding: 0 50px;
}

.single-salon-nearby-locations-slider .splide__arrow {
    background-color: var(--white-color)
}

/* single-salon-hero-banner-1 section */
.single-salon-hero-banner-1 {
    padding-top: 20px;
    position: relative;
    width: 100%;
    height: max-content;
    background-color: var(--black-color);
}

.single-salon-hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loc-name {
    font-size: 4rem;
    color: var(--white-color);
    margin: 15px 0 16px;
    font-family: var(--title-font);
    text-align: center;
}

.single-salon-available-and-social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loc-status {
    background-color: var(--background-color);
    color: var(--white-color);
    text-transform: uppercase;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--button-border-raduis);
    align-self: center;

}

.text-suite i {
    color: var(--main-color);
    font-size: 1.5rem;
}

.single-salon-page-loc-details {
    padding-top: 20px;
    padding-bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

.single-page-loc-address {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.single-page-loc-address p {
    font-size: 1.5rem;
    color: var(--white-color);
}

.single-page-loc-address i {
    font-size: 2rem;
    color: var(--main-color);
}

.icon-container {
    position: relative;
    animation: moveUpDown 1s infinite alternate;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(5px);
    }
}

.single-salon-rate-and-price {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.single-salon-rate-and-price i {
    color: var(--main-color);
    font-size: 1.1rem;
}

.single-salon-rate-and-price p {
    font-size: 1rem;
    color: var(--white-color);
}

.single-salon-rate-and-price span {
    display: flex;
    gap: 8px;
}

.single-salon-rate-and-price div {
    color: var(--white-color);
}


.single-salon-page-loc-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.single-salon-btn {
    background-color: var(--white-color);
    border: 2px solid transparent;
    color: var(--background-color);
    width: max-content;
    border-radius: var(--button-border-raduis);
    padding: 10px 15px;
}

.single-salon-btn:hover {
    color: var(--white-color);
    background-color: var(--background-color);
}

.flex.gap-3.items-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/*------------ single-salon-hero-galaray section ------------*/
.single-salon-hero-galary h2 {
    text-align: center;
    font-size: 3rem;
    font-family: var(--title-font);
}

.single-salon-hero-galary h5 {
    text-align: center;
    font-size: 1rem;
    color: var(--main-color);
    font-family: var(--title-font);
}

.single-salon-hero-galary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-slider-one {
    width: 100%;
    max-width: 1000px;
}

.banner-slider-one img {
    border-radius: var(--border-radius);
}

.single-salon-suites-name {
    padding-bottom: 12px;
}

/*------------ single-saloon-services-ame section ------------*/
.single-salon-services-amenities {
    background-color: var(--black-color);
}

.services-list-ul-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.services-list-ul-grid span {
    font-weight: 300;
    font-size: 1.2rem;
}

.services-icon-sec-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
}

.single-salon-services-ame-details .services-icon li i {
    font-size: 1.3rem;
}

.single-salon-services-ame-details h3 {
    color: var(--main-color);
    padding-bottom: 50px;
    padding-top: 60px;
    text-align: center;
    font-size: 1.6rem;
}

.single-salon-services-ame-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.single-salon-services-ame-details li {
    list-style-type: none;
    padding-bottom: 10px;
    color: #f8f9f2;
    font-weight: 500;
    font-size: 1.3rem;
}

.single-salon-services-ame-details .services-list--li img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.single-salon-services-ame-details i {
    color: var(--main-color);
}

/*------------ single salon nearby location artical section ------------*/
.single-salon-nearby-locations {
    background-color: var(--black-color);
}

.single-salon-artical-card {
    background-color: rgb(238, 240, 240);
    color: var(--main-color);
    border-radius: var(--border-radius);
    height: max-content;
    padding-bottom: 5px;
    text-align: initial;
    height: auto;
}

.single-salon-artical-dis {
    padding: 10px 30px;
}

.single-salon-artical-card h4 {
    font-size: 1rem;
}

.single-salon-artical-card h3 {
    color: var(--black-color);
}

.single-salon-artical-dis a {
    color: var(--main-color);
    padding-top: 5px;
    font-size: 1.2rem;

}

.single-salon-artical-dis a i:hover {
    margin-left: 5px;

}

/*------------ single-salon-about-us ------------*/
.single-salon-about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

.single-salon-about-us-title {
    margin-bottom: 50px;
}

.single-salon-about-us-title p {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
}

.single-salon-about-us-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;

}

.single-salon-about-us-cards,
.single-salon-about-us-map {
    width: 50%;
}

.single-salon-about-us-card {
    background-color: rgba(219, 216, 216, 0.1);
    color: var(--black-color);
    border-radius: var(--border-radius);
    padding: 20px;
    width: auto;
    margin-bottom: 10px;
    text-align: initial;
    border: 3px solid var(--main-color);
    font-weight: 900;
}


.single-salon-about-us-card ul {
    display: grid;
    row-gap: 3px;
    grid-template-columns: 1fr;
    font-size: 1.3rem;
    font-weight: 600;
}

.single-salon-about-us-cards ul li {
    padding-top: 10px;
}

.single-salon-about-us-card i {
    color: var(--main-color);
    font-weight: 200;

}

.single-salon-about-us-card h3 {
    padding-bottom: 2px;
    text-align: center;
    font-family: var(--title-font);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--background-color);
}

/*------------ salon suite location form ------------*/

.single-salon-location-form {
    background-color: var(--background-color);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*------------ Reviews ------------*/
.review-section {
    background-color: var(--black-color);
}

.user-card-wrapper {
    box-shadow: rgb(207 159 63) 0px 0px 10px;
    padding: 50px;
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    background-color: var(--white-color);
}

.user-card-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.user-card-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.user-image-wrapper img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    width: 80px;
    height: 80px;
}

.user-stars ul {
    display: flex;
    gap: 15px;
}

.user-stars ul li i {
    color: var(--main-color);
    font-size: 1.2rem;
}

.user-text {
    margin-bottom: 10px;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    gap: 20px;
    font-size: 2rem;
    margin-bottom: 30px;
}

.stars i:hover {
    color: var(--main-color);
}
.stars input {
    display: none;
}

i {
    transition: all .3s;
}

i:hover {
    transform: scale(1.1) rotate(5deg);
    cursor: pointer;
}

.stars :checked~label {
    color: var(--main-color);
}

.single-review.user-image-wrapper img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white-color);
}

.user-text span {
    font-weight: 300;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: var(--white-color);
}

.single-review-text p {
    font-weight: 600;
    color: var(--white-color);
}

.single-reviews .user-text h3,
.single-reviews .user-text span {
    font-size: 0.9rem;
    color: var(--white-color);
}

.single-reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.reviews-wrapper {
    margin-top: 30px;
}

#reviewForm input[type="submit"] {
    font-size: 1.2rem;
    padding: 10px 30px;
}

#reviewForm input[type="submit"],#reviewForm button,
#answerForm input[type="submit"],#answerForm button,
#questionForm input[type="submit"],#questionForm button,
#challenge-element button,
.login-form-wrapper button,
.signup-form-wrapper button,
.location-form-wrapper button,
.form-wrapper button.post-form-button,
.form-wrapper button.search_btn,
.form-wrapper button.edit_btn{
    padding: 5px 20px;
    text-align: center;
    color: var(--black-color);
    background: var(--main-color);
    border: 2px solid var(--main-color);
    cursor: pointer;
    border-radius: var(--button-border-raduis);
}

#loginForm input[type="submit"], #signupForm input[type="submit"] {
    padding: 5px 20px;
    text-align: center;
    color: var(--black-color);
    background: var(--main-color);
    border: 2px solid var(--main-color);
    cursor: pointer;
    border-radius: var(--button-border-raduis);
}

#reviewForm input[type="submit"]:hover,#reviewForm button:hover,
#loginForm input[type="submit"]:hover,
#signupForm input[type="submit"]:hover,
#questionForm input[type="submit"]:hover,#questionForm button:hover,
#answerForm input[type="submit"]:hover,#answerForm button:hover,
#challenge-element input[type="submit"]:hover,#challenge-element button:hover,
.login-form-wrapper input[type="submit"]:hover,.login-form-wrapper button:hover,
.signup-form-wrapper input[type="submit"]:hover,.signup-form-wrapper button:hover,
.location-form-wrapper input[type="submit"]:hover,.location-form-wrapper button:hover,
.form-wrapper input[type="submit"].post-form-button:hover,.form-wrapper button.post-form-button:hover,
.form-wrapper input[type="submit"].search_btn:hover,.form-wrapper button.search_btn:hover,
.form-wrapper input[type="submit"].edit_btn:hover,.form-wrapper button.edit_btn:hover {
    background-color: transparent;
    border: 2px solid var(--main-color);
}

#reviewForm .form-group label,
#loginForm .form-group label,
#signupForm .form-group label,
#questionForm .form-group label,
#answerForm .form-group label,
.login-form-wrapper .form-group label,
.signup-form-wrapper .form-group label,
.location-form-wrapper label,
.form-wrapper label {
    color: var(--background-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.user-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.form-bottom, .form-action-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

/*------------ Question ------------*/
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.popup {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius);
    width: 50%;
    text-align: center;
    left: 50%;
    z-index: 3;
}

.close-btn {
    cursor: pointer;
    font-size: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white-color);
}

#reviewForm .form-group-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

#reviewForm .form-group {
    display: flex;
    flex-direction: column;
}

#reviewForm input#userEmail,
#reviewForm input#userName {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

#reviewForm input#userEmail,
#reviewForm input#userName,
#reviewForm select#experience {
    width: 100%;
    height: 32px;
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.form-group-wrapper .form-group {
    width: 50%;
}

#loginForm .form-group, #signupForm .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#questionForm .form-group, #answerForm .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.info {
    width: 100%;
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: -80px;
}

textarea {
    resize: none;
    padding: 20px;
    font-size: 1.2rem;
}

#reviewForm textarea {
    width: 100%;
    height: 100px;
}

#loginForm input#email, #loginForm input#password {
    width: 80%;
    padding-left: 20px;
    height: 32px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

#signupForm input#firstname, #signupForm input#lastname, #signupForm input#new_email, #signupForm input#new_password {
    width: 80%;
    padding-left: 20px;
    height: 32px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

#signupForm select#new_type {
    width: 80%;
    padding-left: 20px;
    height: 32px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

#questionForm textarea, #answerForm textarea {
    width: 80%;
    height: 150px;
}

#questionForm input#userName, #answerForm input#answer_userName, #questionForm input#userEmail, #answerForm input#answer_userEmail {
    width: 80%;
    padding-left: 20px;
    height: 32px;
    font-size: 1.2rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

form#questionForm, form#answerForm, form#loginForm, form#signupForm {
    margin-top: 20px;
}

.question-wrapper {
    display: grid;
    gap: 30px;
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;

}

.single-question {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    padding: 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-question .question {
    display: flex;
    gap: 10px;
}

.single-question .question p:first-child {
    color: var(--main-color);
    font-weight: 700;
}

.single-question .answer {
    display: flex;
    gap: 10px;
}

.single-question .answer p:first-child {
    color: var(--main-color);
    font-weight: 700;
}

.single-question .reply {
    display: flex;
    gap: 15px;
}

.question-inner-wrapper {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px; */
    width: 100%;
}

.reply-date span {
    font-weight: 400;
    font-size: 0.9rem;
}

.ask-question-btn {
    margin-top: 50px;
    text-align: center;
}

.ask-question-btn h2 {
    display: inline-block;
    padding: 5px 40px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--black-color);
    border-radius: var(--button-border-raduis);
    color: var(--white-color);
    background-color: var(--black-color);
    cursor: pointer;
    letter-spacing: 1px;
}

.ask-question-btn h2:hover {
    background-color: transparent;
    color: var(--black-color);
}

/* ################################# SINGLE SALON PAGE END ################################# */


/********************************* tab screen  *********************************/

@media screen and (min-width:768px) and (max-width:991px) {

    /* ################################# HOME PAGE ################################# */
    /* ------------ Hero Section ------------ */
    .hero-inner-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

    .professionals-slide-wrapper {
        gap: 30px;
    }

    /*------------ About Section ------------ */
    .about-section-inner-wrapper {
        flex-direction: column;
    }

    .about-section-image,
    .about-section-text {
        width: 100%;
    }

    .about-section-wrapper {
        margin-top: 0;
    }

    /* ------------ Articles Section ------------ */
    .article-btn-inner-wrapper {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .articles_grid {
        grid-gap: 30px;
    }

    /* ------------ Salon Proximity Section ------------ */
    .listing-row {
        grid-template-columns: 1fr 1fr;
    }

    .listing-card {
        width: 100%;
        border-radius: 50px;

    }

    /* ------------ Testimonials Section ------------ */
    .testi-carousel {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .testi-card {
        width: 70%;
        justify-self: center;
    }

    .testi-message {
        font-size: large;
    }

    /* ------------ Footer ------------ */
    .footer-bottom-social {
        width: 30%;
    }

    .footer-nav-links {
        width: 70%;
    }

    /* ################################# Product List PAGE ################################# */
    /* ------------ Search and Sort Section ------------ */
    .search-n-sort-content {
        flex-direction: column;
        gap: 10px;
    }

    .search-n-sort-content .search-container {
        margin-left: auto;
        margin-right: auto;
    }

    .sort-content {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .search-n-sort .search-container {
        margin-top: 10px;
        width: 100%;
        padding: 5px 15px;
    }

    .sort-content {
        gap: 10px;
        font-size: 16px;
        padding: 5px 15px;
    }

    .sort-content span {
        font-size: 16px;
        width: 15px;
        margin-left: 4px;
    }

    /* ------------ Product List Section ------------ */
    .map-container {
        width: 40%;
    }

    .product-list-content {
        width: 60%;
    }

    .product-list-item-second-line {
        padding: 20px 10px;
    }

    .location-gallery {
        font-size: 14px;
    }

    .location-gallery span {
        font-size: 14px;
    }

    .location-status {
        padding: 5px 10px;
        font-size: 14px;
    }

    /* ################################# SINGLE SALON PAGE ################################# */
    .single-salon-slider .splide__arrow--prev,
    .single-salon-nearby-locations .splide__arrow--prev,
    .other-nearby-location-slider .splide__arrow--prev {
        left: 0px;
    }

    .single-salon-slider,
    .splide__arrow--next,
    .single-salon-nearby-locations-slider .splide__arrow--next,
    .other-nearby-location-slider .splide__arrow--next {
        right: 0px;
    }

    .single-salon-artical-dis {
        min-height: 230px;
    }

    .single-salon-artical-dis a {
        font-size: 1rem;
    }

    .user-card-wrapper {
        padding: 30px;
        max-width: 100%;
    }

    .popup {
        margin-left: 15px;
        margin-right: 15px;
    }

    #questionForm textarea {
        height: 170px;
    }

    .single-question {
        min-height: 310px;
    }

    .question-wrapper {
        gap: 30px;
    }

}

/********************************* mobile-screen  *********************************/
@media screen and (max-width:767px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    section,
    footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    a.action_btn {
        max-width: 50px;
    }

    .action_btn.mobile i {
        color: var(--white-color);
    }

    /* ################################# HOME PAGE ################################# */
    /* ------------ Hero Section ------------ */
    .hero-inner-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* ------------ Salon Proximity Section ------------  */
    .listing-row {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    /* ------------ Hero Section ------------  */
    .hero-inner-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    /* ------------ Articles Section ------------ */
    .article-btn-inner-wrapper {
        display: block;
    }

    .single-article-btn {
        margin-bottom: 30px;
    }

    .articles_grid {
        grid-template-columns: 1fr;
    }

    /* ------------ Why Choose Us Section ------------ */
    .why-choose-us-inner-wrapper {
        grid-template-columns: 1fr !important;
    }

    .why-choose-us-wrapper {
        margin-top: 30px;
    }

    /* ------------ Testimonials Section ------------ */
    .testi-carousel {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .testi-card {
        box-shadow: 4px 4px rgba(22, 22, 22, 0.16);
    }

    /*------------ About Section ------------ */
    .about-section-inner-wrapper {
        flex-direction: column;
    }

    .about-section-image,
    .about-section-text {
        width: 100%;
    }

    .about-section-wrapper {
        margin-top: 0;
    }

    /*------------ Professionals Section ------------ */
    .professionals-slide-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .professionals-slide-image,
    .professionals-slide-text {
        width: 100%;
    }

    /*------------ Footer ------------*/
    .footer-grid-inner-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-tabs-inner-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 15px;
        column-gap: 30px;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom-social,
    .footer-nav-links {
        width: 100%;
    }

    .footer-nav-links ul {
        gap: 20px;
    }

    ul.socials-icon-list {
        justify-content: center;
    }

    .footer-socilal {
        text-align: center;
    }

    /* ################################# PRODUCT LIST PAGE ################################# */
    /*------------ Search and Sort Section ------------ */
    .search-n-sort-content {
        flex-direction: column;
        gap: 10px;
    }

    .search-n-sort-content .search-container {
        margin-left: auto;
        margin-right: auto;
    }

    .search-n-sort-content .search-input {
        padding-left: 3px;
    }

    .sort-content {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .search-n-sort .search-container {
        margin-top: 10px;
        width: 100%;
        padding: 5px;
    }

    .sort-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        font-size: 16px;
        padding: 5px 5px;
    }

    .sort-content span {
        font-size: 16px;
        width: 15px;
        margin-left: 4px;
    }

    /* ------------ Product List Section ------------ */
    .product-list {
        flex-direction: column;
    }

    .map-container {
        width: 100%;
    }

    .product-list-content {
        width: 100%;
        gap: 50px;
    }

    .product-list-img-wrapper {
        height: 200px;
    }

    .location-name {
        font-size: 1rem;
    }

    .product-list-txt-wrapper {
        gap: 5px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .product-list-item-second-line {
        padding: 20px 10px;
        text-align: center;
    }

    .icon-text-wrapper a {
        font-size: 14px;
    }

    .distance {
        font-size: 14px;
    }

    .product-list-item i {
        font-size: 16px;
    }

    .location-details {
        flex-direction: column;
        gap: 3px;
    }

    .location-gallery {
        width: max-content;
    }

    .location-status {
        width: max-content;
    }

    /* ################################# SINGLE SALON PAGE ################################# */
    .loc-name {
        font-size: 2.5rem;
    }

    .single-salon-page-loc-buttons {
        gap: 7px;
    }

    .single-salon-services-ame-details {
        flex-direction: column;
    }

    .single-salon-services-ame-details div {
        width: 100%;
    }

    .single-salon-services-ame-details h3 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .services-list-ul-grid span {
        font-size: 1rem;
    }

    .single-salon-services-ame-details .services-icon li,
    .single-salon-services-ame-details .services-icon-sec-2 li i {
        font-size: 1rem;
    }

    .services-icon-sec-2 {
        column-gap: 25px;
    }

    .single-salon-about-us-details {
        flex-direction: column;
        gap: 30px;
    }

    .single-salon-about-us-cards,
    .single-salon-about-us-map {
        width: 100%;
    }

    .single-salon-slider .splide__arrow--prev,
    .single-salon-nearby-locations .splide__arrow--prev,
    .other-nearby-location-slider .splide__arrow--prev {
        left: 0px;
    }

    .single-salon-slider,
    .splide__arrow--next,
    .single-salon-nearby-locations-slider .splide__arrow--next,
    .other-nearby-location-slider .splide__arrow--next {
        right: 0px;
    }

    .single-salon-page.search-container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 30px !important;
    }

    .single-salon-location-form .section-title h2 {
        font-size: 2rem;
    }

    .single-page-loc-address p {
        font-size: 1rem;
    }

    .user-card-inner-wrapper {
        flex-direction: column;
    }

    #reviewForm .form-group-wrapper {
        flex-direction: column;
    }

    .form-group-wrapper .form-group {
        width: 100%;
    }

    .user-card-wrapper {
        padding: 30px;
        max-width: 100%;
    }

    .form-bottom {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .popup {
        margin-left: 15px;
        margin-right: 15px;
        width: 100% !important;
    }

    .question-wrapper {
        flex-direction: column;
    }

    .question-wrapper {
        grid-template-columns: 1fr
    }

    #questionForm input#userName,
    #questionForm textarea {
        margin-bottom: 15px;
    }

    #questionForm textarea {
        height: 170px;
    }

}

@media screen and (max-width:1150px) {

    /* ################################# PRODUCT LIST PAGE ################################# */
    /*------------ Search and Sort Section ------------ */
    .search-n-sort-content {
        flex-direction: column;
        gap: 10px;
    }

    .sort-content {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .search-n-sort .search-container {
        margin-top: 10px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .sort-content {
        gap: 10px;
        padding: 5px 15px;
        width: 100%;
    }
}

.pagination ul{
    display:flex; 
    justify-content: center;
}

.pagination ul li{
    margin-left:10px
}

.errors {
    font-size: 13px;
    color: red;
    margin-top: 3px;
    display: none;
}

.zend_form dd, .zend_form dt#message-element{
    margin-bottom: 20px;
}

.form-group-bs{
    margin-bottom: 20px;
}

.zend_form label {
    color: var(--background-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.login-form-wrapper .form-group-wrapper, 
.signup-form-wrapper .form-group-wrapper, 
.location-form-wrapper .form-group-wrapper,
.form-wrapper .form-group-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.login-form-wrapper .form-group, .signup-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.login-form-bottom, .signup-form-bottom{
    margin-bottom:20px
}

.signup-form-wrapper select#type, .location-form-wrapper select#state {
    width: 100%;
    height: 32px;
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.location-form-wrapper input,
.form-wrapper input{
    width:100%
}

.location-form-wrapper textarea,
.form-wrapper textarea{
    width:100%;
    height:100px
}

.container select#state_search,
.container select#approved,
.container input#city_search {
    width: 240px;
    padding-left: 20px;
    height: 32px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.hidden {display: none !important;}

li.resource_item a.btn{
    float:right;
}

li.resource_item img, div.resource img{
	max-width:100%;
}