@import url(/public/css/style.css);

.slideshow_container{ /*_slideshow_config*/
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden; }
.slideshow_wrapper{
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 500ms; }

.slideshow_item{ /*_slideshow_items*/
    position: relative;
    width: 100%;
    flex-shrink: 0; }
.slideshow_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block; }


.slideshow_main_gradient .slideshow_container::before{ /*_slideshow_gradient*/
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sm-translucid-black), var(--sm-translucid-light-red));
    z-index: 1;
    transition: all 500ms ease; }
.slideshow_gradient .slideshow_item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--sm-translucid-black));
    transition: all 500ms ease; }

.slideshow_actions{ /*_slideshow_arrows_config*/
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%; }
.slideshow_arrows{
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    transform: translateY(-50%);
    top: 50%; }
.slideshow_arrow{
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 24px;
    margin: 0 0.5rem; }

.slideshow_disable_actions .slideshow_actions{
    display: none;
    pointer-events: none; }

.slideshow_icon{ /*_slideshow_arrows_icon*/
    font-size: 32px;
    position: absolute;
    color: var(--sm-shadow);
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%); }
.slideshow_icon_white{
    color: var(--sm-white-font); }
.prev_item .slideshow_icon_white{ /*_highlight_arrow*/
    left: 58%; }
.next_item .slideshow_icon_white{
    left: 42%; }

.slideshow_bullets{ /*_bullets*/
    position: absolute;
    text-align: center;
    padding: 1px;
    bottom: 1rem; 
    transform: translateX(-50%);
    left: 50% }
.slideshow_dot{
    position: relative;
    display: inline-block;
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 8px;
    background-color: var(--sm-shadow);
    border-radius: 6px;
    transition: all 500ms ease; }
.slideshow_dot::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid;
    top: -4px;
    left: -4px;
    padding: 2px;
    border-color: var(--sm-white-font);
    border-radius: 10px; }
.slideshow_dot.active{ /*active_bullet*/
    background-color: var(--sm-brand-red);
    width: 18px; }

@media screen and (max-width: 1120px){ /*_slideshow_RESPONSIVE*/
    .slideshow_icon{
        font-size: 24px; }

    .slideshow_bullets{
        border-radius: 16px;
        background-color: var(--sm-shadow);
        border: 2px solid;
        border-color: var(--sm-white-font);
        padding: 0; }
    .slideshow_dot{
        width: 10px;
        height: 10px;
        margin: 0 6px;
        background-color: var(--sm-gray-font); }
    .slideshow_dot::before{
        border-color: transparent; }
}
@media screen and (max-width: 700px){
    .slideshow_icon{
        font-size: 18px; }

    .slideshow_bullets{
        padding: 0 2px;
        border-color: transparent; }
    .slideshow_dot{
        width: 8px;
        height: 8px;
        margin: 0 4px;
        background-color: var(--sm-white-font); }
    .slideshow_dot.active{
        width: 12px; }
}