﻿.wmodal {
    display: none;
    position: fixed;
    right: 25px;
    top: 25px;
    z-index: 1000000;
    background-color: #fff;
    padding: 25px;
    max-width: 450px;
    box-shadow: 0 0 20px #494949;
    font-size: 20px;
    color: #555;
}

    .wmodal .wmodal-close {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        color: #555;
    }

    .wmodal .wmodal-no {
        color: #aaa!important;
        padding: 6px 25px;
        float: right;
        font-size: 14px;
        cursor: pointer;
    }

        .wmodal .wmodal-no:hover {
            text-decoration: underline !important;
        }

    .wmodal .wmodal-yes {
        background-color: #1ABC9C;
        color: #fff !important;
        font-weight: 700;
        padding: 6px 25px;
        display: block;
        margin-right: 5px;
        float: right;
        cursor: pointer;
    }

        .wmodal .wmodal-yes:hover {
            background-color: #1edfb9;
        }

    .wmodal .wmodal-image {
        position: absolute;
        left: 25px;
        width: 80px;
        height: auto;
    }

    .wmodal .wmodal-title {
        display: block;
        font-size: 20px;
        font-weight: 800;
        margin: 0 0 15px;
    }

    .wmodal .wmodal-text {
        display: inline-block;
        margin: 0 0 15px;
    }

    .wmodal.has-image {
        padding-left: 120px;
    }

@media screen and (max-width : 769px) {
    .wmodal {
        display: none;
        position: fixed;
        max-width: inherit;
        z-index: 1000000;
        background-color: #fff;
        padding: 25px;
        box-shadow: 0 0 9px #494949;
        font-size: 16px;
        left: 10px;
        right: 10px;
        top: 10px;
    }
}
