#cookieConsentDialog .modal-content {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#cookieConsentDialog td {
    padding-right: 20px;
}

#cookieConsentDialog .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

#cookieConsentDialog .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#cookieConsentDialog .checkboxSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #afafaf;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#cookieConsentDialog .checkboxSlider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#cookieConsentDialog input:checked + .checkboxSlider {
    background-color: #64c633;
}

#cookieConsentDialog input:checked:disabled + .checkboxSlider {
    background-color: #caf1b6;
}

#cookieConsentDialog input:not(:disabled) + .checkboxSlider:hover {
    background-color: #989898;
}

#cookieConsentDialog input:checked:not(:disabled) + .checkboxSlider:hover {
    background-color: #5eb633;
}

#cookieConsentDialog input:checked + .checkboxSlider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

#cookieConsentDialog .checkboxSlider.round {
    border-radius: 34px;
}

#cookieConsentDialog .checkboxSlider.round:before {
    border-radius: 50%;
}