@charset "UTF-8";
/* CSS Document */

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 16; /* Sit on top */
    left: 0;
    top: 50px;
    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/Box */
.modal-content {
    background-color: #002D3E;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    width: 80%; /* Could be more or less, depending on screen size */
	color:#fff;
}

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

.btn-green {
	color: #fff;
	background-color: #79a141;
	border-bottom: thin solid rgba(38,77,22,1.00) !important;
	border-right: thin solid rgba(38,77,22,1.00) !important;
	border-top: thin solid rgba(153,220,139,1.00) !important;
	border-left: thin solid rgba(153,220,139,1.00) !important;
	margin-top: 20px;
	Margin-bottom: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: #002D3E;
    color: white;
	border-bottom:none;
}

/* Modal Body */
.modal-body {padding: 2px 16px;
min-height: 150px;}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #002D3E;
    color: white;
	border-top: none;
}

.fields input {
	font-size: 20px;
	background-color: #002D3E;
	color: #fff;
	width: 100%; 
	border-bottom: 1px #fff solid;
	border-top: none; 
	border-left: none;
	border-right:none;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	margin-top:30px;
	
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #002D3E;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
@media(min-width:768px) {
	.modal-content {
    width: 30%; /* Could be more or less, depending on screen size */
}
}