.modal-close {
    padding: 0 6px !important;
    height: 30px;
    background: none !important;
}

.modal-close {
    margin: 5px;
    border-radius: 5px;
    max-height: 35px;
    max-width: 150px;
    border: none;
    font: 14px sans-serif;
    box-sizing: content-box;
    text-align: center;
    color: white;
}

.smart-modal {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* fallback color */
    background-color: #0d0908;
    background-color: rgba(13, 9, 8, 0.5);
    color: white;
}

.modal-content {
    position: fixed;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    width: 800px;
}

@supports (display: grid) {
    .modal-content {
        display: grid;
        grid-template-rows: 2fr 7fr 1fr;
        height: 70%;
    }
}

.modal-title {
    font-size: 35px;
    padding-left: 40px;
    width: 60%;
    color: white !important;
    margin: 10px 0;
}

.modal-head {
    background: #13355b;
}

.modal-body {
    color: #c77b30;
}

.modal-list {
    list-style: none;
    padding-left: 40px;
}

.modal-list > li {
    margin: 10px 0;
}

.modal-list-title {
    padding-left: 40px;
    margin: 10px 0;
    color: #c77b30 !important;
}

.modal-img {
    position: absolute;
    justify-self: right;
    bottom: 0;
    right: 0;
    max-width: 400px;
}

.modal-img-container {
    position: relative;
    text-align: right;
}

@media screen and (max-width: 820px) {
    .modal-content {
        width: 80%;
        height: 80%;
    }
    
    .modal-title {
        font-size: 25px;
    }

    .modal-img {
        position: relative;
        bottom: -4px;
        max-width: 200px;
    }
}

.modal-footer {
    background-color: #69a2db;
    padding: 20px;
    z-index: 10;
}

.modal-footer > a.modal-link {
    color: white;
    text-decoration: underline;
}

.form-hide {
    display: none;
}

.form-show {
    display: block !important;
}