
.error-container {
    width: 100vw;
    min-height: calc(100vh - 138px - 56px);
    display: flex;
    align-items: start;
    padding-top: 10px;
    justify-content: center;
}

.error-icon {
    background-color: white;
    mask-image: url("../icons/times-circle.svg");
    mask-repeat: no-repeat;
    mask-size: 98%;
    height: 52px;
    width: 52px;
}

#backToApplication {
    width: 80px;
    height: 26px;
    display: inline-flex;
    padding: 0;
    justify-content: center;
    background: white;
    border-width: 2px;
    border-radius: 0;
    font-weight: 700;
    color: var(--success);
    border-color: var(--success);
    min-height: unset !important;
}

.language-dropdown {
    position: fixed;
    right: 12%;
}

.rtl {
    .language-dropdown {
        left: 14%;
    }
}



@media (width <=768px) {
    .error-container {
        min-height: calc(100vh - 60px - 56px);
    }
}

@media (width <=485px) {
    .language-dropdown {
        right: auto;
    }

    .kc-locale-wrapper-positioning {
        display: flex;
    }

    .language-dropdown-positioning {
        margin-top: -10px !important;
        display: flex;
        padding-bottom: 10px;
    }

    .alert-container{
        height: 110px
    }
}

.alert-container {
    min-height: 100px;
    width: 80%;
    position: relative !important;
    display: flex;
    flex-direction: row;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-icon {
    background-color: var(--danger);
    display: flex;
    min-height: 100px;
    min-width: 100px;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0px 0px 6px;
}

.alert-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    padding: 10px 10px 10px 32px;
    border-radius: 0px 6px 6px 0px ;
}

.alert-btn-close {
    display: flex;
    align-items: start;
    justify-content: end;
    z-index: 10;

}

.alert-btn-close button {
    height: auto;
    background: none;
    border: none;
    padding: 0px;
}

.alert-title {
    font-weight: 700;
    font-size: 16px;
    max-width: calc(100% - 80px);
}

.bg-alert-icon-error {
    background-color: var(--danger) !important;
}

.bg-alert-content-error {
    background-color: var(--danger-background) !important;
}

.error-container-positioning {
    position: fixed;
    top: max(20%, 140px);
    max-height: calc(100vh - 18%);
    z-index: 101;
    height: fit-content;
    border-radius: 6px;
}

.language-dropdown-positioning {
    margin-top: -70px;
}

