/* Стили для модального окна */

.orphus-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.orphus-modal .orphus-box {
    width: 450px;
    background: #efefef;
    position: relative;
    margin: 9% auto;
    padding: 15px;
    border-radius: 10px;
    display: table;
}

.orphus-modal h3 {
    font-size: 23px;
    margin: 10px 0;
    padding: 1rem;
}

.orphus-modal span {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.orphus-modal .good {
    position: relative;
}

.orphus-modal .orphus-close:after {
    border-radius: 3px;
    content: '×';
    display: block;
    position: absolute;
    right: -2px;
    top:   -2px;
    width: 27px;
    padding: 1px;
    text-decoration: none;
    text-shadow: none;
    text-align: center;
    font-weight: bold;
    background: #ff0000;
    color: #fff;
}

.orphus-modal .orphus-text {
    margin: 10px 0;
    width: 100%;
    display: inline-block;
    position: relative;
}

.orphus-modal .orphus-submit {
    float: left;
    margin-top: 10px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    padding: 5px 25px;
    color: #fff;
    background-color: #28A745;
    width: 100%;
    box-sizing: border-box;
}

.orphus-modal .orphus-comment {
    padding: 5px;
    background-color: #ffffff;
}

.showing {
    display: block !important;
}