/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0px;
}

[class*='cell-'] {
    float: left;
}

.grid {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.grid-no-overflow-hiden {
    width: 100%;
    max-width: 1200px;
    min-width: 755px;
    margin: 0 auto;
}

.grid:after {
    content: "";
    display: table;
    clear: both;
}

.grid-pad {
    padding-top: 0px;
    padding-left: 10px;
    /* grid-space to left */
    padding-right: 10px;
    /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.hide-on-pc {
    display: none;
}

.flex-container {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between
        /* space-around;*/
}

.flex-centered {
    justify-content: center;
}

.flex-container-round {
    justify-content: space-around;
}
.flex-flex-start
{
    justify-content: flex-start;
}
.flex-space-between {
    justify-content: space-between;
}

.flex-flex-end {
    justify-content: flex-end;
}
.align-center
{
    align-items: center;
}
.border-flex {
    border: solid 1px #e4e4e4;
    border-right: none;
    border-bottom: none;
}

.cell-1-1 {
    width: 100%;
}

.cell-1-5 {
    width: 19%;
    float: left;
}

.cell-2-5 {
    width: 40%;
}

.cell-3-5 {
    width: 60%;
}

.cell-4-5 {
    width: 80%;
}

.cell-1-6 {
    width: 17.5%;
}

.cell-2-6 {
    width: 35%;
}

.cell-4-6 {
    width: 64%;
}

.cell-5-6 {
    width: 81%;
}

.cell-1-7 {
    width: 13.8%;
}

.cell-1-8 {
    width: 11.3%;
}

.cell-1-3 {
    float: left;
    width: 32%;
}

.cell-2-3 {
    float: left;
    width: 66%;
}

.cell-1-4 {
    float: left;
    width: 24.5%;
}

.cell-2-4 {
    float: left;
    width: 50%;
}

.cell-3-4 {
    float: left;
    width: 73.2%;
}

.cell-1-2 {
    width: 48.8%;
}

.cell-info-1-2 {
    width: 49%;
}

.cell-footer-1-3 {
    width: 32.2%;
}

.cell-footer-1-4 {
    width: 23%;
}

.cell-footer-3-4 {
    width: 73%;
}

.cell-home-1-3 {
    width: 32%;
}

/* SPECIAL IN ALLIA HOLIDAY */
.cell-search-1-4 {
    float: left;
    width: 25.5%;
}

.cell-1-9 {
    width: 10%;
}


.cell-image {
    width: 36.9%;
}
.cell-search-1-3
{
    width: 27%;
}
.cell-search-1-6
{
    width: 15%;
}
/* .cell-image-left {
    width: 36.80781758957655%;

}

.cell-image-right {
    width: 62.64929424538545%;

}

.cell-image-left-con {
    width: 58.40554592720971%;
}

.cell-image-right-con {
    width: 40.38128249566724%;

} */

.cell-image-left {
    width: 36.55559%;

}

.cell-image-right {
    width: 62.64928%;

}

.cell-image-left-con {
    width: 58.40555%;
}

.cell-image-right-con {
    width: 40.58127%;

}

.cell-left-col {
    width: 70%;
}

.cell-right-col {
    width: 28%;
}

/* end */

.cell-home-2-3 {
    width: 65%;
}

.cell-home-1-4 {
    width: 22%;
}

.cell-home-1-5 {
    width: 15%;
}

.cell-1-10 {
    width: 10%;
}

.cell-2-10 {
    width: 20%;
}

.cell-3-10 {
    width: 30%;
}

.cell-4-10 {
    width: 40%;
}

.cell-5-10 {
    width: 50%;
}

.cell-6-10 {
    width: 60%;
}

.cell-7-10 {
    width: 70%;
}

.cell-8-10 {
    width: 80%;
}

.cell-9-10 {
    width: 90%;
}

.cell-1-12 {
    width: 8.33%;
}

.cell-2-12 {
    width: 16%;
}

.cell-3-12 {
    width: 23.5%;
}

.cell-4-12 {
    width: 29%;
}

.cell-5-12 {
    width: 41%;
}

.cell-6-12 {
    width: 50%;
}

.cell-7-12 {
    width: 57.5%;
}

.cell-8-12 {
    width: 65%;
}

.cell-9-12 {
    width: 74%;
}

.cell-10-12 {
    width: 83%;
}

.cell-11-12 {
    width: 91%;
}

.cell-news-1-3 {
    width: 32%;
}


@media handheld,
only screen and (max-width: 1200px) {
    .grid {
        max-width: 100%;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 auto;
    }
}

@media handheld,
only screen and (max-width: 1115px) {
    .nav li a {
        padding: 0px 10px;
    }
}

@media handheld,
only screen and (max-width: 1024px) {
    .grid {
        max-width: 900px;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 auto;
    }

    .box-filter .box-content-fillter {
        height: auto;
    }

    .pad-cell-1-1 {
        width: 100%;
    }

    .pad-cell-1-2 {
        width: 48%;
    }

    .pad-cell-2-3 {
        width: 70%;
    }

    .pad-cell-1-3 {
        width: 30%;
    }

    .pad-cell-1-4 {
        width: 22%;
    }

    .hide-on-pc {
        display: block;
    }

    .hide-on-pad {
        display: none;
    }

    .nav {
        display: none;
    }

    .menubar {
        text-align: right;

    }

    /*end pad s*/
}

@media handheld,
only screen and (max-width: 767px) {
    .grid {
        max-width: 100%;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 auto;
    }

    .hide-on-pc {
        display: block;
    }

    .hide-on-pad {
        display: block;
    }

    .hide-on-tab {
        display: none;
    }

    .m-text-line-2 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .m-text-line-3 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .m-text-line-4 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .m-text-line-5 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
    }

    .tab-cell-1-1 {
        width: 100%;
    }

    .tab-cell-1-2 {
        width: 48.5%;
    }

    .tab-cell-1-3 {
        width: 31%;
    }
    .tab-cell-2-3 {
        width: 66%;
    }    

    .tab-cell-1-4 {
        width: 22%;
    }
	.tab-cell-3-4 {
        width: 75%;
    }

    .tab-cell-1-5 {
        width: 18%;
    }
	.tab-cell-4-5 {
        width: 79%;
    }

    .tab-cell-7-12 {
        width: 55%;
    }

    .tab-cell-5-12 {
        width: 42%;
    }

    .homeinfo {
        margin-top: 0px;
    }

    .homeinfo-item {
        text-align: center;
        padding: 10px 5px;
    }


    .homecat-title {
        font-size: 20px;
    }

    .homeactivities-wrapper .homeactivities-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .menutab-item {
        line-height: 1.2;
        padding: 5px;
    }

    .homearticle-img img{
        height: auto;
    }    

    .cell-item--right{
        padding: 20px;
    }

    .footer-block {
        padding-left: 0px;
        margin-bottom: 10px;
    }    

    .tocContent img{
        width: 100%;
        height: auto !important;
    }

    .homeactivities-wrapper .homeactivities-item-first__name {

        position: initial;
        padding: 10px;

    }

    .homearticle-name {
        font-size: 16px;
        padding-top: 5px;
    }    

	.homeabout-item--number
	{
		line-height: 1.1;
		font-size: 24px;

	}
	.infomember-item--name{
		border-bottom:none;
		padding-bottom: 0px;
	}
	.infomember-item--desc{
		border-bottom:solid 1px #CCC;
	}
	
	.tocContent iframe{
		width:100%;
	}	
	.menuright{
		display:none;
	}
	
	.ketquadognghiem{
        padding: 0px;
    }
	
	.showFormTraCuu{
		margin:0px;
	}
	
.thongbao-footer--title{

	padding: 0px;
}
	
	
    /* end tab s  */
}

@media handheld,
only screen and (max-width: 579px) {
    .grid {
        max-width: 460px;
        min-width: 0;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 auto;
    }

    .bg-page {
        max-width: 420px !important;
    }

    [class*='mobile-col-'] {
        float: left;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 10px;
        padding-bottom: 0px;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .mobile-cell-1-1 {
        width: 100%;
    }

    .mobile-cell-1-2 {
        width: 48%;
    }

    .mobile-cell-1-3 {
        width: 32%;
    }

    .mobile-cell-2-3 {
        width: 62%;
    }

    .slide-text-box {
        width: 100%;
        padding: 10px;
    }

    .paging a {
        padding: 6px 5px;
        margin-right: 3px;
    }

    .tab-bottom-20 {
        margin-bottom: 20px;
    }

    .tab-bottom-30 {
        margin-bottom: 30px;
    }

    .info-home-content {
        display: none;

    }

    .catname-slide {
        font-size: 16px;
    }

}