.fadeIn {
    -webkit-animation: fadeIn 3s cubic-bezier(0.7, 0, 0.3, 1) both;
    -moz-animation: fadeIn 3s cubic-bezier(0.7, 0, 0.3, 1) both;
    -ms-animation: fadeIn 3s cubic-bezier(0.7, 0, 0.3, 1) both;
    -o-animation: fadeIn 3s cubic-bezier(0.7, 0, 0.3, 1) both;
    animation: fadeIn 3s cubic-bezier(0.7, 0, 0.3, 1) both;
}
.cookie-consent {
    position: fixed;
    width: 230px;
    bottom: 0;
    z-index: 1000;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    display: block;
    background: #fff;
    padding: 20px;
}
.cookie-consent .cookies-info-text {
    margin: 0;
    font-size: 9px;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    line-height: 13px;
}
.cookie-consent .cookies-info-text strong {
    color: #000;
    font-weight: 400;
}
.cookie-consent .cookies-options-buttons {
    display: flex;
    width: 100%;
}
.edit-cookies-btn {
    cursor: pointer;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 5px 10px;
    font-size: 9px;
    width: 50%;
    display: inline-block;
    float: left;
    border: 1px solid #000;
}
.accept-cookies-btn {
    cursor: pointer;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    font-size: 9px;
    width: 50%;
    display: inline-block;
    float: left;
    border: 1px solid #000;
}
.edit-cookies-btn:hover {
    background: #000;
    color: #fff;
}
.accept-cookies-btn:hover {
    color: #000;
    background: #fff;
}
.cookie-preferences-modal {
    display: none;
    color: #333;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    overflow-y: auto;
    background: rgba(4, 4, 4, 0.85);
}
.cookie-preferences-modal-inner {
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 320px;
    margin: 0 auto;
    padding: 25px;
    z-index: 1001;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cookie-preferences-modal-inner h4 {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}
.cookie-preferences-modal-inner .cookie-title {
    color: #9e9e9e;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 13px;
}
.cookie-preferences-modal button {
    cursor: pointer;
    border: 1px solid #000;
    padding: 7px;
    margin-top: 10px;
    display: block;
    transition: 0.5s all;
    width: 100%;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    transition: 0.4s ease-in-out all;
}
.cookie-preferences-modal button:hover {
    background: #fff;
    color: #000;
}
.cookie-description {
    font-size: 12px;
    line-height: 17px;
}
.switch-new {
    display: block;
    margin: 12px auto;
    margin-bottom: 30px;
}
.switch {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 56px;
    height: 20px;
    padding: 0;
    background-color: #fff;
    box-shadow: inset 0 -1px #fff, inset 0 1px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background-image: -webkit-linear-gradient(top, #eee, #fff 25px);
    background-image: -moz-linear-gradient(top, #eee, #fff 25px);
    background-image: -o-linear-gradient(top, #eee, #fff 25px);
    background-image: linear-gradient(to bottom, #eee, #fff 25px);
}
.switch-disabled {
    pointer-events: none;
    cursor: not-allowed !important;
}
.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 12px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: opacity background;
    -moz-transition-property: opacity background;
    -o-transition-property: opacity background;
    transition-property: opacity background;
}
.switch-label:after,
.switch-label:before {
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}
.switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #aaa;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}
.switch-input:checked ~ .switch-label {
    background: #000;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
    opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
    opacity: 1;
}
.switch-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    background-image: -webkit-linear-gradient(top, #fff 40%, #f0f0f0);
    background-image: -moz-linear-gradient(top, #fff 40%, #f0f0f0);
    background-image: -o-linear-gradient(top, #fff 40%, #f0f0f0);
    background-image: linear-gradient(to bottom, #fff 40%, #f0f0f0);
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}
.switch-handle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
    background-image: -webkit-linear-gradient(top, #eee, #fff);
    background-image: -moz-linear-gradient(top, #eee, #fff);
    background-image: -o-linear-gradient(top, #eee, #fff);
    background-image: linear-gradient(to bottom, #eee, #fff);
}
.switch-input:checked ~ .switch-handle {
    left: 40px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-green > .switch-input:checked ~ .switch-label {
    background: #000;
}
@media (max-width: 768px) {
    .cookie-preferences-modal-inner {
        width: 100%;
    }
}