#cookieBanner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 420px;
    background: #fff;
    border-radius: 8px;
    color: #000;
    padding: 15px;
    box-shadow: 0 1px 6px 0 rgba(54, 64, 67, .8);
    z-index: 9999;
}

#cookieBanner .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

#cookieBanner .list-group-item p {
    font-size: 11px;
}

#cookieBanner .switch-container {
    display: flex;
    align-items: center;
}

#cookieBanner h5 {
    font-size: 22px;
    text-align: center;
}

#cookieBanner .btn {
    font-weight: 500;
}

#cookieBanner .form-switch {
    padding: 0;
}

#cookieBanner .form-switch .form-check-label {
    font-weight: 600;
}

#cookieBanner .form-switch .form-check-input {
    margin-left: 0;
	position: relative;
}

#cookieBanner .form-switch .form-check-input {
    width: 18px;
    height: 18px;
}

#cookieBanner .form-switch-lg .form-check-input {
    width: 22px;
    height: 22px;
}

#cookieBanner .form-switch-lg .form-check-input::before {
    width: 1.25em;
    height: 1.25em;
    transform: translateX(0.25em);
}

#cookieBanner .form-switch-lg .form-check-input:checked::before {
    transform: translateX(1.25em);
}

@media only screen and (max-width: 600px) {
    #cookieBanner {
        bottom: 0px;
        left: 0px;
        border-radius: 0;
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    #cookieBanner .btn {
        font-size: 14px !important;
    }
}
