

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    overflow-y: auto;
}

.modal.fade {
    /*opacity: 0;*/
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.modal-dialog {
    width: 600px;
    margin: 30px auto
}

.modal-wide {
    width: 700px;
}

.modal-title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #333333;
    position: relative;
}

.modal-super-wide {
    width: 987px;
}

.modal-content {
    position: relative;
    background-color: #FFFFFF;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0;
    box-shadow: 0 24px 32px rgba(8, 35, 48, 0.06), 0 8px 16px rgba(8, 35, 48, 0.1);
    border-radius: 4px;
    padding: 30px;
}

.modal-backdrop {
    opacity: .5;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(215, 223, 233, 0.6);
}

.modal-header .close {
    margin-top: -2px;
}

.modal-divider {
    height: 1px;
    margin: 20px 0;
    background: rgba(215, 223, 233, 0.6);
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.modal-body {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.modal-body img {
    max-width: 100%;
}

.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    text-align: right;
    border-top: 1px solid rgba(215, 223, 233, 0.6);
}

.modal-footer-left {
    float: left;
}

.modal-loader {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.1); */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    z-index: 2;
    font-size: 22px;
}

.modal-loader:before {
    content: "";
    position: absolute;
    background: url('/icons/reload-icon.svg') no-repeat;
    background-size: cover;
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
    width: 39px;
    height: 52px;
    z-index: 1;
    margin-top: -80px;
}

.modal-body.modal-body-loading {
    filter: blur(3px);
    overflow: hidden;
}
