.confirm {
    display: flex;
    max-width: 370px;
    gap: 10px;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 13.2px;
    margin: 17px auto;
    padding: 20px;
    border: 1px solid rgba(108, 108, 108, 0.5);
    border-radius: 5px;
}

.confirm .text {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    text-align: left;
    color: #6C6C6C;
}
.confirm .text a {
    font-size: 14px;
    font-weight: 300;
    line-height: 13.2px;
    text-align: left;
}
.checkbox-wrapper-23 *,
.checkbox-wrapper-23 *:after,
.checkbox-wrapper-23 *:before {
    box-sizing: border-box;
}

.checkbox-wrapper-23 input:checked + label svg path {
    stroke-dashoffset: 3;
}

.checkbox-wrapper-23 input:focus + label {
    transform: scale(1.03);
}

.checkbox-wrapper-23 input + label {
    display: block;
    border: 1px solid #6c6c6c;
    width: var(--size);
    height: var(--size);
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
}

.checkbox-wrapper-23 input + label:active {
    transform: scale(1.05);
    border-radius: 12px;
}

.checkbox-wrapper-23 input + label svg {
    pointer-events: none;
    padding: 5%;
}

.checkbox-wrapper-23 input + label svg path {
    fill: none;
    stroke: #333;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 101;
    transition: all 250ms cubic-bezier(1, 0, .37, .91);
}
@media screen and (max-width: 430px) {
    .confirm {
        margin: 17px 10px;
    }
}