.hcfs-wrapper {}

.hcfs-wrapper-box {
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #F8F6F2 100%) 0% 0% no-repeat padding-box;
  border-radius: 20px;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.hcfs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px
}

@media (max-width:1024px) {
  .hcfs-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:640px) {
  .hcfs-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.hcfs-tile {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  transition: transform .12s, box-shadow .12s
}

.hcfs-tile img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover
}

.hcfs-title {
  position: absolute;
  left: 14px;
  bottom: 15px;
  background: rgba(0, 0, 0, .6);
  color: #fff;

  box-shadow: 0px 5px 10px #00000014;
  border-radius: 10px;
  opacity: 1;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 14px;
  font-size: 21px;
  line-height: 35px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.hcfs-badge {
  position: absolute;
  left: 14px;
  top: 15px;
  background: #fff;

  box-shadow: 0px 3px 10px #00000014;
  border-radius: 16px;

  height: 30px;
  display: flex;
  align-items: center;
  padding: 8px 18px;
  color: #000000;
  font-weight: 500;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 16px;
}

.hcfs-check {
  position: absolute;
  right: 10px;
  top: 13px;
  background: transparent linear-gradient(100deg, #FF6200 0%, #FF9100 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.9)
}

.hcfs-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08)
}

.hcfs-tile.is-selected .hcfs-check {
  opacity: 1;
  transform: scale(1)
}

.hcfs-form {
  background: white;
  border-radius: 20px;
  padding: 15px;
}

.hcfs-delivery {

  grid-column: -1/1;
}

.hcfs-form-wrap {
  margin-top: 36px;
  max-width: 615px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hcfs-form h3 {
  text-align: center;
  margin-bottom: 12px
}

.hcfs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px
}

@media (max-width:640px) {
  .hcfs-row {
    grid-template-columns: 1fr
  }
}

.hcfs-form input[type=text],
.hcfs-form input[type=email],
.hcfs-form input[type=tel],
.hcfs-form select,
.hcfs-form textarea {
  width: 100%;
  padding: 16px 15px !important;
  border: 1px solid #EDEBEB !important;
  border-radius: 10px !important;
  background: #F9F8F5;
  outline: none;
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 20px;
}

.hcfs-form textarea {
  resize: vertical
}

.hcfs-form .hcfs-submit {
  background: transparent linear-gradient(95deg, #FF6200 0%, #FF9100 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 15px #00000014;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  line-height: 20px;
  font-family: var(--font-primary);
  cursor: pointer;
  color: white;
  border: 0px;
  border-radius: 10px;
  margin-top: 15px;
}

.hcfs-note {
  font-size: 13px;
  color: #b56b00;
  margin: 6px 0 12px
}

.hcfs-note.hcfs-dhl-note {
  display: none !important;
}

.hcfs-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #555;
  margin: 10px 0
}

.hcfs-invalid {
  border-color: #e53935 !important
}

.hcfs-success {
  color: #2e7d32;
  margin-top: 10px;
  text-align: center;
}

.hcfs-error {
  color: #e53935;
  text-align: center;
  margin-top: 10px;
}


[hidden] {
  display: none !important;
}



.hcfs-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.hcfs-consent input {
  display: none;
}

.hcfs-consent .hcfs-checkmark {
  width: 26px;
  height: 26px;
  border: 1px solid #EDEBEB;
  background-color: #F9F8F5;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
}

.hcfs-consent input:checked+.hcfs-checkmark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 8px;
  height: 12px;
  border: solid #FF6200;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hcfs-consent .hcfs-label {
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;

}


.hcfs-note.hcfs-dhl-note {
  font-family: var(--font-secondary);
}


.hcfs-dhl-point[hidden] {
  display: none !important;
}

.additional-information-title {
  font-size: 14px;
  margin: 8px 0;
  /* margin-bottom: 0px; */
}

.additional-information-title .znajdz-punkt {
  margin-left: 8px;
  text-decoration: underline;
}

.additional-information-el-input {
  width: 100%;
  padding: 16px 15px !important;
  border: 1px solid #EDEBEB !important;
  border-radius: 10px !important;
  background: #F9F8F5;
  outline: none;
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 20px;
}

.hcds-punkt-odbioru #punkt-odbioru-wrapper{
  grid-column: -1/1;
  margin-bottom: 10px;
}

.hcds-punkt-odbioru{
  margin: 0px;
}

.hcfs-invalid{
  background-color: #f3cece !important;
} 