﻿.modal-window {
    background-color: #00000099;
    pointer-events: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(4px);
}

.modal-container {
    width: 640px;
    margin: 100px auto;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.modal-header {
    border-bottom: solid 1px #444;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-family: monospace;
    font-size: 0.9em;
    background-color: #333;
    color: #eee;
    border-radius: 15px 15px 0px 0px;
}

    .modal-header .modal-title {
        align-self: center;
        padding-left: 10px;
    }

    .modal-header .btn-close {
        text-align: right;
        cursor: pointer;
        font-size: 1.4em;
        color: #999;
    }

.modal-content {
    overflow-y: auto;
    max-height: calc(100vh - 100px - 50px);
    min-height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    background-color: #fafafa;
    padding: 25px 20px 35px 20px;
}

.btn-close i:hover:before {
    font-weight: 900;
    color: yellow;
}

.modal-content .btn {
    width: 240px;
    display: flex;
    justify-content: space-between;
}

.modal-window .footer {
    padding: 10px 15px;
    width: 100%;
    border-radius: 0px 0px 15px 15px;
    border-top: solid 1px #ccc;
    background-color: #fff;
}

    .modal-window .footer .actions {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

.model-error {
    color: red;
    font-weight: bold;
    margin: 0px auto 0px auto;
    text-align: center;
}

@@media screen and (max-width: 767px) {
    select:active, input:active, textarea:active {
        font-size: 16px;
    }
}

@@media (max-width: 960px) {
}
