/**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */

/* CÃ¡c tÃ¹y chá»‰nh CSS cá»§a giao diá»‡n nÃªn Ä‘á»ƒ vÃ o Ä‘Ã¢y */
.cke_editable .cont {
    width: 50% !important;
}
@media (max-width:768px)
{
    .ContentCustom {
        margin: 10px 0px;
    }
}
@media (min-width:991px)
    {
    .ContentCustom  {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 40px 20px;
        width: 100%;
    }
    .ContentCustom .cont {
        margin: 0;
        position: relative;
        width: 100%;
        flex: 1;
    }
    .ContentCustom .image,
    .ContentCustom .content {
        flex-basis: 50%;
        /* max-width: 50%; */
        width: 100%;
    }
    .ContentCustom.left .content,
    .ContentCustom.right .image
        {
            left: 0;
        }
    .ContentCustom.right .content,
    .ContentCustom.left .image
        {
            right: 0;
        }
    .ContentCustom .content {
        flex: 1;
        min-width: 300px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px;
        line-height: 1.6;
        font-size: 16px;
        width: 111%;
        z-index: 2;
        position: absolute;
        margin-top: -12%;
     }
     .ContentCustom .image {
       flex: 1;
       min-width: 300px;
       text-align: right;
       border-radius: 30px;
     }
     
     .ContentCustom .image img {
       width: 100%;
       border-top-right-radius: 30px;
       border-bottom-right-radius: 30px;
       object-fit: cover;
       border-radius: 30px;
     }    
    }
