@font-face{
    font-family: FontCheck;
    src:url('../fonts/FrutigerLTStd-BlackCn.otf')
}
.textCondiciones{
    color:#374e65;
    font-size: 16px;
    font-family: FontCheck;
    text-align: center;
}
.control {
    font-family: FontCheck;
    display: block;
    position: relative;
    padding-left: 30px;
    color:#374e65;
    margin-bottom: 5px;
    padding-top: 1px;
    cursor: pointer;
    font-size: 16px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control_indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 23px;
    width: 23px;
    background: #FFFFFF;
    border: 2px solid #000000;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #FFFFFF;
}

.control input:checked ~ .control_indicator {
    background: #FFFFFF;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: rgba(56, 255, 214, 0);
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 9;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}
