﻿.let-me-message-button {
    background-image: url(./img/let-me-grey.svg);
    height: 45px;
    margin: 3px;
    border: none;
    padding-right: 40px;
    padding-left: 15px;
    background-color: #eee;
    background-position: right 14px center;
    background-repeat: no-repeat;
    vertical-align: middle;
    color: #888;
    transition: 0.3s ease;
}

    .let-me-message-button:hover {
        background-image: url(./img/let-me-white.svg);
        background-color: var(--theme-color);
        color: #fff;
    }

.let-me-message-active-button {
    background-image: url(./img/let-me-white.svg);
    height: 45px;
    margin: 3px;
    border: none;
    padding-right: 40px;
    padding-left: 15px;
    background-color: var(--theme-color);
    background-position: right 14px center;
    background-repeat: no-repeat;
    vertical-align: middle;
    color: #fff;
    transition: 0.3s ease;
}

    .let-me-message-active-button:hover {
        background-image: url(./img/let-me-grey.svg);
        background-color: #eee;
        color: #888;
    }

.m-dialog-button {
    height: 45px;
    margin: 3px 10px;
    border: none;
    padding-right: 15px;
    padding-left: 15px;
    background-color: var(--theme-color);
    vertical-align: middle;
    color: #fff;
}

.m-dialog-link {
    color: var(--theme-color);
}


/* The Modal (background) */
.m-dialog .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.m-dialog .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px;
}

.sub-content {
    margin-top: 40px;
}

    .sub-content .modal-footer {
        padding-top: 20px;
    }

    .sub-content .text-center {
        text-align: center;
    }
/* The Close Button */
.m-dialog .close {
    margin-top: -10px;
    color: #aaaaaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
}

    .m-dialog .close:hover,
    .m-dialog .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
