.wt-popup {
    display: none;
    position: fixed;
    z-index: 600;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    margin-top: 0;
}

.wt-popup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 4px solid var(--primary-color);
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animateTop;
    -webkit-animation-duration: 0.4s;
    animation-name: animateTop;
    animation-duration: 0.4s;
}

@media only screen and (max-width: 768px) {
    .wt-popup-content {
        width: 95%;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .wt-popup {
        padding-top: 0;
    }
}

@-webkit-keyframes animateTop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animateTop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.wt-close {
    color: gray;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
}

.wt-close:hover,
.wt-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.wt-popup-body {
    padding: 2px 16px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.wt-popup-body p {
    text-align: center;
    font-size: larger;
    font-weight: bolder;
    padding: 15px;
}
