/* 
Theme Name: Hello Elementor Child 
Theme URL: http://mttshw.com
Description: Hello Elementor Child 
Theme Author: Your Name
Author URL: http://mttshw.com
Template: hello-elementor
Version: 1.0.0 
Text Domain: hello-elementor-child 
*/
.elementor-location-header header a {
	color: #fff;
	text-decoration: underline;
}
	
.entry { 
	position: relative; 
	background: #fff; 
	padding: 30px; 
	min-height: 100px; 
	border: 1px solid #f2f2f2;
	border-radius: 4px;
	flex-basis: 22%;
}
.entry img { 
}
.entry h2 { 
	font-weight: 600; 
	font-size: 1.4rem; 
}
.documents-container {
	display: flex;
}
.documents-main {
	margin-left: 30px; 
	width: 100%;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.documents-sidebar {
	width: 250px;
	padding: 0;
	background: rgba(255,255,255, 0.5);
	border-right: 1px solid #eeeeee;
	position: relative;
	z-index: 10;
}

.documents-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.documents-sidebar a {
	color: #999999;
}
.documents-sidebar ul li {
	border-bottom: 1px solid #eeeeee;
}
.documents-sidebar ul li a {
	font-weight: 600;
	display: block;
	padding: 10px 30px;
}
.documents-sidebar ul li ul {
	padding-bottom: 10px;
}
.documents-sidebar ul li ul li {
	border-bottom: 0;
	padding: 0 30px;
}
.documents-sidebar ul li ul li a {
	font-weight: 400;
	padding: 0;
	margin-bottom: 5px;
	font-size: 0.9rem;
}


.loadingcontainer {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid rgb(5, 170, 233);
    border-right-color: rgb(5, 170, 233);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

@-webkit-keyframes spinner-border {
	to {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  @keyframes spinner-border {
	to {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }