/*#region banner top */
.banner-top{
    display:flex;
    position:relative;
    background-position:center;
    background-repeat:no-repeat;
    background-size: cover;
}
.banner-top .toggle{
    position:absolute;
    top:8px;
    right:60px;
    text-decoration: none;
    cursor:pointer;
}
.banner-top .toggle:before{
    content:'Rút gọn';
    display:block;
    padding:2px 16px;
    border-radius:50px;
    background:#444;
    color:#FFF;
    font-size:12px;
    line-height:16px;
}
    .banner-top .toggle.open:before {
        content: 'Mở rộng';
    }
    .banner-top .container{
        max-width:1920px;
        padding:0;
    }
    .banner-top .container img {
        margin: 0 auto;
        max-width: 100%;
    }
/*#endregion */
@media (max-width:550px) {
    .banner-top .toggle{
        top:4px;
        right:16px;
    }
    .banner-top .toggle:before {
        content: '';
        width: 16px;
        height: 16px;
        background: url(/images/home/bn-top-up.svg) center no-repeat;
        background-size: contain;
        padding: 0;
    }

    .banner-top .toggle.open:before {
        content: '';
        background: url(/images/home/bn-top-down.svg) center no-repeat;
        background-size: contain;
    }
}
