.afdv-pav-linked-products{
    padding-top: 20px;
    padding-bottom: 20px;
}
.afdv-pav-linked-product-button{
    margin: 10px;
    margin-left: 0;
}
.afdv-pav-var-label{
    margin-bottom: 0;
    padding-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
}
.afdv-pav-btn-loading{
    padding-left: 20px !important;
}
.afdv-pav-btn-loading::before{
    content: "";
    background-image: url(../images/icons/loader.png);
    display: block;
    width: 16px;
    height: 16px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    animation: spin 1s linear infinite;
    z-index: 10;
    position: absolute;
    margin-left: -20px;
    margin-top: 2px;
}
/* Animation keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }