@font-face {
    font-family: 'Montserrat-Regular', Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, sans-serif;
    src: url(/fonts/Montserrat-Regular.woff2?4ada7f2f580c676690f0bd70e0c3366e) format('woff2'),
    url(/fonts/Montserrat-Regular.woff?4a3d63613a362f90a9e61453bd7eff08) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold', Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, sans-serif;
    src: url(/fonts/Montserrat-Bold.woff2?d28745f2b8e5c12d3607b63f428efb80) format('woff2'),
    url(/fonts/Montserrat-Bold.woff?3155f256200b7d559607319af7305b6d) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Medium', Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, sans-serif;
    src: url(/fonts/Montserrat-Thin.woff2?c8313bad66bf2cf4f9e6e3bab29167cf) format('woff2'),
    url(/fonts/Montserrat-Thin.woff?d27ca3cc852da1ea6803104e4115267a) format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.grecaptcha-badge { visibility: hidden !important; }

.main-content {
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.errorMessage {
    color: #D2364A;
    font-size: 14px;
    margin-bottom: 10px;
}

.notifications-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.notifications-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.notifications-popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    border: none;
    background-color: transparent;
    font-size: 14px;
    cursor: pointer;
}

.pagination_bock {
    text-align: center;
    margin: 60px 0;
}

.pagination {
    display: inline-flex;
    padding: 0;
    list-style: none;
    border-radius: 5px;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover {
    background-color: #6c757d;
    color: #fff;
    border-color: #6c757d;
}

.pagination li.active span {
    background-color: #6b2b79;
    color: #fff;
    border-color: #6c757d;
    cursor: default;
}

.pagination li.disabled span {
    background-color: #f8f9fa;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    isolation: isolate;
    pointer-events: none;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.mobile-menu.opened {
    pointer-events: all;
    background-color: rgb(0 0 0 / 0.5);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -200%;
    padding: 40px;
    transition: right 0.3s ease-in-out;
    height: 100vh;
    min-width: 290px;
    background-color: #fff;
}

.mobile-menu.opened .mobile-menu-content {
    right: 0;
}

.mobile-menu-top {
    .languages {
        display: block;
    }

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.close-menu {
    display: grid;
}

.header-mobile_menu {
    display: grid;
    gap: 40px;
    font-size: 22px;
}

.alert i {
    margin-right: 10px;
}

.alert.alert-warning {
    background-color: #ffeaa7;
    color: #d35400;
}

.alert.alert-success {
    background-color: #a7ffeb;
    color: #00b894;
}

.alert ul {
    padding-left: 20px;
}

.alert ul li {
    margin-bottom: 4px;
}

/* Adjust the icon styles based on your requirements */
.icon-error::before {
    content: "!";
    font-weight: bold;
}

.icon-success::before {
    content: "✔";
    font-weight: bold;
}

.css-select {
    background-color: transparent;
    border-bottom: 1px solid #C4C4C4;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    line-height: 24px;
    outline: none;
    padding: 5px 0;
}

.mb-15 {
    margin-bottom: 15px;
}

html {
    height: 100%;
}

main {
    flex-grow: 1;
    margin-top: 86px;
    padding-bottom: 120px;
    overflow-x: hidden;
}

.current_page {
    color: darkorange !important;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat-Regular', Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji, sans-serif;
}

.bads {
    transform: scale(0.9)
}

.map_container {
    display: inline-block;
    width: 100%;
}

.clear {
    width: 0;
    height: 0;
    clear: both;
}

header {
    width: 100%;
    z-index: 101;
    position: fixed;
    top: 0;
    transition: all 0.3s ease;
}

.initial-view header {
    background: transparent;
}

.scroll-up header {
    background-color: #fff;
    box-shadow: 0px 6px 16px #84538f33;
}

.scroll-down header {
    background-color: #fff;
    box-shadow: 0px 6px 16px #84538f33;
}

.trigger_menu {
    transition: all 0.3s ease;
}

.scroll-up .trigger_menu {
    transform: none;
}

.scroll-down .trigger_menu {
    /*transform: translate3d(0, -130%, 0);*/
}

.header_container {
    max-width: 1416px;
    margin: 0 auto;
    padding: 0 16px;
}

.inner_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.inner_header .header_right_side {
    display: flex;
    align-items: center;
}

.header_menu {
    display: flex;
    align-items: center;
}

.header_menu li,
.header_icons li {
    list-style: none;
    margin-left: 30px;
}

.header_icons li img {
    width: 24px;
    height: 24px;
}

.custom-no-select {
    position: relative;
    width: 47% !important;
    margin-bottom: 24px;
}

.custom-no-select select {
    padding-bottom: 5px;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #C4C4C4;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    outline: none;
    display: block;
    width: 100%;
    font-size: 18px;
}

.header_submenu {
    text-decoration: none;
    color: #84538F;
    font-size: 18px;
    line-height: 27px;
    white-space: nowrap;
    font-weight: bold;
}

.address2box {
    /* display: none; */
}

.header_submenu:hover,
.header_submenu_active {
    border-bottom: 2px solid #84538F;
}

.newnotei {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 15px;
    font-size: 14px;
}

.checkboxbox {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #3B3535;
    padding-left: 20px;
}

.checkboxbox input {
    margin-right: 10px;
}

.newnotei a {
    display: block;
    margin-top: 5px;
}

.d-none {
    display: none;
}

.play {
    margin-left: 38px;
    margin-right: 8px;
}

.playmobile {
    display: none;
    position: absolute;
    bottom: 1%;
    right: 4%;
}

.playmobile .btn_player {
    width: 58px;
    height: 58px;
}

.btn_player {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 1;
    background-color: #84538f;
    box-shadow: 0px 0px 0px 3px rgb(132 83 143 / 30%);
    cursor: pointer;
}

.btn_player::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    animation: pulsate1 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(132, 83, 143, 0.9);
    top: -36%;
    left: -35%;
    background: rgba(198, 16, 0, 0);
}

.play_icon {
    position: absolute;
    width: 15px;
    height: 18px;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.header_icons {
    display: flex;
}

.basket_icon {
    position: relative;
}

.pointer {
    position: relative;
}

.pointer {
    width: 16px;
    height: 16px;
    background-color: #84538F;
    color: #FEFEFE;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -6px;
    text-align: center;
    line-height: 16px;
    font-size: 10px;
}

.basket_hover_block {
    width: 515px;
    padding: 30px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0px 6px 20px #84538F80;
    position: absolute;
    left: -394px;
    top: 45px;
    display: none;

}

.basket_hover_block::before {
    content: '';
    position: absolute;
    right: 88px;
    top: -30px;
    border: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
}

.basket_icon:hover .basket_hover_block {
    display: block;
}

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

.line_info {
    padding-bottom: 12px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F3F3F3;
}

.product_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 8px;
    color: #84538F;
}

.number {
    padding: 5px 6px;
    border: 1px solid #84538F;
    border-radius: 10px;
}

.product_number {
    margin: 0 12px;
    color: #84538F;
}

.product_img {
    height: 97px;
    width: 83px;
    -o-object-fit: cover;
       object-fit: cover;
}

.number img {
    width: 16px;
    height: 16px;
}

.delete_img {
    width: 16px;
    height: 21px;
}

.line_price {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 19px;
}

.total_amount_number {
    margin-left: 24px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.line_btn {
    padding-top: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.line_btn a {
    text-decoration: none;
}

.small_block_product .line_btn {
    padding-top: 18px;
}

.btn_purple {
    text-align: center;
    font-size: 18px;
    padding: 14px 40px;
    box-sizing: border-box;
    color: #FEFEFE;
    /* background: transparent radial-gradient(closest-side at 49% 50%, #84538F 0%, #50145D 100%) 0% 0% no-repeat padding-box; */
    background: transparent radial-gradient(closest-side at 49% 50%, #84538F 0%, #6b2b79 100%) 0% 0% no-repeat padding-box;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0px 6px 16px #84538F4D;
    text-decoration: none;
    border: none;
}

.btn_purple_small {
    text-align: center;
    font-size: 14px;
    padding: 5px 10px;
    box-sizing: border-box;
    color: #FEFEFE;
    /* background: transparent radial-gradient(closest-side at 49% 50%, #84538F 0%, #50145D 100%) 0% 0% no-repeat padding-box; */
    background: transparent radial-gradient(closest-side at 49% 50%, #84538F 0%, #6b2b79 100%) 0% 0% no-repeat padding-box;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 6px 16px #84538F4D;
    text-decoration: none;
    border: none;
}

.product .btn_purple,
.ardipen_image .btn_purple {
    padding-left: 72px;
    padding-right: 72px;
}

.tdn {
    text-decoration: none;
}

.btn_purple:hover {
    box-shadow: 0px 8px 20px #84538F99;
}

.btn_purple a {
    color: #FEFEFE;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    text-decoration: none;
}

.btn_white {
    text-align: center;
    font-size: 18px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    border-radius: 25px;
    color: #84538F;
    background-color: #ffffff;
    border: 1px solid #84538F;
    cursor: pointer;
    box-shadow: 0px 6px 16px #84538F4D;
}

.purple_wide {
    padding-left: 72px !important;
    padding-right: 72px !important;
}

.btn_white:hover {
    color: #FFFFFF;
    background: transparent radial-gradient(closest-side at 49% 50%, #84538F 0%, #50145D 100%) 0% 0% no-repeat padding-box;
}

.white_wide {
    padding-left: 56px !important;
    padding-right: 56px !important;
}

.header_icons li:nth-child(3) {
    position: relative;
}

.profile_hover_block {
    width: 150px;
    background-color: #FFFFFF;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0px 6px 20px #84538F80;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -65px;
    top: 45px;
}

.prof_icon_hover:hover .hide {
    display: block;
}

.profile_hover_block::before {
    content: '';
    position: absolute;
    right: 60px;
    top: -30px;
    border: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
}

.header_guide {
    padding: 10px 0;
    box-sizing: border-box;
}

.header_guide:not(:nth-child(1)) {
    border-top: 1px solid #F3F3F3;
}

.header_guide a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: #84538F;
}

.header_guide a:hover {
    text-decoration: underline;
}

.header_guide img {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.languages {
    position: relative;
}

.language_show {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.btn_block {
    display: block;
    width: 100%;
}

.address_content .address_lorem {
    text-align: left;
    display: block;
}

.language_dropdown {
    margin-left: 6px;
}

.purple_link {
    color: #84538F;
}

.language_hide {
    display: none;
    position: absolute;
    top: 40px;
    right: -12px;
    /* background-color: #FFFFFF; */
}

.language_hide ul li {
    list-style: none;
    margin: 4px 0;
}

.language_hide .square {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    padding: 10px 22px;
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px #84538F80;
}

.language_hide .square::before {
    content: '';
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: -30px;
    border: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
}

.language_hide .square a:nth-child(2) {
    margin-top: 10px;
}

.languages:hover .language_dropdown {
    transform: rotate(180deg);
}

.languages:hover .language_hide {
    display: block;
}

.hamburger {
    display: none;
    /*margin-left: 35px;*/
}

.hamburger_img {
    width: 22px;
    height: 20px;
    cursor: pointer;
}

.burger_menu {
    display: none;
    padding: 14px 16px 32px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FEFEFE;
    border-radius: 0px 0px 20px 20px;
    z-index: 100;
}

.close {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.burger_nav {
    margin-top: 4px;
}

.burger_nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.burger_nav ul li {
    margin-top: 16px;
    font-size: 24px;
    line-height: 24px;
    color: #84538F;
    font-family: Montserrat-medium;
    display: flex;
    justify-content: center;
}

.burger_nav a {
    text-decoration: none;
}

.burger_lang {
    margin-top: 32px;
}

.mob_language_block {
    max-width: 370px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.mob_language a {
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mob_language img {
    width: 22px;
    height: 22px;
}

.mob_language span {
    color: #84538F;
    font-size: 16px;
    margin-left: 8px;
}

.active_header {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.active_header img:not(.language_dropdown) {
    border-radius: 50%;
    border: 2px solid #84538F;
}

/* header end */


.general_page_slider {
    width: 100%;
    background-image: url(/images/background-slider.jpg?bee3cabbecec1cc67e0c08d23376015f);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(0.1px) brightness(103%) grayscale(4%);
    position: relative;
    min-height: calc(100vh - 86px);
}

.general_slider {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.general_slider .slick-list {
    overflow-x: hidden;
}

.general_slider .slick-track {
    display: flex;
}

.general_slider_item {
    display: flex;
    align-items: center;
    flex-shrink: 0;

}

.general_slider_item img {
    width: 58%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.book_slider_mobile {
    display: none;
}

.general_slider .slick-dots {
    max-width: 1416px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 10;
}

.general_slider .slick-dots li {
    list-style: none;
    margin: 7px 0 7px 16px;
    width: -moz-fit-content;
    width: fit-content;
}

.general_slider .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 11.5px;
    background-color: #3B35354D;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
}

.general_slider .slick-dots li.slick-active button {
    background-color: #84538F;
    position: relative;
}

.general_slider .slick-dots li.slick-active button::before {
    content: "";
    position: absolute;
    left: -3px;
    top: -3.3px;
    width: 16px;
    height: 16px;
    border: 1px solid #84538f;
    border-radius: 50%;
}

.general_slider_product_text {
    max-width: 558px;
    padding: 0 16px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

.general_slider_product_text h1 {
    font-size: 46px;
    line-height: 60px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 20px;
}

.general_slider_product_text p {
    color: #3B3535;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 8;*/
    white-space: pre-wrap;
}

.general_slider_product_text a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*white-space: pre-wrap;*/
}

.cooming_soon {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    max-width: 830px;
    height: 149px;
    width: 100%;
    border-radius: 60px 0 0 0;
    background-color: #ACCEF7;
}

.cooming_soon img {
    width: 100%;
    max-width: 213px;
    height: auto;
}

.cooming_soon_info {
    max-width: 324px;
    width: 100%;
    margin-left: 21px;
}

.cooming_soon_info h3 {
    font-size: 18px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 10px;
}

.cooming_soon_info p {
    font-size: 14px;
}


.bg_index {
    background: url(/images/bg_1.png?ac3912dc5492ed33041ae86abee009bc) no-repeat right top, url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left 600px, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right 1600px, url(/images/bg_1.png?ac3912dc5492ed33041ae86abee009bc) no-repeat right bottom;
}

.homepage_content {
    max-width: 1416px;
    margin: 0 auto;
}

.about {
    padding: 0 16px;
}

.section_name {
    font-size: 36px;
    line-height: 46px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-top: 120px;
    margin-bottom: 20px;
}

.about .section_content {
    display: flex;
}

.about_desc,
.about_image {
    width: 50%;
}

.about_image {
    margin-top: -65px;
}

.about_image img {
    width: 96%;
    border-radius: 20px;
    margin-left: 4%;
}

.about_desc p {
    margin-bottom: 24px;
    line-height: 24px;
}

.about_desc span {
    display: inline-block;
    margin-top: 6px;
}

.ardibook_advantages {
    padding: 0 16px;
}

.section_name2 {
    font-size: 36px;
    line-height: 46px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    text-align: center;
    margin-top: 120px;
    margin-bottom: 80px;
}

.ardibook_advantages .mobile_version {
    display: none;
}

.box {
    width: calc(25% - 24px);
    margin-top: 32px;
    height: 193px;
    float: left;
    margin-right: 32px;
    padding: 18px 20px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    box-shadow: 0px 6px 12px #84538F1A;
    border-radius: 12px;
    background-color: #FEFEFE;
}

.box:nth-child(4n) {
    margin-right: 0;
}

.box img {
    width: 82px;
    height: 82px;
    padding: 7px 11px;
    box-sizing: border-box;
    margin-bottom: 20px
}

/* slider  about*/
.ardibook_advantages_slider .slick-track {
    display: flex;
}

.ardibook_advantages_slider .slick-list {
    overflow: hidden;
    padding: 0 16px 20px;
}

.products {
    padding: 0 16px;
}

.products .desktop_version {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;;
    gap: 24px;
}

.product {
    box-shadow: 0px 6px 10px #84538F29;
    border-radius: 20px;
    padding-bottom: 30px;
    transition: all .3s ease-in-out;
    background-color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.product:nth-child(3n) {
    margin-right: 0;
}

.product:hover {
    box-shadow: 0px 6px 20px #84538F40;
}


.product a {
    text-decoration: none;
}
.products .desktop_version .product{
    max-width: 32%;
}

.sale {
    padding: 12px 19px;
    box-sizing: border-box;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background-color: #D2364A;
    border-radius: 18px 0px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.novelty {
    padding: 12px 19px;
    box-sizing: border-box;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background-color: #00B2B7;
    border-radius: 18px 0px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.product img,
.product1 img {
    width: 100%;
    transition: all .3s ease-in-out;
    transform: scale(0.9);
    border-radius: 20px;
    max-height: 244px;
    height: 100%;
    max-width: 320px;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
}

.product:hover img {
    transform: scale(1);
}

.product_name {
    margin-top: 16px;
    padding: 0 5px;
    box-sizing: border-box;
    color: #84538F;
    font-size: 24px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    overflow-wrap: anywhere;
}

.product_price {
    font-size: 18px;
    margin-top: auto;
}

.product_price span {
    color: #C4C4C4;
    text-decoration: line-through;
    margin-left: 20px;
}

.product_buttons {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all_product {
    margin-top: 30px;
    text-align: center;
}

.btn_favourite {
    margin-left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FEFEFE;
    border: 1px solid #84538F;
    background-image: url(/images/favourite.svg?22a6f1a238db32712888fe082470caf0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    cursor: pointer;
}

.btn_favourite:hover {
    background-color: #84538F;
    background-image: url(/images/heart.png?b64c7b3e174b05d5cc33a7f4d71c4106);
}

.btn_favourite:focus,
.btn_favourite_active {
    margin-left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #84538F;
    border: 1px solid #84538F;
    background-image: url(/images/heart.png?b64c7b3e174b05d5cc33a7f4d71c4106);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    cursor: pointer;
}

.btn_favourite_active:hover {
    box-shadow: 0px 8px 20px #84538F99;
}

.products .mobile_version {
    display: none;
}

/* products slider */
.products_slider .slick-track {
    display: flex;
    padding-bottom: 20px;
    gap: 16px;
}
.products_slider .slick-track .product{
    max-width: 100%;
}

.products_slider .slick-list {
    overflow: hidden;
    padding: 0 16px;
}


.ardipen {
    padding: 0 16px;
}

.ardipen .section_content {
    display: flex;
}

.ardipen_desc {
    width: 67%;
    margin-right: 32px;
    font-size: 16px;
    line-height: 24px;
}

.ardipen_image {
    width: 32%;
    margin-top: -65px;
}

.ardipen_image img {
    width: 100%;
}

.ardipen_property_container {
    display: flex;
    flex-wrap: wrap;
}

.ardipen_property {
    width: 50%;
    margin-top: 20px;
    padding: 11px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.ardipen_property img {
    width: 52px;
    height: 52px;
    padding-right: 27px;
}

.ardipen_image {
    text-align: center;
}

.ardipen_image img {
    margin-bottom: 18px;
}

.book_cover {
    position: relative;
    margin-top: 102px;
    min-height: 550px;
    background-color: #7ec57d;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 40px;
    padding: 40px;
}

.book_cover img {
    width: 100%;
}

.book_cover_text {
    color: #FEFEFE;
    font-size: 16px;
    line-height: 24px;
}

.book_cover_title {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    line-height: 1;
}

.book_cover .mobile_version {
    display: none;
}

.video_assistant {
    padding: 0 16px;
}

.video_assistant .section_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video_item {
    width: calc(33.33333% - 24px);
    margin-right: 32px;
    margin-top: 30px;
    cursor: pointer;
}

.video_item:nth-child(3) {
    margin-right: 0;
}

.video_poster_block {
    position: relative;
}

.video_poster {
    width: 100%;
}

.btn_video_player {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #712b80;
    background-image: url(/images/play.svg?b0c38df0bd694b54d86acc52a03cd015);
    background-size: 22px;
    background-position: 20px center;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 16px #84538F4D;
    position: absolute;
    left: 50%;
    bottom: -7%;
    transform: translateX(-50%);
}

.btn_video_player:hover {
    box-shadow: 0px 8px 20px #84538F99
}

.video_info {
    color: #84538F;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-top: 40px;
}

.video_item:hover .video_player {
    box-shadow: 0px 8px 20px #84538F99;
}


.reviews {
    margin-bottom: 80px;
    padding: 0 16px;
}

.reviews_slider {
    margin-top: 30px;
}

.review_container {
    background: #FFFFFF;
    box-shadow: 0px 6px 20px #84538F29;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    margin: 0 16px
}

.reviewer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #84538F;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.reviewer_info_left_side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.reviewer_info_left_side span {
    color: #84538F;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.reviewer_image {
    border-radius: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

.reviewer_image img {
    width: 90px;
    height: 90px;
    -o-object-fit: cover;
       object-fit: cover;
}

.review {
    max-height: 139px;
    overflow-y: hidden;
    line-height: 24px;
}

.popup .review {
    max-height: -moz-fit-content;
    max-height: fit-content;
}

.read_all {
    margin-top: 16px;
    color: #84538F;
    text-decoration: underline;
    cursor: pointer;
}

.reviews_slider .slick-track {
    display: flex;
    padding-bottom: 20px;
}

.reviews_slider .slick-list {
    overflow: hidden;
}

.reviews_slider {
    position: relative;
}

.reviews_slider .slick-arrow {
    position: absolute;
    left: 47%;
    z-index: 1;
    font-size: 0;
    border: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.reviews_slider .slick-arrow.slick-prev:hover {
    box-shadow: 0px -8px 20px #84538F99;
}

.reviews_slider .slick-arrow.slick-next:hover {
    box-shadow: 0px 8px 20px #84538F99;
}

.reviews_slider .slick-arrow.slick-prev {
    bottom: -55px;
    background-image: url(/images/next.svg?95d4005a0fecb51d46dc47fb5711e572);
    transform: rotate(180deg);
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #712b80;

}

.reviews_slider .slick-arrow.slick-next {
    bottom: -55px;
    margin-left: 50px;
    background-color: #712b80;
    background-image: url(/images/next.svg?95d4005a0fecb51d46dc47fb5711e572);
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
}


.reviews_slider .slick-disabled {
    background-color: #F3F3F3 !important;
    background-image: url(/images/arrow.svg?395db8b99910b6093ab63cc0b1055a0e) !important;
}

.reviews_slider .slick-disabled:hover {
    box-shadow: none !important;
}

.little_about_us {
    padding: 0 16px;
}

.little_about_us .section_name2 {
    margin-top: 195px;
}

.little_about_us .section_content {
    max-width: 912px;
    margin: 30px auto 0;
    position: relative;
}

.little_about_us video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.btn_player_white {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #f2f7f5;
    border-radius: 50%;
    background-image: url(/images/play1.svg?8c44a60213bedbf286ba1ff313a0fed6);
    background-size: 32px 38px;
    background-position: 28px center;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 10px #fbfbf8;
    border: 5px solid rgb(234 241 241);
}

.nostyle {
    color: white;
    text-decoration: none;
}

.nostyle:hover {
    text-decoration: underline;
}

.btn_player_white::before {
    content: "";
    position: absolute;
    width: 130%;
    height: 130%;
    top: -20%;
    left: -20%;
    animation: pulsate2 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    border-radius: 50%;
    border: 5px solid rgb(228 236 238);
}


.popup_review_slider .slick-track {
    display: flex;
}

.popup_review_slider .slick-list {
    overflow: hidden;
}

.popup_review_slider {
    padding: 0 16px;
    box-sizing: border-box;
    max-width: 912px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup_review_slider .review_container {
    padding: 80px 120px;
    margin: 0 32px;
    position: relative;
}

.review_title {
    color: #84538F;
    font-size: 36px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    text-align: center;
    margin-bottom: 40px;
}

.popup_review_slider {
    position: fixed;
}

.popup_review_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0;
    border: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.popup_review_slider .slick-arrow.slick-prev:hover {
    box-shadow: 0px -8px 20px #84538F99;
}

.popup_review_slider .slick-arrow.slick-next :hover {
    box-shadow: 0px 8px 20px #84538F99;
}

.popup_review_slider .slick-arrow.slick-prev {
    left: 0;
    background-image: url(/images/next.svg?95d4005a0fecb51d46dc47fb5711e572);
    transform: rotate(180deg);
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #84538F;

}

.popup_review_slider .slick-arrow.slick-next {
    right: 0;
    background-color: #84538F;
    background-image: url(/images/next.svg?95d4005a0fecb51d46dc47fb5711e572);
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
}

.popup_review_slider .slick-disabled {
    background-color: #F3F3F3 !important;
    background-image: url(/images/arrow.svg?395db8b99910b6093ab63cc0b1055a0e) !important;
}

.popup_review_close {
    position: absolute;
    right: 0;
    top: 30px;
    right: 30px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/*  */
.hide {
    display: none;
}

.shops {
    width: calc(16.66666% - 27px);
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.shops.slick-slide{
    margin-right: 32px;
}

.shops img {
    width: 100%;
    border-radius: 34px;
    height: 203px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 24px;
}

.shops:nth-child(6) {
    margin-right: 0;
}

.shop_info {
    line-height: 24px;
}

.shop_name {
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 10px;
}

.where_find .desktop_version {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-inline: 16px;
    gap: 30px;
}

.where_find a {
    text-decoration: none;
    color: #222222;
}

.where_find .mobile_version {
    display: none;
    padding-inline: 16px;
}

.where_find_slider .slick-track {
    display: flex;
}

.where_find_slider .slick-list {
    overflow: hidden;
}


footer {
    width: 100%;
    height: auto;
    background: #84538F;
}

.inner_footer {
    max-width: 1416px;
    margin: 0 auto;
    padding: 50px 16px 20px;
}

.footer_block {
    width: 33.33333%;
    float: left;
    margin-bottom: 10px;
}

.footer_block a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    line-height: 27px;
}

.inner_footer .left_side a {
    margin-bottom: 20px;
    display: block;
}

.footer_phone,
.footer_mail {
    display: flex;
    align-items: center;
}

.inner_footer .center div {
    margin-bottom: 20px;
}

.inner_footer .center div img {
    margin-right: 14px;
    cursor: pointer;
}

.inner_footer .right_side p {
    color: #FEFEFE;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 25px;
}

.footer_form {
    position: relative;
    max-width: 467px;
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.emm,
.emm2 {
    margin-top: 10px;
    font-size: 14px;
    color: #FDB92E;
}

.smm {
    margin-top: 10px;
    font-size: 14px;
    color: #4CAF52;
    display: none;
}

.footer_input {
    color: #FEFEFE !important;
    width: 100%;
    background: none;
    font-size: 16px;
    line-height: 24px;
    border: 0;
    outline: none;
    border-bottom: 1px solid #FEFEFE !important;
    padding-right: 100px;
    box-sizing: border-box;
}

.footer_input::-moz-placeholder {
    color: #FEFEFE;
}

.footer_input::placeholder {
    color: #FEFEFE;
}

.footer_input:focus {
    color: #3B3535;
    border-bottom: 1px solid #3B3535;
}

.footer_form button {
    position: absolute;
    right: 0;
    background: none;
    border: 0;
    color: #FEFEFE;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.page_info {
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
}

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 102;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.youtube_popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 102;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

#youtube_modal_player {
    border-radius: 20px;
}

.youtube_static_player {
    border-radius: 20px;
    background-color: #EEEEEE;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.popup_video,
.popup_video2,
.popup_video3,
.popup_video4 {
    position: fixed;
    z-index: 103;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 904px;
    max-height: 418px;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.popup_video video,
.popup_video2 video,
.popup_video3 video,
.popup_video4 video {
    height: 100%;
    width: 100%;
}

.popup_close {
    position: absolute;
    right: 16px;
    top: -35px;
    cursor: pointer;
}

.popup_slider {
    z-index: 109;
}

.popup_video,
.popup_video2,
.popup_video3,
.popup_video4 {
    z-index: 109;
}

.popup_review_slider,
.burger_menu {
    z-index: 105;
}

/*.addtobasketone {
    padding-left: 20px !important;
    padding-right: 20px !important;
}*/

.addtobasketbtn {
    position: relative;
    border-radius: 25px;
    border: unset;
    background: #6F317D;
    box-shadow: 0 6px 16px 0 #FFF;
    padding: 15px 20px !important;
    min-width: 224px;
    transition: background .5s, color .5s;
    color: rgba(254, 254, 254, 1);
    line-height: normal;
}

@media (max-width: 480px) {
    .addtobasketbtn {
        min-width: 180px;
    }
}

.addtobasketbtn:hover {
    box-shadow: 0 6px 16px 0 #FFF;
}

.addtobasketbtn:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 4px;
    width: 44px;
    height: 44px;
    background: url(/images/add_card_icon.png?2c6b873752cad186781129bd2c0663ff) center/contain no-repeat;
    transition: left .5s, background .5s .5s;
}

.addtobasketbtn.animate {
    background: linear-gradient(90deg, #FFF 0%, #71347E 59.74%), radial-gradient(50% 50% at 49% 50%, #84538F 0%, #6B2B79 100%);
    color: rgba(254, 254, 254, .02);
}

.addtobasketbtn.animate2 {
    background: #6F317D;
    color: rgba(254, 254, 254, .0);
}

.addtobasketbtn.animate:before {
    left: calc(100% - 54px);
    background: url(/images/add_card_icon_suc.png?75698bb37a0b8800728b686f86b861b3) center/contain no-repeat;
}

.addtobasketbtn.animate2:before {
    left: 40%;
    background: url(/images/add_card_icon_suc.png?75698bb37a0b8800728b686f86b861b3) center/contain no-repeat;
}

.coupon_availabilty_2 {
    font-size: 14px;
    font-family: Montserrat-Regular;
    display: none;
}

.coupon_availabilty_2 b {
    color: #84538F;
}

.coupon_availabilty_2 span {
    float: right;
    color: darkred;
    font-weight: bold;
    cursor: pointer;
}


.about_us {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.bg_about_us {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right 700px;
}

.about_us_title {
    text-align: center;
    margin-top: 50px;
    font-size: 46px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.about_us_content p {
    /* margin-top: 30px; */
}

.about_us_image {
    max-width: 912px;
    margin: 30px auto 0;
}

.about_us_image img {
    width: 100%;
    border-radius: 20px;
}

.about_us_img2 {
    display: none;
}

.ardibook_advantages {
    padding: 0 !important;
}

.shop_info {
    /* display: none; */
}

.card {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.bg_card {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left center, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right center;
}

.card_title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 46px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.no_basket_element {
    text-align: center;
    /* display: none; */
}

.no_basket_element .line1 {
    line-height: 20px;
    margin-bottom: 40px;
}

.no_basket_element .line1 span {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.no_basket_element .line1 a {
    color: #84538F;
    font-size: 14px;
    margin-left: 8px;
}

.no_basket_element .line2 {
    margin-bottom: 44px;
}

.products {
    padding: 0 !important;
}

.products_slider {
    /*margin: 0 -16px 0 0 !important;*/
}

.have_basket_element {
    max-width: 1148px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.have_basket_element table {
    width: 100%;
}

.basket_products_info {
    text-align: left;
    border-bottom: 1px solid #C4C4C4;
}

.basket_products_info.t-head {
    white-space: nowrap;
}

th.product_desc {
    padding-right: 16px;
}

.product_desc div:nth-child(1) {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
    /* border-bottom: 1px solid #C4C4C4; */
}

.product_desc:nth-child(1) img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
}

.product_info {
    margin: 32px 0;
    height: 100px;
    display: flex;
    align-items: center;
    padding-right: 10px;
    box-sizing: border-box;
}

.products_count {
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 12px;
    background-color: #FFFFFF;
    border: 1px solid #84538F;
    border-radius: 23px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    line-height: 20px !important;
}

.products_count img {
    width: 20px;
    height: 20px;
}

.products_count span {
    padding: 0 30px;
}

.it2, .all_price_number span {
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.payment_block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    box-sizing: border-box;
    max-width: 1148px;
    margin: 0 auto;
    /* border-top: 1px solid #C4C4C4; */
}

.payment_block .all_price_number {
    margin: 0 74px 0 20px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.payment_block .btn_purple {
    display: inline-block;
}

.basket_products_mobile {
    display: none;
}

.basket_products_mobile .basket_products_info {
    margin-top: 20px;
}

.product_desc_column {
    float: left;
}

.product_desc_column .product_info {
    margin: 0 0 9px 0;
    height: auto;
    display: block;
    padding: 0;
}

.product_desc_column:nth-child(1) {
    width: 30%;
}

.product_desc_column:nth-child(1) img {
    width: 100px;
    height: 100px;
}

.product_desc_column:nth-child(2) {
    width: 56%;
}

.product_desc_column:nth-child(3) {
    width: 14%;
    text-align: right;
}

.product_desc_column:nth-child(3) img {
    width: 20px;
    height: 24px;
    margin-bottom: 44px;
}

.catalogue_single {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.bg_catalogue_single {
    background: url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right top, url(/images/bg_11.png?5f7c64f2ec5cbe8a75b367b8b20d626c) no-repeat left bottom;
}

.catalogue_single_content {
    margin-top: 50px;
    display: flex;
}

.product_image_slider_wrapper {
    position: relative;
    width: 49%;
    margin-top: 50px;
}

.product_image_slider {
    position: relative;
}

.product_image_slider .slick-track {
    display: flex;
}

.product_image_slider .slick-list {
    overflow: hidden;
}

.product_image {
    position: relative;
}

.product_image img, .product_image video {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transition: 0.3s linear;
    max-height: 500px;
}

.product_image:hover .product_image_slider_img {
    transform: scale(1.3);
}

.product_image_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0;
    border: 0;
    width: 22px;
    height: 40px;
    cursor: pointer;
}

.product_image_slider .slick-arrow.slick-prev {
    background-image: url(/images/arrow-prev.png?138d6c7310c5ffa2cfedabddd4deded7);
    left: 30px;
    background-size: 22px 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;

}

.product_image_slider .slick-arrow.slick-next {
    right: 30px;
    background-image: url(/images/arrow-next.png?4292421968aac8825f95d17ee21a3015);
    background-size: 22px 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.product_image_slider .slick-arrow.slick-prev.slick-disabled {
    background-color: transparent;
    background-image: url(/images/arrow-disabled-prev.png?cdabf3d2cbb7e69b6cc1a57455ab3765) !important;
}

.product_image_slider .slick-arrow.slick-next.slick-disabled {
    background-color: transparent;
    background-image: url(/images/arrow-disabled-next.png?a329aa1d1b1905d35704579d2f1b32cc) !important;
}

.product_image_slider_nav {
    position: relative;
    /*width: 100%;*/
    margin: 20px 0 0;
    padding: 0 30px;
}

.product_image_slider_nav .slick-list {
    overflow: hidden;
}
.product_image_slider_nav .slick-track {
    display: flex;
}

.product_thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
}

.product_thumbnail img, .product_thumbnail video {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 122px;
}

@media (max-width: 700px) {
    .product_thumbnail img, .product_thumbnail video {
        max-height: 65px;
    }
}

.product_thumbnail.slick-current {
    border-color: #84538F;
}

.product_image_slider_nav .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 0;
    border: 0;
    width: 11px;
    height: 20px;
    cursor: pointer;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

.product_image_slider_nav .slick-arrow.slick-prev {
    background-image: url(/images/arrow-prev.png?138d6c7310c5ffa2cfedabddd4deded7);
    left: 0;
}

.product_image_slider_nav .slick-arrow.slick-next {
    right: 0;
    background-image: url(/images/arrow-next.png?4292421968aac8825f95d17ee21a3015);
}

.product_image_slider_nav .slick-arrow.slick-prev.slick-disabled {
    background-color: transparent;
    background-image: url(/images/arrow-disabled-prev.png?cdabf3d2cbb7e69b6cc1a57455ab3765) !important;
}

.product_image_slider_nav .slick-arrow.slick-next.slick-disabled {
    background-color: transparent;
    background-image: url(/images/arrow-disabled-next.png?a329aa1d1b1905d35704579d2f1b32cc) !important;
}


.product_description {
    width: 51%;
    margin-top: 50px;
    margin-left: 32px;
}

.product_name_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 46px;
    line-height: 60px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.product_description p {
    margin-top: 20px;
    line-height: 24px;
}

.product_description p:nth-child(3) {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-top: 30px;

}

.product_description li {
    list-style: none;
    margin-top: 16px;
    display: flex;
    align-items: baseline;
}

.product_description li::before {
    content: " ";
    margin-right: 8px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #84538F;
}

.product_price_line {
    display: flex;
    align-items: center;
}

.new_price {
    margin-top: 30px;
    color: #84538F;
    font-size: 32px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-right: 20px;
}

.old_price {
    margin-top: 30px;
    text-decoration: line-through;
    color: #D2D2D2;
    font-size: 24px;
}

.btn_white {
    box-shadow: none !important;
}

.btn_white:hover {
    box-shadow: 0px 8px 20px #84538F99 !important;
}

.order_detailes {
    display: flex;
    flex-wrap: wrap;
}

.products_count {
    margin-top: 30px;
    background-color: #FFFFFF;
    border: 1px solid #84538F;
    border-radius: 23px;
    display: inline-block;
    padding: 11px 14px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    text-align: center;
}

.products_count.cart {
    margin-top: unset;
}

.products_count img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.products_count span {
    padding: 0;
    box-sizing: border-box;
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    width: 60px;
}

.product_delivery {
    margin-top: 30px;
    position: relative;
}

.product_delivery_info {
    display: flex;
    align-items: center;
    color: #84538F;
    font-size: 18px;
}

.product_delivery img {
    padding-right: 14px;
    box-sizing: border-box;
}

.hide1 {
    display: none;
}

.product_delivery_hover_block {
    width: 280px;
    left: 177px;
    position: absolute;
    z-index: 1;
    box-shadow: 0px 6px 20px #84538F4D;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 20px;
    background-color: #FFFFFF;
    color: #3B3535;
    font-size: 14px;
}

.product_delivery_hover:hover .hide1 {
    display: block;
}

.product_delivery_hover_block::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right: 20px solid #ffffff;
}

.product_delivery_hover_block span {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.more_help {
    width: 14px;
    height: 14px;
    background-color: #84538F;
    border-radius: 50%;
    background-image: url(/images/question2.svg?85d988782a26615e0a25e826360a6df1);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 25px;
}

.btn_orders {
    margin-top: 32px;
}

.btn_orders .btn_purple {
    margin-right: 32px;
}

.btn_orders .btn_purple, .btn_orders .btn_white {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
}

.share_line {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.share_line span {
    margin-right: 14px;
}


.product_slider .slick-track {
    display: flex;
    padding-bottom: 10px;
}

.product_slider .slick-list {
    overflow: hidden;
}

.product_slider {
    position: relative;
}

.product_slider .slick-arrow {
    position: absolute;
    left: 47%;
    z-index: 1;
    font-size: 0;
    border: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.product_slider .slick-arrow.slick-prev:hover {
    box-shadow: 0px -8px 20px #84538F99;
}

.product_slider .slick-arrow.slick-next :hover {
    box-shadow: 0px 8px 20px #84538F99;
}

.product_slider .slick-arrow.slick-prev {
    bottom: -55px;
    background-image: url(/images/next.svg?95d4005a0fecb51d46dc47fb5711e572);
    transform: rotate(180deg);
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #84538F;

}

.product_slider .slick-arrow.slick-next {
    bottom: -55px;
    margin-left: 50px;
    background-color: #84538F;
    background-image: url(/images/next.svg?95d4005a0fecb51d46dc47fb5711e572);
    background-size: 9px;
    background-position: center;
    background-repeat: no-repeat;
}

.product_slider .slick-disabled {
    background-color: #F3F3F3 !important;
    background-image: url(/images/arrow.svg?395db8b99910b6093ab63cc0b1055a0e) !important;
}

.catalogue {
    max-width: 1416px;
    margin: 0 auto;
    padding: 0 16px;
}

.catalogue_search_bar {
    margin: 70px 0 0;
    display: flex;
    justify-content: end;
}

.catalogue_search_bar form {
    position: relative;
}

.catalogue_search_button {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 14px;
    width: 24px;
    height: 24px;
    background: url(/images/search-icon.png?adc69f485835bcde87c14a12aa6df3a5) center/contain no-repeat;
}

.catalogue_search_input {
    padding: 14px 20px 14px 54px;
    border-radius: 25px;
    border: 1px solid #84538F;
    box-shadow: 0 6px 16px 0 rgba(132, 83, 143, 0.30);
    font-size: 18px;
    font-weight: 400;
    width: 138px;
    transition: width .5s;
}

.catalogue_search_input:focus {
    outline: unset;
    width: 200px;
}

.catalogue_filters_bar {
    padding: 0 0 28px;
    gap: 20px;
    display: flex;
    justify-content: center;
}

.catalogue_filters_bar a {
    padding: 14px 40px;
    border-radius: 25px;
    border: 1px solid #84538F;
    box-shadow: 0 6px 16px 0 rgba(132, 83, 143, 0.30);
    font-size: 18px;
    color: #6C2F7B;
    text-decoration: none;
    transition: .5s;
}

.catalogue_filters_bar a.active, .catalogue_filters_bar a:hover {
    background: #6C2F7B;
    color: #FEFEFE;
}

.bg_catalogue {
    background: url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right top, url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left 300px
}

.catalogue_title {
    text-align: center;
    margin: 20px 0 40px;
    font-size: 46px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.catalogue_info {
    max-width: 1148px;
    text-align: center;
    margin: 54px auto 0;
    line-height: 24px;
}

.catalogue_info p {
    margin-top: 16px;
}

.checkout {
    max-width: 1147px;
    margin: 52px auto 0;
    padding: 0 17px;
}

.bg_checkout {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left center, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

.checkout_title {
    margin: 50px 0;
    font-size: 46px;
    text-align: center;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.checkout_content {
    display: flex;
    justify-content: space-between;
}

.checkout_left_side {
    width: 59%;
}

.checkout_right_side {
    width: 38%;
    margin-bottom: 60px;
}

.checkout_error_block {
    margin-top: 100px;
    min-height: 500px;
}

.checkout_error_block_fill {
    display: flex;
    align-items: flex-start;
}

.checkout_error_block_fill:nth-child(1) {
    margin-bottom: 17px;
}

.error_img {
    margin-right: 8px;
}

.checkout_error_block_text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.checkout_fill_unconditionally {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.checkout_block {
    border-radius: 20px;
    margin-bottom: 33px;
    border: 1px solid #E9E9E9;
    background-color: #FFFFFF;
}

.checkout_info {
    background: #F2F7FF;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.checkout_info svg {
    flex: 0 0 24px;
}

.checkout_info p {
    color: #4B4B4B;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.checkout_left_block_title {
    padding: 18px 40px;
    border-radius: 20px 20px 0 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    background-color: #E9E9E9;
    color: #84538F;
}

.checkout_left_block_content {
    padding: 20px 40px 30px;
    box-sizing: border-box;
}

.checkout_input {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    border: 0;
    border-bottom: 1px solid #C4C4C4;
    background: none;
    outline: none;
    resize: none;
}

.checkout_input::-moz-placeholder {
    color: #C4C4C4;
}

.checkout_input::placeholder {
    color: #C4C4C4;
}

.checkout_input:focus {
    color: #3B3535;
    border-bottom: 1px solid #3B3535;
}

.custom-select select {
    display: none;
}

.select-selected {
    padding-bottom: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid #C4C4C4;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 8px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #3B3535 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #3B3535 transparent;
    top: 2px;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #3B3535;
    border-radius: 0 0 12px 12px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*style the items (options), including the selected item:*/
.select-items div {
    color: #3B3535;
    padding: 8px 16px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.input2:nth-child(3) .input {
    margin-bottom: 0;
}

.input2 {
    display: flex;
    justify-content: space-between;
}

.input_width {
    width: 47% !important;
}

.link_line {
    margin-top: 6px;
    color: #3B3535;
    font-size: 14px;
    line-height: 22px;
}

.link_line a {
    color: #84538F;
}

label {
    cursor: pointer;
}

.choise {
    font-size: 16px;
    line-height: 24px;
    color: #3B3535;
    display: flex;
}

.choise::before {
    content: "";
    width: 24px;
    height: 24px;
    padding-left: 30px;
    margin-left: -17px;
    cursor: pointer;
    background-image: url(/images/radiobutton.svg?a6678e26951e838150457a46289ba696);
    background-repeat: no-repeat;
    background-position: center;
}

.choise a {
    color: #84538F;
}

input:checked + .choise::before {
    content: "";
    background-image: url(/images/radiobuttonactive.svg?57aad46f0594c2ea1528ce5f1e1c1749);
    background-repeat: no-repeat;
    background-position: center;
}

.checkout_radio, .checkout_checkbox {
    display: none;
}

.choise_line {
    margin: -13px 0 33px;
}

.choise_line img {
    padding-left: 8px;
}

.supported-cards {
    padding: 0;
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.supported-cards li {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    background-color: white;
    border-radius: 8px;
}

.checkout_left_block_content .choise_line {
    margin: 0 0 14px !important;
}

.checkout_right_side .choise_line {
    margin: 0 0 25px;
}

.checkout_right_block_title {
    padding: 18px 30px;
    border-radius: 20px 20px 0 0;
    box-sizing: border-box;
    background-color: #84538F;
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

.checkout_right_block_title a {
    color: #FFFFFF;
}

.checkout_right_block_title span {
    margin-right: 10px;
}

.checkout_right_side .checkout_block {
    margin-bottom: 14px !important;
}

.checkout_right_block_content {
    padding: 15px 30px 30px;
    box-sizing: border-box;
}

.product_description {
    justify-content: space-between;
    font-size: 16px;
    line-height: 35px;
    border-bottom: 1px solid #C4C4C4;
}

.product_count {
    color: #3B3535;
    margin: 0 8px 0 16px;
}

.product_cost {
    color: #3B3535;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.cost_description {
    margin-top: 13px;
    font-size: 16px;
    color: #747474;
    display: flex;
    justify-content: space-between;
}

.cost_description span {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.coupon {
    margin-top: 5px;
    position: relative;
}

.coupon_input {
    width: 100%;
    padding: 14px 170px 14px 20px;
    box-sizing: border-box;
    border: 1px solid #C4C4C4;
    border-radius: 24px;
    color: #C4C4C4;
}

.coupon_input::-moz-placeholder {
    color: #C4C4C4;
}

.coupon_input::placeholder {
    color: #C4C4C4;
}

.coupon_input:focus {
    color: #3B3535;
}

.coupon .btn_purple {
    position: absolute;
    right: 0;
    top: 0;
}

.coupon_btn {
    padding: 12px 30px !important;
    text-align: center;
    border: 0;
}

.coupon_availabilty {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
}

.last_choise {
    margin: 23px 0 25px;
}

label a:hover {
    color: #FD892E;
}

.checkout_done {
    padding: 0 17px;
    margin: 0 auto;
    min-height: 550px;
}

.checkout_done_title {
    margin-top: 164px;
    text-align: center;
    color: #84538F;
    font-size: 46px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.checkout_done_content {
    text-align: center;
}

.checkout_done_text {
    font-size: 23px;
    margin: 30px 0;
}

.checkout_done_link {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.checkout_done_link a:hover {
    color: #FD892E;
}

.contacts {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.w-100 {
    width: 100%;
}

.bg_contacts {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right 300px;
}


.question_contact {
    margin-bottom: 30px;
}

.contacts_title {
    text-align: center;
    margin: 135px auto 30px;
    font-size: 46px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.contact_us_container {
    max-width: 676px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 6px 16px #84538F29;
    border-radius: 20px;
    padding: 30px 55px;
    box-sizing: border-box;
}

.contact_info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.contact_phone, .contact_domain {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact_phone a, .contact_domain a {
    margin-left: 14px;
    text-decoration: none;
    color: #84538F;
}

.question {
    margin-bottom: 30px;
}

.question a {
    color: #00B2B7;
}

::-moz-placeholder {
    color: #C4C4C4;
}

::placeholder {
    color: #C4C4C4;
}

.custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.custom-select select {
    display: none;
}

.select-selected {
    color: #C4C4C4;
    padding-bottom: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid #C4C4C4;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 8px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #3B3535 transparent transparent transparent;
}

.redborder {
    border-color: red;
}

.select-arrow-active {
    color: #3B3535;
    transition: 0.5s linear;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #3B3535 transparent;
    top: 2px;
}

.select-items {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 0 0 12px 12px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0px 3px 6px #84538F29;
}

.select-items div {
    padding: 8px 16px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

textarea {
    width: 100% !important;
}

.contacts_btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 14px;
}

.map_container iframe {
    margin-top: 120px;
    margin-bottom: -120px;
    display: block;
}

.contactmessage {
    color: #4CAF52;
    text-align: center;
}

.faq {
    max-width: 695px;
    margin: 0 auto;
    padding: 0 16px;
}

.bg_faq {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

.faq_title {
    text-align: center;
    margin: 50px auto 16px;
    font-size: 46px;
    line-height: 60px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.faq_content {
    padding: 0 10px;
    box-sizing: border-box;
}

.question_block {
    margin-top: 16px;
    padding: 24px 26px;
    box-sizing: border-box;
    box-shadow: 0px 6px 10px #84538F14;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.question {
    font-size: 16px;
    line-height: 24px;
    color: #84538F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question_text {
    width: 85%;
}

.question_active {
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.answer {
    color: #3B3535;
    font-size: 16px;
    line-height: 21px;
    margin-top: 12px;
    display: none;
}

.favourite {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.bg_favourite {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left center, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

.favourite_title {
    text-align: center;
    margin: 50px auto 30px;
    font-size: 46px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    color: #84538F;
}

.favourite_empty {
    text-align: center;
    /* display: none; */
}

.favourite_empty .btn_purple {
    margin-top: 44px;
    display: inline-block;
}

.favourite_existent .product {
    margin: 0 32px 30px 0 !important;
    width: calc(33.33333% - 24px) !important;
    float: left;
    display: block !important;
}

.favourite_existent .product:nth-child(3n) {
    margin-right: 0 !important;
}

.products {
    padding: 0 !important;
}

.privacy_policy {
    max-width: 1386px;
    margin: 50px auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    min-height: 400px;
}

.bg_privacy_policy {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

.conditions {
    font-size: 16px;
    line-height: 24px;
    color: #3B3535;
    width: 25%;
    margin-right: 32px;
}

.condition {
    padding: 16px 0;
    box-sizing: border-box;
    border-top: 1px solid #F3F3F3;
    cursor: pointer;
}

.condition:first-child {
    border: 0;
}

.condition_active {
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.condition_active::after {
    padding-left: 10px;
    box-sizing: border-box;
    content: url(/images/arrow.svg?395db8b99910b6093ab63cc0b1055a0e);
}

.conditions_content {
    width: 75%;
    padding-top: 16px;
    font-size: 16px;
    line-height: 24px;
}

.condition_content:not(:first-child) {
    display: none;
}


.profile {
    max-width: 1148px;
    margin: 0 auto;
    padding: 0 16px;
}

.bg_profile {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

.profile_name {
    color: #84538F;
    font-size: 24px;
    margin: 50px 0 20px;
}

.profile_content {
    display: flex;
}

.guides {
    width: 20%;
    height: -moz-fit-content;
    height: fit-content;
    margin-right: 32px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 20px #84538F29;
    border-radius: 20px;
    font-size: 16px;
}

.guide {
    text-align: center;
    padding: 13px 0;
    box-sizing: border-box;
    cursor: pointer;
}

.guide a {
    text-decoration: none;
    color: #84538F;
    display: flex;
    align-items: center;
}

.guide:not(:first-child) {
    border-top: 1px solid #F3F3F3;
}

.guide svg {
    margin-right: 11px;
    margin-left: 37px;
    height: 24px;
    width: 24px;
    fill: #84538f;
}

.guide_activ {
    color: #FFFFFF;
    background-color: #84538F;
}

.guide_activ a {
    color: #FFFFFF;
}

.guide_activ svg {
    fill: #ffffff;
}

.guide:nth-child(1) {
    border-radius: 20px 20px 0 0;
}

.guide:nth-child(5) {
    border-radius: 0 0 20px 20px;
}

.guide_content {
    width: 80%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 50px 90px;
    box-sizing: border-box;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0px 6px 20px #84538F29;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.orders_content {
    width: 80%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 20px;
    box-sizing: border-box;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0px 6px 20px #84538F29;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.orders_content_single {
    width: 80%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px 20px;
    box-sizing: border-box;
    margin-bottom: 60px;
    box-shadow: 0px 6px 20px #84538F29;
    border-radius: 20px;
    background-color: #FFFFFF;
}

.profile_changed {
    color: #4CAF52;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-bottom: 20px;
    display: none;
}

.welcome {
    font-size: 18px;
    margin-bottom: 20px;
}

.user_name_surname {
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.user_gmail {
    margin: 16px 0;
    font-size: 16px;
}

.user_info {
    display: block;
    margin-top: 16px;
    font-size: 16px;
}

.user_info a:hover {
    color: #FD892E;
}


.profile_my_orders {
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.profile_no_orders {
    display: none;
}

.profile_no_orders_text {
    margin: 14px 0 34px;
    font-size: 16px;
}

.profile_have_orders {
    text-align: left;
}

.product_characteristics {
    margin-top: 20px;
}

.product_specification {
    display: flex;
    width: 15%;
    flex-direction: column;
    float: left;
}

.product_characteristic {
    color: #84538F;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    border-bottom: 1px solid #C4C4C4;
}

.specific_product_characteristic {
    margin-top: 28px;
}

.product_characteristics .last {
    width: 25%;
}

.last .last1 {
    margin: 0;
}

.specific_product_characteristic span {
    display: inline-block;
    margin-top: 14px;
}

.address_page1 {
    display: none;
}


.custom-select select {
    display: none;
}

.select-selected {
    color: #C4C4C4;
    padding-bottom: 5px;
    box-sizing: border-box;
    border-bottom: 1px solid #C4C4C4;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 8px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #C4C4C4 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #C4C4C4 transparent;
    top: 2px;
}

.select-items {
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 0 0 12px 12px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-items div {
    color: #C4C4C4;
    padding: 8px 16px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.paying_address_page .btn_purple, .delivery_address_page .btn_purple {
    display: inline-block;
}

.address_title {
    margin-bottom: 30px;
    text-align: center;
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.address_content {
    display: flex;
    justify-content: flex-start;
}

.address_content .col1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    text-align: left !important;
}

.paying_address_page, .delivery_address_page {
    display: none;
}

.paying_address1, .delivery_address1 {
    color: #84538F;
    font-size: 18px;
    font-family: Montserrat-medium;
    margin-bottom: 16px !important;
}

.address_lorem {
    margin-bottom: 10px !important;
}

.address_content .btn_purple {
    margin-top: 10px;
    width: -moz-max-content;
    width: max-content;
}

.address_red_info {
    color: #D2364A;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.input_headline {
    margin-bottom: 30px !important;
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.input_headline:not(:first-child) {
    margin-top: 40px;
}

.input_line {
    display: flex;
    justify-content: space-between;
}

.input {
    width: 47%;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    border: 0;
    border-bottom: 1px solid #C4C4C4;
    background: none;
    outline: none;
}

.one-line-input {
    width: 100%;
    color: #000;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    border: 0;
    border-bottom: 1px solid #C4C4C4;
    background: none;
    outline: none;
}

.input1 {
    margin-bottom: 22px;
}

::-moz-placeholder {
    color: #C4C4C4;
}

::placeholder {
    color: #C4C4C4;
}


.forgot_password, .forgot_password_sent {
    max-width: 682px;
    margin: 0 auto;
    padding: 0 16px;
}

.bg_sign {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

.forgot_password_title {
    margin-top: 139px;
    text-align: center;
    font-size: 36px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.forgot_password_content, .forgot_password_sent_content {
    margin-top: 18px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #3B3535;
}

.input:focus {
    color: #3B3535;
    border-bottom: 1px solid #3B3535;
}

::-moz-placeholder {
    color: #C4C4C4;
}

::placeholder {
    color: #C4C4C4;
}

.forgot_password_email {
    width: 60%;
    padding: 0 20%;
    margin-top: 13px;
}

.forgot_password_btn {
    display: flex;
    justify-content: center;
    margin: 22px 0;
}

.forgot_password_sent {
    /* display: none; */
}

.forgot_password_sent_title {
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin-top: 185px;
}


.registr_tab {
    margin: 83px auto 120px;
    max-width: 820px;
    padding: 0 10px;
}

.bg_sign {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right bottom;
}

body {
    margin: 0;
    padding: 0;
}

.tab {
    display: flex;
    justify-content: center;
    margin-bottom: 87px;
}

.sign_in_tab, .sign_up_tab {
    font-size: 46px;
    background: none;
    color: #C4C4C4;
    border: 0;
    cursor: pointer;
}

.tab_active {
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.tab_vertical_line {
    display: flex;
    font-size: 40px;
    align-items: center;
    margin: 0 20px;
    color: #C4C4C4;
}

.sign_in_content, .sign_up_content {
    display: flex;
    align-items: center;
}

.left_block {
    width: 41%;
}

.input:focus {
    color: #3B3535;
    border-bottom: 1px solid #3B3535;
}

::-moz-placeholder {
    color: #C4C4C4;
}

::placeholder {
    color: #C4C4C4;
}

.sign_in_btn {
    margin-top: 22px;
    margin-bottom: 38px;
}

.sign_up_btn {
    margin-top: 42px;
    margin-bottom: 28px;
}

.link_line {
    margin-top: 14px;
    color: #3B3535;
    font-size: 14px;
    line-height: 22px;
}

.link_line a {
    color: #84538F;
}

.link_line a:hover {
    color: #FD892E;
}

.center_block {
    width: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.center_block_height1 {
    height: 256px;
}

.center_block_height2 {
    height: 501px;
}

.center_block_line {
    width: 1px;
    height: 44%;
    background-color: #C4C4C4;
}

.center_block_text {
    font-size: 14px;
    color: #707070;
    height: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right_block {
    width: 41%;
    display: flex;
    flex-direction: column;
}

.right_block a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    padding: 12px;
    margin-bottom: 24px;
    border: 1px solid #C4C4C4;
    text-decoration: none;
    color: #3B3535;
    font-size: 16px;
}

.right_block a img {
    margin-right: 12px;
}


.updates {
    max-width: 1416px;
    padding: 0 16px;
    margin: 0 auto;
}

.bg_updates {
    background: url(/images/bg_2.png?288e3f59e7b6f99cf40e58229d9bad56) no-repeat left top, url(/images/bg_3.png?34356159e4f2d6ee0b714cc5436db74a) no-repeat right 200px;
}

.updates_title {
    margin: 50px 0 20px;
    text-align: center;
    font-size: 46px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.updates_info {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    line-height: 24px;
}

.book_or_pen {
    margin-top: 40px;
    margin-bottom: 28px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    cursor: pointer;
    background: transparent;
}

.book {
    padding: 12px 76px;
    border-radius: 25px 0px 0px 25px;
    border: 1px solid #84538F;
    box-sizing: border-box;
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.pen {
    padding: 12px 23px;
    border-radius: 0px 23px 23px 0px;
    border: 1px solid #84538F;
    box-sizing: border-box;
    color: #84538F;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat-Bold", Nunito Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.book_or_pen .active {
    background: transparent radial-gradient(closest-side at 49% 50%, #84538F 0%, #6b2b79 100%) 0% 0% no-repeat padding-box;
    color: #FFFFFF;
}

.book_or_pen .active:hover {
    box-shadow: 0px 6px 16px #84538F4D;
}

.pen_container {
    display: none;
}

.updates_step {
    padding: 18px 20px 30px;
    box-sizing: border-box;
    width: calc(25% - 24px);
    height: 207px;
    margin-right: 32px;
    margin-top: 12px;
    background: #FEFEFE;
    box-shadow: 0px 6px 12px #84538F1A;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    float: left;
}

.updates_step:nth-child(4n) {
    margin-right: 0;
}

.updates_step img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    -o-object-fit: cover;
       object-fit: cover;
}

.book_video {
    max-width: 912px;
    margin: 0 auto;
    margin-top: 84px;
    position: relative;
}

.book_video video {
    width: 100%;
    border-radius: 24px;
}

.products {
    padding: 0 !important;
}

.product_name {
    margin-bottom: 20px;
}

.ardi_pen {
    max-width: 440px;
    margin: 0 auto;
}

.product1 {
    width: 100%;
    margin-top: 30px;
    box-shadow: 0px 6px 10px #84538f29;
    border-radius: 20px;
    padding-bottom: 44px;
    transition: all .3s ease-in-out;
    background-color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.product {
    padding-bottom: 44px !important;
}

.product .btn_purple {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

@keyframes pulsate1 {
    0% {
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(132, 83, 143, 0.9),
        0px 0px 25px 10px rgba(132, 83, 143, 0.3);
    }

    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}


@keyframes pulsate2 {
    0% {
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgb(243, 239, 244),
        0px 0px 25px 10px rgba(13, 12, 13, 0.3);
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        box-shadow: none;
    }
}


.account_orders {
    padding: 20px 0;
}

.account_orders .tables {
    padding: 20px 0;
}

.account_orders .table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    text-align: left;
}

.account_orders .table th,
.account_orders .table td {
    padding: 10px 20px;
}

.account_orders .table thead tr {
    background-color: #84538F;
    color: #ffffff;
    text-align: left;
}

.account_orders .table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.account_orders .table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.account_orders .table tbody tr:last-of-type {
    border-bottom: none;
}

.account_orders .table tbody tr:hover {
    background-color: #dddddd;
}

.viewing_order .invoice {
    padding: 20px;
}

.viewing_order .viewing_order_header {
    font-size: 16px;
    color: #84538F;
    font-weight: bold;
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
}

.viewing_order .viewing_order_header svg {
    vertical-align: middle;
}

.viewing_order .viewing_order_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.viewing_order .a-btn-invoice {
    padding: 5px 10px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    color: #84538F;
    vertical-align: middle;
}

.viewing_order .items {
    border-top: 1px solid #e0e0e0;
    padding: 10px 0;
    margin-top: 8px;
}

.viewing_order_header span {
    color: #222222;
    padding-left: 10px;
}

.viewing_order .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    line-height: 32px;
}

.viewing_order .item .price {
    font-weight: bold;
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
}

.viewing_order .item .item-right {
    flex-grow: 1;
}

.viewing_order .item-status {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.viewing_order .item img {
    width: 120px;
    margin-right: 30px;
}

.viewing_order .description, .viewing_order .quantity, .viewing_order .price {
    width: 30%;
}

.viewing_order .viewing_order_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-weight: bold;
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
}

.viewing_order .viewing_order_footer p {
    font-weight: normal;
    line-height: 33px;
}

.viewing_order .total {
    padding-top: 15px;
    font-weight: bold;
}

.single_order_back_button {
    text-decoration: none;
}

.viewing_order .total span {
    padding-left: 30px;
    font-weight: normal;
}

.products_container {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 1450px) {
    .product_delivery_hover_block {
        left: -25px;
        top: 53px;
    }

    .product_delivery_hover_block::before {
        border-right: 20px solid transparent;
        border-bottom: 20px solid #ffffff;
        left: 50%;
        transform: translateX(-50%);
        top: -35px;
    }
}

@media (max-width: 1200px) {
    .hamburger_img {
        margin-left: 21px;
    }
    .input2 {
        flex-direction: column;
        justify-content: flex-start;
    }

    .guide_content {
        padding: 50px;
    }

    .custom-select {
        width: 100% !important;
    }

    .input_width {
        width: 100% !important;
    }

    .playmobile {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .inner_header {
        padding: 10px 0;
    }

    .header_left_side img {
        width: 97px;
        height: 28px;
    }

    .header_menu,
    .play,
    .languages {
        display: none;
    }

    .header_icons img {
        width: 24px;
        height: 22px;
    }

    .header_icons li {
        margin-left: 16px;
    }

    .basket_hover_block {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .header_menu li,
    .header_icons li {
        margin-left: 20px;
    }

    .ardipen_image {
        width: 40%;
    }

    .ardipen_desc {
        width: 60%;
    }

    .ardipen_property_container {
        flex-direction: column;
    }

    .ardipen_property {
        width: 100%;
    }

    .shops {
        width: calc(25% - 24px);
    }

    .shops:nth-child(3n) {
        margin-right: 0;
    }

    .footer_block {
        width: 50%;
    }

    .catalogue_single_content {
        flex-direction: column;
    }

    .product_image_slider, .product_description {
        width: 100%;
    }

    .product_image_slider_wrapper {
        width: 80%;
        margin: 30px auto;
    }

    .product_description {
        margin: 0;
    }

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

    .btn_orders .btn_purple {
        margin-bottom: 20px;
    }

    .product_delivery:hover .product_delivery_hover_block {
        display: none;
    }
    .products .desktop_version .product {
        max-width: 48% !important;
    }
}

@media (max-width: 1142px) {
    .product_name {
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    .general_page_slider {
        padding-bottom: 80px;
    }

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

    .ardipen_desc {
        width: 100%;
    }

    .checkout_content {
        flex-direction: column;
    }

    .checkout_left_side, .checkout_right_side {
        width: 100%;
    }

    .profile_name {
        text-align: center;
        margin: 20px 0;
    }

    .profile_content {
        flex-direction: column;
    }

    .guides, .guide_content {
        width: 100%;
    }

    .guides {
        margin-right: 0;
    }

    .about_image img {
        width: 100%;
        margin-left: 0%;
    }

    main {
        margin-top: 52px;

    }

    .general_slider_item {
        flex-direction: column;
        padding: 0 16px;
    }

    .general_slider_item img {
        width: 100%;
        height: auto;
        -o-object-fit: contain;
           object-fit: contain;
    }

    .general_slider_product_info {
        /*height: 35%;*/
        text-align: center;
    }

    .general_slider .slick-dots {
        top: 98%;
        transform: translate(50%, -98%);
        display: flex;
        justify-content: center;
    }

    .book_slider_mobile {
        display: inline;
    }

    .book_slider {
        display: none;
    }

    .left_slide a img {
        width: 97px;
        height: 28px;
    }

    .cooming_soon {
        display: none;
    }

    .about .section_content {
        flex-direction: column;
    }

    .about_desc,
    .about_image {
        width: 100%;
    }

    .about_image {
        order: -1;
        margin: 0 0 16px;
    }

    .ardipen .section_content {
        flex-direction: column;
    }

    .ardipen_desc,
    .ardipen_image {
        width: 100%;
    }

    .ardipen_desc,
    .ardipen_image {
        margin: 0;
    }

    .ardipen_image {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
    }

    .ardipen_image img {
        width: 60%;
    }

    .product .btn_purple {
        padding-left: 48px;
        padding-right: 48px;
    }

    .orders_content {
        width: 100%;
        overflow-y: auto;
    }

    .catalogue_filters_bar {
        justify-content: start;
        overflow: auto;
    }

    .catalogue_filters_bar::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 960px) {
    .input_line {
        flex-direction: column;
    }

    .input {
        width: 100%;
    }

    .product:nth-child(2n) {
        margin-right: 0 !important;
    }

    .basket_products_desktop {
        display: none;
    }

    .basket_products_mobile {
        display: block;
    }

    .favourite_existent .product {
        width: calc(50% - 16px) !important;
    }

    .favourite_existent .product:nth-child(3n) {
        margin-right: 32px !important;
    }

    .favourite_existent .product:nth-child(2n) {
        margin-right: 0 !important;
    }

    .privacy_policy {
        flex-direction: column;
    }

    .conditions, .conditions_content {
        width: 100%;
    }

    .conditions {
        margin-bottom: 14px;
        margin-right: 0;
    }

    .condition {
        border-top: 0;
        border-bottom: 1px solid #F3F3F3 !important;
    }

    .product_characteristics {
        border-bottom: 1px solid #C4C4C4;
    }

    .product_characteristic {
        border: 0;
    }

    .product_specification {
        width: 25% !important;
        margin-bottom: 20px;
    }

    .specific_product_characteristic {
        margin-top: 6px;
    }

    .updates_step {
        width: calc(50% - 16px);
    }

    .updates_step:nth-child(2n) {
        margin-right: 0;
    }

    .ardibook_advantages .desktop_version {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }

    .box {
        margin-right: 32px !important;
    }

    .ardibook_advantages .desktop_version {
        display: none;
    }

    .ardibook_advantages .mobile_version {
        display: block;
    }

    .products .desktop_version {
        display: none;
    }

    .products .mobile_version {
        display: block;
    }

    .book_cover_text {
        font-size: 14px;
        line-height: 20px;
    }

    .book_cover_title {
        font-size: 29px;
    }

    .where_find .desktop_version {
        display: none;
    }

    .where_find .mobile_version {
        display: block;
    }

    .video_player {
        width: 45px;
        height: 45px;
        background-size: 15px;
        bottom: -10%;
    }

    .reviews_slider .slick-arrow {
        display: none !important;
    }

    .shops:nth-child(3n) {
        margin-right: 32px;
    }

    .catalogue_filters_bar {
        padding: 0 0 30px;
    }
}

@media (max-width: 768px) {
    main {
        padding-bottom: 120px !important;
    }

    .forgot_password_email {
        width: 80%;
        padding: 0 10%;
    }

    .faq_content {
        padding: 0;
    }

    .where_find_slider {
        margin: 0 -16px 0 0 !important;
    }

    .contact_info {
        flex-direction: column;
        align-items: center;
    }

    .contact_domain, .contact_phone {
        justify-content: center;
    }

    .contact_domain {
        margin-top: 20px;
    }

    .ardibook_advantages_slider, .where_find_slider {
        margin: 0 -16px 0 0 !important;
    }

    .products_container {
        padding: 0 15%;
    }

    .product_slider {
        margin: 0 -16px 0 0;
    }

    .product_image_slider .slick-arrow.slick-next {
        background-size: 16px 29px;
        right: 0;
    }

    .product_image_slider .slick-arrow.slick-prev {
        left: 0%;
        background-size: 16px 29px;
    }

    .product_delivery:hover .product_delivery_hover_block {
        display: none;
    }

    .favourite_existent {
        width: 75%;
        margin: 0 auto;
    }

    .favourite_existent .product {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .products_slider {
        /*margin: 0 -16px 0 0 !important;*/
    }

    .input_line {
        flex-direction: column;
        justify-content: flex-start;
    }

    .input, .custom-select {
        width: 100% !important;
    }

    .address_content {
        flex-direction: column;
    }

    .address_content div {
        width: 100%;
    }

    .product_specification {
        width: 50% !important;
    }

    .tab {
        margin: 50px auto;
    }

    .tab_vertical_line {
        margin: 0 10px;
    }

    .sign_in_content, .sign_up_content {
        flex-direction: column;
        padding: 0 15px;
    }

    .left_block, .right_block, .center_block {
        width: 100%;
    }

    .bla {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .link_line {
        text-align: center;
    }

    .sign_in_btn {
        margin-bottom: 20px;
    }

    .center_block {
        flex-direction: row;
    }

    .center_block_line {
        width: 46%;
        height: 1px;
    }

    .center_block_text {
        width: 12%;
    }

    .center_block_height2, .center_block_height1 {
        height: 66px;
    }

    .products_slider {
        /*margin: 0 -16px 0 0 !important;*/
    }

    .ardibook_advantages {
        padding: 0;
    }

    .ardibook_advantages_slider {
        margin: 0 0 0 16px;
    }

    .products {
        padding: 0;
    }

    .products_slider {
        /*margin: 0 0 0 16px;*/
    }

    .reviews {
        padding: 0 0 0 16px;
    }

    .ardipen_image img {
        width: 70%;
    }

    .book_cover .desktop_version {
        display: none;
    }

    .book_cover .mobile_version {
        display: block;
    }

    .video_assistant .section_content {
        flex-direction: column;
    }

    .video_assistant .section_name2 {
        margin-bottom: 4px !important;
    }

    .video_item {
        width: 100%;
        margin-right: 0;
        margin-top: 16px;
    }

    .video_player {
        width: 58px;
        height: 58px;
        background-size: 22px;
        bottom: -7%;
    }

    .video_info {
        margin-bottom: 16px;
    }

    .btn_player_white {
        width: 54px;
        height: 54px;
        background-size: 22px 28px;
        background-position: 20px center;
    }

    .popup_review_slider .review_container {
        padding: 60px;
        margin: 0 8px 0 0;
    }

    .popup_review_slider .slick-arrow {
        top: auto;
        bottom: -60px;
    }

    .popup_review_slider .slick-arrow.slick-prev {
        left: 41%;
    }

    .popup_review_slider .slick-arrow.slick-next {
        right: 41%;
        bottom: -78px;
    }

    .footer_block {
        width: 100%;
    }

    .page_info {
        display: block;
    }

    .wedo {
        margin: 30px 0 16px;
    }

    .payment_block {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .payment_block .all_price_number {
        margin: 0;
    }
}

@media (max-width: 480px) {
    main {
        padding-bottom: 60px !important;
    }

    .faq_title {
        margin: 20px auto 4px;
        font-size: 30px;
        line-height: 44px;
    }

    .question_block {
        padding: 20px 16px;
    }

    .question {
        font-size: 16px;
        line-height: 24px;
    }

    .answer {
        font-size: 14px;
        line-height: 20px;
    }

    .contacts_title {
        font-size: 30px;
        line-height: 44px;
        margin: 20px 0;
    }

    .contact_us_container {
        padding: 30px 16px;
        font-size: 14px;
    }

    .contact_domain, .contact_phone {
        font-size: 16px;
    }

    .contact_phone a, .contact_domain a {
        margin-right: 12px;
    }

    .map_container iframe {
        margin-bottom: -60px;
    }

    .input {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contacts_btn {
        margin: 12px 0;
    }

    .card_title {
        margin: 20px 0;
        font-size: 30px;
    }

    .no_basket_element div {
        font-size: 14px;
    }

    .no_basket_element .line1 {
        margin-bottom: 24px;
    }

    .no_basket_element .line1 a {
        display: block;
    }

    .no_basket_element .line2 {
        margin-bottom: 32px;
    }

    .have_basket_element a {
        font-size: 14px;
        display: inline-flex;
    }

    .basket_products_mobile {
        font-size: 14px;
    }

    .product_desc_column:nth-child(1) {
        width: 37%;
    }

    .product_desc_column:nth-child(2) {
        width: 40%;
    }

    .product_desc_column:nth-child(3) {
        width: 23%;
    }

    .basket_products_mobile .payment_block {
        flex-direction: column;
        align-items: flex-end;
        padding-top: 10px;
    }

    .basket_products_mobile .all_price_number {
        margin: 0 0 20px 20px;
    }

    .basket_products_mobile .btn_purple {
        margin-top: 20px;
    }

    .product_desc_column:nth-child(3) img {
        width: 20px;
        height: 24px;
        margin-bottom: 55px;
    }

    .products_count span {
        padding: 0 16px;
    }

    .about_us_title {
        margin-top: 20px;
        font-size: 30px;
    }

    .about_us_content p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .about_us_img1 {
        display: none;
    }

    .about_us_img2 {
        display: inline;
    }

    .coupon .btn_purple {
        font-size: 15px;
    }

    .checkout_title {
        margin: 20px 0;
        font-size: 30px;
    }

    .checkout_error_block {
        padding: 16px;
        margin-bottom: 17px;
    }

    .checkout_error_block_text {
        font-size: 14px;
        line-height: 20px;
    }

    .checkout_block {
        margin-bottom: 17px;
    }

    .checkout_left_block_title {
        padding: 16px;
        font-size: 16px;
    }

    .checkout_left_block_content {
        padding: 16px 16px 20px;
    }

    .checkout_input {
        font-size: 14px;
    }

    .custom-select {
        font-size: 14px;
    }

    .link_line {
        font-size: 12px;
        line-height: 20px;
    }

    .choise {
        font-size: 14px;
        line-height: 20px;
    }

    .choise_line {
        margin: 0 0 17px;
    }

    .checkout_right_block_title {
        padding: 16px 20px;
        font-size: 14px;
    }

    .checkout_right_block_content {
        padding: 16px 16px 20px;
    }

    .product_description {
        font-size: 14px;
        line-height: 30px;
    }

    .cost_description {
        font-size: 14px;
    }

    .coupon {
        margin: 0;
    }

    .coupon_input {
        padding: 12px 154px 12px 20px;
        font-size: 14px;
    }

    .checkout_done_title {
        margin-top: 60px;
        font-size: 30px;
    }

    .checkout_done_text {
        margin-top: 14px;
        font-size: 18px;
    }

    .checkout_done_link {
        margin-top: 16px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .catalogue_search_bar {
        margin: 30px 0 0;
    }

    .catalogue_search_button {
        left: 15px;
        top: 12px;
        width: 16px;
        height: 16px;
    }

    .catalogue_search_input {
        padding: 10px 15px 10px 44px;
        font-size: 14px;
    }

    .catalogue_filters_bar {
        padding: 0 0 10px;
        gap: 15px;
    }

    .catalogue_filters_bar a {
        padding: 14px 20px;
        box-shadow: unset;
        font-size: 14px;
    }

    .catalogue_title {
        margin: 20px 0 30px;
        font-size: 30px;
    }

    .products_container {
        padding: 0;
    }

    .catalogue_info {
        margin: 18px auto 0;
        font-size: 14px;
        line-height: 20px;
    }

    .catalogue_info p {
        margin-top: 12px;
    }

    .product_image_slider_wrapper {
        margin: 0 auto 32px;
        width: 100%;
    }

    .product_name_line {
        font-size: 24px;
        line-height: 30px;
    }

    .product_description p {
        font-size: 14px;
        line-height: 20px;
    }

    .product_description li {
        margin-top: 12px;
        font-size: 14px;
        line-height: 20px;
    }

    .product_price_line {
        flex-wrap: wrap;
    }

    .new_price {
        font-size: 20px;
        margin-right: 16px;
        margin-top: 25px;
    }

    .old_price {
        font-size: 18px;
        margin-top: 25px;
    }

    .products_count {
        margin-top: 20px;
        padding: 9px 12px;
        margin-right: 24px;
    }

    .products_count img {
        width: 18px;
        height: 18px;
    }

    .products_count span {
        font-size: 16px;
        padding: 0 30px;
    }

    .product_delivery {
        margin-top: 20px;
        font-size: 16px;
    }

    .product_delivery img {
        width: 32px;
        height: 21px;
        padding-right: 8px;
    }

    .share_line {
        margin-top: 33px;
        font-size: 14px;
    }

    .product_delivery_hover_block {
        width: auto;
    }

    .product_delivery_hover_block::before {
        left: 55px;
    }

    .favourite_existent {
        width: 100%;
    }

    .favourite_title {
        margin: 20px auto;
        font-size: 30px;
    }

    .favourite_empty div {
        font-size: 14px;
    }

    .favourite_empty .btn_purple {
        margin-top: 20px;
    }

    .privacy_policy {
        margin: 30px auto;
    }

    .conditions {
        font-size: 14px;
        line-height: 20px;
    }

    .condition {
        padding: 10px 0;
    }

    .conditions_content {
        font-size: 14px;
        line-height: 20px;
    }

    .profile_name {
        font-size: 18px;
    }

    .guides {
        font-size: 14px;
    }

    .guide_content {
        text-align: left;
    }

    .welcome {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .guide_content {
        padding: 30px 20px;
    }

    .guide_content .btn_purple {
        display: inline-block;
    }

    .user_name_surname {
        font-size: 16px;
    }

    .user_gmail {
        font-size: 14px;
    }

    .user_info {
        display: inline;
        line-height: 20px;
        font-size: 14px;
    }

    .profile_my_orders {
        font-size: 16px;
    }

    .profile_no_orders_text {
        font-size: 14px;
        line-height: 20px;
    }

    .btn_purple {
        font-size: 14px !important;
    }

    .address_title {
        font-size: 16px;
        margin-bottom: 23px;
    }

    .address_content div {
        align-items: flex-start;
    }

    .address_lorem {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .address_content .btn_purple {
        margin-top: 14px;
    }

    .address_red_info {
        font-size: 12px;
        line-height: 18px;
    }

    .custom-select {
        font-size: 14px;
    }

    .last {
        width: 100% !important;
        text-align: left;
    }

    .last .product_characteristic {
        display: none;
    }


    .input_headline {
        margin-bottom: 20px !important;
        font-size: 16px;
    }

    .input_headline:not(:first-child) {
        margin-top: 10px;
    }

    .input {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .input1 {
        margin-bottom: 8px;
    }

    .forgot_password_title {
        margin-top: 60px;
        font-size: 20px;
    }

    .forgot_password_content, .forgot_password_sent_content {
        font-size: 14px;
        line-height: 20px;
        margin-top: 14px;
    }

    .forgot_password_email {
        width: 100%;
        padding: 0;
        margin-top: 16px;
    }

    .forgot_password_btn {
        margin: 12px 0;
    }

    .forgot_password_sent_title {
        margin-top: 24px;
        margin-bottom: 6px;
    }

    .tab {
        margin: 32px auto 22px;
    }

    .tab_vertical_line {
        margin: 0 5px;
        font-size: 30px;
    }

    .sign_in_tab, .sign_up_tab {
        font-size: 30px;
    }

    .input {
        font-size: 14px;
        line-height: 20px;
    }

    .link_line {
        font-size: 12px;
        line-height: 20px;
    }

    .right_block a {
        font-size: 14px;
    }

    .updates_title {
        margin: 20px auto;
        font-size: 30px;
    }

    .updates_info {
        font-size: 14px;
        line-height: 20px;
    }

    .book_or_pen {
        margin: 30px 0 14px;
    }

    .book, .pen {
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .book {
        padding: 12px 55px;
    }

    .pen {
        padding: 12px 20px;
        text-align: center;
    }

    .updates_step {
        width: 100%;
        height: 176px;
        padding: 28px 35px;
        margin-right: 0;
        font-size: 14px;
        line-height: 20px;
    }

    .updates_step img {
        width: 67px;
        height: 67px;
        margin-bottom: 10px;
    }

    .product_name {
        margin-bottom: 12px;
    }

    .header_icons img {
        width: 22px;
        height: 18px;
    }

    .hamburger_img {
        width: 22px;
        height: 16px;
        margin-left: 21px;
    }

    .general_slider_product_text h1 {
        font-size: 30px;
        line-height: 44px;
        margin-bottom: 8px;
    }

    .general_slider_product_text p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .general_slide .btn_purple {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 16px;
    }

    .btn_white {
        padding-top: 11px;
        padding-bottom: 11px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 16px;
    }

    .section_name,
    .section_name2 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 24px;
        margin-top: 60px;
    }

    .about_desc {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    .about_desc p {
        text-align: left;
    }

    .about_desc p:not(:first-child) {
        display: none;
    }

    .box {
        height: 164px;
        padding: 24px 31px;
        margin-right: 16px !important;
        margin-top: 0;
    }

    .box img {
        width: 49px;
        height: 55px;
        padding: 2px 4px;
    }

    .box span {
        font-size: 14px;
        line-height: 20px;
    }

    .sale,
    .novelty {
        padding: 10px 14px;
        font-size: 12px;
    }

    .product_name {
        margin-top: 6px;
        font-size: 18px;
    }

    .product_price {
        margin-top: 30px;
        font-size: 16px;
    }

    .product_price span {
        margin-left: 10px;
        font-size: 14px;
    }

    .btn_favourite,
    .btn_favourite_active {
        width: 43px;
        height: 43px;
        background-size: 19px;
    }

    .ardipen_desc {
        font-size: 14px;
        line-height: 20px;
    }

    .ardipen_property {
        margin-top: 24px;
        padding: 6px;
    }

    .ardipen_property img {
        width: 52px;
        height: 52px;
        padding-left: 18px;
    }

    .ardipen_image img {
        width: 90%;
    }

    .video_player {
        width: 45px;
        height: 45px;
        background-size: 15px;
    }

    .video_info {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 0;
    }

    .review_container {
        padding: 24px 20px;
        margin-right: 16px;
        margin-left: 0;
    }

    .reviewer_info {
        font-size: 16px;
        line-height: 24px;
    }

    .reviewer_image {
        padding-right: 12px;
    }

    .reviewer_image img {
        width: 70px;
        height: 70px;
    }

    .review {
        font-size: 14px;
        line-height: 20px;
    }

    .read_all {
        margin-top: 10px;
        font-size: 14px;
    }

    .popup_review_slider .review_container {
        padding: 30px 16px;
    }

    .review_title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .little_about_us .section_name2 {
        margin-top: 60px;
    }

    .little_about_us .section_content {
        margin-top: 20px;
    }

    .popup_review_close {
        top: 12px;
        right: 12px
    }

    .popup_review_slider .slick-arrow.slick-prev {
        left: 38%;
    }

    .popup_review_slider .slick-arrow.slick-next {
        right: 38%;
        bottom: -78px;
    }

    .shops {
        margin-top: 20px;
        margin-right: 16px !important;
    }

    .shop_info {
        font-size: 14px;
        line-height: 20px;
    }

    .shop_name {
        margin-bottom: 6px;
    }

    main {
        padding-bottom: 60px;
    }

    .inner_footer {
        padding: 30px 16px;
    }

    .footer_block a,
    .inner_footer .right_side p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer_input,
    .footer_form button {
        font-size: 14px;
        line-height: 20px;
    }

    .page_info {
        font-size: 12px;
        line-height: 18px;
    }

    .popup_video {
        max-width: 383px;
        max-height: 223px;
    }

    .product .btn_purple,
    .ardipen_image .btn_purple {
        padding-left: 30px;
        padding-right: 30px;
    }

    .header_container {
        padding: 0 8px;
    }

    .general_page_slider {
        min-height: calc(100svh - 130px)
    }

    .general_slider_item {
        padding: 0;
    }

    .general_slider_product_text {
        padding: 0;
    }

    .product img {
        -o-object-fit: contain;
           object-fit: contain;
    }
    .addtobasketbtn:before {
        width: 40px;
        height: 40px;
    }
}

.related-products-wrapper .section_name2 {
    text-align: left;
    margin-bottom: 40px;
}

.related-products .slick-list {
    margin: 0 -23px;
}

.related-products .product {
    margin: 0 23px;
}

@media (max-width: 480px) {
    .related-products .product {
        margin: 0 5px;
    }

    .related-products .slick-list {
        margin: 0 -5px;
    }
}

.product_slider.related-products .slick-arrow {
    top: -77px;
    bottom: unset;
    right: 0;
    left: unset;
    margin-left: 0;
}

.product_slider.related-products .slick-arrow.slick-prev {
    right: 55px;
}

.product_slider.related-products .slick-arrow.slick-next {

}

