.request__form .error{
    border: 2px solid red;
    padding: 15px 19px;
}
.swiper-slide.bestsellers__card-1, .swiper-slide.bestsellers__card-3{
    z-index: 2;
}
.bestsellers_slider__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 9px;
    padding: 0 90px;
    margin: 40px 0px 0 0px;
}
@media(max-width:768px) {
    .page__products-all .bestsellers__card-1.swiper-slide .bestsellers__card-body, .page__products-all .bestsellers__card-2.swiper-slide .bestsellers__card-body {
        border-bottom: 1px solid var(--dfb085);
    }
    .bestsellers_slider__head svg {
        width: 24px;
        height: 16px;
    }
}

.video__card-title {
  min-height: 86px;
}

@media(max-width:1640px) {
  .video__card-title {
    min-height: 58px;
  }
}

@media(max-width:1220px) {
  .video__card-title {
    min-height: 43px;
  }
}

@media(max-width:768px) {
  .video__card-title {
    min-height: unset;
  }
}

.request__form-btn {
  cursor: pointer;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    flex-shrink: 0;
    height: 19px;
    width: 19px;
    border: 2px solid var(--f2eacc);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--f2eacc);
    border-color: var(--f2eacc);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--5a2f18);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox:hover .checkmark {
    border-color: var(--dfb085);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
.custom-checkbox input.error ~ .checkmark {
    border-color: #ff3b30;
}

