.policy {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 0px;
}

.policy-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    display: flex;
    position: relative;
    align-content: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #dddddd;
    border-radius: 5px;
    cursor: pointer;
}

.policy-checkbox-error {
    border: 2px solid #ff0000;
    animation: trial-checkbox-shake 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.policy-checkbox:checked {
    border: 0;
}

.policy-checkbox:checked::before {
    opacity: 1;
}

.policy-checkbox::before {
    content: "";
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: url("../../../images/checked.svg") no-repeat center, #49c7c2;
}

.trial-section .policy-text {
    color: rgba(255, 255, 255, 1);
}

.policy-text {
    font-size: 12px;
    color: rgba(108, 117, 125, 1);
    font-weight: 400;
    margin: 0;
    width: 90%;
    line-height: 1;
}

.policy-text:hover {
    cursor: pointer;
}

@keyframes trial-checkbox-shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-2px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(2px, 0, 0);
    }
}