.required {
    color: var(--color-red);
}

.inline-error,
.error {
    color: var(--color-red);
    font-family: var(--roboto-light);
    font-size: 16px;
    font-weight: 400;
}

.ticket-wrapper {
    background: #191919;
    border: 1px solid #262626;

    .header {
        padding: 32px 60px;
        border-bottom: 1px solid #262626;
    }

    .ticket-data-wrapper {
        padding: 60px;
    }

    .ticket-title {
        color: #ffffff;
        font-family: var(--roboto-medium);
        font-size: 30px;
        font-weight: 500;
        line-height: 35.16px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .form-step-title {
        color: #BFBFBF;
        font-family: var(--roboto-light);
        font-size: 22px;
        font-weight: 400;
        line-height: 28px;
    }

    .form-steps {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        list-style: none;
        padding-left: 0;

        li {
            font-family: var(--roboto-light);
            font-size: 22px;
            font-weight: 400;
            line-height: 36px;
            width: 36px;
            height: 36px;
            background: #333333;
            border-radius: 50px;
            color: black;
            text-align: center;
            color: white;

            &.current {
                background: white;
                color: #1A1A1A;
            }

            &.completed {
                background: var(--color-red);
            }
        }

        .dash-line {
            width: 61px;
            height: 1px;
            background: #4D4D4F;
        }
    }

    .description {
        color: #FFFFFF;
        font-family: var(--roboto-light);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;

        a {
            color: var(--color-red);
            text-decoration: underline;
        }
    }

    .step-hide {
        display: none;
    }

    .step-show {
        display: block;
    }

    .step-1 {
        color: #FFFFFF;
        font-family: var(--roboto-light);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;

        a {
            color: var(--color-red);
            text-decoration: underline;
        }
    }

    .thanks-title {
        font-family: var(--roboto-thin);
        font-size: 22px;
        font-weight: 400;
        line-height: 28px;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .thanks-description {
        font-family: var(--roboto-medium);
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: #939598;
    }

    /*Input field*/

    .form-input-field {
        color: #BFBFBF !important;
        box-shadow: none !important;
        background: #262626 !important;
        border: 1px solid #59595A !important;
        font-family: var(--roboto-light);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        padding: 1rem;
        border-radius: 4px;

        &::placeholder {
            color: #BFBFBF;
            opacity: .5;
        }
    }

    /*Select field*/

    .form-select-field {
        color: #BFBFBF !important;
        box-shadow: none !important;
        background: #262626 url(/assets/images/arrow.png) no-repeat right 16px center !important;
        border: 1px solid #59595A !important;
        box-shadow: none;
        font-family: var(--roboto-light);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        padding: 1rem;
        border-radius: 4px;

        &::placeholder {
            color: #BFBFBF;
        }
    }

    /*Checkbox*/

    .form-check-container {
        align-items: center;
        display: flex;
        gap: 1rem;
    }

    .form-check-input {
        margin-top: 0;
        border: 1px solid #59595A;
        background-color: transparent;
        width: 24px;
        height: 24px;
        border-radius: 2px !important;
        box-shadow: 0px 4px 4px 0px #00000040 !important;

        &:checked {
            border-color: transparent;
            background-color: var(--color-red) !important;
        }
    }

    .isInvalid {
        border: 1px solid var(--color-red) !important;
    }

    .input-label,
    .input-description {
        color: #939598;
        font-family: var(--roboto-light);
        font-weight: 500;
        line-height: 24px;
    }

    .input-label {
        font-size: 16px;
    }

    .input-description {
        font-size: 12px;
    }

    /*Next Back Btns*/

    .ticket-cta {
        width: 100%;
        padding: 12px 24px;
        border-radius: 3px;
        font-family: var(--roboto-regular);
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        text-transform: uppercase;
        color: #ffffff;
        height: 72px;
    }

    .back-btn {
        background: transparent;
        border: 1px solid #FFFFFF;
    }

    .next-btn {
        background: var(--color-red) !important;
    }

    .upload-doc {
        background: #262626;
        border: 1px dashed #59595A;
        padding: 1rem;
        border-radius: 4px;
        font-family: var(--roboto-light);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        color: #FCFCFD;
    }

    .file-item {
        color: #BFBFBF;
        padding: 1rem;
        background: #4D4D4F;
        border: 1px solid #59595A;
        border-radius: 4px;
        font-family: var(--roboto-light);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }

    .file-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .progress-bar {
        width: 100%;
        background: #262626;
        border-radius: 30px;
        overflow: hidden;
        height: 12px;
        margin-top: 5px;
    }

    .progress {
        height: 100%;
        width: 0;
        background: var(--color-red);
        transition: width 0.1s ease;
    }
}


@media (max-width: 992px) {
    .ticket-wrapper {
        .ticket-data-wrapper {
            padding: 60px 30px;
        }
    }

    .input-label,
    .input-description {
        font-size: 18px;
    }

    .back-btn {
        order: 1;
    }
}

@media (max-width: 576px) {
    .ticket-wrapper {
        .header {
            padding: 1rem;
        }

        .ticket-title {
            font-size: 24px;
            line-height: 28.16px;
            margin-bottom: 0;
        }

        .description {
            font-size: 15px;
        }

        .ticket-data-wrapper {
            padding: 32px 30px;
        }

        .form-steps {
            li {
                font-size: 16px;
                line-height: 32px;
                width: 32px;
                height: 32px;
            }
        }

        .input-label {
            font-size: 14px;
        }

        .form-input-field {
            font-size: 16px;
        }
    }
}