@import url('/css/form-style-one.css');

.nav-highlight {
    background: none;
    padding: 0 0px;
    border-radius: 0px;
    margin: 0 !important;
}

#payment {
    padding-top: 100px;
    padding-bottom: 150px;
    position: relative;
}

#payment .wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 200px;
}

#payment .content {
    grid-column: span 3;
}

#payment .content .title {
    font-weight: 700;
    font-size: 80px;
    line-height: .9;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.dark-mode #payment .content .title {
    color: rgb(var(--white2));
}

#payment .content .description {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 1.5;
}

.dark-mode #payment .content .description {
    color: rgb(var(--white2));
}


#payment .service-list {
    margin-top: 20px;
}

#payment .service-list li {
    font-family: var(--font-secondary);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    font-weight: 700;
}

.dark-mode #payment .service-list li a {
    color: rgb(var(--white2));
}

#payment .service-list span {
    color: rgb(var(--base1));
    font-weight: 700;
}

#payment .service-list li a {
    color: rgba(var(--gray-950));
}

#payment .service-list li a:hover {
    text-decoration: underline;
}

#payment .form-container {
    grid-column: span 4;
}

#payment .form .form-wrapper {
    background: white;
    padding: 50px 70px;
    box-shadow: -5px 5px 30px 10px rgba(var(--dark2), 0.1);
}

#payment .form h2 {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}

#payment .form h2 span {
    display: inline-block;
}

#payment .form h2 span::after {
    content: '';
    display: block;
    height: 2px;
    background-color: rgb(var(--base2));
}

#payment .form .input-group {
    margin-top: 25px;
}

.actions {
    margin-top: 30px;
}

#payment .form .action-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#payment .form .action-btn button {
    color: white;
    border: none;
    font-size: 22px;
    font-family: var(--font-secondary);
    font-weight: 700;
    border-radius: 8px;
    line-height: .9;
    cursor: pointer;
    padding: 25px 30px;
    transition: all 0.2s;
}

#payment .form .action-btn.payment-credit-card button {
    background: rgb(var(--base1));
    border: 2px solid rgb(var(--base1));
}

#payment .form .action-btn.payment-paypal button,
#payment .form .action-btn.payment-credit-card-back button {
    background: rgb(var(--dark2));
    border: 2px solid rgb(var(--dark2));
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

#payment .form .action-btn.payment-paypal button svg {
    margin-top: -5px;
}

#payment .form .action-btn.payment-credit-card button:hover {
    background: white;
    color: rgb(var(--base1));
}

#payment .form .action-btn.payment-paypal button:hover,
#payment .form .action-btn.payment-credit-card-back button:hover {
    background: white;
    color: rgb(var(--dark2));
    border-color: rgb(var(--dark2));
}

#payment .form .action-btn.payment-paypal .paypal-logo-color {
    fill: white;
}

#payment .form .action-btn.payment-paypal button:hover .paypal-logo-color {
    fill: rgb(var(--dark2));
}

#payment .cc-actions,
#payment #dropin-container {
    display: none;
}

#payment.cc-payment .cc-actions,
#payment.cc-payment #dropin-container {
    display: flex;
}

#payment .select-actions {
    display: none;
}

#payment.select .select-actions {
    display: block;
}

#payment .cc-actions {
    justify-content: space-around;
}

#payment .cc-actions .action-btn {
    margin-top: 0;
}

#payment #paypal-button {
    width: 220px;
}

#payment .error-container {
    margin-bottom: 10px;
    padding: 15px;
    border: solid 3px red;
    background-color: #ffe3e3;
    border-radius: 8px;
}

#payment .error-container h1 {
    color: red;
}

#payment .error-message {
    font-family: var(--font-secondary);
    font-weight: bold;
}

#faq {
    padding-top: 100px;
    padding-bottom: 150px;
    position: relative;
}

#faq .details-item {
    border-top: 2px solid rgb(var(--base2));
    padding-top: 35px;
    display: flex;
    gap: 50px;
    padding-bottom: 170px;
}

#faq .details-item .title {
    width: 40%;
    flex-shrink: 0;
    font-size: 35px;
    line-height: 1;
}

.dark-mode #faq .details-item .title {
    color: rgb(var(--white2));
}

#faq .details-item .description {
    width: 60%;
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 35px;
}

.dark-mode #faq .details-item .description {
    color: rgb(var(--white2));
}

#faq .details-item .description p {
    margin-bottom: 20px;
}

#faq .details-item .description a {
    color: rgb(var(--base1));
    text-decoration: underline;
}

.payment-error-note {
    font-family: var(--font-secondary)
}

@media (max-width: 639px) {

    #payment {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #payment .content .title {
        font-size: 65px;
    }

    #payment .wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #payment .content {
        grid-column: span 1;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    #payment .form {
        grid-column: span 1;
    }

    #payment .form h2 {
        font-size: 35px;
    }

    #payment .form .form-wrapper {
        padding: 30px 40px;
    }

    #payment .form .submit {
        margin-top: 30px;
    }

    #payment .form .submit button {
        padding: 20px 50px;
    }

    #payment .form-container .content {
        margin-top: 100px;
    }


    #faq .details-item {
        padding-top: 20px;
    }

    #faq .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 70px;
    }

    #faq .details-item .title {
        width: 100%;
        padding-bottom: 20px;
        font-size: 22px;
    }

    #faq .details-item .description {
        width: 100%;
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (min-width: 640px) and (max-width: 767px) {

    #payment .container {
        padding-right: 50px;
        padding-left: 50px;
    }

    #payment .wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #payment .content {
        grid-column: span 1;
        margin-bottom: 50px;
        padding: 0 20px;
    }


    #faq .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 120px;
    }

    #faq .details-item .title {
        width: 100%;
        padding-bottom: 20px;
    }

    #faq .details-item .description {
        width: 100%;
    }


}

@media (min-width: 768px) and (max-width: 1023px) {

    #payment .container {
        padding-right: 50px;
        padding-left: 50px;
    }

    #payment .wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #payment .content {
        grid-column: span 1;
        margin-bottom: 50px;
        padding: 0 20px;
    }



    #faq .details-item {
        flex-direction: column;
        gap: 0px;
        padding-bottom: 120px;
    }

    #faq .details-item .title {
        width: 100%;
        padding-bottom: 20px;
    }


}

@media (min-width: 1024px) and (max-width: 1199px) {
    #payment .wrapper {
        gap: 50px;
    }

    #payment .form .form-wrapper {
        padding: 30px 40px;
    }
}
