.checkbox-container {
    display: block;
    position: relative;
    padding-right: 26px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 18px;
    width: 18px;
    border-radius: 3px;
    border: 1px solid #e7e5e4;
    background-color: #fff;
    transition: all 0.5s;
}
.checkbox-container .checkmark:after {
    top: 2px;
    right: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkbox-container:hover input ~ .checkmark {
    background-color: #e7e5e4;
}
.checkbox-container input:checked ~ .checkmark {
    background-color: #000;
    border-radius: 3px;
}
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Bottom sheet */
.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;
    z-index: 99;
}
.bottom-sheet.show {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet .sheet-content {
    transform: translateY(100%);
    transition: 0.3s ease; 
}
.bottom-sheet.show .sheet-content {
    transform: translateY(0%);
}
.bottom-sheet.dragging .sheet-content {
    transition: none;
}
