@import url("./list_vars.css");

.list_item_cb
{
    position: var(--position_list_item_cb, relative);
    display: var(--display_list_item_cb, inline-block);
    height: var(--height_list_item_cb, 33rem);
    overflow: var(--overflow_list_item_cb, hidden);
    font-size: var(--font-size);
    background-color: var(--background-color_list_item_cb, #fff);
    box-shadow: var(--box-shadow_list_item_cb);
    margin: var(--margin_list_item_cb, 1rem);
    z-index: var(--z-index_list_item_cb, 3);
    color: var(--highlight-background-color);
    flex-basis: var(--width_list_item_cb, calc(33% - 4rem));
}



.list_item_cb:after
{
    position: var(--position_list_item_cb__after);
    content:var(--content_list_item_cb__after);
    top:var(--top_list_item_cb__after);
    left:var(--left_list_item_cb__after);
    width:var(--width_list_item_cb__after);
    height:var(--height_list_item_cb__after);
    opacity:var(--opacity_list_item_cb__after);
}

.list_item_cb:hover:after
{
    opacity: var(--opacity_list_item_cb__hover__after);
}

.list_item_cb:after
{
    background-color: var(--background-color_list_item_cb__after);
    z-index: var(--background-color_list_item_cb__after);
}

.property_link_h
{
    font-size: var(--font-size_property_link_h);
    font-weight: var(--font-weight_property_link_h);
}

.property_link
{
    position: var(--position_property_link);
    display: var(--display_property_link);
    z-index:var(--z-index_property_link);
    text-decoration: var(--text-decoration_property_link);
    color: var(--color);
}

.property_link:hover
{
    color: var(--color__hover);
}
.list_item_wrapper
{
    padding: var(--padding_list_item_wrapper);
}

.investment_image
{
    width: var(--width_investment_image);
    display: var(--display_investment_image);
    height: var(--height_investment_image);
    overflow: var(--overflow_investment_image);
    background: var(--background_investment_image);
    margin: var(--investment_image-margin, 0 auto);
    text-align: var(--investment_image-text-align, left);
}

