body{
    background-color: #f1f1f1;
    filter: grayscale(1);
}

.widthVeda{
    width: 40%;
}

.bodyMargins{
    margin-left: 10%;
    margin-right: 10%;
}

.noMarginBottom{
    margin: 0 !important;
}

.superMayusculas{
    text-transform: uppercase !important;
}

.avisoPrivacidad{
    margin-top: 5% !important;
    padding: 2%;
}

.divFooter {
    height: 78px !important;
    background-color: #A8123E;
}

.buttonColor {
    background-color: #c2ba98;
    color: white;
}

.floatButtonBackground{
    background-color: #c2ba98!important;
}

.myBtn:focus{
    background-color: #A8123E !important;
    color: white!important;
    font-weight: bold;
}
.myBtn:hover {
    background-color: rgb(168, 18, 62) !important;
    color: white!important;
}

.wizardCompleteQ{
    background-color: #444444;
    border-radius: 0 200px;
    padding: 1% !important;
    color: white;
}

.wizardQ{
    background-color: #eee;
    border-radius: 0 200px;
    padding: 1% !important;
    color: black;
}

.principalColorText {
    color: #A8123E !important;
}

.secundarioColor {
    background-color: #7e7e7e !important;
}

.secundarioColorTransparent {
    background-color: rgba(168, 18, 62, 0.2) !important;
    border: solid 1px;
    border-color: #691c32;
}

.principalColor {
    background-color: #691c32 !important;
}

.footerColor{
    background-color: #6b6b6b;
}

.footerText{
    color: #ffffff;
}

label:not([for=username]).required::after {
    color: red !important;
    content: "*" !important;
    position: absolute !important;
    top: -3px !important;
    left: auto !important;
    right: -10px !important;
    opacity: 1 !important;
}


/* spinner */

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* -- */

/* loader */
.loader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: #000000bb;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    color: white;
}
.loader * {
    color: white;
}
.break {
    flex-basis: 100%;
    height: 0;
}