/*--------------------------------------------------------------------------------------+
|
|     Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
+--------------------------------------------------------------------------------------*/

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: pointer;
}

#divLoaderImg {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  @extend html;
  display: flex;
  justify-content: space-around;
  align-items: center;
  
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.loading {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: .25rem solid #C7CCD1;
  border-top-color: #4D575F;
  animation: spin 0.7s infinite linear;
}

.overlayDiv {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}

.btnSearchPageClear {
  float: right;
  background-color: white;
  padding: 3px 10px;
  padding-bottom: 12px;
  color: grey;
  border-left: 2px solid RGB(231,233,236);
  height: 32px;
}


.carousel-Title {
  text-align: left;
  margin: 6px auto;
  line-height: 0px;
  margin-bottom: 16px;
  margin-top: 10px;
  font-family: open sans;
}
