@tailwind base;

@tailwind components;

@tailwind utilities;

/*:root {*/
/*    max-width: 138rem;*/
/*    margin: 0 auto;*/
/*}*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.h2, h2 {
    font-size: 4rem;
    letter-spacing: -.05rem;
    line-height: 4.4rem;
    font-weight: 700;
    margin: 2.6rem 0 3.6rem 0;
}

.step h2 {
    font-size: 4rem;
    letter-spacing: -.05rem;
    line-height: 4.4rem;
    font-weight: 700;
    margin: 2.6rem 0 3.6rem 0;
}

.hero-headline h1 {
    margin-top: 5rem;
    margin-bottom: 3rem;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.hero-headline h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 2.6rem;
}

.header-bg {
    background-color: rgba(40, 112, 237, 0.92);
}

.header-bg-plain {
    background: #2870ed;
}

.header-bg:hover {
    background-color: #2870ed
}

.hover-group:hover > div {
    display: block;
}

.cc-blue:hover .hover-blue {
    color: #2870ed;
}

.selected {
    background-color: #f4f6fa;
}

/* FONT SIZES & LINE HEIGHTS*/
.fs-xs {
    font-size: 1.4rem;
}

.fs-s {
    font-size: 1.6rem;
}

.fs-md {
    font-size: 1.8rem;
}

.fs-xl {
    font-size: 3rem;
}

.lh-xs {
    line-height: 1.5;
}

.lh-s {
    line-height: 2.1rem;
}

.lh-md {
    line-height: 2.4rem;
}

/* FONT SIZES & LINE HEIGHTS*/

.transparent-white {
    color: hsla(0, 0%, 100%, .64);
}

a.transparent-bg:hover {
    background-color: rgba(9, 24, 50, 0.12);
}

.transparent-border:hover {
    border: 1px solid hsla(0, 0%, 100%, .64)
}

.light-blue-bg:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

.hover-group:hover .hover-rotate-svg {
    transform: rotate(-91deg);
}

.border-grey {
    border: .2rem solid rgba(255, 255, 255, 0.5);
}

.shadow-custom {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
#container {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    max-width: 100%;
    white-space: nowrap;
    display: flex;
    transition: max-height 0.5s ease, white-space 0.5s ease;
}

.content-background {
    cursor: pointer;
    border: 1px solid #2870ED;
    background-color: #f0f8ff;
    padding: 2px 10px;
    margin-top: 16px;
    transition: max-height 0.5s ease, white-space 0.5s ease;
    align-items: start;
    max-width: 100%;
}

#container.expanded {
    max-height: 1000px;
    white-space: normal;
}

#moreLink {
    color: #2870ED;
    flex-shrink: 0;
    margin-left: auto;
    visibility: hidden;
}

#container.collapsed #moreLink {
    visibility: visible;
}

#content {
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.ts-control{border:none;padding:0;}
.ts-dropdown{border-radius:3px;border:1px solid #d0d0d0;}
.ts-dropdown [data-selectable].option{text-align:left;}

.custom-input-file input[type="file"]{position: absolute;left: -9999px;}

@media only screen and (max-width: 767px) {
    .hero-headline h1 {
        margin-bottom: 2rem;
        font-size: 3.2rem;
        margin-top: 0;
    }

    .hero-headline h2 {
        margin-bottom: 3rem;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .headline-flex {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .step h2 {
        font-size: 2.2rem;
        line-height: 2.8rem;
        margin: 2.6rem 0 2.8rem 0;
    }
}