.thumbs-slider {
    display: flex;
    gap: 10px;
}
.tf-product-media-thumbs {
    width: calc(14% - 10px);
    /*max-height: 846px;*/
     max-height: 500px;
}
.tf-product-media-thumbs .swiper-slide {
    height: max-content;
}
.tf-product-media-thumbs .swiper-slide .item {
    position: relative;
    height: 100%;
}
.tf-product-media-thumbs .swiper-slide .item img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tf-product-media-thumbs .swiper-slide .item::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 5px;
}
.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
    border: 2px solid var(--main);
}
.thumbs-bottom .thumbs-slider {
    flex-direction: column;
}
.thumbs-bottom .thumbs-slider .tf-product-media-thumbs {
    order: 1;
    width: 100%;
}
.thumbs-bottom .thumbs-slider .tf-product-media-thumbs .swiper-slide {
    width: 119px;
}
.thumbs-bottom .thumbs-slider .tf-product-media-main {
    width: 100%;
}
.tf-product-media-main {
    width: 86%;
}
.tf-product-media-main .item {
    width: 100%;
    height: 100%;
    max-height: 846px;
}
.tf-product-media-main .item img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tf-product-info-list {
    padding-left: 25px;
}
.tf-product-info-list > div:not(:last-child) {
    margin-bottom: 30px;
}
.tf-product-info-title {
    margin-bottom: 20px !important;
}
.tf-product-info-badges {
    margin-bottom: 18px !important;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.tf-product-info-badges .badges {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--main);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 29px;
}
.tf-product-info-badges .product-status-content {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.tf-product-info-badges .product-status-content svg {
    animation: tf-ani-flash 2s infinite;
}
.tf-product-info-badges .product-status-content i {
    font-size: 20px;
    color: var(--primary);
    animation: tf-ani-flash 2s infinite;
}
.tf-product-info-price {
    display: flex;
    gap: 10px;
    align-items: center;
}
.tf-product-info-price .price {
    color: var(--main);
    font-size: 28px;
    line-height: 28px;
}
.tf-product-info-price .price-on-sale {
    color: var(--primary);
    font-size: 28px;
    line-height: 28px;
}
.tf-product-info-price .compare-at-price {
    color: rgb(0, 0, 0);
    font-size: 20px;
    line-height: 20px;
    text-decoration: line-through;
}
.tf-product-info-price .badges-on-sale {
    background-color: #fc5732;
    border-radius: 28px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
}
.tf-product-info-liveview {
    display: flex;
    gap: 10px;
    align-items: center;
}
.tf-product-info-liveview .liveview-count {
    display: flex;
    justify-content: center;
    min-width: 34px;
    min-height: 24px;
    line-height: 24px;
    color: var(--white);
    background-color: var(--main);
    border-radius: 3px;
    font-weight: 600;
}
.tf-product-info-countdown .countdown-wrap {
    display: inline-block;
    padding: 16px 30px;
    border: 1px solid var(--primary);
    border-radius: 2.5px;
    text-align: center;
    min-width: 367px;
}
.tf-product-info-countdown .countdown-wrap .countdown-title {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.tf-product-info-countdown .countdown-wrap .countdown-title i {
    font-size: 14px;
    color: var(--main);
}
.tf-product-info-countdown .countdown-wrap .countdown-title p {
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
}
@-webkit-keyframes tf-ani-tada {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
   }
    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
   }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
   }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
   }
}
@keyframes tf-ani-tada {
    from, to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
   }
    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
   }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
   }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
   }
}
.tf-ani-tada {
    -webkit-animation: tf-ani-tada 2s infinite;
    animation: tf-ani-tada 2s infinite;
}
.tf-product-info-variant-picker {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.tf-product-item-property input {
    height: 42px;
}
.tf-product-item-property label {
    font-weight: 400;
    color: var(--text-3);
}
.tf-product-info-quantity .quantity-title {
    margin-bottom: 5px;
}
.tf-product-info-buy-button form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tf-product-info-buy-button form .btns-full {
    width: 100%;
    margin-top: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    height: 44px;
    /* background-color: #e9368f; */
    background-color: #fe981e;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.tf-product-info-buy-button form .btns-full:hover {
     /* background-color: #e9368f; */
     background-color: #fe981e;
}
.tf-product-info-buy-button form .payment-more-option {
    width: 100%;
    margin-top: 10px;
    text-decoration: underline;
    color: #868686;
    text-align: center;
}
.btns-sold-out {
    opacity: 0.3;
}
.btns-sold-out::after {
    display: none;
}
.tf-pickup-availability {
    display: flex;
    gap: 10px;
}
.tf-pickup-availability a {
    font-size: 12px;
    line-height: 20px;
    text-decoration: underline;
}
.tf-pickup-availability-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.tf-pickup-availability-list .tf-pickup-availability-location {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}
.tf-pickup-availability-list .tf-pickup-availability {
    margin-top: 15px;
    margin-bottom: 20px;
}
.tf-pickup-availability-list .tf-btn {
    margin-top: 14px;
}
.tf-product-info-extra-link {
    display: flex;
    align-items: center;
    gap: 10px 30px;
    flex-wrap: wrap;
}
.tf-product-info-extra-link .tf-product-extra-icon {
    display: flex;
    gap: 8px;
    align-items: center;
}
.tf-product-info-extra-link .tf-product-extra-icon i {
    font-size: 18px;
}
.tf-product-info-extra-link .tf-product-extra-icon:hover {
    color: var(--primary);
}
.tf-product-delivery {
    padding: 30px 28px;
    text-align: center;
    display: flex;
    gap: 16px;
    flex-direction: column;
    border-radius: 2.5px;
    border: 1px solid var(--line);
}
.tf-product-delivery i {
    font-size: 29px;
}
.tf-product-order {
    display: flex;
    gap: 14px;
    align-items: center;
}
.tf-product-order .icon i {
    font-size: 24px;
}
.tf-product-info-trust-seal {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.tf-product-info-trust-seal .tf-product-trust-mess {
    display: flex;
    gap: 10px;
    align-items: center;
}
.tf-product-info-trust-seal .tf-product-trust-mess i {
    font-size: 21px;
    color: var(--main);
}
.find-size {
    text-decoration: underline !important;
    text-underline-offset: 5px;
    cursor: pointer;
}
.find-size:hover {
    color: var(--primary);
}
.variant-picker-item .variant-picker-label {
    margin-bottom: 15px;
}
.variant-picker-item .variant-picker-values {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.variant-picker-item .variant-picker-values input {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal !important;
}
.variant-picker-item .variant-picker-values input:checked + label {
    border-color: var(--main);
    box-shadow: 0 0.4rem 0.4rem #000 1a;
}
.variant-picker-item .variant-picker-values input:checked + label.style-text {
    background-color: var(--main);
}
.variant-picker-item .variant-picker-values input:checked + label.style-text p {
    color: var(--white);
}
.variant-picker-item .variant-picker-values input:checked + label.style-image {
    border-color: var(--main);
}
.variant-picker-item .variant-picker-values label {
    position: relative;
    width: 36px;
    height: 36px;
    text-align: center;
    padding: 5px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 400;
    line-height: 22.4px;
}
.variant-picker-item .variant-picker-values label:hover {
    border-color: var(--main);
}
.variant-picker-item .variant-picker-values label .btn-checkbox {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(134, 134, 134, 0.12);
}
.variant-picker-item .variant-picker-values label.style-text {
    min-width: 45px;
    height: 38px;
    width: max-content;
    border: 1px solid rgba(134, 134, 134, 0.12);
    border-radius: 3px;
    padding: 7px 15px;
}
.variant-picker-item .variant-picker-values label.style-text:hover {
    border-color: var(--main);
}
.variant-picker-item .variant-picker-values label.style-image {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(134, 134, 134, 0.12);
    border-radius: 3px;
    padding: 5px;
    width: 90px;
    height: unset;
}
.variant-picker-item .variant-picker-values label.style-image .image img {
    height: 112.5px;
}
.variant-picker-item .variant-picker-values label.style-image p {
    font-size: 12px;
    font-weight: 600;
    line-height: 19px;
    color: var(--main);
    margin-top: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
}
.variant-picker-item .variant-picker-values label.image-rounded {
    width: 40px;
    height: 40px;
}
.variant-picker-item .variant-picker-values label.image-rounded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}
.variant-picker-item .variant-picker-values label.sold-out {
    opacity: 0.5;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: line-through;
}
.variant-picker-item .variant-picker-values label.sold-out-line::after {
    content: "";
    width: 90%;
    height: 1px;
    background: #222;
    display: block;
    position: absolute;
    z-index: 22;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
.variant-picker-item .variant-picker-values label .tooltip {
    left: 50%;
    transform: translateX(-50%);
}
.variant-picker-item .variant-picker-values label.rectangle-color {
    display: flex;
    align-items: center;
    gap: 4px;
}
.variant-picker-item .variant-picker-values label.rectangle-color > span {
    width: 15px;
    height: 15px;
}
.tf-product-bundle-wrap {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 2.5px;
}
.tf-product-bundle-wrap > .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: var(--main);
    margin-bottom: 25px;
}
.tf-product-bundle-wrap .tf-btn {
    height: 49px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
}
.tf-bundle-product-item {
    display: flex;
    gap: 20px;
}
.tf-bundle-product-item.type-lg {
    gap: 37px;
    margin-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px dashed var(--line);
}
.tf-bundle-product-item.type-lg img {
    width: 160px;
    min-width: 160px;
    max-width: unset;
    max-height: 223px;
}
.tf-bundle-product-item.type-lg .tf-product-bundle-title {
    margin-bottom: 10px;
}
.tf-bundle-product-item.type-lg .tf-product-bundle-price {
    margin-bottom: 17px;
}
.tf-product-bundle-image img {
    width: 83px;
    min-width: 83px;
    max-width: 83px;
    border-radius: 2.5px;
}
.tf-product-bundle-infos > a:hover {
    color: var(--primary);
}
.tf-product-bundle-infos .tf-product-bundle-title {
    margin-bottom: 5px;
}
.tf-product-bundle-infos .tf-product-bundle-variant {
    margin-bottom: 10px;
}
.tf-product-bundle-infos .tf-product-bundle-variant select {
    height: 40px;
}
.tf-product-bundle-infos .tf-product-bundle-price {
    display: flex;
    gap: 5px;
}
.tf-product-bundle-infos .tf-product-bundle-price .compare-at-price {
    color: var(--main);
    text-decoration: line-through;
}
.tf-product-bundle-infos .tf-product-bundle-price .price-on-sale {
    font-weight: 600;
    color: var(--primary);
}
.tf-product-bundle-infos .tf-product-bundle-price .price {
    font-weight: 600;
    color: var(--main);
}
.tf-product-bundle-total-submit {
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
}
.tf-product-bundle-total-submit .text {
    margin-right: 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: var(--main);
}
.tf-product-bundle-total-submit .compare-at-price {
    margin-right: 10px;
    font-size: 28px;
    font-weight: 400;
    line-height: 45px;
    color: var(--primary);
}
.tf-product-bundle-total-submit .price-on-sale {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.55);
    text-decoration: line-through;
}
.tf-bundle-check input {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal !important;
}
.tf-bundle-check input:checked + label {
    background-color: var(--primary);
    border-color: var(--primary);
}
.tf-bundle-check input:checked + label i {
    transform: scale(1);
}
.tf-bundle-check label {
    width: 19px;
    height: 19px;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.tf-bundle-check label i {
    display: block;
    color: var(--white);
    transform: scale(0);
    transition: 0.25s ease-in-out;
    font-size: 8px;
}
.item-has-checkox {
    opacity: 0.2;
}
.item-has-checkox.check {
    opacity: 1;
}
.tf-product-fbt-wrap {
    margin-top: 50px;
}
.tf-product-fbt-wrap > .title {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: var(--main);
    margin-bottom: 40px;
}
.tf-product-fbt-wrap form {
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
}
.tf-product-fbt-wrap form .tf-product-fbt-list {
    display: flex;
    gap: 8px;
    align-items: center;
    min-width: max-content;
}
.tf-product-fbt-wrap form .tf-product-fbt-list img {
    width: 122px;
    max-width: 122px;
    height: 170.5px;
    object-fit: cover;
}
.tf-product-fbt-wrap form .tf-product-fbt-list .tf-product-fbt-plus {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
}
.tf-product-fbt-wrap form .tf-fbt-swatches {
    margin-top: 22px;
    margin-bottom: 22px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos:not(:last-child) {
    margin-bottom: 12px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos .tf-bundle-check {
    margin-right: 5px;
}
.tf-product-fbt-wrap form .tf-product-bundle-infos .tf-product-bundle-variant, .tf-product-fbt-wrap form .tf-product-bundle-infos .tf-product-bundle-title {
    margin-bottom: 0;
    margin-right: 20px;
}
.tf-product-fbt-wrap form .tf-fbt-col-total-price {
    padding: 40px 20px;
    background-color: #f2f2f2;
    height: max-content;
}
.tf-product-fbt-wrap form .tf-fbt-col-total-price .text {
    width: 100%;
}
.tf-product-fbt-wrap form .tf-fbt-col-total-price .tf-btn {
    height: 49px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
}
.tf-product-inventory svg {
    color: #428445;
}
.tf-progress-bar {
    height: 4px;
    width: 100%;
    background-color: var(--line);
    position: relative;
}
.tf-progress-bar span {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary);
    border-radius: 3px;
}
.tf-progress-bar .progress-car {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 26px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 2.5px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tf-product-notify-stock {
    padding: 36px;
    border: 1px solid var(--main);
}
.tf-product-notify-stock .tf-product-notify-stock-heading {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--main);
}
.tf-product-notify-stock .tf-product-notify-stock-heading div {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--main);
}
.tf-product-notify-stock p {
    margin-bottom: 20px;
}
.tf-product-notify-stock input, .tf-product-notify-stock select {
    width: 100%;
    margin-bottom: 20px;
    height: 50px;
}
.tf-qol-head {
    display: flex;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.tf-qol-head > div {
    width: 25%;
}
.tf-qol-head p {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}
.tf-quick-order-list-total {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
}
.tf-quick-order-list-total .tf-total-wrap {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    display: flex;
    background-color: var(--white);
}
.tf-quick-order-list-total .tf-total-wrap > div {
    width: 25%;
}
.tf-quick-order-list-total .tf-total-item-inner {
    width: 109px;
    text-align: center;
}
.tf-quick-order-list-total .tf-total-price {
    text-align: end;
}
.tf-quick-order-list-total .tf-total-price .price {
    font-size: 18px;
    line-height: 29px;
}
.tf-quick-order-list-total .tf-total-price p {
    color: var(--text);
}
.tf-quick-order-list-total .tf-total-price a {
    color: var(--text);
    text-decoration-line: underline;
    text-underline-offset: 3px;
}
.tf-quick-order-list-total .tf-total-price a:hover {
    color: var(--main);
    text-decoration-thickness: 2px;
}
.tf-variant-item:not(:last-child) {
    border-bottom: 1px dashed var(--line);
}
.tf-variant-item > * {
    width: 25%;
    padding: 17px 0;
}
.tf-variant-item .tf-variant-item-media {
    display: flex;
    gap: 18px;
    align-items: center;
}
.tf-variant-item .tf-variant-item-media .tf-variant-item-image-container {
    width: 80px;
    height: 111.7px;
}
.tf-variant-item .tf-variant-item-media .tf-variant-item-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tf-variant-item .tf-price-list {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
}
.tf-variant-item .tf-price-list .price-on-sale {
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    color: rgba(0, 0, 0, 0.55);
    text-decoration: line-through;
}
.tf-variant-item .tf-price-list .compare-at-price {
    font-weight: 600;
    color: var(--primary);
    line-height: 13px;
}
.wrap-btn-viewer {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.wrap-btn-viewer i {
    font-size: 20px;
}
.wrap-btn-viewer.style-video .icon {
    width: 20px;
    height: 20px;
    padding-left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 2px solid var(--main);
    border-radius: 50%;
}
.wrap-btn-viewer.style-video .icon i {
    font-size: 8px;
}
.tf-product-btn-wishlist {
    width: 49px;
    height: 49px;
    flex-shrink: 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    cursor: pointer;
}
.tf-product-btn-wishlist .icon, .tf-product-btn-wishlist i {
    font-size: 18px;
    color: var(--main);
}
.tf-product-btn-wishlist:hover {
    border-color: var(--main);
}
.tf-product-btn-wishlist .tooltip {
    top: -100%;
    margin-top: 5px;
}
.tf-product-btn-wishlist .tooltip::before {
    top: unset;
    bottom: -4px;
}
.btn-icon-action > *:last-child {
    display: none;
}
.btn-icon-action.active > *:first-child {
    display: none;
}
.btn-icon-action.active > *:last-child {
    display: block;
}
.wg-quantity {
    width: 127px;
    display: flex;
    justify-content: space-between;
    background-color: #f2f2f2;
    border-radius: 3px;
    overflow: hidden;
}
.wg-quantity input {
    width: 51px;
    height: 46px;
    padding: 0;
    background-color: transparent;
    border: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--main);
}
.wg-quantity .btn-quantity {
    width: 38px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--main);
    cursor: pointer;
}
.wg-quantity .btn-quantity:hover {
    color: var(--primary);
}
.wg-quantity.small {
    width: 109px;
    height: 30px;
}
.wg-quantity.small .btn-quantity {
    width: 27px;
    height: 30px;
    font-size: 20px;
}
.wg-quantity.small input {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
}
@keyframes tf-ani-flash {
    50%, from, to {
        opacity: 1;
   }
    25%, 75% {
        opacity: 0;
   }
}
.tf-product-des-demo {
    display: block;
    /* display: grid; */
    /* gap: 30px;
    grid-template-columns: 4fr 8fr; */
}
.tf-product-des-demo h3 {
    margin-bottom: 22px;
    line-height: 19px;
}
.tf-product-des-demo ul {
    margin-top: 15px;
    margin-bottom: 30px;
}
.tf-product-des-demo ul li {
    color: var(--text-2);
    line-height: 25px;
    position: relative;
     margin-left: 20px;
    padding-left: 20px;
    list-style-type: circle;
}
.tf-product-des-demo ul li:not(:last-child) {
    margin-bottom: 15px;
}
/* .tf-product-des-demo ul li::before {
    position: absolute;
    content: "";
    left: 5px;
    left: 0;
    top: 12%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--text-2);
    width: 4px;
    height: 4px;
    border-radius: 50%;
} */
.tf-product-des-demo .left .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--main);
}
.tf-product-des-demo .left .icon i {
    font-size: 12px;
}
.tf-product-des-demo .left span {
    color: var(--text-2);
}
.tf-pr-attrs {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    border-radius: 5px;
    border-style: hidden;
    /* box-shadow: 0 0 0 0.1rem var(--line); */
    color: var(--text-2);
}
.tf-pr-attrs tr {
    border: 1px solid var(--line);
    vertical-align: middle;
}
.tf-pr-attrs tr th {
    padding: 10px;
    border-right: 1px solid var(--line);
    font-weight: 700;
}
.tf-pr-attrs tr td {
    padding: 10px;
}
.tf-page-privacy-policy .title {
    margin-bottom: 26px;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
}
.tf-page-privacy-policy p {
    margin-bottom: 24px;
    line-height: 24px;
    color: var(--text-2);
}
.tf-page-privacy-policy p:last-child {
    margin-bottom: 0;
}
.stagger-wrap .stagger-item {
    transition: 0.3s ease-in-out;
    transform: scale(0.5) rotate(90deg) skew(15deg);
    opacity: 0;
}
.stagger-wrap .stagger-item.stagger-finished {
    transform: scale(1) rotate(0deg) skew(0deg);
    opacity: 1;
}
.card-product .product-img {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    align-items: stretch;
}
.card-product .card-product-wrapper {
    border: solid #f1f1f1 1px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    z-index: 20;
}
.card-product .card-product-wrapper .sold-out {
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-11);
    border-radius: 999px;
    height: 73px;
    width: 73px;
    padding: 0 5px;
}
.card-product .card-product-wrapper .sold-out span {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    background-color: var(--bg-11);
    position: relative;
    z-index: 12;
}
.card-product .card-product-wrapper .sold-out::after {
    height: 1px;
    width: calc(100% - 16px);
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    content: "";
    background-color: var(--main);
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.card-product .card-product-wrapper img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.card-product .card-product-wrapper .img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.card-product .card-product-wrapper:hover .product-img .img-product {
    opacity: 0;
}
.card-product .card-product-wrapper:hover .product-img .img-hover {
    display: block;
    z-index: 1;
    opacity: 1;
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
}
.card-product .card-product-wrapper .size-list {
    position: absolute;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
}
.card-product .card-product-wrapper .list-product-btn {
    z-index: 10;
    position: absolute;
    bottom: 48px;
    left: 15px;
    right: 15px;
}
.card-product .card-product-wrapper .list-product-btn.absolute-2 {
    bottom: 25px;
}
.card-product .card-product-wrapper .list-product-btn.absolute-3 {
    bottom: 57px;
}
.card-product .card-product-wrapper .on-sale-wrap {
    position: absolute;
    top: 5px;
    right: 5px;
    left: 5px;
    z-index: 5;
}
.card-product .card-product-wrapper .on-sale-wrap .on-sale-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    word-break: break-word;
    padding: 0 6px;
    min-width: 40px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 22px;
    position: relative;
    background-color: #fc5732;
    color: var(--white);
    border-radius: 999px;
}
.card-product .card-product-wrapper .on-sale-wrap .new {
    background-color: #ff3232;
}
.card-product .card-product-wrapper .on-sale-wrap .best-seller {
    background-color: #44ad55;
}
.card-product .card-product-wrapper .on-sale-wrap .recommend {
    background-color: #bea36e;
}
.card-product .card-product-wrapper .on-sale-wrap .pre-order {
    background-color: #55a653;
    color: var(--white);
}
.card-product .card-product-wrapper .column-left {
    bottom: unset !important;
    right: unset !important;
    top: 15px;
}
.card-product .card-product-wrapper .column-right {
    bottom: unset !important;
    left: unset !important;
    top: 15px;
}
.card-product .btn-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
    z-index: 12;
    height: 32px;
    background-color: var(--main);
    color: var(--white);
    font-size: 12px;
    line-height: 32px;
    font-weight: 700;
}
.card-product .card-product-info {
    padding-top: 10px;
    gap: 8px;
    display: grid;
}
.card-product .card-product-info .title {
    font-size: 16px;
    min-height: 39px;
    line-height: 19.2px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.card-product .card-product-info .price {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}
.card-product .card-product-info .old-price {
    text-decoration: line-through;
    display: inline-block;
    margin-right: 5px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}
.card-product .card-product-info .new-price {
    color: var(--red_1);
}
.card-product .card-product-info.has-padding {
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 30px;
}
.card-product .countdown-box {
    position: absolute;
    z-index: 3;
    left: 5px;
    right: 5px;
    text-align: center;
    pointer-events: none;
    transition: 0.4s ease-out 0s;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    max-height: 40px;
    background-color: var(--white);
    border-radius: 3px;
}
.card-product .countdown-box .countdown__timer {
    display: flex;
    gap: 4px;
}
.card-product .countdown-box .countdown__item {
    font-size: 14px;
    line-height: 22.4px;
    color: var(--primary);
    font-weight: 600;
}
.card-product .description {
    display: none;
    font-size: 14px;
    line-height: 22.4px;
    margin-top: 2px;
}
.card-product.none-hover .card-product-wrapper:hover .img-product {
    opacity: 1;
}
.card-product.none-hover .card-product-wrapper:hover .img-hover {
    display: none;
}
.card-product.style-4 .size-list {
    transition: 0.4s ease 0.1s;
}
.card-product.style-5 .list-product-btn .box-icon {
    border-radius: 0;
}
.card-product.style-5 .list-product-btn .box-icon:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.card-product.style-5 .list-product-btn .box-icon:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.card-product.style-6 .btn-quick-add {
    position: relative;
    border-radius: 3px;
    background-color: var(--white);
    color: var(--main);
    border: 1px solid var(--main);
    box-shadow: 0 8px 24px #959da5 33;
}
.card-product.style-6 .btn-quick-add:hover {
    background-color: var(--main);
    color: var(--white);
}
.card-product.style-7 .btn-quick-add {
    position: relative;
    box-shadow: 0 8px 24px #959da5 33;
    border-radius: 3px;
}
.card-product.style-7 .card-product-info {
    padding-top: 5px;
    transition: 0.4s ease 0s;
    position: relative;
    padding-bottom: 6px;
}
.card-product.style-8 {
    border: 1px solid var(--line-2);
    border-radius: 10px;
    padding: 5px 5px 20px;
}
.card-product.style-8 .card-product-info {
    padding-left: 5px;
    padding-right: 5px;
}
.card-product.style-8 .card-product-info .tf-btn {
    justify-content: center;
    border: 1px solid var(--line-2);
    font-size: 12px;
    line-height: 42px;
    font-weight: 700;
    background-color: var(--white);
    padding: 0 10px;
    border-radius: 999px;
}
.card-product.style-8 .card-product-info .tf-btn:hover {
    background-color: var(--main);
    color: var(--white);
}
.card-product.style-8 .progress {
    --bs-progress-height: 6px;
    --bs-progress-bar-bg: #db1215;
    --bs-progress-bg: #ececec;
    --bs-progress-border-radius: 3px;
}
.card-product.style-8 .pr-stock-status {
    margin-top: 5px;
}
.card-product.style-8 .pr-stock-status span {
    font-size: 14px;
    line-height: 22.4px;
}
.card-product.list-layout {
    display: flex;
    gap: 15px;
}
.card-product.list-layout .card-product-wrapper {
    max-width: 338px;
    width: 35%;
}
.card-product.list-layout .card-product-info {
    flex: 1 1 auto;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
    max-width: 60%;
}
.card-product.list-layout .list-product-btn {
    margin-top: 10px;
}
.card-product.list-layout .list-color-product {
    margin-top: 10px;
}
.card-product.list-layout .size-list {
    background-color: transparent;
    height: auto;
}
.card-product.list-layout .size-list span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--main);
    gap: 10px;
}
.card-product.list-layout:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--line-2);
}
.card-product.style-price {
    background-color: var(--bg-2);
}
.card-product.style-price .card-product-info {
    padding: 26px 37px 0;
    gap: 10px;
}
.card-product.style-price .card-product-info .vendor {
    color: #545454;
    line-height: 17px;
}
.card-product.style-price .card-product-info .title {
    font-size: 20px;
}
.card-product.style-price .card-product-info .price {
    font-size: 20px;
    line-height: 20px;
    margin-top: 6px;
}
.card-product.style-price .card-product-info ul {
    margin-top: 6px;
}
.card-product.style-price .tf-price-table-contents {
    padding: 20px 37px 48px 37px;
}
.card-product.style-price .tf-price-table-contents ul {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 18px;
    flex-direction: column;
}
.card-product.style-price .tf-price-table-contents ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 26px;
    color: #545454;
}
.card-product.style-price .tf-price-table-contents ul li .icon {
    font-size: 12px;
    color: #303030;
}
.card-product.style-price .tf-price-table-contents .tf-price-table-btn {
    margin-top: 38px;
}
.card-product.style-price.bg_black {
    background-color: #141414;
}
.card-product.style-price.bg_black .tf-price-table-contents ul li, .card-product.style-price.bg_black .tf-price-table-contents .icon, .card-product.style-price.bg_black .vendor, .card-product.style-price.bg_black .title, .card-product.style-price.bg_black .price {
    color: var(--white);
}
.card-product.style-price.bg_black .tf-price-table-contents ul {
    border-top-color: #333;
}
.card-product.style-price.bg_black .list-color-product .list-color-item.active, .card-product.style-price.bg_black .list-color-product .list-color-item:hover {
    border-color: var(--white);
}
.card-product.style-price.bg_blue-6 .tf-price-table-contents ul li, .card-product.style-price.bg_blue-6 .tf-price-table-contents .icon, .card-product.style-price.bg_blue-6 .vendor, .card-product.style-price.bg_blue-6 .title, .card-product.style-price.bg_blue-6 .price {
    color: var(--white);
}
.card-product.style-price.bg_blue-6 .tf-price-table-btn a {
    background-color: var(--white);
    color: #1c355e;
}
.card-product.style-price.bg_blue-6 .tf-price-table-contents ul {
    border-top-color: #fff;
}
.card-product.style-price.bg_blue-6 .list-color-product .list-color-item.active, .card-product.style-price.bg_blue-6 .list-color-product .list-color-item:hover {
    border-color: var(--white);
}
.card-product.style-price.bg_blue-6 .list-color-product .list-color-item.active .swatch-value, .card-product.style-price.bg_blue-6 .list-color-product .list-color-item:hover .swatch-value {
    border-color: #1c355e;
}
.card-product.style-price.bg_blue-6 .list-product-btn .box-icon {
    color: #1c355e;
}
.card-product.style-price.bg_blue-6 .list-product-btn .box-icon:hover {
    background-color: #1c355e !important;
    color: var(--white);
}
.card-product.style-skincare {
    background-color: var(--white);
    border-radius: 10px;
}
.card-product.style-skincare .card-product-info {
    padding: 20px 0;
}
.card-product.style-skincare .tf-size-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.card-product.style-skincare .tf-size-list .tf-size-list-item {
    font-size: 12px;
    line-height: 30px;
    border: 1px solid var(--line);
    padding: 0px 10px;
}
.card-product.style-skincare .tf-size-list .tf-size-list-item:hover {
    border-color: var(--main);
}
.card-product.style-skincare .tf-product-btns {
    margin-top: 15px;
}
.card-product.style-giftcard {
    padding: 10px;
    border: 1px solid var(--line);
}
.card-product.style-giftcard .card-product-info {
    padding: 16px 13.5px 23.5px;
}
.card-product.style-giftcard .card-product-info .price span {
    font-size: 10px;
    line-height: 10px;
}
.card-product.style-giftcard .tf-product-btns a {
    border: 2px solid var(--primary);
    line-height: 40px;
}
.card-product.style-line-hover .card-product-wrapper {
    border-radius: 0;
    border: 1px solid var(--main);
}
.card-product.style-line-hover .card-product-wrapper:hover .img-hover {
    -webkit-transform: unset;
    transform: unset;
}
.card-product.style-line-hover .card-product-wrapper img {
    transition: all 0.3s ease;
}
.card-product.type-line-padding {
    border: 1px solid var(--line);
    padding: 20px 10px;
}
.card-product.type-line-padding-2 {
    border: 1px solid var(--line);
    padding: 10px;
}
.card-product.type-line-padding-2 .card-product-info {
    padding-bottom: 10px;
}
.card-product.style-brown .list-product-btn .box-icon {
    color: #85715e;
}
.card-product.style-brown .list-product-btn .box-icon:hover {
    background-color: #85715e !important;
    color: var(--white);
}
.card-product.style-brown .list-color-item.active, .card-product.style-brown .list-color-item:hover {
    border-color: var(--white);
}
.card-product.style-brown .list-color-item.active .swatch-value, .card-product.style-brown .list-color-item:hover .swatch-value {
    border-color: #85715e;
}
.list-color-product {
    display: flex;
    gap: 8.5px;
    margin-top: 2px;
    flex-wrap: wrap;
}
.list-color-product .list-color-item {
    width: 26px;
    height: 26px;
    padding: 3px;
    border: solid 1px #000;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}
.list-color-product .list-color-item .swatch-value {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 50%;
    border: 3px solid transparent;
}
.list-color-product .list-color-item .sold-out::after {
    content: "";
    width: 90%;
    height: 1px;
    background: #222;
    display: block;
    position: absolute;
    z-index: 22;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
.list-color-product .list-color-item img {
    visibility: hidden;
    width: 18px;
    height: 18px;
    position: absolute;
}
.list-color-product .list-color-item.active, .list-color-product .list-color-item:hover {
    border-color: var(--main);
}
.list-color-product .list-color-item.active .swatch-value, .list-color-product .list-color-item:hover .swatch-value {
    border-color: var(--white);
}
.list-color-product .list-color-item:hover .tooltip {
    opacity: 0.9;
    visibility: visible;
}
.bg-multiple-color {
    background-repeat: no-repeat;
    background-size: calc(100% + 10px) calc(100% + 10px) !important;
    transition: border 0.25s ease;
    transform: rotateZ(45deg);
    border: solid 1px transparent;
    background: none;
    background-position: center !important;
}
.green-black {
    background: conic-gradient(#000 0deg 180deg, #83b735 180deg 360deg);
}
.yellow-black {
    background: conic-gradient(#000 0deg 180deg, #d5e52e 180deg 360deg);
}
.blue-black {
    background: conic-gradient(#1555d4 0deg 180deg, #000 180deg 360deg);
}
.blue-white {
    background: conic-gradient(#fff 0deg 180deg, #1555d4 180deg 360deg);
}
.red-black {
    background: conic-gradient(#f63400 0deg 180deg, #000 180deg 360deg);
}
.white-striped {
    background: conic-gradient(#fff 0deg 180deg, #000 180deg 360deg);
}
.tooltip {
    z-index: 202;
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: 100%;
    margin-top: 8px;
    border-radius: 2px;
    white-space: nowrap;
    background-color: var(--main);
    color: var(--white);
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    padding: 7px 10px 9px;
    max-width: 250px;
    width: max-content;
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
}
.tooltip::before {
    content: "";
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    top: -4px;
    position: absolute;
    background: var(--main);
    width: 8px;
    height: 8px;
    z-index: 100;
}
.hover-tooltip {
    position: relative;
}
.hover-tooltip:hover .tooltip {
    opacity: 0.9;
    visibility: visible;
}
.hover-tooltip.center .tooltip {
    left: 50%;
    transform: translateX(-50%);
}
.size-list {
    background-color: rgba(0, 0, 0, 0.3);
    gap: 10px;
    height: 30px;
    text-align: center;
    transition: 0.4s ease 0.1s;
}
.size-list span {
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    color: #f2f2f2;
}
.size-list.style-2 {
    height: 33px;
    gap: 5px;
    background-color: var(--white);
}
.size-list.style-2 span {
    color: var(--main);
    min-width: 30px;
    height: 26px;
    border-radius: 3px;
    border: 1px solid #ececec;
}
.size-list.style-3 {
    background-color: rgba(255, 255, 255, 0.5);
}
.size-list.style-3 span {
    color: var(--main);
}
.list-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.list-product-btn .box-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 3px;
    box-shadow: 0 8px 24px #959da5 33;
    background-color: #f2f2f2;
    position: relative;
}
.list-product-btn .box-icon .icon {
    font-size: 14px;
    font-weight: 500;
    height: 13px;
}
.list-product-btn .box-icon .text {
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: auto;
    line-height: 32px;
}
.list-product-btn .box-icon .tooltip {
    top: -100%;
    margin-top: 5px;
}
.list-product-btn .box-icon .tooltip::before {
    top: unset;
    bottom: -4px;
}
.list-product-btn .box-icon.style-2 {
    gap: 8px;
    width: auto;
    padding: 0 10px;
    background-color: var(--white);
}
.list-product-btn .box-icon.style-3 {
    box-shadow: none;
    background-color: var(--white);
    border: 1px solid var(--line-2);
}
.list-product-btn .box-icon:hover {
    background-color: var(--main) !important;
    color: var(--white);
}
.list-product-btn .box-icon:hover .tooltip {
    opacity: 0.9;
    visibility: visible;
}
.list-product-btn.column-left {
    flex-direction: column;
    gap: 5px;
}
.list-product-btn.column-left .tooltip {
    left: 100%;
    margin-left: 5px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.list-product-btn.column-left .tooltip::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: -4px;
    bottom: unset;
}
.list-product-btn.column-right {
    flex-direction: column;
    gap: 5px;
}
.list-product-btn.column-right .tooltip {
    right: 100%;
    margin-right: 5px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.list-product-btn.column-right .tooltip::before {
    top: 50%;
    left: unset;
    transform: translateY(-50%) rotate(45deg);
    right: -4px;
    bottom: unset;
}
.list-product-btn.type-wishlist {
    top: 15px;
    left: unset !important;
    bottom: unset !important;
}
.list-product-btn.type-wishlist .tooltip {
    top: unset;
    left: unset;
    right: 115%;
    bottom: unset;
    margin: 0 !important;
}
.list-product-btn.type-wishlist .tooltip::before {
    top: 50%;
    left: unset;
    right: -4px;
    bottom: unset;
    transform: translate(0, -50%) rotate(45deg);
}
.list-product-btn.style-black .box-icon {
    background-color: var(--main) !important;
    color: var(--white);
}
.list-product-btn.style-black .box-icon:hover {
    background-color: var(--white) !important;
    color: var(--main);
}
.list-product-btn.style-blue .box-icon {
    background-color: #1c355e !important;
    color: var(--white);
}
.list-product-btn.style-blue .box-icon:hover {
    background-color: var(--white) !important;
    color: #1c355e;
}
[data-grid="grid-6"] .card-product .countdown-box {
    padding: 5px;
}
[data-grid="grid-6"] .card-product .countdown-box .countdown__item {
    font-size: 12px;
    line-height: 19.2px;
}
.wrapper-shop .card-product {
    margin-bottom: 15px;
}
.tf-sticky-btn-atc {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 70;
    box-shadow: 4px -4px 5px #000;
    background-color: var(--white);
    transition: all 0.3s linear;
}
.tf-sticky-btn-atc .tf-height-observer {
    padding: 10px 0;
    column-gap: 5px;
}
.tf-sticky-btn-atc .tf-sticky-atc-product {
    flex: 1 0 0%;
    gap: 15px;
}
.tf-sticky-btn-atc .tf-sticky-atc-img {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}
.tf-sticky-btn-atc .tf-sticky-atc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.tf-sticky-btn-atc .tf-sticky-atc-title {
    font-size: 16px;
    line-height: 19px;
}
.tf-sticky-btn-atc .tf-sticky-atc-btns, .tf-sticky-btn-atc .tf-sticky-atc-infos form {
    display: flex;
    gap: 12px;
}
.tf-sticky-btn-atc .tf-btn {
    min-width: 190px;
}
