@import "./bootstrap_light.scss";


html {
    height: 100% !important;
}

body{
    overflow: auto;
}

$bg-invoice: #0F3F6D;
$font-color-invoice: white;
$bg-payment: white;
$font-color-payment: black;

//spinner
.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #000 transparent #000 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

button {
    .lds-dual-ring, .lds-dual-ring:after {
        width: 35px !important;
        height: 35px !important;
    }
}

button.col-4 {
    .lds-dual-ring, .lds-dual-ring:after {
        width: 26px !important;
        height: 26px !important;
    }
}


@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

