﻿body .item-hidden {
    display: none;
}

.cookie-wrapper {
    z-index: 100;
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(1,1,1,0.5);
    overflow: hidden;
}

.cookie-frame {
    margin-left: 15vw;
    margin-top: 5vh;
    width: 70vw;
    height: 90vh;
    background-color: white;
    border-radius: 10px;
}

#respect-privacy-wrapper .cookie-frame {
    margin-top: 25vh;
    height: 50vh;
    min-height: 350px;
}

.cookie-main-container {
    font-family: 'Work Sans', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cookie-content-container {
    max-height: 99vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cookie-header {
    flex-grow: 0;
    align-self: start;
    padding: 10px;
    box-sizing: border-box;
}

.cookie-content {
    overflow: auto;
    align-self: stretch;
    flex-grow: 1;
    padding: 10px;
    box-sizing: border-box;
}

    .cookie-content div {
        margin-bottom: 10px;
    }

    .cookie-content th {
        text-align: left;
    }

.coookie-foooter {
    align-self: start;
    flex-grow: 0;
    width: 100vw;
    padding: 10px;
    box-sizing: border-box;
    text-align: right;
}

@media (max-width: 800px) {
    #cookie-settings-wrapper .cookie-frame, #respect-privacy-wrapper .cookie-frame {
        margin-left: 5vw;
        margin-top: 5vh;
        width: 90vw;
        height: 80vh;
        min-height: 280px;
    }
}

.switch_cookies {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
    min-width: 60px;
}

    .switch_cookies input {
        display: none;
    }

.slider {
    background-color: #999;
    border: 1px solid #999;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

    .slider:before {
        background-color: #fff;
        bottom: 4px;
        content: "";
        height: 25px;
        left: 4px;
        position: absolute;
        transition: .4s;
        width: 25px;
    }

input:checked + .slider {
    background-color: #e12d39;
    border: 1px solid #e12d39;
}

input:disabled + .slider {
    background-color: #ddd;
    cursor: default;
}

input:checked + .slider:before {
    transform: translateX(25px);
}

.slider.round {
    border-radius: 34px;
    margin-bottom: 0px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.base-button {
    cursor: pointer;
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 4px 5px;
    padding: 6px 20px;
    min-width: 160px;
    border-radius: 50px;
    border: 1px solid transparent;
    text-align: center;
    font-family:;
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: background-color .2s;
}

.button-primary {
    background: #e12d39;
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .3), 0 1px 3px 1px rgba(0, 0, 0, .15);
    transition: all 0.2s;
    position: relative;
    z-index: 2;
}

    .button-primary:hover {
        box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    }

.button-secondary {
    background: #fff;
    color: #2a2835;
    border: 1px solid #dadce0;
}

    .button-secondary:hover {
        background: #ecf0f9;
        border-color: #ecf0f9;
        /* #f4f9ff; */
    }

.button-wide {
    flex: auto;
    width: 100%;
    max-width: -webkit-fill-available;
    max-width: -moz-available;
    max-width: stretch;
    text-align: center;
}
