.cookie-popup {
   display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
    background-color: #f4f4f4;
    color: #333333;
    z-index: 9999;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.popup-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.popup-buttons button {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-size: 14px;
    padding: 10px 20px;
    background-color: #225b43;
    color: #ffffff;
    border: none;
}

.popup-buttons button:hover {
    background-color: #1a4733;
    transform: scale(1.05);
    color: white;
}

#menu2 .popup-buttons {
    gap: 10px;
}

#menu2 .arrow-text {
    padding: 5px;
}

#menu2 .expandable-text {
    font-size: 14px;
    margin-top: 5px;    
    text-align: center;
    margin-left: 0;
}

#menu2 .privacy-link1 {
    font-size: 12px;
    text-align: center;
}

#menu2 .backToMenu0 {
    margin-left: 0;
    margin-top: 15px;
    background-color: #cf9a9a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-size: 12px;
    padding: 5px 10px;
}
#menu2 .backToMenu0:hover {
    background-color: #222423;
    transform: scale(1.05);
    color: white;
}

#menu2 .privacy-link {
    font-size: 12px;
}

#menu2 .button-container button {
    height: 30px;
    font-size: 10px;
    padding: 3px 6px;
}

#normalButton {
    font-size: 10px;
    padding: 3px 6px;
}

#showPopupButton {
    font-size: 10px;
    padding: 3px 6px;
}

#menu2 .popup-buttons button {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-size: 12px;
    padding: 5px 10px;
    background-color: #225b43;
    color: #ffffff;
    border: none;
    background-color: #225b43;
    display: block;
}


@media screen and (max-width: 768px) {
    .cookie-popup {
        height: auto;
        border-radius: 0;
        padding: 20px;
}
}

.backToMenu0{
    margin-left: 70px;
    background-color: #5b3f22;

}

.cookies {
    content: '';
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 0px;
    -webkit-box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.2);

}

.normal-button {
    display: block;
    position: fixed;
    /*bottom: 20px;*/
    right: 20px;
}
#menu2.popup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}

#menu2 .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    width: 300px;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}


#menu2 .popup-title {
    font-size: 16px;
    /*background-color: black;*/
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.popup-buttons button {
    height: 40px;
    font-size: 12px;
    padding: 5px 10px;
}


.popup-content {
    padding: 10px;
}

#menu2 .popup-text {
    font-size: 12px;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

#menu2 .checkbox-container {
    margin-top: 20px;

}

#menu2 .checkbox-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#menu2 .checkbox-option input[type="checkbox"] {
    display: none;
}

#menu2 .checkbox-option label {
    cursor: pointer;
    display: inline-block;
    position: relative;
    
}

#menu2 .checkbox-option .toggle-button {
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 10px;
    position: relative;
    transition: background-color 0.3s;
}

#menu2 .checkbox-option input[type="checkbox"]:checked + label {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

#menu2 .checkbox-option .toggle-indicator {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s, left 0.3s;
}

#menu2 .checkbox-option input[type="checkbox"]:checked + label .toggle-indicator {
    left: calc(100% - 18px);
    transform: translateX(-100%);
}

#menu2 .button-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#cookiePopup input[type="checkbox"] {
    display: none;
}

#cookiePopup label {
    display: inline-block;
    padding: 5px;
    margin: 5px;
    border: 2px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#cookiePopup label:hover {
    background-color: #f0f0f0;
}

#cookiePopup input[type="checkbox"]:checked+label {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.arrow-text {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.arrow1 {
    font-size: 14px;
    transition: transform 0.3s;
    margin-left: 87px;
}

.arrow {
    font-size: 14px;
    transition: transform 0.3s;
    margin-left: 65px;
}

.text-container {
    margin-top: 10px;
}

.expandable-text {
    display: none;
    font-size: 18px;
    margin-top: 10px;
    margin-left: 65px;
}

.arrow-text.active .expandable-text {
    display: block;
}

.privacy-link1 {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    transition: color 0.3s;
}

.privacy-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: #0056b3;
}

.checkbox-container {
    margin-top: 20px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    /*width: 20px;*/
    height: 20px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: background-color 0.3s, border-color 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #4caf50;
}

.custom-checkbox:hover .checkmark {
    background-color: #f0f0f0;
    border-color: #333;
}


.checkbox-option label {
    margin-left: 10px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 30px;
}


.checkbox-option label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: white;
    transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-option input[type="checkbox"]:checked+label::before {
    background-color: #4caf50;
    border-color: #4caf50;
}