.freesample-container {
    margin: 15px 15px 0 15px;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #f6f6f6;
}

.freesample-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.freesample-title {
    font-weight: 600;
}

.freesample-disclaimers {
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;
    font-size: 0.95em;
}


.freesample-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    flex-shrink: 0;
}

.freesample-switch input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    pointer-events: none;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.freesample-switch input:checked + .slider {
    background-color: #004B93;
}

.freesample-switch input:focus-visible + .slider {
    box-shadow: 0 0 0 3px #004B93;
}

.freesample-switch input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
