@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-Thin.ttf);
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-Light.ttf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-Regular.ttf);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-Medium.ttf);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-SemiBold.ttf);
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-Bold.ttf);
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url(/fonts/csi/Montserrat-ExtraBold.ttf);
  font-style: normal;
  font-weight: 800;
}

body {
  font-family: Montserrat, sans-serif;
  overscroll-behavior: none;
}

.scroll-container {
  position: absolute;
  width: 100%;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  top: 0;
  left: 0;

  /* overflow-y: ${({ type }) => (type === "camera" ? "hidden" : "auto")};
      overflow-x: ${(props) => (props.scroll ? "auto" : "hidden")}; */
  overflow-y: auto;
  overflow-x: hidden;

  padding: 1.75rem;
  padding-bottom: 7.5rem;
  padding-top: 50px;

  /* background-color: ${(props) => {
        return props.background ? props.background : "white"
      }}; */

  display: flex;
  flex-direction: column;
}

.three-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 100px auto 10;
  width: 70px;
  text-align: center;
}

.three-dots > div {
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(41, 41, 41, 0.7);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bounce-delay 1.4s infinite ease-in-out both;
  animation: bounce-delay 1.4s infinite ease-in-out both;
}

.three-dots .dot1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: rgba(41, 41, 41, 0.7);
}

.three-dots .dot2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: rgba(41, 41, 41, 0.7);
}

.remove-scrollbar::-webkit-scrollbar {
  width: 0;
}

/* scrollbar design csi */
.scroll-container::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
  width: 3px;
}

.scroll-container::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scroll-container::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
  background: var(--colors-primary);
}

@-webkit-keyframes bounce-delay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounce-delay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
