@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* --cookiepopup-background: #e9af59; */
    --cookiepopup-background: #f6d6a6;
    --cookiepopup-background-hover: #e89416;
}

.wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 350px;
    /* background-color: #7089f5; */
    background-color: var(--cookiepopup-background);
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    font-family: "Poppins", serif;
    z-index: 10;
}

.wrapper.show {
    /* background-color: #7089f5; */
    background-color: var(--cookiepopup-background);
    right: 50px;
}

header {
    display: flex;
    line-height: 22px;
    /* background-color: #7089f5; */
    background-color: var(--cookiepopup-background);
    align-items: center;
    column-gap: 15px;
}

.cookie-icon:before {
    content: "\1F36A";
    /* content: "\1F960"; */
    font-size: 30px;
    /* background: #7089f5; */
    background-color: var(--cookiepopup-background);
}

h2 {
    font-family: "Poppins", serif;
    font-weight: 500;
    color: #ebb515;
    color: #684e02;
    /* background: #7089f5; */
    background-color: var(--cookiepopup-background);
}

.data p {
    font-family: "Poppins", serif;
    margin-top: 12px;
}

.data p {
    font-family: "Poppins", serif;
    color: #5b2902;
    color: #000;
    /* background: #7089f5; */
    background-color: var(--cookiepopup-background);
    /* font-weight: 500; */
    font-size: 16px;
}

#sabermas {
    color: azure;
    text-decoration: none;
    /* background: #7089f5; */
    background-color: var(--cookiepopup-background);
}

#sabermas:hover {
    color: rgb(85, 251, 251);
    color: #f6da3e;
    text-decoration: underline;
}

.buttons {
    display: flex;
    margin-top: 12px;
    width: 100%;
    font-family: "Poppins", serif;
    /* background: #7089f5; */
    background-color: var(--cookiepopup-background);
    align-items: center;
    justify-content: space-between;
}

.button,
#declineButton {
    width: calc(100% / 2 - 10px);
    font-family: "Poppins", serif;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background-color: #eeeae3;
    /* background: #7089f5; */
    padding: 5px 0px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button:hover,
#declineButton:hover {
    /* background-color: #4070f4; */
    background-color: var(--cookiepopup-background-hover);
    color: azure;
}

.buttonhref {
    background-color: #eeeae3;
    border-top: 2px solid #eeeae3;
    border-right: 2px solid #979797;
    border-bottom: 2px solid #979797;
    border-left: 2px solid #eeeae3;
}

