/* Add here all your CSS customizations */
/* overlays */
.overlays,  .overlays-2, .overlays-left, .overlays-right {
    /*display: none;*/
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    top: 0;
    left: 0;
    
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 99999980;
}
.overlays-left, .overlays-right {
    background: rgba(255,255,255,0.6);
    top: 0;
    left: 0;
}
.overlays .loading-container, .overlays-left .loading-container, .overlays-right .loading-container {
    top: 35%;
    top: calc(50%-20px);
}
.overlays {
    background: rgba(255,255,255,1);
}
.overlays-2 {
    z-index: 2;
}
.overlays.hide {
    display: none;
}
.overlays.show {
    display: block;
}
/* End overlays */
.js-menu-mobile {
  float: right;
  display: none;
  background-color: transparent;
  width: 46px;
  height: 44px;
}
.js-menu-mobile .trigger-menu {
    cursor: pointer;
    width: 46px;
    height: 44px;
    text-align: right;
}
.js-menu-mobile .trigger-menu .three-bars-icon {
    margin: 20px 10px;
    user-selectable: none;
    position: relative;
    display: inline-block;
    width: 26px;
    height: 3px;
    background: #2196f3;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.js-menu-mobile .trigger-menu span {
    display: inline-block;
    vertical-align: middle;
}
.js-menu-mobile .trigger-menu .three-bars-icon:before {
    content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 3px;
    top: -7px;
    right: 0;
    background: #2196f3;
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.js-menu-mobile .trigger-menu .three-bars-icon:after {
    content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 3px;
    top: 7px;
    right: 0;
    background: #2196f3;
    -webkit-transition: all .25s ease-in-out;
       -moz-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
}
.js-menu-mobile .trigger-menu .three-bars-icon.close {
    position: relative;
    display: inline-block;
    background: transparent;
}
.js-menu-mobile .trigger-menu .three-bars-icon.close:before {
    content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 3px;
    top: 0;
    background: #0c806b;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.js-menu-mobile .trigger-menu .three-bars-icon.close:after {
    content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 3px;
    top: 0;
    background: #0c806b;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}.slidebar {
  position: fixed;
  width: 70%;
  max-width: 650px;
  height: 100%;
  top: 0;
  right: -70%;
  background: #2196f3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 99999990;
  -webkit-transition: all .25s ease-in-out;
     -moz-transition: all .25s ease-in-out;
      -ms-transition: all .25s ease-in-out;
       -o-transition: all .25s ease-in-out;
          transition: all .25s ease-in-out;
}
.slidebar.show {
  right: 0;
}
.mobile-wrap-menu {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
}
.mobile-wrap-menu .head {
  background: #1676c1;
  display: table;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-wrap-menu .head span {
  display: table-cell;
  vertical-align: middle;
}
.mobile-wrap-menu .head .icon {
  padding: 1rem 1.5rem;
  zoom: 1; /* Fix for IE7 */
  *display: inline; /* Fix for IE7 */
  font-size: 2rem;
  color: #fff;
}
.mobile-wrap-menu .head .icon:hover {
  cursor: pointer;
}
.mobile-wrap-menu .head .head-text {
  font-size: 2rem;
  padding: 1rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-wrap-menu .sub-menu .head .icon {
  background: #1469ab;
  width: 46px;
  text-align: center;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.mobile-wrap-menu .head .icon.left {
  float: left;
}
.mobile-wrap-menu .head .icon.right {
  float: right;
}
.nav-mobile li {
    list-style: none;
}

.nav-mobile li:last-child {
    border: none
}

.nav-mobile li a, .nav-mobile li span {
  border-bottom: 1px solid #1d85d8;
  position: relative;
  display: block;
  text-decoration: none;
  padding: 1.3rem;
  padding-left: 30px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  position: relative;
  cursor: pointer;
}
.nav-mobile li a::before, .nav-mobile li span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #fff;
  position: absolute;
  top: 20px;
  left: 15px;
}
.nav-mobile li a.hassub::after, .nav-mobile li span.hassub::after {
  content: '';
  z-index: 10;
  position: absolute;
  top: 18px;
  right: 5px;
  width: 0;
  height: 0;
  border:  4px solid transparent;
  border-left: 4px solid #fff;
}
.nav-mobile > li > a {
  text-transform: uppercase;
}
.nav-mobile .sub-menu {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 9999;
  background: #2196f3;
  left: 100%;
  -webkit-transition: all .25s ease-in-out;
     -moz-transition: all .25s ease-in-out;
      -ms-transition: all .25s ease-in-out;
       -o-transition: all .25s ease-in-out;
          transition: all .25s ease-in-out;
}
.nav-mobile li .sub-menu[visible=true] {
  left: 0;
}
.nav-mobile li a:focus {
    background: #1a84d8;
}

.mobile-wrap-menu > .head .lang {
  float: right;
  margin-right: 1.5rem;
  margin-top: 0.7rem;
  -webkit-transition: all .25s ease-in-out;
     -moz-transition: all .25s ease-in-out;
      -ms-transition: all .25s ease-in-out;
       -o-transition: all .25s ease-in-out;
          transition: all .25s ease-in-out;
}
.mobile-wrap-menu > .head .lang li {
  float: left;
  border:  1px solid #cecece;
  background: #fff;
  list-style: none;
  display: inline-block;
  vertical-align: top;
  zoom: 1; /* Fix for IE7 */
  *display: inline; /* Fix for IE7 */
  padding: 0.5rem;
  width: 30px;
}
.mobile-wrap-menu > .head .lang li a {
  display: block;
  width: 100%;
}
.mobile-wrap-menu > .head .lang li a img {
  display: block;
  width: 100%;
}
.mobile-wrap-menu > .head .lang li:first-child {
  border-radius: 3px 0 0 3px;
  border-right: 0;
}
.mobile-wrap-menu > .head .lang li:last-child {
  border-radius: 0 3px 3px 0;
  border-left: 0;
}
.mobile-wrap-menu > .head .lang li.active, .header .lang li.active:hover {
  background-color: #2196f3;
}
.mobile-wrap-menu > .head .lang li:hover {
  background-color: #e8e8e8;
}
.mobile-wrap-menu ul{
	margin: 0 !important;
	padding: 0 !important;
}
.nav-mobile li i {
	display:  none;
}
.mobile-wrap-menu .sub-menu .head .icon i {
	display:  block;
}
.mobile-wrap-menu ul.social-icons.color li.rss, .mobile-wrap-menu ul.social-icons li.rss:hover {
    background-position: 0 -930px;
}
.mobile-wrap-menu ul.social-icons.color li.pinterest, .mobile-wrap-menu ul.social-icons li.pinterest:hover {
    background-position: 0 -810px;
}
.mobile-wrap-menu .social-icons {
	float: right;
	margin:  7px 7px 0 0 !important;
}
.mobile-wrap-menu .sub-menu .head .icon::before, 
.mobile-wrap-menu .sub-menu .head .icon::after,
.mobile-wrap-menu .head .head-text::before,
.nav-mobile ul li li li a::after {
	display:  none;
}

@media (max-width: 991px) {
	.btn-responsive-nav {
	    display: none !important;
	}
	.js-menu-mobile {
		display:  block;
	}
	#header {
		border-top: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		width: 100%;
	}
	#header, #header .header-top {
		min-height: 0 !important;
	}
	#header > .container {
		height: auto;
	}
	body.sticky-menu-active #header {
		top: 0;
	}
	body.sticky-menu-active #header .logo img, #header.fixed .logo img {
		top: 0 !important ;
		margin-top:  0!important ;
	}
	body {
		/*padding-top: 61px !important;*/
	}
}

/*
 * Hiển thị danh sách sinh nhật
 */
.birthday_section {
	height: 55px;
	background: url('/themes/versh/images/birthday_bg.jpg') center no-repeat;
}

#birthday_list, ul.birthday {
	display: block;
	width: 100%;
}

ul.birthday li { 
	color: #fa2b4a;
	font-family: Roboto;
	font-size: 15px;
	font-weight: bold;
	line-height: 55px;
	display: inline;
	padding: 0px 20px;
}

figcaption {
	padding: 10px;
}