body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;

}

.active-top-tap {
  box-shadow: 0px -2px 0px 0px rgba(0, 0, 0);
  background: #fff !important;
  border-bottom: 1px solid #fff !important;
  color: #000 !important;
}

.hide-fixed {
  display: none !important;
}

.bt-spinner {
  display: none;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden-input {
  display: none;
}

.link {
  color: #000;
  text-decoration: none;

}

.style-active {
  box-shadow: 0 0 0 1px #247ff7;
  border: 1px solid #247ff7 !important;
}

.style-item {
  padding:5px;
  border:1px solid #e5e5e5;
  background: #f6f6f6;display: inline-block; border-radius: 100%; height: 50px;width: 50px;
}

.scrolled {
  border-bottom: 1px solid #e5e5e5
}

body::-webkit-scrollbar {
  display: none;
}

.reviews {
  scroll-snap-type: x mandatory;
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  gap: 0px;
  padding-top: 0;
  box-sizing: border-box;
  background: #f6f6f6;
}

.reviews div {
  scroll-snap-align: center;
  border-radius: 10px;
  white-space: normal;
  margin-right: 0px;
  display: inline-block;
  color: #555;
  width: 100%;
}

.input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 0 1px #00000014;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  font-size: 16px;
}

.input-error {
  border-color: rgb(221, 53, 53);
  background-color: #ffe7e7;
  box-shadow: 0 0 0 1px rgb(221, 53, 53);
  
}

.div-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 0 1px #00000014;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  font-size: 16px;
  cursor: pointer;
}

.input-padding {
  padding-left: 37px;
}

.input-icon {

  position: absolute;
  margin-top: 16px;
  margin-left: 12px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  transition: all .5s ease-in-out;
}

.hide-title {
  opacity: 0;
  transition: all .5s ease-in-out;
}

.submit-bt {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all .12s ease-in-out;
  font-size: 13px;
  font-weight: bold;
  padding: 20px;
  background-color: #000;
  color: #fff;
}

.input:focus {
  box-shadow: 0 0 0 1px #000000;
  border-color: #000000;
  background-color: #fff;
}

.colorpicker {
  height: 46px;
  border-radius: 100%;
  border: 2px solid #000;
  background-color: #000;
  cursor: pointer;
  width: 46px;
  -webkit-appearance: none;
}

.label {
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 3px;
  display: block;
}

.upload-bt {
  cursor: pointer;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  border-radius: 5px;
  margin-right: 5px;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
}

#chevron-left,
#chevron-right {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 20px;
}

/* Animation classes */
.header-slide {
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.chevron-left {
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.chevron-right {
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.canvas {
  margin: auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reviews-zoom {
  height: 100vh;
}

.input-error-msg {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
}

@media (max-width: 500px) {
  .main-container {
    box-shadow: none !important;
    max-width: 100% !important;
    border: 0 !important;
    background: #f6f6f6 !important;
  }
}

#header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 15px !important;
  box-sizing: border-box !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background: #f6f6f6;
}

.main-container {
  margin: auto;
  border-radius: 0 0 20px 20px;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
  border: 0px solid #d2d2d2;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}