#checkbox_filter {
    height: 200px;
    width: 218px;
}

.load-more-button{
    width: fit-content;
    display: none;
    margin: 50px auto 0;
    color: white;
    border: none;
    padding: 10px;
    background-color: #00083d;
    border-radius: 5px;
}

.loader, .loader:before, .loader:after {
    border-radius: 50%;
    width: 9px !important;
    height: 9px;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader {
    display: none;
    margin: auto;
    color: #2398d6;;
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}
.loader:before {
    left: -14px;
    animation-delay: -0.32s;
}
.loader:after {
    left: 14px;
}

@keyframes bblFadInOut {
    0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
    40% { box-shadow: 0 2.5em 0 0 }
}

a:target{
    color:white;
}

.read-more-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

@media(max-width:650px){
	.blogs{
    	flex-direction:column;
		align-items:center;
	  }
	
	.blogs > div:last-of-type{
		margin-bottom:50px;
		order:-1;
	}
}


.select_box{
  position: relative;
}

.select_box select {
   /* for Firefox */ 
        -moz-appearance: none; 
        /* for Safari, Chrome, Opera */ 
        -webkit-appearance: none; 
}

.select_box:after{
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    position: absolute;
    top: 73%;
    right: 14px;
    content: "";
    z-index: 2;
 }
.select_box select{
  border: 0;
  position: relative;
  z-index: 1;
}
