﻿
.btn-ribbon
{
    color: #212529;
    background-color: #ffffff;
    border-style: none;
}

    .btn-ribbon:hover
    {
        color: #212529;
        background-color: #e2e6ea;
        /*border-color: black;
        border-style: solid;*/
    }

    .btn-ribbon:focus, .btn-ribbon.focus
    {
        box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    }

    .btn-ribbon.disabled, .btn-ribbon:disabled
    {
        color: #212529;
        background-color: #f8f9fa;
        border-color: #f8f9fa;
    }

    .btn-ribbon:not(:disabled):not(.disabled):active, .btn-ribbon:not(:disabled):not(.disabled).active,
    .show > .btn-ribbon.dropdown-toggle
    {
        color: #212529;
        background-color: #dae0e5;
        border-color: #d3d9df;
    }

        .btn-ribbon:not(:disabled):not(.disabled):active:focus, .btn-ribbon:not(:disabled):not(.disabled).active:focus,
        .show > .btn-ribbon.dropdown-toggle:focus
        {
            box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
        }

.container_karouzel
{
    display: flex;
    width: 100%;
    padding: 4% 2%;
    box-sizing: border-box;
    height: 100vh;
}

.box_karouzel
{
    flex: 1;
    overflow: hidden;
    transition: .5s;
    margin: 0 2%;
    box-shadow: 0 20px 30px rgba(0,0,0,.1);
    line-height: 0;
}

    .box_karouzel > img
    {
        width: 200%;
        height: calc(100% - 10vh);
        object-fit: cover;
        transition: .5s;
    }

    .box_karouzel > span
    {
        font-size: 3.8vh;
        display: block;
        text-align: center;
        height: 10vh;
        line-height: 2.6;
    }

    .box_karouzel:hover
    {
        flex: 1 1 50%;
    }

        .box_karouzel:hover > img
        {
            width: 100%;
            height: 100%;
        }

.agwzoomover
{
    transition: transform .5s ease;
}
    .agwzoomover:hover
    {               
        transform: scale(2);
    }
