/* PERSONAL PAGES STYLES */
.infoLeftMenuOffer {
    position: relative;
    display: flex;
}
.infoLeftMenuOffer span:last-of-type {
    position: absolute;
    right: -20px;
    top: -5px;
    background: #232323;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px !important;
    padding: 1px 1px 0 0;
    color:#fff;
}
/* login page */
.section-hero-auth .container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    position: relative;
}
.authPagesWrapper {
    display:flex;
}
.authLeftSide {
    flex:1;
    display: flex;
    flex-direction: column;
    gap: 51px;
    padding: 32px;
}
.authLogoBlock {
    display: flex;
    justify-content: space-between;
}
#closeBlock {
    cursor:pointer;
}
.authAuthBlock {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.authAuthBlockHeaders {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.authAuthBlockHeaders h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 38.73px;
    margin: 0;
}
.authAuthBlockHeaders span {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}
.authAuthBlockForm form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.authAuthBlockForm form input {
    width: 100%;
    padding: 13px 20px;
    border-radius: 8px;
    border: 1px solid #DCDEDA;
}
.authAuthBlockForm form input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: #6D6D6D;
}
.authAuthBlockForm form input[type="submit"] {
    background: #8C8559;
    opacity: 40%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    cursor: pointer;
}

.authRightSide {
    flex: 2;
    display: flex;
    flex-direction: column;
    padding: 70px 30px;
    background: #F8F7F3;
    position: relative;
    overflow: hidden;
    z-index: -5;
}
.authRightWrapper {
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.authRightWrapper h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    margin: 0;
}
.authImageBlock {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}
.authImageFirst,
.authImageSecond,
.authImageThird {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-end;
}
.authImageFirst,
.authImageThird {
    flex:2;
}
.authImageSecond {
    flex: 3;
}
.authImageSecond h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin: 12px 0;
}
.authImageSecond span,
.authImageSecond ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    margin: 0;
}
.authImageSecond ul {
    margin: 5px 0;
}
.authImageSecondText {
    padding: 6px 16px;
    gap: 16px;
    border-radius: 12px;
    background: #F1F0EB;
}

.authRightSideHearts {
    position: absolute;
    left: 50%;
    z-index: -1;
}
.authRightSideHeartsRow {
    display: flex;
}
.authRightSideHeartsRow:last-of-type {
    transform: rotate(180deg);
}

.authAuthBlockFormCode {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.authAuthBlockFormCodeAgain {
    display: flex;
    justify-content: space-between;
}
.authAuthBlockFormCodeAgain span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #a6a6a6;
}
.authAuthBlockFormCodeAgain h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin:0;
}
.authAuthBlockFormCodeAgain a {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-decoration: underline;
    color: #232323;
}

