:root {
    --vpc-info-icon: url("data: image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'%3E%3C/path%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
    --vpc-close-icon: url("data: image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.VPC_Modern_Skin.VPC_Sik_Tec_Skin #vpc-components {
    padding-right: 0px;
    padding-left: 60px;
}

.VPC_Sik_Tec_Skin .vpc-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 500px) {
    .VPC_Sik_Tec_Skin .vpc-action-buttons {
        display: flex;
        flex-direction: column;
    }
}

.VPC_Sik_Tec_Skin .vpc-action-buttons #vpc-price-container {
    margin: 0 15px;
}

.VPC_Sik_Tec_Skin .vpc-action-buttons #vpc-price {
    font-size: 25px;
}

.component-featured-img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 54px;
}

@media (min-width: 500px) {
    .component-featured-img:hover .img-container {
        visibility: visible;
        opacity: 1;
    }
}

.component-info-icon {
    width: 100%;
    height: 100%;
    background-image: var(--vpc-info-icon);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.component-featured-img .img-container {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    min-width: 350px;
    max-width: 450px;
    background-color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    right: 40px;
    top: -5px;
    border: 2px solid #ccc;
    border-radius: 4px;
    z-index: 99;
    transition: visibility .25s, opacity .25s;
}

.component-featured-img .img-container:after {
    content: "";
    border: 10px solid;
    border-color: transparent transparent transparent #ccc;
    position: absolute;
    right: -20px;
    top: 5px
}

.component-featured-img .img-container img {
    display: inline-block;
    width: 100%;
}

.vpc-mobile-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 999;
    display: none;
}

.vpc-mobile-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vpc-mobile-popup .popup-img-container {
    max-width: 86%;
    padding: 50px 10px 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    position: relative;
}

.vpc-mobile-popup .popup-img-container .popup-close {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 11px;
    right: 10px;
    background-image: var(--vpc-close-icon);
    background-repeat: no-repeat;
    background-size: contain;
}