/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    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.8); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	text-align: center;
    background-color: #eee;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.modal_button {
    color: #fff;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    border: 1px solid #2f6d06;
    padding: 10px 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 10px auto;
    width: 100%;
    max-width: 290px;
    display: block;
    cursor: pointer;
    background: #77b74c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #77b74c 0%, #4a911b 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#77b74c), color-stop(100%,#4a911b));
    background: -webkit-linear-gradient(top, #77b74c 0%,#4a911b 100%);
    background: -o-linear-gradient(top, #77b74c 0%,#4a911b 100%);
    background: -ms-linear-gradient(top, #77b74c 0%,#4a911b 100%);
    background: linear-gradient(to bottom, #77b74c 0%,#4a911b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#77b74c', endColorstr='#4a911b',GradientType=0 );
}