.omw-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 700px;
    max-width: 90%;
    max-height: 85%;
    background-color: #ffffff;
    padding: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100002;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);

    p:last-child {
        margin: 0;
    }

    .omw-modal-title {
        position: absolute;
        top: 0;
        left: 0;
        color: #333;
        width: 100%;
        font-size: 13px;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 50px 12px 15px;
        margin: 0;
    }

    .omw-close-modal {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #13aff0;
        width: 30px;
        height: 30px;
        line-height: 1;
        z-index: 1;

        &:hover {
            background-color: #0b7cac;
        }

        &:before,
        &:after {
            content: "";
            position: absolute;
            height: 2px;
            width: 16px;
            top: 50%;
            left: 50%;
            margin-top: -1px;
            margin-left: -8px;
            background-color: #fff;
            border-radius: 5px;
        }

        &:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        &:after {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }
    }
}

/* Overlay */
.omw-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.9 !important;
    z-index: 100001;
}

/* Modal */
@media only screen and (max-width: 959px) {
    .omw-modal {
        padding: 30px;
    }
}
