/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 29 2023 | 18:00:57 */
.dimmed {
	color: #ccc;
  font-size: 80%;
}

.site-logo {
	margin-top:10px;
}

.fas {
	opacity: .4;
}

.home .featured-image {
	display: none;
}

strong {
	font-weight: 400;
}

/*------Forms----------*/

/* The container */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	font-size: 19px;
}

/* Hide the browser's default checkbox */
.check-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.check-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #5a574e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.check-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 8px;
  top: 2px;
  width: 10px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

input:invalid {
  box-shadow: none;
}

.grid-container.form .grid-parent {
	margin-bottom: 20px;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
textarea,
select {
	width: 100%;
}


select.fancy_select{
   /* background: #20d492;
    color: #fff;
    padding: 0 10px;
    font-size: 22px;*/
}
select.fancy_select option{
	color: #000;
    padding: 10px 10px !important;
}

/*------/Forms----------*/

.content-desktop {display: inline;}
.content-mobile {display: none;}

@media screen and (max-width: 768px) {

.content-desktop {display: none;}
.content-mobile {display: inline;}

}