.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;
}

.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;
}

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

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

.next-section{
    position: fixed;
    bottom: 20px;
    z-index: 120;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-style: solid;
    border-color: aliceblue;
    animation: pulse-white 2s infinite;
}



.right-next .next-section{
    right: 20px;
}


    @keyframes pulse-white {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }
        
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        }
        
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
    }
    
    .admin{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    
