/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap");
.bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
}
.bottom-sheet.show {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
  position: fixed;
  bottom: 0;
  left: 0;

  margin: auto;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}
.bottom-sheet .content {
  z-index: 10;
  width: 40%;
  position: fixed;
  bottom: 50px;
  left: 50%;
  background: #fff;
  max-height: 100vh;
  height: 80vh;
  max-width: 1150px;
  padding: 15px 0px;
  transform: translateX(-50%) !important;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}
.bottom-sheet.show .content {
  transform: translateY(0%);
}
.bottom-sheet.dragging .content {
  transition: none;
}
.bottom-sheet.fullscreen .content {
  border-radius: 0;
  overflow-y: hidden;
}
.bottom-sheet .header {
  display: flex;
  justify-content: right;
}
.header .close-icon {
  cursor: pointer;
  user-select: none;
  padding: 15px;
  margin-top: -15px;
}


.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}
.bottom-sheet .body h2 {
  font-size: 1.8rem;
}
.bottom-sheet .body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.bottom-sheet .sheet-content{
  overflow-y: auto;
  height: 70vh;
}

.bottom-sheet .sheet-content img{
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .bottom-sheet .content {
    width: 50%;
  }
}

@media screen and (max-width: 1200px) {
  .bottom-sheet .content {
    width: 60%;
  }
}

@media screen and (max-width: 680px) {
  .bottom-sheet .content {
    width: 100%;
    bottom: 0px;
    height: auto;
    border-radius: 12px 12px 0px 0px;
  }
}
