*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

html,
body,
#root {
  
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: var(--main-font);
}

.inputContainer {
  margin: 15px 0;
  position: relative;
}

.checkboxContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  text-align: left;
  margin: 20px 0;
  
}

.checkboxContainer > p {
  margin: 0;
}




input[type="checkbox"] {
  margin-right: 20px;
}

input[type="date"] {
  width: auto;
}

input[type="tel"] {
  padding-left: 20px;
}

.unit {
  position: absolute;
  display: block;
  left: 8px;
  top: 32px;
  z-index: 9;
}

.bkkInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  height: 40px;
  padding: 8px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid #5e6167;
  background: #ecf0f1;
  color: #5e6167;
}

.bkkInput:user-invalid {
  border: 2px solid #e41f18;
  color: #5e6167;
}

.bkkInput:focus-visible {
  outline: none;
  color: #5e6167;
  border: 2px solid #5e6167;
}

.bkkInput:focus {
  outline: none;
  color: #5e6167;
  border: 2px solid #5e6167;
}

label {
  color: #414648;
  font-size: 16px;
  font-style: normal;
  /*font-weight: 700;*/
  line-height: normal;
  margin-bottom: 5px;
}

.button {
  width: 300px;
  height: 48px; 
  padding: 6px 10px;
  background-color: #4C0E5F;
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "clig" off, "liga" off;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /*letter-spacing: 0.75px;*/
  border-radius: 8px;
  border: #4C0E5F 1px solid;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.button:hover {
  color: #4C0E5F;
  border: #4C0E5F 1px solid;
  background-color: rgb(255, 245, 61);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.coupon {
  display: none;
  color: #A0CD64;
  border: #A0CD64 1px solid;
  border-radius: 8px;
  width: 224px;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.75px;
  text-align: center;
}

.bkkInputLink {
  color: #4C0E5F; text-decoration: none;
}

.bkkInputLink:hover {
  text-decoration: underline; /* Hover eseménynél aláhúzás */
}

    .help-icon {
      display: inline-block;
      background-color: #007bff;
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      text-align: center;
      font-size: 14px;
      line-height: 18px;
      cursor: pointer;
      margin-left: 130px;
      position: relative;
    }