.errors {
    text-align: center;
}

.error_text {
    color: #f44336;
    font-size: 12px;
    font-weight: 600;
    padding-top: 8px;
}

.success_text {
    font-weight: 600;
    font-size: 18px;
    color: rgb(176, 113, 80);
    text-align: center;
    padding-top: 15px;
    display: none;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #f7dcd1;
    color: #515151;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid #b07150;
    display: none;
    max-width: 75%;
    margin: 0 auto;
    font-weight: 600;
}

.cookie-popup [type=button],
.cookie-popup [type=submit] {
outline: none;
background: none;
color: inherit;
border: none;
padding: 0;
}

.cookie-popup h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #b07150;
    font-weight: 600;
}

.cookie-popup p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

.cookie-popup p a {
    color: #b07150;
    text-decoration: underline;
}

.cookie-popup .close-btn,
.popup-signup .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.cookie-popup .close-btn:hover,
.popup-signup .close-btn:hover {
    color: #b07150;
}

.cookie-content_flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
 }
 .show {
    display: block;
 }

 .flex-child_one {
    margin-right: 10px;
 }

@media (max-width: 900px) {

    .cookie-popup {
        max-width: 100%;
    }
    
}

@media (max-width: 600px) {
    .cookie-content_flex {
        flex-direction: column;
     }
}


@media (min-width: 1400px) {
    .cookie-content_flex {
        justify-content: center;
     }
     .flex-child_one {
        margin-right: 35px;
     }
     .cookie-popup {
        max-width: 1100px;
     }
}
