.AdvertisementTopLeft {
        left: 0;
        position: fixed;
        top: 150px;
        z-index: 5;
}
.AdvertisementTopRight {
        position: fixed;
        right: 0;
        top: 150px;
        z-index: 5;
}
.AdvertisementBG {
        width: 0!important;
        height: 0!important;
}
* {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
}
/****************************************/
.logintop {
        margin: 0 auto;
        width: 1200px;
        z-index: 1;
        height: 30px;
        background: #fdcb5c;
        position: relative;
}
.logintop a {
        line-height: 30px;
        font-size: 13px;
        color: #444;
        right: 140px;
        position: absolute;
}
/****************************************/
.col-xs-12.none-padding {
        padding-left: 0px;
        padding-right: 0px;
}
.ul-congthongtin.ul-danhmuc {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
}
.col-xs-12 {
        width: 100%;
}
.ul-congthongtin.ul-danhmuc li {
        padding-top: 0;
        padding-bottom: 10px;
}
.ul-congthongtin.ul-danhmuc li:hover a {
        left: 5px;
        top: -5px;
        position: relative;
}
.ul-congthongtin.ul-danhmuc li a {
        background: -webkit-linear-gradient( white 0%,#b1d8fc);
        border: 1px solid #d1d3d4;
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 7px 12px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        left: 0px;
        top: 0px;
        position: relative;
        min-height: 55px;
        gap: 25px;
}
.ul-congthongtin.ul-danhmuc span:first-child {
        width: 35px;
        position: relative;
        /* left: 5px; */
}
.ul-congthongtin.ul-danhmuc img {
        width: 40px;
        height: 40px;
        min-width: 35px;
        max-width: 35px;
        min-height: 35px;
        max-height: 35px;
}
.ul-congthongtin.ul-danhmuc li span:last-child {
        color: #c1161c;
        /* padding-left: 25px; */
        font-size: 14px;
        position: relative;
        font-weight: bold;
        text-transform: uppercase;
        flex: 1;
}
/************************************/
.fa-address-book-o:before {
        content: "\f2ba";
}
.portlet-body .section {
        margin-bottom: 15px !important;
        display: inline-block;
        width: 100%;
}
.portlet-body .row {
        margin: 0px -7px;
}
.portlet-body .cols20 {
        padding: 0px 7px;
        width: 16.6%;
        float: left;
        text-align: center;
}
.portlet-body .banner-text-icon {
        background: #fff5e2;
        border: 1px solid #d1d1d1;
        text-align: center;
        padding: 5px;
        display: block;
        color: #000;
        border-radius: 3px;
}
.portlet-body .banner-text-icon .icon {
        font-size: 40px;
        margin-bottom: 10px;
}
.portlet-body .banner-text-icon .text {
        display: block;
        font-size: 14px;
        font-weight: bold;
        color: #333;
}
/************************************/
.box-dvc {
        padding: 5px;
        background: #e1e1e3;
}
.box-dvc .head {
        background: #0f5cb3;
        padding: 10px 10px;
        margin-bottom: 10px;
        border-radius: 3px 3px 0px 0px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 8px;
}
.box-dvc  .banner img {
        width: 100%;
        display: block;
        margin-bottom: 8px;
}
/************************************/
@media only screen and (max-width: 768px){
        .AdvertContent {
                padding: 0 5px;
                width: 100%;
        }
        .AdvertContent * {
                max-width: 100%;
        }
        div.portlet-body .row {
                flex-direction: row !important;
                flex-wrap: wrap;
                gap: 10px;
        }
        div.portlet-body .cols20 {
                float: none;
                width: unset !important;
                max-width: calc(50% - 5px) !important;
                width: calc(50% - 5px) !important;
        }
        ul.ul-congthongtin.ul-danhmuc img {
                width: 40px !important;
                height: 40px !important;
                min-width: 35px !important;
                max-width: 35px !important;
                min-height: 35px;
                max-height: 35px;
        }
        .ul-congthongtin.ul-danhmuc li a {
                padding: 5px !important;
        }
}
.marquee {
        overflow: hidden;
        position: relative;
        color: #333;
        height: 30px;
}

.marquee strong {
        position: absolute;
        width: 100%;
        height: 100%;
        margin: 0;
        line-height: 30px;
        text-align: center;
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -moz-animation: scroll-left 1s linear infinite;
        -webkit-animation: scroll-left 1s linear infinite;
        animation: scroll-left 25s linear infinite;
}


@-moz-keyframes scroll-left {
                0% {
                    -moz-transform: translateX(100%);
                }
                100% {
                    -moz-transform: translateX(-100%);
                }
            }
            
            @-webkit-keyframes scroll-left {
                0% {
                    -webkit-transform: translateX(100%);
                }
                100% {
                    -webkit-transform: translateX(-100%);
                }
            }
            
            @keyframes scroll-left {
                0% {
                    -moz-transform: translateX(100%);
                    -webkit-transform: translateX(100%);
                    transform: translateX(100%);
                }
                100% {
                    -moz-transform: translateX(-100%);
                    -webkit-transform: translateX(-100%);
                    transform: translateX(-100%);
                }
            }