
.color__dark__gray {
    color: #4a4a4a;
}
.font__semibold {
    font-weight: 600;
}

.group__form__check.is__invalid .styled-checkbox+label:before{
    border-color: #e85c4d;
}

.text__center {
    text-align: center;
}
.group__form {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}
.color__link {
    color: #2196f3;
}
/* CHECK AVISO DE PRIVACIDAD */
.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #c5c5c5;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.styled-checkbox:hover+label:before {
    background: #004a90;
}


.styled-checkbox:checked+label:before {
    background: transparent;
    border: 2px solid #004a90;
}

.styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked+label:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 11px;
    background: #004a90;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 #004a90, 4px 0 0 #004a90, 4px -2px 0 #004a90, 4px -4px 0 #004a90, 4px -6px 0 #004a90, 4px -8px 0 #004a90;
    transform: rotate(45deg);
}

/* BOTON ENVIAR ESTILOS */
.btn__site {
    min-width: 280px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5em;
    padding: .6875rem 1rem;
    display: inline-block;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all linear .25s;
    -webkit-transition: all linear .25s;
    -moz-transition: all linear .25s;
    -ms-transition: all linear .25s;
    -o-transition: all linear .25s;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.btn__site.btn__yellow {
    color: #004f9c;
    background: #f6a800;
}
.btn__site.btn__yellow:hover {
    background-color: rgba(253, 184, 19, 0.56);
    color: #00305b;
}
.btn__site.btn__yellow:active {
    background-color: #fdba2c;
    color: #00305b;
}

.btn__site:disabled,
.btn__site:disabled:hover,
.btn__site:disabled:active {
    background: #979797;
    color: #fff;
}