.concentcenter{
    align-items: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    

}

.background-popup {
    display: none;
    position: fixed;
    background-color: rgb(0 0 0 / 50%);
    width: 500%;
    height: 500%;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 999;
    transition-duration: 0.3s;
  }
  

.cookie-consent-banner {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: space-around;
    align-content: space-between;
    align-items: center;
    width: 80%;
    height: auto;
    margin-top: 25svh;
    border-radius: 5px;
    /*bottom: 0;
    left: 0;
    right: 0;*/
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
    border-color: #79c5dc;
    border-style: solid;
    border-width: thick;
}

.cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    width: 17rem;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: .5;
}

.cookie-consent-button.btn-success {
    background-color: #34a853;
    color: white;
}

.cookie-consent-button.btn-grayscale {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-button.btn-outline {
    background-color: #e6f4ea;
    color: #34a853;
}

.cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: 20px;
    row-gap: 20px;
}

.cookie-consent-options label {
    margin: 0 10px;
    font-size: 14px;
}

.cookie-consent-options input {
    margin-right: 5px;
}

.next-section{
    display: none;
    position: fixed;
    right: 10px;
    bottom: 120px;
    z-index: 120;
    background-color: #ffc300;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border-style: solid;
    border-color: aliceblue;
    rotate: 270deg;
}

.show {
    
    animation: fadein 1s ease-in-out;
}

.fadeout {
    animation: fadeout 1s ease-in-out;
}

@keyframes fadein {
    from {
        transform: translateY(100px);
    }
    to {
        transform: translateY(0px);
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.rotate{
    rotate: 0deg;
    animation-name: fade-out 2s ease-in-out;
    transition: 1s ease-in-out;
}


/*CHECKBOX*/
.containercheck {
    margin-top: 15px;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
/* Hide the browser's default checkbox */
.containercheck input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
border-radius: 8px;
}

/* On mouse-over, add a grey background color */
.containercheck:hover input ~ .checkmark {
background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containercheck input:checked ~ .checkmark {
background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkmark when checked */
.containercheck input:checked ~ .checkmark:after {
display: block;
}

/* Style the checkmark/indicator */
.containercheck .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
