.upsales .slick-list, .upsales .slick-slider, .slick-track {
    position: relative;
    display: block
}

.upsales .slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.upsales .slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.upsales .slick-list:focus {
    outline: 0
}

.upsales .slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.upsales .slick-slider .slick-list, .upsales .slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.upsales .slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.upsales .slick-track:after, .upsales .slick-track:before {
    display: table;
    content: ''
}

.upsales .slick-track:after {
    clear: both
}

.upsales .slick-loading .slick-slide, .upsales .slick-loading .slick-track {
    visibility: hidden
}

.upsales .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

.upsales [dir=rtl] .slick-slide {
    float: right
}

.upsales .slick-initialized .slick-slide, .upsales .slick-slide img {
    display: block
}

.upsales .slick-arrow.slick-hidden, .upsales .slick-slide.slick-loading img {
    display: none
}

.upsales .slick-slide.dragging img {
    pointer-events: none
}

.upsales .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.upsales .slick-dots {
    height: 20px;
    text-align: center;
    margin-top: 25px;
}

.upsales .slick-dots:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    width: 0;
    visibility: hidden;
}

.upsales .slick-dots li {
    display: inline-block;
    vertical-align: top;
    padding: 0 6px;
    overflow: hidden;
}

.upsales .slick-dots li button {
    display: block;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
    background: none;
    border: 2px solid #000000;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.upsales .slick-dots li.slick-active button {
    background: #000000;
}

/* upsells */
section.upsales {
    position: relative;
    width: 100%;
}

section.upsales h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
}

.upsales-wrapper {
    position: relative;
}

.upsales .upsale-product {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    height: 100%;
    justify-content: space-between;
}

.upsales .product-name {
    font-weight: bold;
}

.upsales .product-image {
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.upsales .upsales-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upsales .upsales-arrow {
    width: 30px;
    height: 30px;
    background-color: #99b9f1;
    border-radius: 3px;
    cursor: pointer;
}

.upsales .arrow-prev img {
    transform: rotate(180deg);
}

.upsales .upsale-add {
    /*opacity: 0;*/
    width: 60px;
    height: 30px;
    /*border: 1px solid #FF0000FF;*/
    margin: 0 auto;
    display: block;
    position: relative;
    cursor: pointer;
}

.upsales .upsale-add input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.upsales .upsale-add span {
    display: block;
    position: relative;
}

.upsales .upsale-add span:before {
    content: '';
    display: inline-block;
    position: relative;
    width: 56px;
    height: 26px;
    border: 2px solid #FF0000FF;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.upsales .upsale-add span:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border: 2px solid #FF0000FF;
    background-color: #FF0000FF;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.upsales .upsale-add input:checked + span:before {
    border-color: #41916a;
}

.upsales .upsale-add input:checked + span:after {
    border-color: #41916a;
    background-color: #41916a;
    transform: translateX(100%);
}

.upsales .upsale-old-price {
    text-decoration: line-through;
}

.upsales .upsale-new-price {
    color: #41916a;
}

.call-button {
    position: fixed;
    bottom: 60px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #41916a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: 1s infinite alternate move;
}

.call-button:after {
    content: '';
    width: 120%;
    height: 120%;
    background-color: #41916a;
    opacity: 0.4;
    position: absolute;
    border-radius: 50%;
    animation: 1s infinite alternate pulse;
}

.call-button svg {
    width: 50px;
    height: 50px;
}

@keyframes move {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* upsells */