
.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #444444e6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  display: none;
}
.loader.show{
  display: block;
}

.loader .loader-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width .5s, height 1s;
}

.loader .loader-inner .loading-box {
  text-align: center;
  width: 100%;
  padding: 2em;
}

.loader .loader-inner .loading-box .circular-loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #444;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: loadingSpin 2s linear infinite;
  margin: 0 auto;
  transition: all .5s ease-out;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .loader-inner .loading-box .circular-loader:before, .loader .loader-inner .loading-box .circular-loader:after {
  content: '';
  height: 0px;
  width: 0px;
  background-color: white;
  position: absolute;
  -webkit-transition: height .5s;
  transition: height .5s;
}

.loader .loader-inner .loading-box .loader-message {
  padding: 1em 0;
  color: white;
}

@keyframes loadingSpin{
  0% {
      transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.form-group{
  position: relative;
}
.customDropDown {
  position: absolute;
  background: #ffffff;
  padding: 5px;
  border-radius: 5px;
  transform: translateY(15px);
  width: 100%;
  box-shadow: 0 0 10px #00000024;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}

.customDropDown.show{
  opacity: 1;
  visibility: visible;
}

.customDropDown:before {
  content: '';
  position: absolute;
  border: 5px solid transparent;
  border-top-width: 0;
  border-bottom-color: #fff;
  bottom: 100%;
  left: 15px;
}

.customDropDown li {
  display: block;  
  margin-bottom: 2px;  
  line-height: 1;  
}
.customDropDown li button{
  padding: 8px 12px;
  color: #272727;
  font-weight: 600;
  border-radius: 2px;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
}
.customDropDown ul {
  padding: 0;
  margin: 0;
}

.customDropDown li button:hover {
  background: #f3f3f3;
  color: #000;
}