::selection {
  background-color: #DD6B55;
  color: #000000;
}

::-moz-selection {
  background-color: #DD6B55;
  color: #000000;
}

#search_criteria:focus{
	outline: none !important;
	border: none !important;
	box-shadow: none !important;
}

textarea{
	resize: none !important;
}

.pulse-button {
  animation: pulse 1s infinite;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-glow:hover {
  animation: pulse-glow 1s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    /*transform: scale(1);*/
    box-shadow: 0 0 0 0 rgba(225, 227, 29, 0.3);
  }
  50% {
    /*transform: scale(1.1);*/
    box-shadow: 0 0 0 10px rgba(225, 227, 29, 0.3);
  }
  100% {
    /*transform: scale(1);*/
  }
}
.select_avatar img{
	border: solid 1px transparent;	
	border-radius: 10px;
}
.select_avatar.active img,
.select_avatar:hover img{
	border: solid 1px #ccc;	
}
.select_avatar.active img{
	background-color: rgba(0, 0, 0, .2);
}

.upload-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: solid 1px #CCC;
	overflow: hidden;
	box-shadow: none;
	/*margin: 5%;*/
	transition: all .3s ease;
}
.upload-wrapper:hover {
	/*transform: scale(1.05);*/
	box-shadow: 0px 0px 5px rgba(127, 127, 127, 0.5);
	cursor: pointer;
}

.upload-wrapper .upload-image,
.upload-wrapper .upload-video {
	width: 100%;
	height: 100%;
	transition: all .3s ease;
	object-fit: contain;
}

.upload-wrapper .upload-image:after,
.upload-wrapper .upload-video:after {
	font-family: EcIcons;
	content: "\f03e";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 300px;
	position: absolute;
	font-size: 60px;
	background: #f0f0f0;
	color: #aaa;
	text-align: center;
}
.upload-wrapper .upload-image {
	width: 100%;
	height: 100%;
	/*max-height: 290px;*/
}
.upload-wrapper .upload-video:after {
	font-family: EcIcons;
	content: "\f03d";
}
.upload-wrapper .upload-button {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.upload-wrapper .file-upload {
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

.bg-slider {
	animation-delay: 0s;
	animation-duration: 20s;
	animation-name: panoramic;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-fill-mode: both;
	-moz-animation-delay: 0s;
	-moz-animation-duration: 20s;
	-moz-animation-name: panoramic;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-fill-mode: both;
	-webkit-animation-delay: 0s;
	-webkit-animation-duration: 20s;
	-webkit-animation-name: panoramic;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: both;
	background-position-x: 50%;
	overflow: hidden;
	margin: 0 auto;
	will-change: background-position-x;
	width: 100%;
}

@keyframes panoramic {
	0% {
		background-position-x: 0%;
	}
	50% {
		background-position-x: 100%;
	}
	100% {
		background-position-x: 0%;
	}
}
@-moz-keyframes panoramic {
	0% {
		background-position-x: 0%;
	}
	50% {
		background-position-x: 100%;
	}
	100% {
		background-position-x: 0%;
	}
}			

#page_content{
		
}

#page_content h3{
	font-size: 36px;
	font-weight: bold;
	margin: 10px 0px;
	margin-top: 20px;
}
#page_content h4,
#page_content h5{
	font-size: 24px;
	font-weight: bold;
	margin: 10px 0px;
}
.trumbowyg-editor ul,
#page_content ul{
	margin: 10px 0px;
	padding-left: 5%;
	list-style: disc;
}
#page_content a{
	text-decoration: underline;
}
#page_content a:hover{
	text-decoration: none;
}
.trumbowyg-editor{
	height:300px;
	max-height:300px;
}