﻿/* For modal window*/
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modalPlainBackground {
    display: none;
    position: fixed;
    z-index: 100;
    /*padding-top: 100px;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /*background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);*/
}

.jmodal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 20%;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.jmodal-close {
    padding-top: 10px;
    margin-top: -25px;
    margin-right: -10px;
    color: #111;
    float: right;
    font-size: 18px;
    font-weight: bold;
}
    .jmodal-close:hover, .jmodal-close:focus {
        color: #aa2211;
        text-decoration: none;
        cursor: pointer;
    }

/* For modal window*/
.waitmodal {
    visibility: hidden;
    position: fixed;
    z-index: 100;
    padding-top: 350px;
    /*vertical-align: middle;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

    .waitmodal .modal-content {
        background-color: transparent;
        margin: auto;
        padding: 0;
        border: none;
        width: 100px;
        height: 100px;
    }

.form-group label{text-transform: uppercase;font-size: 14px;font-weight: 400;}
.form-group .form-control{height: 34px;box-shadow: none;outline: none;border-radius: 0;border: var(--border);font-size: 13.3333px;font-family: Arial, sans-serif;border-radius: var(--border-radius-5);}
.form-group .form-control:focus{outline: 1px solid var(--custom-color-five);}
.form-group textarea.form-control{height: 87px;resize: none;}