.authAuthBlockFormCodeInput {
    position: relative;
}
.authAuthBlockFormCodeInput label {
    position: absolute;
    top: 20%;
    left: 21px;
    transform: translateY(-50%);
    color: #6d6d6d;
    font-size: 12px;
    line-height: 14.52px;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.authAuthBlockFormCodeInput:focus-within label{
    opacity: 1;
}
.authAuthBlockFormCodeInput input:focus::placeholder {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.authAuthBlockFormAgree {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.authAuthBlockFormAgree input {
    width: auto !important;
    display: none;
}
.authAuthBlockFormAgree label,
.authAuthBlockFormAgree label a {
    color: #232323;
}
.authAuthBlockFormAgree label{
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
}
.authAuthBlockFormAgree input:checked ~ label:before{
    background: url('../img/authAuthBlockFormAgree.svg') no-repeat center;
    outline: none;
}
.authAuthBlockFormAgree label:before{
    content: '';
    display: block;
    height: 24px;
    width: 24px;
    outline: 1px solid #C2C8C2;
    border-radius: 4px;
}

.authAuthModalSuccess {
    max-width: 370px;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 24px 16px;
    gap: 20px;
    border-radius: 10px;
    background: #fff;
    position: fixed;
    z-index: 888;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.authAuthModalSuccessGreetings {
    display: flex;
    justify-content: space-between;
}
.authAuthModalSuccessGreetings h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin: 0;
}
.authAuthModalSuccessImage {
    display: flex;
    justify-content: center;
}
.modalBackground {
    position: fixed;
    left:0;
    top:0;
    right:0;
    bottom: 0;
    background: #090904C7;
    opacity:0.8;
    z-index: 99;
}
#closeModal {
    cursor: pointer;
}

/* PERSONAL MY ORDERS */
.persActiveOrdersRowBlock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.persActiveOrdersRow {
    display: flex;
    justify-content: space-between;
    border: 1px solid #DCDEDA;
    border-radius: 12px;
    padding: 8px 16px;
}
.persActiveOrdersRowLeft {
    display: flex;
    gap:16px;
}
.persOrderNumber {
    display: flex;
    flex-direction: column;
    gap:7px;
}
.persOrderNumber span:first-of-type {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persOrderNumber span:last-of-type {
    padding: 4px 9px;
    border-radius: 4px;
    border: 1px solid #232323;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.persOrderMiddle {
    display: flex;
    gap:20px;
}
.persOrderProducts {
    display: flex;
    gap: 8px;
}
.persOrderImages {
    display: flex;
    gap: 8px;
}
.persOrderImages img {
    border-radius: 9px;
    border: 1px solid #DCDEDA;
}
.persOrderProducts span {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: #F5F6F5;
    align-self: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persOrderQuantity {
    display: flex;
    flex-direction: column;
    gap:4px;
    justify-content: center;
}
.persOrderQuantity span:first-of-type {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.persOrderQuantity span:last-of-type {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persActiveOrdersRowRight {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 4px;
    text-decoration: none;
    color: #232323;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid #DCDEDA;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

/* PERSONAL MY ORDERS Mobile 1*/
.persAccountMobile {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    gap: 16px;
}
.persAccountMobile h3 {
    margin: 0;
}
.persMobileMenu {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-radius: 8px;
    background: #FFFFFF;
}
.persMobileMenu ul li a {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-radius: 4px;
    border-bottom: 1px solid #F1F0EB;
}
.persMobileMenu ul li a img {
    transform: rotate(180deg);
}

/* PERSONAL MY ORDERS DETAIL*/
.persRightWrapper.persDetail {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.persWrapperDetail {
    display: flex;
    gap: 24px;
}
.persWrapperDetail h4 {
    margin: 0;
}
.persWrapperDetailLeft {
    display: flex;
    flex: 4;
    flex-direction: column;
    gap: 12px;
}
.persWrapperDetailRight {
    display: flex;
    flex: 5;
    flex-direction: column;
    gap: 12px;
}
.persWrapperDetailBlock {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.persWrapperDetailBlockItem {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0 0 8px 0;
    border-bottom: 1px solid #F1F0EB;
}
.persWrapperDetailBlockItemTitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persWrapperDetailBlockItemStatus {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    padding: 4px 9px;
    border-radius: 4px;
    border: 1px solid #232323;
    width: max-content;
}
.persWrapperDetailBlockItem h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin: 0;
}

.persWrapperDetailBlock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.persWrapperDetailBlockProduct {
    display: flex;
    gap: 16px;
    padding: 8px;
    border: 1px solid #F5F6F5;
    border-radius: 12px;
}
.persWrapperDetailBlockProductImage {
    display: flex;
    align-items: center;
}
.persWrapperDetailBlockProductContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.persWrapperDetailBlockProductContentTop,
.persWrapperDetailBlockProductContentBottom {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.persWrapperDetailBlockProductPrices {
    display: flex;
    gap: 8px;
}
.persWrapperDetailBlockProductContentTop span:first-of-type {
    font-size: 12px;
    line-height: 14.52px;
    padding: 5px 8px;
    border-radius: 4px;
    background: #F8F7F3;
    width: fit-content;
}
.persWrapperDetailBlockProductContentTop span:last-of-type {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persWrapperDetailBlockProductContentBottom > span:first-of-type {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    color: #6D6D6D;
}
.persWrapperDetailBlockProductPrices h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #8C8559;
    margin: 0;
}
.persWrapperDetailBlockProductPrices span {
    padding: 4px 8px;
    border-radius: 12px;
    background: #F1F0EB;
    font-size: 10px;
    font-weight: 500;
    line-height: 12.1px;
}
.persWrapperDetailBlockProductButton {
    margin-top: 8px;
}
.persWrapperDetailBlockProductButton a {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #43393F;
}

/* modal response */
.modalLeaveResponse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #090904C7;
    z-index: 1000;
}
.modalLeaveResponseWrapper form {
    width: 100%;
    max-width: 488px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap:16px;
}
.modalLeaveResponseTop {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D5D2C2;
    margin: 0 -16px;
}
.modalLeaveResponseClose {
    margin: 16px;
}
.modalLeaveResponseButtons input[type="submit"],
.modalLeaveResponseClose {
    cursor: pointer;
}
.modalLeaveResponseProduct {
    display: flex;
    padding: 8px 0 0 0;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid #DCDEDA;
}
.modalLeaveResponseProduct img {
    height: auto;
}
.modalLeaveResponseProduct span:first-of-type {
    font-size: 12px;
    margin-bottom: 2px;
    padding-left: 8px;
}
.modalLeaveResponseProduct h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    margin: 0;
}
.modalLeaveResponseProduct span:last-of-type {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    color: #6D6D6D;
}

.modalLeaveResponseCenter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modalLeaveResponseCenterTitle {
    display: flex;
    justify-content: space-between;
}
.modalLeaveResponseTop h4 {
    margin: 16px;
}
.modalLeaveResponseCenterTitle h5 {
    margin: 0;
}
.modalLeaveResponseCenter textarea {
    width: 100%;
    padding: 13px 2px 3px 20px;
    border-radius: 8px;
    border: 1px solid #DCDEDA;
}

.modalLeaveResponseDownload {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #D5D2C2;
}
.modalLeaveResponseDownloadTop {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}
.modalLeaveResponseDownloadLeft {
    display: flex;
    gap: 10px;
    flex: 1;
}
.modalLeaveResponseDownloadRight {
    flex: 1;
}
.modalLeaveResponseDownload span {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.modalLeaveResponseDownloadRight {
    position: relative;
    display: inline-block;
}
.modalLeaveResponseDownloadRight input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.modalLeaveResponseDownloadRight label {
    display: flex;
    padding: 12px 16px;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.modalLeaveResponseDownloadRight label span {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
}

.modalLeaveResponseDownloadBottom {
    display: flex;
    flex-wrap: wrap;
    gap:8px;
}
.modalLeaveResponseDownloadItem {
    min-width: 77px;
    flex: 0 1 calc(18% - 1px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.modalDownloadedAction {
    display: flex;
    justify-content: space-between;
}
.modalDownloadedAction img {
    cursor: pointer;
}

.modalLeaveResponseButtons input[type="submit"] {
    padding: 12px 16px;
    border-radius: 8px;
    background: #8C8559;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    border: none;
    width: 100%;
}

/*sent success */
.responseSentSuccess {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #090904C7;
    z-index: 1000;
}
.responseSentSuccessWrapper {
    width: 100%;
    max-width: 488px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.responseSentSuccessTop {
    display: flex;
    justify-content: space-between;
}
.responseSentSuccessTop img {
    cursor:pointer;
}
.responseSentSuccessImage {
    display: flex;
    justify-content: center;
}

/* PERSONAL BONUS PAGE */
.persBonus {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.persWrapperBonus {
    display: flex;
    gap: 40px;
}
.persWrapperBonusLeft,
.persWrapperBonusRight {
    flex:1;
}


.persWrapperBonusLeftItems {
    display: flex;
    justify-content: space-between;
    align-items: unset;
    position: relative;
}
.persWrapperBonusLeftElement {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
    position: relative;
}
.persWrapperBonusLeftElementStep {
    width: 28px;
    height: 28px;
    background: #D5D2C2;
    border: 1.4px solid #D5D2C2;
    border-radius: 50%;
    position: relative;
}
.persWrapperBonusLeftElementStep::before,
.persWrapperBonusLeftElementStep::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 250%;
    height: 3px;
    background-color: #D5D2C2;
    transform: translateY(-50%);
}
.persWrapperBonusLeftElementStep::before {
    left: -250%;
}
.persWrapperBonusLeftElementStep::after {
    right: -250%;
}
.persWrapperBonusLeftElement:first-child .persWrapperBonusLeftElementStep::after {
   /* background-color: #8C8559;*/
}
.persWrapperBonusLeftElement:first-child .persWrapperBonusLeftElementStep::before {
    display: none;
}
.persWrapperBonusLeftElement:last-child .persWrapperBonusLeftElementStep::after {
    display: none;
}
.persWrapperBonusLeftElementStep.filled {
    border: 1.4px solid #8C8559;
    background: #8C8559;
}

.persWrapperBonusCard {
    position: relative;
}
.persWrapperBonusCardTop {
    position: absolute;
    top: 20px;
    left:20px;
    display: flex;
    justify-content: space-between;
}
.persWrapperBonusCardTop h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #fff;
    margin: 0;
}
.persWrapperBonusCard img {
    width: 100%;
}
.persWrapperBonusCard span {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    color: #8C8559;
    background: #fff;
    border-radius: 50%;
    padding: 0;
    width: 56px;
    height: 56px;
    right: 20px;
    top: 20px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.persWrapperBonusCardBottom {
    position: absolute;
    bottom: 20px;
    left:20px;
    right:20px;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: #fff;
}

.persWrapperBonusHistory {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.persWrapperBonusHistory h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin: 0;
}
.persWrapperBonusHistoryTitle {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: #F8F7F3;
}
.persBonus h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin: 0;
    padding: 10px;
}
.persWrapperBonusHistory span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persWrapperBonusHistoryElement {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #DCDEDA;
}
.persWrapperBonusHistoryElementLeft,
.persWrapperBonusHistoryElementRight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.persWrapperBonusHistoryElementRightBottom {
    display: flex;
    gap: 4px;
}

/* SERTIFICATES PAGE */
.persSertificates {
    display: flex;
    gap: 32px;
    flex-direction: column;
}
.persSertificates h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    margin: 0;
}

.persWrapperSerticatesCheck {
    display: flex;
    padding: 24px;
    gap: 56px;
    border-radius: 16px;
    background: #F8F7F3;
}
.persWrapperSerticatesCheckLeft,
.persWrapperSerticatesCheckRight {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}
.persWrapperSerticatesCheckLeft form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.persSertificates form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.persSertificates form input{
    padding: 13px 20px;
    border-radius: 8px;
    border: 1px solid #DCDEDA;
}
.persSertificates form textarea {
    width: 100%;
}
.persSertificates form textarea,
.persSertificates form input[type="text"] {
    padding: 13px 20px;
    border-radius: 8px;
    border: 1px solid #DCDEDA;
    color: #6D6D6D;
}
.persSertificates form input[type="submit"] {
    color:#fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    background: #8C8559;
}
.formTextareaWrapper {
    position: relative;
}
.formTextareaCounter {
    position:absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    color: #6D6D6D;
}
.persSertificates form input::placeholder,
.persSertificates form textarea::placeholder {
    color: #6D6D6D;
}
.persWrapperSertificateGift {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 40px;
    border-radius: 16px;
    background: #F8F7F3;
}

.persWrapperSertificateGiftTitles {
    display: flex;
    justify-content: space-between;
}
.persWrapperSertificateGiftTitlesButtons {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid #8C8559;
    width: fit-content;
}
.persWrapperSertificateGiftTitlesButtons button {
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 49%;
}
.persSertificateBlock.activeSert {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.persSertificateBlock {
    display: none;
}
.persWrapperSertificateGiftCenter {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.persWrapperSertificateGiftCenterInfo {
    display: flex;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    background: #fff;
    align-items: center;
}

.persSertificates hr {
    display: none;
}

.persWrapperSertificateGiftBottom {
    display: flex;
    gap:24px;
}
.persWrapperSertificateGiftBottomLeft {
    flex: 1;
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.persWrapperSertificateGiftBottomLeftTitles {
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.persWrapperSertificateGiftBottom h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    margin: 0;
}
.persWrapperSertificateGiftTitlesButtons {
    width: 296px;
}
.persWrapperSertificateGiftTitlesButtons,
.persWrapperSertificateGiftBottomLeftTabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid #8C8559;
}

#select2-giftSertificate-container,
#select2-giftSertificateOnline-container {
    font-size: 16px;
    line-height: 19.36px;
    color: #6D6D6D;
}
.persWrapperSertificateGiftBottomLeftTabs button {
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 33%;
}
.persWrapperSertificateGiftTitlesButtons button.activeSert,
.persWrapperSertificateGiftTitlesButtons button:focus,
.persWrapperSertificateGiftBottomLeftTabs button.activeImg,
.persWrapperSertificateGiftBottomLeftTabs button:focus {
    outline: none;
    background: #8C8559;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.persWrapperSertificateGiftBottomLeftContent img {
    display: none;
}
.persWrapperSertificateGiftBottomLeftContent img.activeImg {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.persWrapperSertificateGiftBottomRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.persWrapperSertificatesHistory {
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.persWrapperSertificatesHistory table {
    border-collapse: collapse;
    width: 100%;
}
.persWrapperSertificatesHistory table thead tr {
    background: #F8F7F3;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persWrapperSertificatesHistory table tbody tr {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.01em;
}
.persWrapperSertificatesHistory table tbody tr td {
    border-bottom: 1px solid #DCDEDA;
}
.persWrapperSertificatesHistory table td {
    padding: 16px;
}

/* SERTIFICATES PAGE 2 */
.persWrapperSerticatesShow {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    border-radius: 16px;
    background: #F8F7F3;
}
.persWrapperSerticatesShowTitle {
    display: flex;
    flex-direction: column;
    gap:8px;
}
.persWrapperSerticatesShowRow {
    display: flex;
    gap: 24px;
}
.persWrapperSerticatesShowLeft {
    display: flex;
    flex-direction: column;
    flex: 2;
    padding: 24px;
    gap: 16px;
    border-radius: 8px;
    background: #8C8559;
    color: #fff;
}
.persWrapperSerticatesShowTop {
    display: flex;
    gap: 14px;
}
.persWrapperSerticatesShowTop h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    color: #fff;
}
.persWrapperSerticatesShowBottom {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-radius: 8px;
    background: #9D9771;
}
.persWrapperSerticatesShowBottom img {
    cursor:pointer;
}
.persWrapperSerticatesShowCenter,
.persWrapperSerticatesShowRight {
    flex:1;
    display: flex;
    flex-direction: column;
    gap:32px;
    padding: 24px;
    border-radius: 8px;
    background: #FFFFFF;
}
.persWrapperSerticatesShowCenter span,
.persWrapperSerticatesShowRight span {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}
.persWrapperSerticatesShowCenter h3,
.persWrapperSerticatesShowRight h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
}

.persWrapperSerticatesFavorites {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.persWrapperSerticatesFavoritesItems {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin: 0 auto;
}
.persWrapperSerticatesFavoritesItems .product-item {
    flex: 0 1 calc(33.333% - 16px);
    box-sizing: border-box;
}
.persWrapperSerticatesFavoritesItems .product-item__stickers,
.persWrapperSerticatesFavoritesItems .product-item__buttons div:nth-of-type(2) {
    display: none;
}

.persWrapperSertificatePhisical {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    margin: 0 auto;
}
.persWrapperSertificatePhisical .product-item {
    flex: 0 1 calc(33.333% - 16px);
    box-sizing: border-box;
}
/*sent success */
.sertificateSentSuccess {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #090904C7;
    z-index: 1000;
}
.sertificateSentSuccessWrapper {
    width: 100%;
    max-width: 488px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.sertificateSentSuccessTop {
    display: flex;
    justify-content: space-between;
}
.sertificateSentSuccessTop img {
    cursor:pointer;
}
/** FAVORITES PAGE **/
.persFavorites {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.infoRightSide h1,
.infoRightSide h3,
.infoRightSide h4 {
    margin: 0;
}
.persFavoritesTitles,
.persWrapperFavoritesTitles {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}
.persFavoritesTitlesButtons {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid #8C8559;
    min-width: 276px;
}
.persFavoritesTitlesButtons button {
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 49%;
}
.persFavoritesTitlesButtons button.activeFav {
    outline: none;
    background: #8C8559;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}

.persWrapperFavorites {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.persWrapperFavoritesTitlesRight {
    display: flex;
    gap:12px;
}
.persFavoritesBlock {
    display: none;
}
.persFavoritesBlock.activeFav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.persWrapperFavoritesTitlesRight button {
    cursor:pointer;
}
.persWrapperFavoritesTitlesRight #buyAll,
.persWrapperFavoritesTitlesRight #buyAllDecorative {
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    align-items: center;
    max-height: 44px;
}
.persWrapperFavoritesTitlesRight #buyAll span,
.persWrapperFavoritesTitlesRight #buyAllDecorative span{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
}

.persWrapperFavoritesProducts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin: 0 auto;
}
.persWrapperFavoritesProducts .product-item {
    flex: 0 1 calc(33.333% - 16px);
    box-sizing: border-box;
}
.persWrapperFavoritesProducts .product-item__stickers,
.persWrapperFavoritesProducts .product-item__buttons div:nth-of-type(2) {
    display: none;
}

/** FAVORITES PAGE 2 **/
.infoLeftSideAuth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px;
}
.infoLeftSideAuth h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin: 0;
}
.infoLeftSideAuth a {
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    background: #8C8559;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: center;
}

.persFavoritesTitles h2 {
    margin: 0;
}
.persWrapperFavorites2Titles {
    justify-content: end;
}
.modalShareFavorites {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #090904C7;
    z-index: 1000;
}
.modalShareFavoritesWrapper {
    width: 100%;
    max-width: 368px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.modalShareFavoritesTitle {
    display: flex;
    justify-content: space-between;
}
.modalShareFavoritesTitle h4 {
    margin: 0;
}
.modalShareFavoritesTitle img {
    cursor: pointer;
}
.modalShareFavoritesMiddle {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}
.modalShareFavoritesMiddle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F5F6F5;
}
.modalShareFavoritesBottom input {
    padding: 8px 45px 8px 20px;
    border-radius: 8px;
    border: 1px solid #DCDEDA;
    width: 100%;
}
.modalShareFavoritesBottom label {
    position: relative;
}
.modalShareFavoritesBottom img {
    position: absolute;
    right: 15px;
    top: 2px;
    cursor: pointer;
}


    /* PERSONAL DATA PAGE */
.persData {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.persData button {
    cursor: pointer;
}
.persDataBlock {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.persDataRow {
    display: flex;
    gap:24px;
}
.persDataRowLeft,
.persDataRowRight {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap:24px;
    padding: 16px ;
    border-radius: 12px;
    border: 1px solid #DCDEDA;
}
.persDataItemTitle {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.persDataItemTitle span {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    color: #6D6D6D;
}
.persDataItemTitle h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
}
.persDataItemCheckbox,
.persDataItemRadio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.persDataItemRadio label,
.persDataItemCheckbox label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}
.persDataItemCheckbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #8C8559;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.persDataItemCheckbox input[type="checkbox"]:checked {
    background-color: #8C8559;
    border-color: #8C8559;
}
.persDataItemCheckbox input[type="checkbox"]:checked::after {
    content: '✔'; /* Додаємо галочку */
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.persDataItemRadio label {
    align-items: flex-end;
}
.persDataItemRadio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #8C8559;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.persDataItemRadio input[type="radio"]:checked {
    background-color: #fff;
    border-color: #8C8559;
}
.persDataItemRadio input[type="radio"]:checked::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #8C8559;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.persDataRow button {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #8C8559;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #151515;
}
.persExitButton {
    display: flex;
    padding: 12px 16px;
    gap: 6px;
    border-radius: 8px;
    background: #232323;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    color: #fff;
    width: fit-content;
}
/* modal data page */
.modalChangeData {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #090904C7;
    z-index: 1000;
}
.modalChangeDataWrapper {
    width: 100%;
    max-width: 488px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.modalChangeDataTop {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.modalChangeDataTitle {
    display: flex;
    justify-content: space-between;
}
.modalChangeDataTitle h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin: 0;
}
.modalChangeDataTitle img {
    cursor: pointer;
}
.modalChangeDataTop span {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}
.modalChangeDataWrapper form {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.modalChangeDataWrapper form label {
    display: flex;
    flex-direction: column;
    gap:12px;
}
.modalChangeDataWrapper input {
    max-width: 456px;
    width: 100%;
    height: 46px;
    padding: 13px 20px;
    border-radius: 8px;
}
.modalChangeDataWrapper form input[type="tel"],
.modalChangeDataWrapper form input[type="text"]{
    border: 1px solid #DCDEDA;
}
.modalChangeDataWrapper form input[type="tel"]::placeholder,
.modalChangeDataWrapper form input[type="text"]::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}
.modalChangeDataButtons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modalChangeDataButtons input {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    cursor: pointer;
    border: 1px solid #8C8559;
}
.modalChangeDataButtons input[type="submit"]{
    background: #8C8559;
    color: #fff;
}
.modalChangeDataButtons input[type="reset"]{
    background: #fff;
}
.modalChangeData .authAuthBlockFormCodeAgain a {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #A6A6A6;
}

/* Responses page */
.persResponses {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.persResponsesBlock {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.persResponsesItem {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 12px;
    background: #F8F7F3;
    padding: 16px;
    flex: 0 1 calc(50% - 16px);
    box-sizing: border-box;
}
.persResponsesBlock > .persResponsesItem:nth-child(odd):last-child {
    margin-right: auto;
}
.persResponsesItemTop {
    display: flex;
    justify-content: space-between;
}
.persResponsesItemTopLeft {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.persResponsesItemTopLeft span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #A6A6A6;
}
.persResponsesItemTopRight {
    display: flex;
    gap: 16px;
    align-items: center;
}
.persResponsesItemTopRight span {
    padding: 4px 9px;
    border-radius: 4px;
    border: 1px solid #232323;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
}
.persResponsesItemTopRight img {
    cursor:pointer;
}
.persResponsesItemTitle {
    display: flex;
    gap: 12px;
    align-items: center;
}
.persResponsesItemTitle span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}
.persResponsesItemRating {
    display: flex;
    gap: 2px;
}
.persResponsesItemPictures {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Offer page */
.persOfferBlock {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.persOfferItem {
    flex: 0 1 calc(50% - 16px);
    overflow: hidden;
}
.persOfferItemWrapper {
    border-radius: 12px;
    border: 1px solid #DCDEDA;
    position: relative;
}
.persOfferCircleLeft,
.persOfferCircleRight {
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #DCDEDA;
    top: 45%;
    background-color: #fff;
    z-index: 4;
}
.persOfferCircleLeft {
    left: -15px;
}
.persOfferCircleRight {
    right: -15px;
}
.persOfferItem form {
    display: flex;
    flex-direction: column;
    padding: 16px 28px;
    gap: 16px;
}
.persOfferItemTop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px dashed #DCDEDA;
}
.persOfferItemTop h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
}
.persOfferItemTop span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    color: #8C8559;
    height: 40px;
}
.persOfferItemBottom {
    display: flex;
    justify-content: space-between;
}
.persOfferItemBottom input {
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    background: #8C8559;
    cursor: pointer;
    border: none;
}
.persOfferItemValidity {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}
.persOfferItemValidity span:first-of-type {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.52px;
    color: #6D6D6D;
}
.persOfferItemValidity span:last-of-type {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
}

.persOfferSection {
    display: flex;
}
.persOfferAdd {
    flex: 0 1 calc(50% - 16px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #DCDEDA;
}
.persOfferAdd form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.persOfferAddTop {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.persOfferAddTop span {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    color: #6D6D6D;
}
.persOfferAdd form input {
    width: 100%;
    padding: 13px 20px;
    border-radius: 8px;
    border: 1px solid #DCDEDA;
}
.persOfferAdd form input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: #6D6D6D;
}
.persOfferAdd form input[type="submit"] {
    background: #232323;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    cursor: pointer;
}


@media (min-width: 2048px){
    .persWrapperBonusLeftElementStep::after {
        width: 300%;
    }
    .persWrapperBonusLeftElementStep::before {
        left: -300%;
    }
    .persWrapperBonusLeftElementStep::after {
        right: -300%;
    }
}
/*
@media (min-width: 1024px) and (max-width: 1250px) {}
*/
@media (min-width: 768px) and (max-width: 1023px) {
    .persWrapperBonus {
        flex-direction: column;
    }

    .persWrapperBonusLeftElementStep::before,
    .persWrapperBonusLeftElementStep::after {
        width: 400%;
    }
    .persWrapperBonusLeftElementStep::before {
        left: -400%;
    }
    .persWrapperBonusLeftElementStep::after {
        right: -400%;
    }

    .persWrapperSertificateGiftBottom {
        flex-direction: column;
    }

    .persWrapperFavoritesProducts .product-item {
        max-width: 49%;
        flex: 1 1 calc(50% - 16px);
        box-sizing: border-box;
    }

    .persWrapperSerticatesShowRow {
        flex-direction: column;
    }
    .persWrapperSerticatesFavoritesItems .product-item {
        flex: 0 1 calc(50% - 16px);
    }


    /* Offer page */
    .infoLeftMenuOffer span:last-of-type {
        right: 10%;
    }
    .persOfferBlock {
        flex-direction: column;
    }
    .persOfferSection {
        flex-direction: column;
    }
}

@media (min-width: 550px) and (max-width: 767px) {
    .persWrapperBonusLeftElementStep::before,
    .persWrapperBonusLeftElementStep::after {
        width: 400%;
    }
    .persWrapperBonusLeftElementStep::before {
        left: -400%;
    }
    .persWrapperBonusLeftElementStep::after {
        right: -400%;
    }
}
@media (max-width: 767px) {
    /* login page */
    .authRightSide {
        z-index: -5;
    }
    .authPagesWrapper {
        flex-direction: column;
    }
    .authImageBlock.onlyMobileDisplay {
        flex-direction: column;
    }
    .authImageSecond img {
        width: auto;
    }
    .authImageBlockBottom {
        display: flex;
        gap: 12px;
    }
    .authImageBlock.onlyMobileDisplay .authImageThird,
    .authImageBlock.onlyMobileDisplay .authImageFirst {
        flex:1;
    }
    .authImageBlock.onlyMobileDisplay .authImageThird img,
    .authImageBlock.onlyMobileDisplay .authImageFirst img {
        width: auto;
    }

    .authRightSideHearts {
        top: 15%;
    }
    .authRightSideHeartsRow {
        flex-direction: column;
        max-height: 384px;
    }
    .authRightSideHeartsRow img {
        width: 80%;
    }
    .authRightSideHeartsRow img:last-of-type {
        transform: rotate(180deg);
    }

    /* PERSONAL MY ORDERS */
    .persActiveOrders.onlyMobileDisplay {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .persActiveOrdersRowBlock {
        border: 1px solid #DCDEDA;
        border-radius: 12px;
        padding: 8px 16px;
    }

    .persActiveOrdersRow {
        border: none;
        border-radius: inherit;
        padding: initial;
    }

    /* PERSONAL MY ORDERS DETAIL*/
    .persWrapperDetail {
        flex-direction: column;
    }
    .persWrapperDetailLeft,
    .persWrapperDetailRight {
        flex: 1;
    }
    .persDetail {
        padding: 24px 16px;
    }
    .persDetail h1 {
        display: none;
    }

    .persWrapperDetailBlockProductImage {
        align-items: baseline;
    }
    .persWrapperDetailBlockProductButton.onlyMobileDisplay {
        display: contents;
    }
    .persWrapperDetailBlockProductButton.onlyMobileDisplay a {
        text-align: center;
    }
    .modalLeaveResponseDownloadTop {
        flex-direction: column;
        align-items: start;
    }
    .modalLeaveResponseDownloadRight {
        width: 100%;
    }

    /* PERSONAL BONUS */
    .persWrapperBonus {
        flex-direction: column;
    }
    .persWrapperBonusLeft,
    .persWrapperBonusRight {
        flex:unset;
    }

    /* SERTIFICATES */
    .persSertificatesTitles h1 {
        display: none;
    }
    .persWrapperSerticatesCheck {
        flex-direction: column;
    }
    .persWrapperSerticatesCheckRight img {
        width: 100%;
    }

    .persWrapperSertificateGiftTitles {
        flex-direction: column;
        gap: 12px;
    }
    .persWrapperSertificateGiftTitlesButtons {
        width: auto;
    }
    .persWrapperSertificateGiftBottom {
        flex-direction: column;
    }

    .persSertificates hr {
        display: block;
        width: 100%;
        border: 1px solid #D5D2C2;
    }


    .persWrapperSertificatesHistory .persSertificatesTableContainer {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .persWrapperSertificatesHistory table {
        border-collapse: collapse;
        min-width: max-content;
    }

    .persWrapperSerticatesShowRow,
    .persWrapperSerticatesFavoritesItems {
        flex-direction: column;
    }

    .persWrapperSertificatePhisical {
        flex-direction: column;
    }

    /** FAVORITES PAGE **/
    .persFavorites h1 {
        display: none;
    }
    .persFavoritesTitlesButtons {
        width: 100%;
    }
    .persWrapperFavoritesTitles {
        flex-direction: column;
        align-items: baseline;
    }
    .persWrapperFavoritesProductsFace,
    .persWrapperFavoritesProductsDecorative {
        margin: unset !important;
        overflow: hidden;
    }
    .persWrapperFavoritesProductsFace .swiper-wrapper,
    .persWrapperFavoritesProductsDecorative .swiper-wrapper {
        width: unset !important;
    }
    .persWrapperFavoritesProductsFace .swiper-navigation,
    .persWrapperFavoritesProductsDecorative .swiper-navigation {
        width: 100%;
    }
    .persWrapperFavoritesTitlesRight {
        width: 100%;
    }
    .persWrapperFavoritesTitlesRight #wishedItem,
    .persWrapperFavoritesTitlesRight #addToTrash,
    .persWrapperFavoritesTitlesRight #downloadItem,
    .persWrapperFavoritesTitlesRight #downloadItemDecorative {
        width: 20%;
    }
    .persWrapperFavoritesTitlesRight #buyAll,
    .persWrapperFavoritesTitlesRight #buyAllDecorative {
        width: 100%;
        justify-content: center;
    }
    .persWrapperFavoritesProducts .product-item {
        flex: 1 1 100%;
    }

    .persFavoritesTitles h2 {
        margin-bottom: 0;
        margin-top: revert;
    }

    /* PERSONAL DATA PAGE */
    .persData h1 {
        display: none;
    }
    .persDataRow {
        flex-direction: column;
    }
    .persExitButton {
        width: 100%;
        justify-content: center;
    }

    /* modal data page */
    .modalChangeDataWrapper {
        width: 100%;
        height: 100%;
    }
    .modalChangeDataTitle {
        padding: 12px 16px;
        border-bottom: 1px solid #D5D2C2;
        margin: 0 -16px;
    }

    /* Responses page */
    .persResponses h1 {
        display: none;
    }
    .persResponsesBlock {
        flex-direction: column;
        margin-top: 24px;
    }

    /* Offer page */
    .persOfferBlock {
        flex-direction: column;
    }
    .persOfferSection {
        flex-direction: column;
    }    

    .authRightSide{
        padding: 40px 30px;
    }
    .authAuthBlockHeaders h2{
        font-size: 24px;
    }
    .authRightWrapper h3{
        font-size: 18px;
    }
    .authLeftSide {
        padding: 16px;
        gap: 35px;
    }
    
    .persBonus h5{
        padding: 0;
    }
    .persRightWrapper h1,
    .persBonusTitles h1{
        display: none;
    }
    .persWrapperBonusLeftElement h5{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

}