.pref-loc-checkbox-container {
    display: flex;
    flex-direction: column;
    position: sticky;
}
.pref-loc-checkbox-item {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 5px 0;
    padding-left: 20px;
    cursor: pointer;
}
.pref-loc-checkbox-item:hover {
    background-color: #F5F5F5;
}
.pref-loc-custom-checkbox {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    border-radius: 2px;
}
.pref-loc-custom-checkbox input {
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}
.pref-loc-custom-checkbox.checked {
    background-color: #FA4094;
    border-color: #FA4094;
}
.pref-loc-custom-checkbox.checked::after {
    content: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.75L4.39645 9.14645C4.59171 9.34171 4.90829 9.34171 5.10355 9.14645L13 1.25' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.pref-loc-checkbox-label {
    margin-left: 20px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 5px;
}
.pref-loc-current-location-pill {
    background-color: #ECFDF5;
    color: #047857;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 20px;
    display: none;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}