.business-page .gift-form .container .form-content form .main-form .form-group {
    justify-content: flex-end;
}

.form-content {
    margin-bottom: 70px;
}

@media(max-width: 1440px) {
    .form-content {
    margin-bottom: 80px;
}
}

@media(max-width: 768px) {
    .form-content {
    margin-bottom: 50px;
}
}

.business-page .form-content .container .form-block {
    margin-bottom: 0;
}

.business-page .form-content .container .form-block form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-content .container {
    display: flex;
    gap: 40px;
}

.input-wrapper {
    width: 100%;
}

.form-group .input-wrapper input {
    width: 100% !important;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-block button {
    width: 50%;
}

.btn-block p {
    margin-top: 0 !important;
}

.form-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.input-wrapper {
    position: relative;
    max-height: 60px;
}

.input-wrapper input.error {
    border: 2px solid var(--red) !important;
    position: relative !important;
    text-align: left;
    background-color: #ffffff;
    top: 0;
    padding-right: 0;
    font-size: 18px !important;
    box-sizing: border-box;
}

.error {
    background-color: #F8F2EF;
    font-family: Manrope;
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    width: auto;
    border-radius: 10px;
    padding: 6px 11px;
    position: absolute;
    top: -12px;
    right: 0;
    display: none;
}

.input-wrapper img {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

@media(max-width: 1124px) {
    .form-img-block {
        display: none;
    }
}

@media(max-width: 881px) {
    .btn-block {
        flex-direction: column;
        gap: 10px;
    }
}

@media(max-width: 768px) {
    .input-wrapper {
        width: 100%;
    }
}

.business-page .gift-form .container .form-content h2 {
    margin-bottom: 7px;
}

.business-page .gift-form .container .form-content form {
    margin-top: 10px;
}

.business-page .gift-content .container .main-content-category ul li .category-desc p {
    font-size: 16px;
}

.business-page .gift-content .container .main-content-category ul li .category-desc h3 {
    font-size: 18px;
}

.business-page .gift-form .container .form-content form .main-form .form-group input {
    display: block !important;
}

#successModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInBg 0.3s forwards;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    animation: fadeInBg 0.3s forwards;
}

.modal-content {
    position: relative;
    background: white;
    padding: 30px 40px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInModal 0.3s forwards;
}

.modal-content h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 18px;
}

.modal-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #444444;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--red);
}

@keyframes fadeInBg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mySwiperPod .swiper-slide {
    width: 382px !important;
    height: 230px !important;
    cursor: pointer;
}

.mySwiperPod .swiper-slide img {
    height: 230px !important;
    width: 100%;
}

@media (max-width: 768px) {
    .mySwiperPod .swiper-slide {
        width: 25% !important;
        min-width: 297px !important;
        height: 199px !important;
    }

    .mySwiperPod .swiper-slide img {
        height: 199px !important;
    }
}