.btn {
    border-radius: 0px !important;
    border: none !important;
}
.btn-primary {
    background-color: #ac4848 !important;
    color: #FFF;
}
.btn-default {
    background-color: #f2f2f2 !important;
}
a {
    color: #BCA218;
}
a:hover {
    text-decoration: none;
    color: #781478;
}
.modal {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}
.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
#listcookes ul {
    list-style: none;
    padding: 0px;
    width: 100%;
}
#listcookes ul li {
    background-color: #f2f2f2;
    padding: 5px;
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}
#listcookes ul li .right {
    position: absolute;
    top: 8px;
    right: 5px;
    font-size: 12px;
}
.custom-control.custom-switch {
    text-align: right;
    position: absolute;
    top: 10px;
    right: 5px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
input:checked + .slider {
    background-color: #781478;
}
input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #781478;
    box-shadow: 0 0 1px #781478;
}
input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    transform: translateX(13px);
}
.slider.round {
    border-radius: 17px;
}
.slider.round:before {
    border-radius: 50%;
}