Untitled

mail@pastecode.io avatarunknown
plain_text
2 months ago
982 B
1
Indexable
Never
/* contact us page css */
.eg-tab-content {
    height: 0;
    overflow: hidden;
    transition: height 0.5s;
}

.eg-tab-heading {
    border-left: 3px solid rgb(219, 0, 17);
    font-size: 29px;
    padding-left: 10px;
    margin-bottom: 26px;
    line-height: 1.2;
}

.eg-steps {
    background: #ededed;
    padding: 30px;
}

.eg-step+.eg-step {
    margin-top: 22px;
}

.eg-step>p:last-child {
    margin-top: 16px;
}

.eg-step {
    font-weight: 500;
}

html body.eg-tab-active .eg-tab-content {
    height: auto;
    margin-bottom: 30px;
}

[class*="contact-generic-subpage"] [class*="flexible-form__heading"],
[class*="contact-tab-item"] form [class*="flexible-form-step__text"] {
    display: none !important;
}

@media(max-width: 759px) {
    html body [data-testid="Tabs"]>[class*="contact-header"] {
        height: auto !important;
    }

    .eg-tab-heading {
        font-size: 24px;
    }

    .eg-steps {
        padding: 20px;
    }
}

/* contact us page css end */