.slider_wrapper
{
    width: 100%;
    height: 100%;
    position:relative;
    overflow: hidden;
    border-radius: 10px;
}

.slide, .slide_full
{
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: none;
    transition: 5s;
    
}







.slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease-in-out;
}

.slide_full img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}



.main_desc .slide img, .main_desc .slide_full img
{
    animation: zoom 5s ease;
}

@keyframes zoom {
    0% {transform: scale(1)}
    100% {transform: scale(1.2)}
}

.next_wrap, .prev_wrap
{
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 100;
}


.product_details_container .slide:hover
{
    transform: scale(1.2);
}


.prev_wrap
{
    left: 0;
}

.next_wrap
{
    right: 0;
}


/*
.next, .prev, .next_full, .prev_full
{
    background-color: var(--highlight_color);
    color: var(--color_shade1);
    border: 1px solid var(--highlight_color);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    opacity: .5;
}
*/


.next, .prev, .next_full, .prev_full
{
    background-color: var(--color_shade1);
    color: var(--highlight_color);
    border: 1px solid var(--color_shade1);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    opacity: .5;
    /*box-shadow: 0 0 8px 5px var(--color_shade4);*/
    border: 1px solid var(--color_shade4);
    border-radius: 50% !important;
}




.next:hover, .prev:hover, .next_full:hover, .prev_full:hover
{
    opacity: 1;
}

.next:focus, .prev:focus, .next_full:focus, .prev_full:focus
{
    border: 1px solid var(--main_color_shade3);
}

.next span, .prev span, .next_full span, .prev_full span
{
    font-size: 25px;
}

.next ion-icon, .prev ion-icon, .next_full ion-icon, .prev_full ion-icon
{
    font-size: 25px;
}

.next, .next_full
{
    border-radius: 0 5px 5px 0;
}

.prev, .prev_full
{
    border-radius: 5px 0 0 5px;
}


.fullscreen_container
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 600;
    display: flex;
    justify-content: center;
    padding: 10px;
    overflow: auto;
    display: none;
}

.fullscreen_container_overlay
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--foreground_color1);
    z-index: 500;
    display: flex;
    justify-content: center;
    padding: 10px;
    overflow: auto;
    opacity: .5;
    display: none;
}


.fullscreen_content_container
{
    flex-basis: 700px;
    background-color: var(--color_shade1);
    padding: 0 10px 10px 10px;
    overflow: auto;
    
}

.fullscreen_wrapper
{
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 1px solid var(--main_color_shade3);*/
}


.fullscreen_head
{
   /* position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;
    padding: 10px 0 5px 0;
    z-index: 620;
    display: flex;
    /*justify-content: flex-end;*/
    align-items: flex-start;
    border-bottom: 1px solid var(--color_shade4);
}




.fullscreen_head h3
{
   flex: 1;
   padding-right: 20px;
   font-size: 14px !important;
   font-weight: 400 !important;

   overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    
    padding: 0;
    
}


.fullscreen_container .image_list_scroll_container
{
    justify-content: center;
}


.fullscreen_head button
{
    border: 2px solid var(--color_shade1);
    padding: 5px 10px 5px 5px;
    color: var(--color_shade1);
    cursor: pointer;
}


.fullscreen_head button:focus
{
    border: 2px solid var(--main_color_shade3);
   
}



.grab
{
    cursor: grab;
}


.grabbing
{
    cursor: grabbing !important;
}



.active_thumbnail
{
    border: 2px solid var(--highlight_color);
}

.exit_fullsreen
{
    display: flex;
    align-items: center;
    border-radius: 5px;
    
}

.exit_fullsreen ion-icon
{
    font-size: 20px;
}

.fullscreen_content
{
    width: 100%;
}


.product_details_image_box.fullscreen_img_box
{
    overflow: hidden;
    position: relative;
    /*height: 0;
    padding-bottom: 70%;*/
    height: 75vh !important;
    
}



.fullscreen_box
{
    flex-basis: 60px;
    height: 60px;

}

@media only screen and (max-width: 600px)
{
    
    .next ion-icon, .prev ion-icon, .next_full ion-icon, .prev_fullion-icon
    {
        font-size: 14px;
    }
        
        
        
    .fullscreen_container
    {
        padding: 0px;
    }

    .fullscreen_box
    {
        flex-basis: 40px;
        height: 40px;

    }
}


/*
@media only screen and (max-width: 540px) 
{
    
    .product_details_image_box.fullscreen_img_box
    {
        padding-bottom: 80%;
    }
}


@media only screen and (max-width: 500px) 
{
    .product_details_image_box.fullscreen_img_box
    {
        padding-bottom: 100%;
    }
    
}


@media only screen and (max-width: 425px) 
{
    
    .product_details_image_box.fullscreen_img_box
    {
        padding-bottom: 110%;
    }
}
*/