/*
    BASE STYLE SHEET
    Author: Magic Five
*/

.logo {
	max-height: 30px;
}
.footer-logo {
	max-width: 100px;
}

.navbar-toggler {
	display: none;
}

.e-field-error::-webkit-input-placeholder { /* Edge */
  color: red !important;
}

.e-field-error:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: red !important;
}

.e-field-error::placeholder {
  color: red !important;
}

.e-form-message-content {
	width: 100%;
	overflow: hidden;
	padding: 0 15px;
	color: red;
	font-weight: 600;
}

.form-success {
	color: green;
}

.acceptance-error {
	color: red;
}


.search_spinn {
	height: 100% !important;
	color: transparent !important;
}

.search_spinn:after {
	display: block;
	content: '';
	border-right: 2px solid #29a9e1;
	border-bottom: 2px solid #29a9e1;
	border-left: 2px solid #fff000;
	height: 20px;
	width: 20px;
	border-radius: 20px;
	position: absolute;
	right: 0;
	bottom: 12px;
	animation: rotate 1s infinite;
}

@media only screen and (max-width: 980px) {
	.navbar-toggler {
		display: block;
		padding: 7px;
		float: right;
	    top: 10px;
	    position: relative;
	    right: 10px;
	}
	.navbar-toggler .navbar-toggler-icon {
		width: 20px;
	    height: 2px;
	    background-color: #585858;
	    position: relative;
	    display: block;
	    margin-bottom: 3px;
   	}
	.navbar-toggler .navbar-toggler-icon:last-child {
		margin-bottom: 0;
	}
} 

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}