.jquery-modal.blocker {
    z-index: 999999;
}
.jquery-modal .modal {
    position: absolute;
    padding: 0;
    opacity: 1;
}
.jquery-modal .modal .widget-content {
    padding: 20px 30px;
}
.jquery-modal .modal h3 {
    margin-bottom: 10px;
}
.jquery-modal .modal p:last-child {
    margin-bottom: 0;
}
.jquery-modal .modal:not(.rounded) {
    border-radius: 0 !important;
}
.jquery-modal .modal:not(.shadow) {
    box-shadow: none !important;
}

/* Modal Positioning */

.jquery-modal .modal.top_left {
    top: 10px;
    left: 10px;
}
.jquery-modal .modal.top_center {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.jquery-modal .modal.top_right {
    top: 10px;
    right: 10px;
}
.jquery-modal .modal.center_center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.jquery-modal .modal.center_right {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.jquery-modal .modal.center_left {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.jquery-modal .modal.bottom_left {
    bottom: 10px;
    left: 10px;
}
.jquery-modal .modal.bottom_center {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.jquery-modal .modal.bottom_right {
    bottom: 10px;
    right: 10px;
}

.jquery-modal .modal form .button {
    display: inline-block;
}
@media screen and (max-width:400px) {
    .jquery-modal .modal h3 {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .jquery-modal .modal p {
        font-size: 15px;
        font-size: 1.5rem;
    }
    .jquery-modal .modal .button {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .jquery-modal .modal form {
        display: block;
        margin: 0 !important;
    }
}