.modal {
    display: none;
    position: fixed;
    z-index: 1060;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.modal.active {
    opacity: 1;
    transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: block;
}

.modal-content {
    background-color: #fff;
    margin: 4% auto;
    padding: 24px;
    border: 1px solid #888;
    max-width: 80%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    border-radius: 8px;
    box-sizing: border-box;
    width: 90%;
}

.modal-body {
    padding: 28px 0px;
}

.modal-body>p {
    border-radius: 0 0 8px 8px;
    background: #F3F8F4;
    padding: 20px;
    color: #313231;
}

.modal-bottom {
    width: fit-content;
}

.btn-light {
    background: white !important;
    border: none;
}