.custom-checkbox-container {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;

    cursor: pointer;
    font-size: 22px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    position: relative;
    border-radius: 5.4px;
    border: 1.4px solid var(--Primary);
    background: rgba(157, 124, 47, 0.1);
}

.custom-checkbox:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the custom-checkbox when checked */
.custom-checkbox-container input:checked ~ .custom-checkbox:after {
    display: block;
}

/* Style the custom-checkbox/indicator */
.custom-checkbox-container .custom-checkbox:after {
    top: 3px;
    left: 7px;
    width: 4px;
    height: 10px;
    border: solid rgba(157, 124, 47, 1);
    border-width: 0 1.4px 1.4px 0;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
