﻿.ft-services-title {
    width: 100%;
    max-width: 50%;
    text-align: center;
    color: var(--fs-orange);
    font-size: clamp(20px,2vw,35px);
    margin-inline: auto;
}
.ft-checkout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: max(65px,8%) 15% max(30px,4%);
    font-family: roboto-light;
}

.ft-checkout-info-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-checkout-features-container {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    align-items: center;
}

.ft-checkout-features-container,
.ft-checkout-info-container {
    font-size: clamp(17px, 1.5vw, 20px);
}

.ft-checkout-features-inner-container > ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: initial;
}

.ft-checkout-notes {
    font-weight: 700;
    color: #FF0000;
}

.ft-checkout-hr-line, .ft-checkout-hr-line2 {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    width: min(1200px, 90%);
}

.ft-checkout-hr-line::before,
.ft-checkout-hr-line::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #000;
}

.ft-checkout-hr-line2::before,
.ft-checkout-hr-line2::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #000;
}


.ft-checkout-hr-line::before {
    margin-right: 10px;
}

.ft-checkout-hr-line::after {
    margin-left: 10px;
}

.ft-checkout-notes-container {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-inline: 26px;
}

    .ft-checkout-notes-container  a{
        display: unset; 
    }

    .ft-checkout-notes-disclaimer {
        display: flex;
        flex-direction: column;
        font-weight: 400;
        font-size: 14px;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

.ft-checkout-terms {
    margin: 10px 20px 30px 20px;
    display: flex;
    align-items: center;
}

.ft-checkout-terms > * {
    cursor: pointer;
}

.ft-terms-link {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

.ft-terms-link:hover {
    text-decoration: underline;
}



.ft-custom-checkbox label {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    display: inline-block;
    margin-inline-end: 10px;
    position: relative;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

[for="terms-checkbox"] {
    cursor: pointer;
}

.ft-custom-checkbox input:checked + label::after {
    content: "";
    position: absolute;
    left: 5px;
    width: 6px;
    height: 12px;
    border: solid var(--fuschia);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

.ft-custom-checkbox input:checked + label {
    border-color: var(--fuschia);
}

.ft-checkout-terms a{
    display: unset;
}

@media screen and (max-width: 600px) {
    .ft-card-container {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .ft-card-container {
        height: 156px;
        font-size: 28px;
        padding-inline-start: 14px;
        gap: 8px;
        padding-top: 16px;
        padding-bottom: 4px;
    }

    .ft-card-type > img {
        width: 36px;
    }

    .ft-card-arrow {
        width: 16px;
    }

    .ft-new-card > svg {
        width: 26px;
    }
}


@media screen and (max-width: 380px) {
    .ft-card-container {
        font-size: 24px;
        padding-top: 12px;
    }
}
