/* Stratechery Custom Checkbox */
/* Customize the label (the container) */
.checkbox-container {
    display: block;
    margin-top: .8em !important;
    margin-bottom: .8em !important;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    margin-left: -145px;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 2px solid #faa634;
    border-radius: 4px;
}

/* When the checkbox is checked, add the background */
.checkbox-container input:checked~.checkmark {
    background-color: #faa634;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}