/* The Modal (background) */
.uts-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.uts-modal-content {
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 15%; /* Could be more or less, depending on screen size */

    /*background: #ffffffde;*/
    background: white;
    border: 1px solid #e5e5e5;
    /* color: #333; */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

#myModal .uts-modal-content {
    width: 30%;
}

/* The Close Button */
.close {
    box-sizing: content-box;
    padding: 0.25em;
    color: #000;
    background: url(../images/close-icon.svg);
    border: 0;
    border-radius: 0.375rem;
    width: 8px;
    opacity: 0.3;
    height: 8px;
    background-repeat: no-repeat;
    float:right; 
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.6;

    }
