.gs_cookie_footer {
    display:flex;
    position: fixed;
    bottom: 0;
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    z-index: 9;
    border-radius: 9px;
    border:1px solid #c3c4c5;
}
.gs_cookie_footer .gs_cookie_container {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 90%;
}
.gs_cookie_footer .gs_cookie_message {
    max-width: 70%;
}
.gs_cookie_footer .gs_cookie_buttons {
    margin-left: 2rem;
}
.gs_cookie_footer .gs_cookie_buttons button {
    margin-left: 1rem;
    padding: 20px;
    border-radius: 4px;
    border:1px solid #c3c4c5;
    color: white;
    font-weight: bold;
}
.gs_cookie_footer .gs_cookie_buttons button#acceptCookies {
    background-color: #dc0c15;
}
.gs_cookie_footer .gs_cookie_buttons button#moreInfoFooter {
    background-color: dimgrey;
}
.gs_cookie_footer .gs_cookie_buttons button#acceptCookies:hover, .gs_cookie_footer .gs_cookie_buttons button#moreInfoFooter:hover {
    background-color: lightgrey;
    color: dimgrey;
}
.modalBg {
     display: flex;
     position: fixed;
     top: 60px;
     background-color: rgba(0,0,0,0.6);
     padding: 20px;
     margin: 0;
     width:100%;
     max-height: 100%;
     z-index: 99;

 }
.modalFrame {
    display: flex;
    top: 0;
    width: 60%;
    margin: 80px auto;
    background-color: white;
}
.modalContent {
    padding: 0px 75px 30px 75px;
    max-height: 100%;
    overflow-y: scroll;
}

.modalContent h2 {
    margin-top: 2rem;
    font-size: 2rem;
}

.modalContent h3 {
    font-size: 1.5rem;
    padding-bottom: 0;
}

.gscookie-table {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-collapse: collapse;
    width: 100%;
}

.gscookie-table td, .gscookie-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.gscookie-table tr:nth-child(even){
    background-color: #f2f2f2;
}

.gscookie-table tr:hover {
    background-color: #ddd;
}

.gscookie-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #dc0c15;
    color: white;
}

.gs_cookie_modal_buttons {
    max-width: 100%;
    margin-top: 2rem;
}
.gs_cookie_modal_buttons button {
    padding: 20px;
    border-radius: 4px;
    border:1px solid #c3c4c5;
    color: white;
    font-weight: bold;
}
.gs_cookie_modal_buttons button#acceptAllCookies {
    margin-left: 1rem;
    background-color: #dc0c15;
}
.gs_cookie_modal_buttons button#denyCookies {
    background-color: dimgrey;
}
.gs_cookie_modal_buttons button#acceptAllCookies:hover, .gs_cookie_modal_buttons button#denyCookies:hover {
    background-color: lightgrey;
    color: dimgrey;
}