.sk-custom-html-carousel {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sk-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 840px;
    margin-bottom: 20px;
    overflow: hidden;
}
.sk-carousel-container{
    display: flex;
}
.sk-carousel-row{
    display: flex;
    flex-direction: row;
}
.sk-carousel-item {
    box-sizing: border-box;
    text-align: center;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;
}

.sk-carousel-dots {
    transform: translateX(-50%);
    display: flex;
}

.sk-carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #888;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.sk-carousel-dot.active {
    background-color: #ffdd00;
}
.sk-carousel-prev, .sk-carousel-next{
    padding: 20px;
    cursor: pointer;
}
.sk-arrow{
    fill: #969696;
}
.flip-card {
    background-color: transparent;
    width: 280px;
    height: 320px;
    overflow: hidden;
}

.sk-anim-slideUp {
    animation-name: slideUp;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-duration: calc(500ms);
}

.sk-selected{
    font-weight: 600;
}

@keyframes slideUp {
    0% {
        transform: matrix(1, 0, 0, 1, 0, 20);
        opacity: 0;
    }

    100% {
        transform: matrix(1, 0, 0, 1, 0, 0);
        opacity: 1;
    }
}

.sk-catalog-item{
    position: relative;
}

.sk-item-category-name{
    position: absolute;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    width: calc(100% - 19.8px);
    font-family: Rajdhani;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
}

.sk-item-category-name.diesel{
    background-color: #d99c33;
}

.sk-item-category-name.benzina{
    background-color: #3fa535;
}

.sk-item-category-name.gpl{
    background-color: #006d5c;
}

.sk-item-category-name.olio{
    background-color: #cd1719;
}

.sk-item-category-name.radiatori{
    background-color: #2c4a9a;
}

.sk-catalog-prodbkgr {
    position: absolute;
    min-height: 100%;
}

.sk-catalog-img-container{
    height: 100px;
}
.sk-catalog-prodimg {
    max-height: 190px;
    z-index: 1;
    position: relative;
    top: -72px;
}

.sk-catalog-textbg {
    z-index: 0;
    width: 100%;
    height: 138px;
}

.sk-additives-catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sk-additives-products {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.sk-catalog-prodcats {
    display: flex;
    flex-direction: row;
}

.sk-catalog-prodcats .sk-cat {
    background-color: transparent;
    border: 0;
    color: black;
    padding: 15px 40px;
    margin: 0px 20px;
    font-family: Rajdhani;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    text-transform: uppercase;
}

.sk-catalog-prodcats .sk-cat:hover {
    font-weight: 600;
}

.sk-catalog-prodname {
    text-align: left;
    font-family: Rajdhani;
    font-weight: 500;
    font-size: 28px;
    line-height: 30px;
    width: 85%;
    margin: 10px 10px 5px 20px;
}

.flip-card-back .sk-catalog-prodname{
    font-weight: bold;
}

.sk-catalog-shortdesc {
    text-align: left;
    z-index: 0;
    font-family: Rajdhani;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin: 0px 20px 10px 20px;
}

.sk-catalog-proddesc {
    text-align: left;
    font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    margin: 0px 20px 10px 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #bbb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}
.flip-card-inner:hover .flip-card-back {
    bottom: 0;
}
.flip-toggle{
    bottom: 0;
}
.flip-card-back {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: bottom 0.4s ease-in-out;
    z-index: 2;
    background-color: White;
    color: black;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-direction: column;
}

.sk-catalog-prodbtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: black;
    font-family: Rajdhani;
    font-size: 14px;
    padding: 2px 8px;
    border: 1px solid black;
    margin: 0px 20px 10px 20px;
    width: 55%;
}

.sk-catalog-prodbtn:hover {
    background-color: black;
    color: white;
    fill: white;
}
.sk-catalog-item-tab{
    position: absolute;
    bottom: 8px;
}

.sk-catalog-prodbtn .sk-arrow-icon {
    width: 10px;
}

.sk-compare-info{
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    gap: 5px;
    align-items: center;
}

.sk-custom-html-carousel .sk-prod-compare{
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-family: Rajdhani;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 20px;
}

.sk-prod-compare input[type="checkbox"]{
    z-index: -1;
    width: 20px;
    height: 20px;
}
.sk-prod-compare input[type="checkbox"]:checked{
    accent-color: black;
}

@media (max-width: 768px) {
    .sk-custom-html-carousel .sk-prod-compare{
        margin-bottom: 35px;
    }
    .sk-carousel-wrapper {
        width: 280px;
    }
    .sk-carousel-prev, .sk-carousel-next{
        padding: 10px;
    }
    .sk-carousel-dots {
        transform: none;
    } 
    .sk-item-category-name{
        height: 28px;
        font-size: 14px;
        line-height: 17px;
    }
    .sk-catalog-textbg {
        height: 148px;
    }
    .sk-catalog-item-tab{
        bottom: 15px;
    }
}