.modal-country-language {
    display: none;
    position: fixed;
    z-index: 7001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-country-content {
    flex-direction: column;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 600px;
    text-align: center;
    font-size: large;
}

.modal-country-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-country-body-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.continue_text {
    font-size: 12px;
    color: #000;
}
.button_leave:hover {
    background-color: #4f4f4f;
}
.button_leave {
    width: 250px;
    padding: 15px;
    background-color: #7ab41d;
    color: #ffffff;
    cursor: pointer;
}

.modal-country-text {
    text-align: center!important;
}

button.button_continue {
    background: transparent;
    color: #7ab41d;
    border: 1px solid #7ab41d;
    font-size: 12px;
}

button.button_continue:hover {
    transition-duration: 300ms;
    background-color: #7ab41d;
    color: white;
}

@media (max-width: 600px) {
    .modal-country-content {
        width: 100%;
    }
}