/* 
    Created on : 03.03.2020, 15:08:17
    Author     : Jens
*/

/* TODO: move the color definition to a more common place */
/*:root {
    --white: #FFFFFF;
    --light-gray: #F9F9F9;
    --gray: #E2E2E2;
    --medium-gray: #B1B1B1;
    --dark-gray: #6F6F6F;
    --black: #212121;
    --light-blue: #A1C9D9;
    --blue: #009EE0;
    --dark-blue: #037DAF;
    --green: #88BF67;
    --orange: #FF7700;
}*/

.dialog-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 99999999;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.dialog-container > .fader {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: #ff0000;
    background-color: var(--dark-gray);
}
.dialog-container > .content {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    width: calc(600px - 32px);
    padding: 16px;
    padding-bottom: 8px;
    border-radius: 4px;
    max-width: calc(100% - 80px);
    max-height: calc(100% - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}
.dialog-container > .content > .text {
    text-align: left;
    font-size: 14px;
    line-height: 1.5em;
    overflow: auto;
}
.dialog-container > .content > .image {
    position: relative;
    left: -16px;
    top: -16px;
    width: calc(100% - -32px);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px 4px 0px 0px;
}
.dialog-container > .content > .input-field {
    text-align: left;
    width: calc(100% - 20px);
    margin: 12px 0px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
}
.dialog-container > .content > .textarea-field {
    text-align: left;
    width: calc(100% - 20px);
    margin: 12px 0px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    height: 80px;
    font-size: 16px;
    font-weight: 500;
    padding-left: 0px;
}
.dialog-container > .content > .buttons {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.dialog-container > .content > .buttons > .leftBtn > .button,
.dialog-container > .content > .buttons > .centerBtn > .button,
.dialog-container > .content > .buttons > .rightBtn > .button {
    float: left;
    cursor: pointer;
    margin-left: 16px;
    font-weight: 500;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: 14px;
    user-select: none;
}
.dialog-container > .content > .buttons > .leftBtn > .button {
    margin-left: 0px;
    margin-right: 16px
} 

#notificationBox-wrapper {
    display: flex;
    position: fixed;
    z-index: 3;
    top: 100px;
    width:100%;
    justify-content: center;
}
#notificationBox {
    display: flex;
    justify-content: space-between;
    max-width: 606px;
    flex: auto;
    padding: 16px;
    margin: 16px;
    background-color: var(--white);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.16);
    border-radius: 4px;
}
#notificationBox .btn-go-back {
    flex: 0 0 24px;
    margin-left: 8px;
}
#notificationBox .text {
    font-size: 16px;
}
