.btn.green.disabled {
    background-color: gray;
    pointer-events: none;
}
.main__content-form-checkbox input[type="checkbox"] {
    overflow: hidden;
    visibility: hidden;
    position: relative;
    height: 0;
    width: 0;
}
.main__content-form-checkbox label {
    position: relative;
    display: block;
    padding-left: 7.5rem;
    font-size: 2.7rem;
    /*margin-bottom: 2.9rem;*/
    line-height: 3.3rem;
    padding-top: 0rem;
    cursor: pointer;
}
.main__content-form-checkbox a {
    text-decoration: underline;
}
.main__content-form-checkbox:last-child {
    margin-bottom: 1rem;
}
.main__content-form-checkbox label::before {
    content: '';
    position: absolute;
    width: 4.5rem;
    height: 4.5rem;
    left: 0;
    top: 0;
    border: 0.7rem solid #9a9696;
    border-radius: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}
.main__content-form-checkbox input:checked + label::before {
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m2 9.5 10 11L23 2' stroke='%2305756E' stroke-width='4'/%3E%3C/svg%3E");
}