body{
    display: flex;
    flex-direction: column;

    font-family: "Nunito Sans", sans-serif;
    min-height: 100vh;
}
:root {
    --Primary-rojo: #FC1921;
    --black: #000;
    --white: #FFF;
}

.loader_container{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
}
.loader {
    width: 48px;
    height: 48px;
    position: relative;
}
.loader::before , .loader::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    width: 48em;
    height: 48em;
    background-image:
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0),
    radial-gradient(circle 10px, #FC1921 100%, transparent 0);
    background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em,
                        13em -13em, -13em -13em, 13em 13em, -13em 13em;
    background-repeat: no-repeat;
    font-size: 0.5px;
    border-radius: 50%;
    animation: blast 1s ease-in infinite;
}
.loader::after {
    font-size: 1px;
    background: #83171B;
    animation: bounce 1s ease-in infinite;
}

@keyframes bounce {
  0% , 100%{ font-size: 0.75px }
  50% { font-size: 1.5px }
}
@keyframes blast {
  0% , 40% {
    font-size: 0.5px;
  }
  70% {
    opacity: 1;
    font-size: 4px;
  }
   100% {
     font-size: 6px;
    opacity: 0;
  }
}

h1{
    margin: 0;

    font-family: "Nunito Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--Primary-rojo);
}
h3{
     margin: 0;

    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #F1EFEA;
}
.bold{
    font-weight: 700;
}

p{
    margin: 0;
    
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
}

.up { /*Scroll to top*/
    display: none;
    align-items: center;
    justify-content: center;
    
    position: fixed;
    bottom: 145px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #FFF;
    border-radius: 40px;    
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
    
    z-index: 10;
}

.btn_ppal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    width: fit-content;
    height: 42px;
    padding: 10px 20px;    
    border: none;
    border-radius: 40px;    
    background: #FC1921;
    cursor: pointer;

    font-family: "Nunito Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    font-feature-settings: 'liga' off;
    color: #FFF;
}
.btn_ppal:hover {
    background: #83171B;
}
.btn_ppal.disabled {    
    background: #E2DFDA;
    pointer-events: none;
}

.btn_secundary {
    display: flex;    
    justify-content: center;
    align-items: center;
    gap: 12px;

    width: fit-content;
    height: 42px;
    padding: 10px 20px;
    border-radius: 40px;    
    border: 2px solid var(--Primary-rojo, #FC1921);
    background: var(--tonos-adicionales-gray-05, #FBFAF9);
    cursor: pointer;

    font-family: "Nunito Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #FC1921;
}
.btn_secundary:hover {    
    color: #83171B;
    border: 2px solid var(--Tonos-adicionales-01, #83171B);
    background: var(--tonos-adicionales-gray-05, #FBFAF9);
}
.btn_secundary:disabled {    
    color: #E2DFDA;
    border: 2px solid #E2DFDA;
    background: #FBFAF9;
    pointer-events: none;
}

ul.custom-bullets {
    list-style: none;
    padding-left: 0;
}

ul.custom-bullets li {
    background: url("../img/bullet-gota.svg") no-repeat left 0.4em;
    padding-left: 28px;
    margin-bottom: 16px;
    
    padding-top: 8px;
    
    font-family: "Nunito Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
}

input[type="text"],
input[type="password"] {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 8px 10px 8px 16px;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    border: 1px solid var(--Supporting-Gray-2, #E2DFDA);
    background: var(--tonos-adicionales-gray-05, #FFF);
    color: var(--Supporting-Gray-3, #808284);
    font-feature-settings: 'liga'off;

    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #FFF inset;
  -webkit-text-fill-color: #000;
  transition: background-color 5000s ease-in-out 0s;
}

/* Focus */
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: var(--Primary-rojo, #FC1921);
    color: var(--black, #000);
    outline: none;
    box-shadow: none;
}

/* Filled */
input[type="text"]:not(:placeholder-shown),
input[type="password"]:not(:placeholder-shown) {
    color: var(--black, #000);
}

/* Disabled */
input[type="text"]:disabled,
input[type="password"]:disabled {
    color: #E2DFDA;
    border: 1px solid var(--tonos-adicionales-gray-05, #FBFAF9);
    background: var(--tonos-adicionales-gray-05, #FBFAF9);
}

/* Error*/
input[type="text"].is-error,
input[type="password"].is-error {
    color: #C300A3;
    border: 1px solid var(--Alert, #C300A3);
    background: linear-gradient(0deg, rgba(195, 0, 163, 0.08) 0%, rgba(195, 0, 163, 0.08) 100%), #FFF;
}
input[type="text"].is-error:focus,
input[type="password"].is-error:focus {
    box-shadow: none;
}
input[type="text"].is-error::placeholder,
input[type="password"].is-error::placeholder {
    color: #C300A3;
}

.select {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 8px 10px 8px 16px;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    border: 1px solid var(--Supporting-Gray-2, #E2DFDA);
    background: var(--tonos-adicionales-gray-05, #FFF);
    color: var(--Supporting-Gray-3, #808284);
    font-feature-settings: 'liga'off;

    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
}

/*select.form-control:not([size]):not([multiple]) {
    height: calc(3rem + 2px) !important;
}*/

input[type=checkbox] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(1.4);
    /* IE */
    -moz-transform: scale(1.4);
    /* FF */
    -webkit-transform: scale(1.4);
    /* Safari and Chrome */
    -o-transform: scale(1.4);
    /* Opera */
    transform: scale(1.4);
    padding: 10px;
    cursor: pointer;
}

input :focus {
    outline: none;
}

select {
    margin-bottom: 10px;
    font-family: 'Nunito Sans', sans-serif;
}

a{
    text-decoration: none;
}
