/* Import Google font - Poppins */
@font-face {
    font-family: 'Italian Plate No2 Expanded';
    src: url('font/Italian Plate No2 Expanded.eot');
    src: url('Italian Plate No2 Expanded.eot?#iefix') format('embedded-opentype'),
        url('font/Italian Plate No2 Expanded.woff') format('woff'),
        url('font/Italian Plate No2 Expanded.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;*/
}
* {
 /* margin: 0;
  padding: 0;*/
  box-sizing: border-box;
font-family: "Italian Plate No2 Expanded", arial, sans-serif;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  /*min-height: 100vh;*/
  overflow:hidden;
  min-height: 100%;
  background: #E3F2FD;
}
.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 {
  opacity: 1;
  pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}
.bottom-sheet .content {
  width: 100%;
  position: relative;
  background: #772af0;
  max-height: 100vh;
  height: 80vh;
  max-width: 100hw;
  padding: 0 15px 30px;
  transform: translateY(100%);
  border-radius: 20px 20px 0 0;
  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: center;
  height:70px;
  
}
.header .drag-icon {
  cursor: grab;
  user-select: none;
  padding: 0 0 30px;
  margin-top: 35px;
}
.header .drag-icon span {
  height: 2px;
  width: 50px;
  display: block;
  background: #C7D0E1;
  border-radius: 50px;
}
.bottom-sheet .body {
  height: 87%;
  /*overflow-y: auto;*/
  overflow-y: hidden;
  padding: 15px 0 10px;
  background: #fff;
  border-radius: 12px;
  overflow:scroll;
  scrollbar-width: none;
}
.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;
}



/**********************************************************************************************************************************************************************************************************************************************************************/
