.tac_activate .tac_float {
    color: #000;
}

#at_consent {
    padding: 15px;
    display: flex;
}

.at_consent_label {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer
}

.at_consent_label span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0)
}

.at_consent_label span:first-child {
    margin: 10px 0;
    box-sizing: initial;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #b9b8c3;
    transition: all .2s ease;
    display: block;
    float: left
}

.at_consent_label span:first-child svg {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 6px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all .3s ease;
    transition-delay: .1s;
    transform: translate3d(0, 0, 0)
}

.at_consent_label span:first-child:before {
    content: ' ';
    width: 100%;
    height: 100%;
    background: #0f265d;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
    transition-delay: .2s
}

.at_consent_label span:last-child {
    margin-left: 15px;
    display: block;
    float: left;
    width: calc(100% - 45px);
    padding-top: 5px;
}

.at_consent_label:hover span:first-child {
    border-color: #0f265d
}

.at_consent_input:checked + .at_consent_label span:first-child {
    border-color: #0f265d;
    background: #0f265d;
    animation: check .6s ease
}

.at_consent_input:checked + .at_consent_label span:first-child svg {
    stroke-dashoffset: 0
}

.at_consent_input:checked + .at_consent_label span:first-child:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all .6s ease
}

.at_consent_input:not(:checked) + .at_consent_label span:last-child {
    color: #b9b8c3;
    transition: all .3s ease
}