.elementor-widget-single-event-desc
{
    width: 100%;
}

.hide-form-event
{
    display: none;
}

.single-event-container
{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: 100%;
}
.single-event-container .evenement-item
{
    flex: 1 1 calc(100%);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
    position: relative;
    color: #fff !important;
    transition: all .3s; 
    min-width: 280px;
}

.single-event-container .evenement-item:hover
{
    color: var(--e-global-color-accent) !important;
}
.single-event-container .evenement-item:hover .evenement-item-link:before
{
    width: 120px;
    height: 120px; 
}
.single-event-container .evenement-item:hover h3
{
    background-color: var(--e-global-color-primary) !important;
}
.single-event-container .evenement-item:hover:before
{
    opacity: 1;
    background-color: #eff4f9;
}
.single-event-container .evenement-item .evenement-item-top,
.single-event-container .evenement-item .evenement-item-bottom
{
    position: relative;
    z-index: 9;
}
.single-event-container .evenement-item:before
{
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--overlay-color, transparent);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;

    transition: all .3s;
}

.single-event-container .evenement-item-top
{
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.single-event-container .evenement-item-date
{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    border-right: 1px solid;
    padding-right: 10px;
}
.single-event-container .evenement-item-date .evenement-item-date-day
{
    font-size: var(--e-global-typography-primary-font-size);   
}
.single-event-container .evenement-item-date .evenement-item-date-month
{
    font-size: var(--e-global-typography-secondary-font-size); 
}
.single-event-container .evenement-item-date .evenement-item-date-month
{ 
    text-transform: uppercase;
    font-size: var(--e-global-typography-fca9fd1-font-size);
}


.single-event-container .evenement-item-place
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.single-event-container .evenement-item-logo
{
    margin-left: auto;
}
.single-event-container .evenement-item-logo img
{
    max-width: 150px;
    max-height: 70px;
}



.single-event-container .evenement-item-bottom
{
    padding: 0 15px;
    flex: 1;
}
.single-event-container .evenement-item-bottom .evenement-item-text
{
    height: 100%;
    display: flex;
    flex-direction: column;

    padding: 15px 0;
    border-top: 1px solid;
}
.single-event-container .evenement-item-bottom .evenement-item-text h1
{
    font-size: var(--e-global-typography-secondary-font-size);
    padding-bottom: 15px;
}
.single-event-container .evenement-item-bottom .evenement-item-text h3
{
    font-size: var(--e-global-typography-ee2cb79-font-size);
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-f2fa4b3);
    padding: 4px 6px;
    align-self: flex-start;
    margin-bottom: 10px;
    border-radius: 2px;
}
.single-event-container .evenement-item-bottom .evenement-item-text p
{
    font-size: var(--e-global-typography-text-font-size); 
}


.single-event-container .evenement-item-link
{
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100px;
    width: 100px;
}
.single-event-container .evenement-item-link:before 
{
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 110px;
    height: 110px; 
    background: #ffffff;
    z-index: 9;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    transition: all .3s;
}




@media screen and (max-width: 1140px)
{
    .single-event-container .evenement-item
    {
        flex: 1 1 calc(100%);
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 250px;
        background-size: cover;
        background-position: center center;
        position: relative;
        color: #fff !important;
        transition: all .3s; 
        min-width: 280px;
    }

    .single-event-container .evenement-item-link
    {
        height: 60px;
        width: 60px;
    }
    .single-event-container .evenement-item-link:before 
    {
        width: 70px;
        height: 70px; 
    }

    .single-event-container .evenement-item:hover .evenement-item-link:before
    {
        width: 80px;
        height: 80px; 
    }

    .single-event-container .evenement-item-bottom .evenement-item-text p
    {
        max-width: 95%;
    }
    
}