form.hs-form .input input:disabled, form.hs-form .input input:read-only, .address-text {
    /* cursor:not-allowed; */
    background-color: transparent !important;
    border: none !important;
}

.address-text {
  height: auto !important;
  margin: 0 !important;
}

.input .select2-container .select2-selection{
padding: 1.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057 !important;
background-color: #f2f2f2 !important;
border: 1px solid #f2f2f2;
border-radius: 0.25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
outline: 0;
}

.input .select2-selection__rendered{
line-height: 1 !important;
padding: 0 !important;
font-family: Arial !important;
color: #495057 !important;
transform: translateY(-5px);
}

.input .select2-selection__arrow{
    line-height: 1 !important;
    padding: 0 !important;
    font-family: Arial !important;
    color: #495057 !important;
    height: 45px !important;

}

.input .select2-container{
width: 100% !important;
height: calc(2.5em + 0.75rem + 2px);

}


.select2-results__option{
    font-family:Arial;
}



.result-item{
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    color: inherit;
}
.search-box{
    transition: 0.2s;
    border: 1px solid #ddd !important;
    width: 100%;
    /* max-width: 500px; */
    box-sizing: border-box;
    background-color: #f5f8fa;
    }

    .schools-search__list{
    list-style-type: none;
    padding: 0;
    }
    .schools-search__list li{
    padding: 8px 15px;
    font-size:16px;
    }
    .schools-search__list li:hover{
        cursor: pointer;
        color:#000;
        opacity:0.7;
    }
    /* .schools-search__list li:nth-child(2n) {*/
    /*    background: #eee;*/
    /*} */

/*
 *  STYLE 6
 */

/*#schools-search::-webkit-scrollbar-track*/
/*{*/
/*	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
/*	background-color: #F5F5F5;*/
/*}*/

/*#schools-search::-webkit-scrollbar*/
/*{*/
/*	width: 10px;*/
/*	background-color: #F5F5F5;*/
/*}*/

/*#schools-search::-webkit-scrollbar-thumb*/
/*{*/
/*	background-color: #F90;*/
/*	background-image: -webkit-linear-gradient(45deg,*/
/*	                                          rgba(255, 255, 255, .2) 25%,*/
/*											  transparent 25%,*/
/*											  transparent 50%,*/
/*											  rgba(255, 255, 255, .2) 50%,*/
/*											  rgba(255, 255, 255, .2) 75%,*/
/*											  transparent 75%,*/
/*											  transparent)*/
/*}*/

li[data-slug="none"] {
    padding:0 15px;
}

.add_my_school{
  color:inherit;
  font-size:16px;
      text-decoration: none;
}

.add_my_school span{

  font-weight:bold;
    
}



/* input[name='company'] {
  margin-top:18px;
} */

.addSchoolNameText > p {
  margin: 18px 0 0;
}

.container-search{
  position:relative;
  /* margin-bottom:18px; */
  display: inline-block;
  width: 100%;
}

.container-search .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
  pointer-events: none;
}

@-webkit-keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}
@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}
.spinner {
     text-align: center;
    position: absolute;
    top: 6px;
    right: 11%;
}
.loading-dots--dot {
  -webkit-animation: dot-keyframes 1.5s infinite ease-in-out;
          animation: dot-keyframes 1.5s infinite ease-in-out;
  background-color: #000;
  border-radius: 10px;
  display: inline-block;
  height: 10px;
  width: 10px;
}
.loading-dots--dot:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loading-dots--dot:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/*.spinner {*/
/*  border: 2px solid rgba(0, 0, 0, 0.1);*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  border-radius: 50%;*/
/*  border-left-color: #00A49F;*/
/*  animation: spin 1s ease infinite;*/
/*  position: absolute;*/
/*  top: calc(1.375rem - 6px);*/
/*    right: 15px;*/
/*    transform: translateY(-50%);*/
/*}*/

/*@keyframes spin {*/
/*  0% {*/
/*    transform: rotate(0deg);*/
/*  }*/

/*  100% {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/


.address-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.address-container .address-items {
  color: rgb(51, 91, 76);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s ease 0s, opacity 0.5s linear 0s;
}
.address-container .address-items.visible {
  height: auto;
  visibility: visible;
  opacity: 1;
  padding: 1vh 1vw;
  border: 1px solid rgb(78 127 109);
  border-radius: 16px;
}