.modal-1 {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    padding-top: 1%;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: hidden;
    /* Enable scroll if needed */
    background-color: #fff
        /* rgb(255, 255, 255); */
        /* Fallback color */
        /* background-color: rgba(255, 255, 255, 0.4); */
        /* Black w/ opacity */
}

/* Modal Content */
.modal-content-1 {
    background-color: #fff;
    margin: auto;
    padding: 10px;
    /* border: 1px solid #888; */
    width: 90%;
}

.ws {
    width: 30%;
}

.wm {
    width: 50%;
}

.wl {
    width: 70%;
}

.wx {
    width: 90%;
}

/* The Close Button */
.close-1 {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-1:hover,
.close-1:focus {
    color: #003f5e;
    text-decoration: none;
    cursor: pointer;
}



.btn-close-1 {
    display: inline-block;
    border-radius: 4px;
    background-color: #cfcfcf;
    border: none;
    color: #3e3c3c;
    text-align: center;
    font-size: 16px;
    padding: 1%;
    width: 80px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.btn-close-1:hover,
.btn-close-1:focus {
    /*color: #000;*/
    text-decoration: none;
    cursor: pointer;
    background-color: #d9d7d7;
}


.modal-header-1 {
    padding: 2px 16px;
    background-color: #ffffff;
}

.modal-body-1 {
    padding: 12px 26px;
}

.modal-footer-1 {
    display: flex;
    direction: ltr;
    justify-content: flex-end;
    padding: 12px 16px;
    background-color: #ffffff;

}



.img-ticket
{
    width: 28% !important;
}

.img-logo
{
    width: 28% !important;
}


.pulsate-fwd {
    -webkit-animation: pulsate-fwd 2.5s ease-in-out infinite both;
    animation: pulsate-fwd 2.5s ease-in-out infinite both;
}


@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}