﻿.product-info {
    padding: 16px 24px 24px;
}

.product-bottom-price {
    position: sticky;
    top: 167px;
    transition: all .3s ease;
}

.hide-main-nav .product-bottom-price {
    top: 122px;
}

.product-tabs {
    display: flex;
    position: sticky;
    background: #fff;
    z-index: 2;
    border-bottom: 1px solid #e0e0e2;
    transition: all .3s ease;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: top .3s;
}

.product-tab-item {
    font-size: 14px;
    line-height: 24px;
    color: #6d7179;
    text-align: center;
    position: relative;
    user-select: none;
    cursor: pointer;
}

.product-tab-link {
    padding: 14px 16px;
    display: block;
}

.active.product-tab-link,
.product-tab-link:active {
    color: #ef394e;
}

.active.product-tab-link:after {
    content: "";
    position: absolute;
    width: calc(100% - 16px);
    right: 8px;
    bottom: -1px;
    height: 4px;
    border-radius: 2px 2px 0 0;
    background-color: #ef394e;
}

.product-tab-content {
    padding: initial 24px 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
}

.product-tab-content:not(:last-child):after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 15px;
    background: #dfdfdf;
}

.product-tab-content-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
}

.product-tab-content-subtitle {
    display: block;
    font-size: 14px;
    line-height: 25px;
    color: #81858b;
}

.product-tab-content-subtitle:after {
    content: "";
    display: block;
    background-color: #ef394e;
    margin-top: 8px;
    height: 2px;
    width: 70px;
    border-radius: 1px;
}

.product-price-box {
    display: flex;
    flex-direction: column;
    margin-right: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e2;
    background: linear-gradient(0deg,hsla(240,3%,94%,.5),hsla(240,3%,94%,.5)),#fff;
}

.product-price-row {
    display: flex;
    margin: 0 14px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 34px;
}

.product-price-row.with-border {
    border-bottom: 1px solid #e0e0e2;
}

.product-price {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    color: #030a16;
    font-size: 24px;
    line-height: 41px;
}

.product-currency {
    color: #424750;
    font-weight: 800;
    font-size: 12px;
    line-height: 21px;
}

.btn-add-to-cart {
    position: relative;
    margin-top: 0;
    font-size: 18px;
    line-height: 22px;
    border-radius: 8px;
    color: #fff;
    overflow: hidden;
    text-align: center;
    min-height: 48px;
    padding: 12px 18px;
    background-color: #ef394e;
    border: none;
}


.btn-add-to-cart .loading-dots {
    display: none;
    position: absolute;
    background-color: inherit;
    top: 12px;
    bottom: 12px;
    left: 18px;
    right: 18px;
    padding-top: 2px;
}

.btn-add-to-cart[disabled] .loading-dots {
    display: block;
}



.img-zoom-container {
    position: relative;
}

.img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 189px;
    height: 140px;
}

.img-zoom-result {
    position: absolute;
    right: 100%;
    top: 78px;
    border: 1px solid #d4d4d4;
    width: 42.525vw;
    height: 31.5vw;
    background-color: #ffffff;
}

.img-zoom-lens, .img-zoom-result {
    opacity: 0;
    transition: opacity 500ms, left 100ms, right 100ms, background-position 100ms;
    z-index: -1;
}

.img-zoom-container:hover .img-zoom-lens,
.img-zoom-container:hover .img-zoom-result {
    opacity: 1;
    z-index: 1;
}
