/* Loading Paypal Spinner  */

#js-payWithPaypalDiv img {
    width: 170px;
    height: 32px;
}

#js-payWithPaypalDiv a {
    text-align: right;
    position: relative;
    width: 50%;
    width: -webkit-calc(100% - 170px); /** Safari 6, Chrome 19-25 **/
    width: -moz-calc(100% - 170px); /** FF 4-15  **/
    left: calc(100% - 170px);
    /*top: 15px;*/
}

#js-payWithPaypalDiv {
    margin: 0px 0px 0px 0;
    /*float: right;*/
    width: 100%;
    /* border: 1px solid red; */
}

@media screen and (min-width: 768px) {
    #js-payWithPaypalDiv {
        margin: 3px 0px 0px 0;
        float: right;
        width: auto;
    }
}


#js-btnPPExpress {
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    -ms-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

/* Button wird ausgeblendet */
#js-payWithPaypalDiv.active #js-btnPPExpress {
    /* opacity: .5; */ /* Button wird halbdurchsichtig */
    display: none;
}

/* Loading Paypal Spinner  */
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #07d;
    animation: spinner .6s linear infinite;
}


.spinner-wrapper {
    text-align: center;
}

.spinner-text {
    font-size: 11px;
    text-transform: uppercase;

}


/* 14.01.2020 MM */