@keyframes hidePreloader {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 0;
  }
}
body > div.preloader {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 1071;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body:not(.loaded) > div.preloader {
  opacity: 1;
}
body:not(.loaded) {
  overflow: hidden;
}
body.loaded > div.preloader {
  animation: hidePreloader 0.5s linear 0.5s forwards;
}

.brand-logo{
  font-size: 30px;
  font-weight: bold;
}

body{
  font-family: 'Montserrat', sans-serif !important;
}

.list-group-item{
  border: 1px solid rgba(255, 153, 51, .3) !important;
  border-radius: 5px !important;
  margin-bottom: 10px !important;
  padding: 10px !important;
}

.list-group-item-left{
  height: 150px !important;
}

.operatorList{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.operatorList img{
  margin: 10px 10px;
  height: 150px;
  flex-grow: 1;
  flex-basis: 0;
}

.footer_flex_container{
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 100%;
}

.footer_flex_container > div{
  flex: 1;
}


.tooltip1 {
  position: relative;
  display: inline-block;
}

.tooltip1 .tooltiptext1 {
  visibility: hidden;
  padding: 5px 10px;
  background-color: #666AF6;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-size: 10px;
  position: absolute;
  z-index: 999;
  top: 120%;
  left: 50%;
  margin-left: -60px;
}

.tooltip1 .tooltiptext1::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #666AF6 transparent;
}

.tooltip1:hover .tooltiptext1 {
  visibility: visible;
}


@media (max-width: 1000px) {
  .operatorList img{
    margin: 10px 10px;
    height: 80px;
    flex-grow: 1;
    flex-basis: 0;
  }
}
