.disclaimer-content {
    background: #EBF7FE;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    overflow-y: auto;
    margin: 2rem;
    box-shadow: 0px 2px 6px 0px #00000026;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    z-index: 99999;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
}
.disclaimer-content.full-size {
    max-height: 90vh;
}
.disclaimer-close {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}
.disclaimer-short-message {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px !important;
    display: flex;
    gap: 2rem;
}
.disclaimer-icon {
    margin-top: 0.6rem;
}
.disclaimer-see-more {
    color: #0066cc !important;
    text-decoration: none !important;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
}
.see-more::before {
    content: url('../images/chevron_down.svg');
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}
.see-less::before {
    content: url('../images/chevron_up.svg');
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}
.disclaimer-full-message {
    margin-top: 10px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 1rem 1rem;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, max-height 0.7s ease-in-out;
}
.disclaimer-full-message-header {
    font-size: 17px;
    font-weight: 700;
}
.disclaimer-full-message-text {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    overflow-x: scroll;
    line-height: 150%;
    word-break: break-word;
}
.disclaimer-full-message-text p {
    padding-right: 2rem;
}
.disclaimer-full-message.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
}
.disclaimer-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.disclaimer-ok-button {
    background: #006497;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
    border-radius: 8px;
    max-height: 5rem;
}
.disclaimer-ok-button:hover {
    background: #006497;
    color: white;
}

.language-modal-content {
    width: 85%;
}
.language-modal-popup-body {
    padding: 16px;
}
.language-modal-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-option {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
}
.language-option:hover {
    background-color: #F5F5F5;
    color: #FF008C;
}
.language-option.selected {
    background-color: #F5F5F5;
    color: #FF008C;
}
.close-language-modal-popup {
    position: absolute;
    right: -10px;
    top: -10px;
    border: none;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0px 1.25px 6px 0px #00000040;
    background-color: white;
    width: 28px;
    height: 28px;
}
.close-language-modal-popup img {
    width: 28px;
    height: 28px;
}
/* only for mobile */
@media screen and (max-width: 767px) {
    .disclaimer-content {
        margin: 0;
        bottom: 125px;
    }
    .disclaimer-content.full-size {
        max-height: 80vh;
    }
}

