:root {
  --gape: 50px;
  --square-radius: 4px;
  --font-size: 14px;
  --max-width: 500px;
}
@font-face {
  font-family: Fonarto-Bold;
  src: url("../assets/fonts/Fonarto-Bold-3.otf");
}
@font-face {
  font-family: Fonarto;
  src: url("../assets/fonts/Fonarto-Regular-5.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Fonarto;
}
input {
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
li {
  list-style: none;
}
div,a,img {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select:none;
}
body {
  width: calc(100vw - var(--gape));
  height: 100vh;
  margin: 0 auto;
}
.header {
  max-width: calc(var(--max-width) - var(--gape));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.diamond-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond {
  width: 36px;
  z-index: 1;
}
.number {
  width: 76px;
  height: 24px;
  line-height: 24px;
  margin-left: -10px;
  text-align: center;
  background-color: #292545;
  border-radius: 6px;
  border: 3px solid #FFF;
  border-left: none;
  font-size: 14px;
  font-family: Fonarto-Bold;
  font-weight: bold;
  color: #FFF;
}
.add {
  position: relative;
  width: 22px;
  height: 22px;
  background-color: #FFB434;
  box-shadow: 0px 2px 0px 0px #955906;
  border-radius: 6px;
  margin-left: 8px;
}
.add:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
}
.add:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 2px;
  height: 10px;
  border-radius: 2px;
  background-color: #fff;
}
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.loading-img {
  width: 100px;
  border-radius: 15px;
}
