/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

html {
    font-family: "Helvetica Neue", sans-serif;
    width: 100%;
    color: #666666;
    text-align: center;
}

.popup-overlay {
    /*Hides pop-up when there is no "active" class*/
    visibility: hidden;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    /*displays pop-up when "active" class is present*/
    visibility: visible;
    text-align: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    width: 30%;
    margin-top: 10px;
}

.popup-content .wpforms-container input.wpforms-field-medium,
.popup-content .wpforms-container select.wpforms-field-medium,
.popup-content .wpforms-container .wpforms-field-row.wpforms-field-medium {
    max-width: unset;
}

#search-results button {
    display: inline-block;
    vertical-align: middle;
    border-radius: 30px;
    margin: .20rem;
    font-size: 1rem;
    color: #666666;
    background: #ffffff;
    border: 1px solid #666666;
}

#search-results button:hover {
    border: 1px solid #666666;
    background: #666666;
    color: #ffffff;
}

@media only screen and (max-width: 600px) {	
table thead {
    display: none;
  }
table td {
    display: flex;
  }
  
table td::before {
    content: attr(label);
    font-weight: bold;
    width: 120px;
    min-width: 120px;
  }
}


.search_form_class{
	display: -webkit-inline-box !important;
	margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {	
	.search_form_class{
	display: block !important;
	margin-bottom: 20px;
}
	.search_form_class input{
	margin-bottom: 10px;
}
	.checkButton{
		margin-top: 10px;
	}
	.popup-content {
    width: 90% !important;
}
}