﻿.js-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.7s ease-in-out, visiblity 0.7s ease-in-out;
    z-index: 1;
}

.js-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333333;
    background: #ffffff;
    text-align: center;
    padding: 30px 50px;
    border-radius: 5px;
}

.js-modal p {
    margin: 0;
}

.modal-edit {
    margin-bottom: 10px !important;
}

.modal-close {
    margin-top: -25px;
    margin-right: -40px;
}

.modal-close a {
    color: #000;
    text-decoration: none;
}

.js-modal a.btn {
    background-color: #C1122A;
    border: #C1122A;
    margin-top: 15px;
    padding: 10px 25px;
    width: 155px;
    line-height: 1.1;
    color: #fff;
}

.js-modal a.btn:hover {
    color: #fff;
}

.btn-original-edit {
    height: 53px;
}

.modal-original, .modal-suggested {
    margin: 15px;
}

.js-modal a.btn-original-edit {
    padding-top: 18px;
}

.bg-btn-green {
    background-color: #23410A;
}

.modal-close {
    font-size: 2em !important;
}
