div#cookies-div{
    width: 100%;
    background-color: rgba(43, 43, 43, 0.95);
    height: auto;
    padding: 27px 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    z-index: 100;
    transition: all 0.6s linear;
}
div.cookies-hidden{
    display: none !important;
}
div#cookies-div div.cookie-button-div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #372C37;
}
div#cookies-div div.cookie-button-div button.cookie-button {
    font-family: inherit;
    border: 0;
    padding: 8px 27px;
    font-size: 100%;
    font-weight: bold;
    border-radius: 4px;
    background-color: #fff;
}
div#cookies-div div.cookie-button-div button.cookie-button:focus {
    outline: none;
}
div#cookies-div div.cookie-button-div button.cookie-button:active {
    transform: scale(0.99);
}
h1.cookies-title {
    font-size: 16px;
    font-weight: bold;
}

p.cookies-text {
    font-size: 14px;
    font-weight: lighter;
}

p.cookies-text span.bold {
    font-weight: bold;
}

p.cookies-text span.fake-link {
    cursor: pointer;
    text-decoration: underline;
}
p.cookies-text span.fake-link:hover {
    color: #f2f2f2
}
div.cookies-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(43, 43, 43, 0.95);
    z-index: 101;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
div#cookies-modal div.cookie-modal-body {
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 4px;
    height: 80vh;
    width: 65vw;
    opacity: 100;
    display: flex;
    flex-direction: column;
}
div#cookies-modal div.cookie-modal-body div.cookie-header {
    padding: 20px 24px;
    box-shadow: 0 3px 6px #00000018;
    font-size: 16px;
    font-weight: bold;
}
div#cookies-modal div.cookie-modal-body div.cookie-footer {
    padding: 16px;
    display: flex;
    flex-direction: row-reverse;
    box-shadow: 0 -3px 6px #00000018;
}
div#cookies-modal div.cookie-modal-body div.cookie-footer button.cookie-modal-button {
    padding: 8px 22px;
    background-color: #372C37;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
div#cookies-modal div.cookie-modal-body div.cookie-footer button.cookie-modal-button:focus {
    outline: none;
}
div#cookies-modal div.cookie-modal-body div.cookie-footer button.cookie-modal-button:active {
    transform: scale(0.99);
}
div#cookies-modal div.cookie-modal-body div.content {
    height: auto;
    flex-grow: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 20px;
    padding: 20px 30px;
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
}
div#cookies-modal div.cookie-modal-body div.content::-webkit-scrollbar {
    width: 15px;
}
div#cookies-modal div.cookie-modal-body div.content::-webkit-scrollbar-track {
    background: #F4F4F4;
}
div#cookies-modal div.cookie-modal-body div.content::-webkit-scrollbar-thumb {
    background: #ACACAC;
}
div#cookies-modal div.cookie-modal-body div.content::-webkit-scrollbar-thumb:hover {
    background: #898989;
}