/*
CSS File für JVaffili Schnellkauf
 */
#jvaffilischnellkauf_form_overlay {
    background-color: rgba(250,250,250,.9);
    position: absolute;
    height: calc(100% + 20px); /* Berechne das Overlay ringsherum 10 px größer als das Formular */
    width: calc(100% + 20px);
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.jvaffilischnellkauf_form_overlay_spinnermessage {
    width: auto;
    text-align: center;
    margin-top: 142px;
    /*color: #333333;*/
}

.jvaffilischnellkauf_form_overlay_spinner {
    border: 16px solid; /* #CCCCCC; */
    border-radius: 50%;
    border-top: 16px solid; /* #333333; */
    width: 99px;
    height: 99px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin:auto;
    top:0;
    left:0;
    bottom:0;
    right:0;
    position:absolute;
}

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

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