/* MODAL FORM (CUSTOM WIDTH) */
.modal-box:not(.video):not(.speaker-bio-modal) {
    max-width: 500px !important;
    overflow: visible !important;
}

/* AI Form multiselect responsive styles */
.multi-select > input {
    text-wrap: auto;
    height: 75px !important;
    padding-right: 30px;
}
.multi-select .dropdown-arrow {
    width: 40px !important;
}

form.domo-form div.multi-select ul {
    top: 74px !important;
}

@media only screen and (min-width: 315px) {
    .multi-select > input {
        height: 65px !important;
    }
    
    form.domo-form div.multi-select ul {
        top: 64px !important;
    }
}

@media only screen and (min-width: 502px) {
    .multi-select > input {
        height: 40px !important;
    }
    
    form.domo-form div.multi-select ul {
        top: 38px !important;
    }
}

@media only screen and (min-width: 540px) {
    .multi-select .dropdown-arrow {
        width: 86px !important;
    }
}
/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(269deg, #99CCEE 0%, #A3D5C0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-feature-settings: 'clig' off, 'liga' off;
}


/* RESOURCE CARD */
.ResourceCardContainer {
    padding-left: var(--space-1-half);
    padding-right: var(--space-1-half);
    padding-top: var(--space-7);
}
.ResourceCard {
    border-radius: 8px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.ResourceCard__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50%;
}
.ResourceCard__footer {
    background-color: var(--color-neutral-700);
    display: flex;
    flex: 1 1 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-2);
}
.ResourceCard__footer__cta__button {
    font-size: var(--font-size-14) !important;
    margin-left: calc(var(--space-1) * -1);
    padding: 0 var(--space-1) !important;
    text-transform: none !important;
}

.ResourceCard-white .ResourceCard__footer {
    background-color: var(--color-white);
}

@media only screen and (min-width: 600px) {
    .ResourceCards {
        display: flex;
        flex-wrap: wrap;
    }
    .ResourceCardContainer {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 993px) {
    .ResourceCardContainer {
        flex: 1 1 33.3334%;
        max-width: 33.3334%;
    }
}