#suggestions{
    transform: translateY(1rem);
    z-index: 9;
    max-width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: solid 2px #77777777;
    color: #999999;
    min-width: 100%;
    left: 0;
}
.clear-button{
	cursor: pointer;
}
.clear-button * {
	pointer-events: none;
}
.input-col:hover{ 
	border-color: #52C6D8!important;
}
#i-location:focus-visible, #location-input-col *, :focus-visible{
	outline: none!important;
}
.instructor-card-name{
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.instructor-card-name span{
	color: #00000080;
    font-size: 0.8rem;
    text-align: center;
}
.instructor-card-location span:not(:empty):before{content: ", "}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
    background-color: #fff;
}
.suggestion-item:hover {
    background-color: #eee;
}
.instructor-card a{ 
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#suggestions{
	transform: translateY(1.5rem);
}
@media(max-width: 768px){
    #suggestions{
        max-width: 400px;
        min-width: 400px;
    }
}
@media(max-width: 600px){
    #suggestions{
        max-width: 100%;
        min-width: 100%;
    }
}
.loader-wrapper{
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 0rem;
    opacity: 0;
}
.loader-wrapper.active{
    display: flex;
    opacity:1;
}
.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}
.loader.active::after,
.loader.active::before{
    opacity: 1;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #52C6D8;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: animloader 2s linear infinite;
}
.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.instructor-card-name p{
    text-transform: capitalize;
}
.instructor-card-location p{
    text-transform: capitalize;
}
.instructor-results-view-more button:hover{
    font-weight: 600;
}
.instructor-results-amount h2{
    color: #1c1c1c;
    font-weight: 300;
    font-family: "Archivo";
    font-size: 2rem;
}
.instructor-results-amount h2 span{
    font-weight: 700;
}
.instructor-results-amount{
    display: flex;
    justify-content: center;
}
.instructor-results-view-more{
    display: flex;
    justify-content: center;
}
.custom-container{
    max-width: 1140px;
    margin: auto;
    padding: 0rem 0em 5rem 0rem;
}
.instructor-results-view-more button{
    font-weight: 400;
    color: #52C6D8;
    font-family: "Archivo";
    font-size: 1.2rem;
    border: none;
    text-decoration: underline;
    text-underline-offset: 10px;
    background: transparent;
}
.instructor-results-view-more button:hover, .instructor-results-view-more button:active{
    background: transparent;
}
.instructor-results-wrapper{
    display: flex;
    justify-content: start;
    margin-top: 0rem;
    flex-wrap: wrap;
}
.instructor-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% / 3);
    padding: 3rem 2rem;
}
.instructor-card-picture{
	object-fit: cover;
    border: solid 3px #52C6D8;
    border-radius: 100px;
    width: 100px;
    height: 100px;
	overflow: hidden;
}
.instructor-card-picture img{
    object-fit: cover;
    border-radius: 100px;
	transition: transform ease-in-out 0.3s;
}
.instructor-card:hover img{
	transform: scale(1.1);
}
.instructor-card-data{
    display: flex;
    flex-wrap: wrap;
    margin: 0.5rem 0 0.2rem 0;
}
.instructor-card-name{
    position: relative;
}
.instructor-card-name:after{
	display: none;
    content: '';
    height: 18px;
    width: 2px;
    background: #52C6D8;
    position: absolute;
    top: 0;
    right: -0.9rem;
    bottom: 0;
    margin: auto;
}
.instructor-card-name p{
    font-family: "Archivo";
    font-weight: 400;
    color: #52C6D8;
    font-size: 1.2rem;
}
.instructor-card-rating{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1.5rem;
}
.instructor-card-total-rating img{
    width: 10px;
}
.instructor-card-total-rating{
    font-family: "Archivo";
    font-weight: 900;
    color: #52C6D8;
    font-size: 0.9rem;
}
.instructor-card-total-all-ratings{
    color: #999999;
    font-family: "Archivo";
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.3rem;
}
.instructor-card-location p{
    color: #000000;
    font-family: "Archivo";
    font-weight: 600;
    font-size: 0.9rem;
}
.form-sub{
    cursor: pointer;
}
@media(max-width: 1024px){
    .instructor-card{
        width: calc(100% / 2);
    }
    .custom-container{
        padding: 2rem 2em 5rem 2rem;
    }
}
@media(max-width: 600px){
    .custom-container{
        padding: 0rem 2em 5rem 2rem;
    }
    .instructor-results-view-more button {
        font-size: 1rem;
    }
    .instructor-card{
        width: 100%;
        padding: 0 0 4rem 0;
		border-bottom: solid 2px #52C6D8;
    	margin-bottom: 4rem;
        box-shadow: unset!important;
        aspect-ratio: 16 / 9;
    }
    .instructor-results-amount h2{
        text-align: center;
        max-width: 100%;
    }
    .instructor-results-wrapper{
        margin-top: 0rem;
    }
}