.twc-pa-form {
    width: 100%;
}
.twc-pa-product-body {
    display: flex;
    gap: 15px;
    width: 100%;
    min-height: 200px;
    align-items: center;
    justify-content:  center;
}
.twc-pa-body{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.twc-pa-single-product {
    width: 100%;
    max-width: 24.25%;
}
.twc-pa-single-product-img {
    aspect-ratio: 1;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.twc-pa-single-product-inner-img {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
.twc-pa-single-product-inner-img:hover {
    backdrop-filter: blur(10px);
}

.twc-pa-single-product-inner-img:hover span:not(.twc-pa-quantity-product) {
    display: flex;
}

.twc-pa-single-product-inner-img > span {
    font-family: dashicons;
    font-size: 24pt;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}

.twc-pa-quantity-product::before{
    content: "";
}

.twc-pa-add-product{
    padding-right: 5%;
    color: green;
}
.twc-pa-subtract-product{
    padding-left: 5%;
    color: red;
}
.twc-pa-quantity-product{
    user-select: none;
    padding-bottom: 10px;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    font-weight: 700;
}

.twc-pa-add-product:hover{
    color: rgb(1, 85, 1);
}
.twc-pa-subtract-product:hover{
    color: rgb(158, 0, 0);
}

.twc-pa-single-product-inner-img .twc-pa-add-product::before{
    content: "\f10f"
}

.twc-pa-single-product-inner-img .twc-pa-subtract-product::before{
    content: "\f14f"
}

.twc-pa-add-product.twc-pa-added-product {
    backdrop-filter: blur(10px);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.twc-pa-total-calculation {
    width: 100%;
    margin-bottom: 15px;
}
.wc-pao-addons-container {
    width: 100%;
}

.skeleton-card {
    background: var(--content_bg_color);
    overflow: hidden;
}

.skeleton {
    background-color: #e2e2e2;
    border-radius: 4px;
    margin-bottom: .5rem;
    position: relative;
    overflow: hidden;
}

.skeleton.text {
    height: 20px;
    width: 80%;
    margin-bottom: .75rem;
}

.left.carousel-control{
    margin: 0 10px;
    left: 10px;
    z-index: 10;
}

.right.carousel-control{
    margin: 0 10px;
    right: 0px;
    z-index: 10;
}

.carousel-control > svg{
    font-size: 60px;
    position: absolute;
    background-color: white;
    border: 3px solid var(--link_color);
    cursor: pointer;
    user-select: none;
    box-shadow: 2px 2px 5px 1px black;
    background: var(--content_bg_color);
    color: var(--button_accent_color);
    border-color: var(--link_color);
    border-radius: 10px;    
}



.carousel-control {
    width: 3rem;
    height: 50px;
    position: absolute;
    transition: all 0.2s linear;
    border-radius: 10px;
}

.lowOpacity {
    opacity: 25%;
}

.carousel-item:not(.active){
    display: block !important;
    opacity: 0;
}

/*.active {*/
/*    transition: all 0.5s ease-in-out;*/
/*}*/

@media screen and (min-device-width: 961px) {
    .twc-pa-single-product-inner-img span:not(.twc-pa-quantity-product) {
        display: none;
    }
    .twc-pa-single-product-inner-img > span {
        font-size: 46pt;
    }
}
.twc-pa-body * {
    transition: all 0.2s ease-in-out;
}
.twc-pa-product-body:hover .carousel-control > svg {
    background-color: #e2e2e2;
}
.twc-pa-product-body:hover .lowOpacity {
    opacity: 100%;
}
.twc-pa-single-product .product-title {
    line-height: 1.8rem !important;
}
.twc-pa-single-product .product-title > a {
    text-decoration: none;
}