*,
::after,
::before {
  box-sizing: border-box;
}

html,
body,
#root,
#root > div {
  width: 100%;
  height: 100%;
}

html {
  font-size: 100%;
} /*16px*/

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body > iframe {
  pointer-events: none;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
}

h1 {
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

.select-box ul::-webkit-scrollbar {
    width: 14px;
  }

.select-box ul::-webkit-scrollbar-track {
    background: #F7F7F7;
  }

.select-box ul::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 10px;
    border: 3px solid #F7F7F7;
  }

.disableScroll {
  overscroll-behavior-y: none
}