.eaa-spinner {
	position: absolute;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 0;

    .spinner {
        height: 200px;
        width: 200px;
        animation: rotate 2s linear infinite;
        transform-origin: center center;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;

        .path {
            stroke-dasharray: 1, 200;
            stroke-dashoffset: 0;
            animation: dash 1.5s ease-in-out infinite;
            stroke-linecap: round;
            stroke: #a02b2a !important;
        }
    }
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

#wrapper .boxed, .eaa-nav .search-field.boxed {
	border-radius: 0 !important;
}

#wrapper .input-portlet.search-field.boxed.boxed--lg {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	background-color: #c53232 !important;

	.btn.btn--primary {
		background-color: #c53232 !important;
		border: 2px solid white !important;
		min-height: 40px;
		color: #FFFFFF !important;
	}

	.btn.btn--primary:hover {
		background-color: #af2f2e !important;
		border: 2px solid #a02b2a !important;
	}
}

