* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  color: #222222;
  background-color: #f2f2f2;
  max-width: 100vw;
  overflow-x: hidden;
}

textarea:focus, input:focus{
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.48);
}

a, a:visited, a:hover, a:active {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

hr {
  border-color: rgba(217, 217, 217, 0.16);
  width: 100%;
  margin: 2% 0;
}

/* width */
::-webkit-scrollbar {
  display: none;
}

@media (width > 768px) {
  ::-webkit-scrollbar {
    display: block;
    width: 8px;
  }
}

/* Track */
::-webkit-scrollbar-track {
    background: #f9f9f9;
    border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #F16122;
    border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b43e0d;
}

/* Handle on active */
::-webkit-scrollbar-thumb:active {
    background: #b43e0d;
}

.component {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 24%;

  @media (width > 768px) {
    padding: 0 0 48px;
  }
}

.head {
  display: flex;
  align-items: center;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
}

.circularProgress {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.pc-view {
  display: none !important;

  @media (width > 768px){
    display: flex !important;
  }
}

.mob-view {
  @media (width > 768px) {
    display: none !important;
  }
}
