
/*** error message customization ***/

.messageContainer {
    border: 2px solid black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(155, 155, 155, 0.6);
    z-index: 100500;
}

.message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 20px; 
}
#advancedSearchClose {
    margin-top: 15px;
    border: 2px solid #A62000;
    color: white;
    background-color: #A62000;
    padding: 5px 8px;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 15px;
}

#advancedSearchClose:hover {
    color: #75af42;
    background-color: white;
}


/*** Loader Customization ***/
.loader-container {
    border: 2px solid black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(155, 155, 155, 0.6);
    z-index: 100500;
}
.loading-container {
	animation: rotate 3s linear infinite;
	height: 50px;
	transform-origin: bottom center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
       
}

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

.circle {
	animation: grow 1.5s linear infinite;
	background-color: purple;
	border-radius: 50%;
	display: inline-block;
	margin: -10px;
	height: 40px;
	width: 40px;
	transform: scale(0);
}

.circle:nth-of-type(2) {
	animation-delay: .75s;
	background-color: palevioletred;
}

@keyframes grow {
	50% {
		transform: scale(1);
	}
}


.globalsearch-button {
background-color: white;
}
.globalsearch-button:hover {
background-color:white;
}