/**
* 2010-2023 Webkul.
* Ticket 684215 - Redsys payment section redesign
*/

.redsys-section {
    margin: 8px 0px;
    padding: 0;
}

a.qlo-redsys-payment {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2px;
    background: linear-gradient(to right, #13dfe7, #01bac6);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
    gap: 30px;
}

@media (min-width: 768px) {
    a.qlo-redsys-payment {
        padding: 10px;
    }
    .redsys-section {
    margin: 18px 0px;
    padding: 0;
}
}

a.qlo-redsys-payment:hover {
    background: linear-gradient(to right, #01bac6, #01bac6);
    text-decoration: none;
    color: #ffffff;
}

.redsys-logo {
    height: 38px;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.redsys-label {
    font-weight: bold;
}


#wk-overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
}

.wk-spinner {
    margin: 0 auto;
    height: 64px;
    width: 64px;
    animation: rotate 0.8s infinite linear;
    border: 5px solid #777;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


