body {
    overflow-x: hidden;
}

.wrapper {
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 119px;
}

.path {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 30px;

    color: rgba(0, 0, 0, 0.50);
}

.path .pagename {
    all: unset;
    font-size: 13px;
    line-height: 18px;
}

.path .pagename.active {
    font-weight: 600;
}

.product_block {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.product_block .gallery {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, max-content);
    gap: 21px;
}

.product_block .gallery .big_image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;

    width: 100%;
    aspect-ratio: 1/1;
    background-color: #fff;
    filter: drop-shadow(0px 12px 32px rgba(0, 0, 0, 0.10));
}

.product_block .gallery .big_image img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
    object-fit: contain;
    /* padding: 20px; */
    box-sizing: border-box;
    transition: all .3s ease-in-out;
}

.product_block .gallery .big_image img:hover {
    scale: 1.1;
}

.product_block .gallery .small_images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

.product_block .gallery .small_images .img_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
}

.product_block .gallery .small_images .img_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
}

.product_block .gallery .small_images .img_wrapper img:hover {
    scale: 1.1;
    transition: all .3s ease-in-out;
}

.product_block .info>.title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
}
.product_block .info>.category-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 24px;
}

.product_block .info .variations {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.product_block .info .variations .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;

    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #E7E7E7;

    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    transition: all 100ms ease-in-out;
}

.product_block .info .variations .item:hover {
    background-color: #f1f1f1;
}

.product_block .info .variations .item:active {
    scale: .95;
}

.product_block .info .variations .item.active {
    border: 1px solid var(--1, #0050EC);
}


.dropdown-menu {
    width: 100%;
    display: flex;
    padding: 20px 15px;
    justify-content: space-between;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}

.dropdown_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid #E1E1E1;
    color: rgba(0, 0, 0, 0.50);
    line-height: 28px;
    background: #FFF;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 296px;
    margin-top: 4px;
    transition: height 0.3s ease, display 0.3s ease;
    display: none;
    height: 0;
    transition: all 1s ease-in-out;
}

.dropdown_list.active {
    display: flex;
    height: 296px;
}

.dropdown_list .dropdown_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    padding: 20px 15px;
}

.dropdown_list .dropdown_wrapper .item.active {
    color: #0050EC;
}


.product_block .info .price {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-top: 45px;
}

.product_block .info .price .text {
    font-size: 36px;
    font-weight: 900;
}

.product_block .info .price input {
    all: unset;
    text-align: center;

    border-radius: 10px;
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0050EC 0%, #0050EC 100%);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
    padding: 24px 102px;

    color: var(--white, #FAFAFA);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
}

.product_block>.gallery>.title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    display: none;
}

.product_block .info .price_mobile {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 700;
    margin-top: 25px;
    display: none;
}

.product_block .info .price input:hover {
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0D81EC 0%, #20A5CF 100%);
}

.order_nav {
    border-radius: 20px 20px 0px 0px;
    border: 1px solid #E1E1E1;
    background: var(--White, #FFF);
    box-shadow: 0px -4px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 35px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 150;
    width: 100vw;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    display: none;
}

.order_nav input {
    all: unset;
    text-align: center;

    border-radius: 10px;
    background: linear-gradient(102deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 21.5%, rgba(255, 255, 255, 0.28) 21.51%, rgba(255, 255, 255, 0.00) 45.14%), radial-gradient(145.35% 141.42% at 0% 0%, #0050EC 0%, #0050EC 100%);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
    padding: 24px 102px;

    color: var(--white, #FAFAFA);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    width: 100%;
}


.product_block .info .dimensions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 40px;

    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #E7E7E7;

    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.product_block .info .dimensions div:first-child {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.product_block .info .dimensions div li {
    all: unset;
}

.product_block .info .colors {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px;
    margin-top: 40px;

    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #E7E7E7;
}

.product_block .info .colors .list_of_colors {
    display: flex;
    gap: 20px;
}

.product_block .info .colors div:first-child {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.product_block .info .colors .color {
    border-radius: 10px;
    width: 28px;
    aspect-ratio: 1/1;
}

.product_block .info .colors .color#blue {
    background-color: #0050EC;
}

.product_block .info .colors .color#purple {
    background-color: #8509E7;
}

.product_block .info .colors .color#pink {
    background-color: #DB16DF;
}

.product_block .info .colors .color#green {
    background-color: #2A9351;
}

.product_block .info .colors .color#yellow {
    background-color: #FFC961;
}

.product_block .info .details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.product_block .info .details>div {
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #E7E7E7;
    height: max-content;
}

.product_block .info .details .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.product_block .info .details ul {
    margin-top: 15px;
    list-style-position: inside;
    font-size: 18px;
    line-height: 24px;
}




.pop_up_menu {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 123456;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    display: none;
}

.pop_up_menu .pop_up_wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 220px;

    width: 510px;
    padding: 30px 45px;
    box-sizing: border-box;

    border-radius: 20px;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
    background-size: cover !important;
    background-position: center 0 !important;
    /* background-repeat: no-repeat; */
}

.pop_up_menu .pop_up_wrapper .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pop_up_menu .pop_up_wrapper .title .text {
    font-size: 24px;
    font-weight: 700;
}

.pop_up_menu .pop_up_wrapper .title img {
    width: 24px;
    aspect-ratio: 1/1;
    transition: all 100ms ease-in-out;
}
.pop_up_menu .pop_up_wrapper .title img:active
{
    scale: .9;
}

.pop_up_menu .pop_up_wrapper .form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pop_up_menu .pop_up_wrapper .form .information {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    margin-bottom: 12px;

    border-radius: 10px;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(8px);
}

.pop_up_menu .pop_up_wrapper .form .information .title {
    font-size: 18px;
    font-weight: 600;
}

.pop_up_menu .pop_up_wrapper .form .information .name {
    font-size: 18px;
    font-weight: 400;
}

.pop_up_menu .pop_up_wrapper .form .information .price {
    font-size: 24px;
    font-weight: 700;
}

.pop_up_menu .pop_up_wrapper .form input {
    all: unset;
}

.pop_up_menu .pop_up_wrapper .form .field {
    all: unset;
    width: 100%;
    padding: 13px 20px;
    box-sizing: border-box;

    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.30);

    font-size: 18px;
    line-height: 24px;

    margin-bottom: 12px;
}

.pop_up_menu .pop_up_wrapper .form .field.dnone {
    display: none;
}

.pop_up_menu .pop_up_wrapper .form .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-top: 12px;

    border-radius: 10px;
    background: var(--1, linear-gradient(155deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 38.36%, rgba(255, 255, 255, 0.28) 38.37%, rgba(255, 255, 255, 0.00) 80.52%), #0050EC);
    box-shadow: 0px 20px 20px -10px rgba(99, 131, 215, 0.40);
    padding: 13px 20px;

    color: var(--white, #FAFAFA);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.pop_up_menu>.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .15;
    z-index: -1;

}

.wpcf7-response-output {
    text-align: center !important;
    color: #dc3232 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.wpcf7-not-valid-tip {
    margin-top: 4px;
}

.fields p:last-child {
    position: relative;
    display: flex;
}

.wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.wpcf7-response-output {
    margin-top: 4px !important;
}

.order_consultation .wpcf7-response-output {
    display: none;
}