html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body.modal-open {
    overflow: hidden;
}

body.modal-open .site-decorator__bottom-smiles {
    z-index: 1;
}

input:focus, textarea:focus {
    outline: none !important;
}

.main-wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    min-width: 320px;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    font-family: Arial, sans-serif;
}

.site-decorator {
    position: fixed;
    z-index: -1;
}

.site-decorator img {
    width: 50%;
}

.site-decorator__top {
    top: 0;
    bottom: auto;
}

.site-decorator__right {
    right: 0;
    left: auto;
}

.site-decorator__bottom {
    top: auto;
    bottom: 0;
}

.site-decorator__left {
    right: auto;
    left: 0;
}

.site-decorator__bottom-smiles {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    text-align: right;
}

@media screen and (min-width: 992px) {
    .site-decorator img {
        width: auto;
    }

    .site-decorator__bottom-smiles {
        right: 20px;
        bottom: 20px;
    }
}

.container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    min-width: 320px;
    width: 100%;
    max-width: 100%;
    /*max-width: 1280px;*/
    padding: 0 15px;
    margin: 0 auto;
}

header {
    align-self: center;
    padding: 40px 0;
}

.header-content {

}

.logo {
    display: block;
    margin: 0 auto;
}

.logo img {

}

.main-content {
    width: 100%;
    padding: 0 0 60px;
}

.main-content__title {
    margin: 0 0 20px;
    color: #8E44F6;
    text-align: center;
}

@media screen and (min-width: 576px) {
    .container {
        max-width: 576px;
    }
}

@media screen and (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 992px;
    }
}

@media screen and (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.menu {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
    padding: 0;
    margin: 0 auto 25px;
    list-style: none;
}

.menu li {
    width: 100%;
    margin: 0 0 17px;
}

.menu li > a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 11px 20px 11px 30px;
    border-radius: 4px;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(253,230,66,0.3) 50%,rgba(255,255,255,1) 100%);
    color: #3f3b4e;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease-in-out 0s;
}

.menu li > a:hover {
    backdrop-filter: blur(20px);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(142,68,246,0.3) 50%,rgba(255,255,255,1) 100%);
}

.menu li > a img {

}

@media screen and (min-width: 576px) {
    .menu {
        max-height: 360px;
    }

    .menu li {
        width: 50%;
    }
}

@media screen and (min-width: 992px) {
    .menu {
        max-height: 190px;
    }

    .menu li {
        width: 25%;
    }
}

@media screen and (min-width: 1280px) {
    .menu {
        max-width: 290px;
        max-height: none;
    }

    .menu li {
        width: 100%;
    }
}

.content, .tabs-content {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
}

.content__box {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px #FFC6E6;
    /*margin: 0 5px 10px;*/
}

.content__box-pic {
    display: block;
    width: 100%;
}

.content__box-pic img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.swiper {
    width: 100%;
    margin: 0 40px;
}

.swiper-wrapper {
    height: auto;
}

#slider .swiper-slide {

}

.swiper-button-prev,
.swiper-button-next {
    top: 50%;
    border: none;
    background: none;
    transform: translateY(-50%);
}

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

.swiper-button-prev::after,
.swiper-button-next:after {
    display: none;
}

@media screen and (min-width: 576px) {
    .content, .tabs-content {
        justify-content: space-between;
    }

    .content__box {
        width: 48%;
    }

    /*.content__box-pic {
        max-width: 200px;
        max-height: 280px;
    }*/
}

@media screen and (min-width: 768px) {
    .content__box {
        width: 30%;
        /*margin: 0 10px 20px;*/
    }
}

@media screen and (min-width: 992px) {
    .content__box {
        width: 22%;
    }
}

@media screen and (min-width: 1280px) {
    .content, .tabs-content {
        max-width: 925px;
    }

    .content__box {
        width: 30%;
    }

    .content__box-pic {
        /*max-width: 260px;*/
        /*max-height: 380px;*/
    }
}

#form_review {
    display: block;
    max-width: 720px;
    margin: 0 auto;
    color: #3f3b4e;
    font-size: 16px;
}

#form_review fieldset {
    padding: 0;
}

.client-data {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    margin: 0 0 40px;
}

.client-data label {
    width: 100%;
    margin: 0 0 12px;
}

.client-data__input-name {
    display: block;
    line-height: 36px;
}

.client-data__input {
    width: 100%;
    height: 44px;
    padding: 9px 5px 9px 16px;
    border: 1px solid #cfd3dd;
    border-radius: 5px;
}

.rating-step__text {
    padding: 5px;
    margin: 0 0 15px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 20px;
    white-space: pre-line;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.rating-step__name {
    padding: 5px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    font-weight: 600;
    line-height: 26px;
}

.label,
.label:not([style="display: none;"]) {
    display: block;
}

.label-rating {
    margin: 0 0 15px;
}

.label-textarea textarea {
    display: block;
    width: 100%;
    min-height: 88px;
    max-height: 150px;
    padding: 10px 15px;
    border: 1px solid #cfd3dd;
    border-radius: 5px;
}

.review-submit {
    display: block;
    width: 185px;
    height: 44px;
    margin: 70px auto 0;
    background: #fde642;
    border: none;
    border-radius: 8px;
    color: #3f3b4e;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
    .client-data label {
        width: calc(50% - 10px);
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(4px);
}

.modal.open {
    display: block;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.review-thanks {
    width: 270px;
    height: 125px;
    padding: 36px 40px;
    text-align: center;
    background: #fde642;
    border-radius: 8px;
}

.review-thanks__text {
    margin: 0;
    color: #3F3B4E;
    font-weight: 600;
    line-height: 26px;
}

/* Plugins styles */
.lg-backdrop {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, .5);
}

.rating-container .rating-stars {
    outline: none !important;
}

.rating-container .star svg {
    width: 36px;
    height: 36px;
}
