@font-face {
  font-family: 'B Koodak Outline';
  src: url('/fonts/B-Koodak-Outline.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'B Koodak Bold';
  src: url('/fonts/B-Koodak-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: 'B Koodak Outline', sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;        /* prevents horizontal scroll */
  overflow-y: auto;          /* allows vertical scroll */
  height: auto;              /* allows natural height growth */
  min-height: 100dvh;        /* ensures full height, mobile-safe */
  position: relative;        /* allows positioning of children */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}


.upload__box {
  padding: 0px;
}

.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload__btn {
  font-weight: 400;
  color: #414141;
  text-align: center;
  min-width: 100px;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #f6f6f6;
  border-color: #e6e6e6;
  border-radius: 6px;
  line-height: 10px;
  font-size: 14px;
}

.upload__btn:hover {
  background-color: unset;
  color: #57b7ff;
  transition: all 0.3s ease;
}

.upload__btn-box {
  margin-bottom: 10px;
}

.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.upload__img-box {
  width: 100px;
  padding: 0 10px;
  margin-bottom: 12px;
}

.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 20%;
  background-color: rgb(29,29,29);
  position: absolute;
  top: 10px;
  right: 65px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}

.upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
  border-radius: 10px;
}





