.modal-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.modal-wrapper {
    width: 50%;
    height: auto;
    background: ghostwhite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background: rgba(2, 162, 239, 1);
    padding: 1rem 0;
}

.close-btn-wrapper .title {
    display: block;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px 4px 0 0;
    padding-left: 0.5rem;
    width: 48%;
}

.close-btn-wrapper .close-x {
    float: right;
    color: #424242;
    font-weight: 800;
    transition: all .5s ease-in-out;
    z-index: +1;
    text-align: end;
    width: 50%;
}

.close-btn-wrapper .close-x a {
    text-decoration: none;
    cursor: pointer;
}

.open-modal-btn-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-modal-btn,
.open-modal-btn {
    padding: 8px;
    background: slateblue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    color: ghostwhite;
    margin-left: auto;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.modal-content-msg {
    margin: 20px auto;
    width: 100%;
    font-family: cursive;
    text-align: center;
}



.hide {
    display: none;
}

h1 {
    text-align: center;
}

.ui-button .ui-icon {
    background-image: url("../images/ui-icons.png") !important;
}