﻿.fade {
    display: none;
}

.app-dialog-language-box {
    display: flex !important;
    flex-direction: row !important;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap !important;
    justify-content: center;
}

.app-dialog-footer {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.app-dialog-lang-box > a {
    color: var(--primary-hover);
}

.app-dialog-body > p {
    font-weight: normal;
    
    font-size: 16px;
}

.app-dialog-box {
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    background: var(--primary-color-reflection);
    border: 1px solid lightgrey !important;
    box-shadow: 1px 5px 5px lightgray !important;
    z-index: 3;
}

.app-dialog-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 0.2;
    z-index: 2;
    background: black;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.app-dialog-content {
    padding: 20px;
}

.app-dialog-title {
    font-weight: normal;
    
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 20px;
}

.app-dialog-header {
    display: flex;
    flex-direction: column;
}

.app-dialog-close {
    max-width: 30px;
    width: 100%;
    height: 30px;
    align-self: flex-end;
    
    border: none;
    border-width: thin;
    border-radius: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--primary-hover);
    text-align: center;
    border-radius: 10px;
}

    .app-dialog-close:hover {
        animation-name: common-button-filling;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }

.app-dialog-lang-box {
    color: var(--primary-hover);
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: 10px;
    height: 40px;
    font-size: 16px;
    font-weight: normal;
    
}
