/* === Custom Block Styling === */
.overflowDropdownBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

/* .overflowDropdown__contentRow{
    justify-content: flex-end;
} */

.overflowDropdown__heading{
    padding-bottom: 16px;
    border-bottom: solid 1px var(--FC-secondary-color);
}

.overflowDropdown__image{
    padding-bottom: 400px;
    height: 100%;
}
.overflowDropdown__image::after{
    content: '';
    background-size: cover;
    background-position: center;
    width: 200%;
    height: 100%;
    border-top-right-radius: 75px;
    border-bottom-right-radius: 75px;
    position: absolute;
    left: -100%;
}

.overflowDropdown__imageContainer{
    position: absolute;
    top: 0;
    left: -32px;
}

.overflowDropdown__topWrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 16px;
    cursor: pointer;
}

.overflowDropdown__linkWrapper{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 32px;
}

.overflowDropdown__title, .overflowDropdown__plusMinus{
    font-weight: 600;
    font-size: var(--FC-font-size-20);
}

.overflowDropdown__plusMinus{
    color: var(--FC-secondary-color);
    cursor: pointer;
}

.overflowDropdown__contentWrapper{
    border-bottom: solid 1px var(--FC-secondary-color);
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.overflowDropdown__contentWrapper.active{
    max-height: 300px;
    transition: max-height 0.3s ease-in;
}


@media screen and (max-width: 767px){
    .overflowDropdown__spacerCol{
        display: none;
    }
    .overflowDropdown__outerContainer{
        padding-left: 12px;
        padding-right: 12px;
    }
    .overflowDropdown__image::after{
        left: -101%;
    }
}
@media screen and (max-width: 575px){
    .overflowDropdown__image{
        display: none;
    }
}