.header-content {
	width: 100%;
	max-height: 0;
    overflow-y: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
       -moz-transition: max-height 0.3s ease-in-out;
         -o-transition: max-height 0.3s ease-in-out;
            transition: max-height 0.3s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header-content-active {
    height: 90px;
	max-height: 90px;
}

#header-search-content.header-content-active {
    height: auto;
	max-height: 400px;
    -webkit-transition: max-height 0.3s ease-in-out;
       -moz-transition: max-height 0.3s ease-in-out;
         -o-transition: max-height 0.3s ease-in-out;
            transition: max-height 0.3s ease-in-out;
}

#header-log-content.header-content-active {
    height: auto;
	max-height: 400px;
    -webkit-transition: max-height 0.3s ease-in-out;
       -moz-transition: max-height 0.3s ease-in-out;
         -o-transition: max-height 0.3s ease-in-out;
            transition: max-height 0.3s ease-in-out;
}

.header-search-content-bg1 {
    background-size: cover;
    background-image: url('../../img/header-tab-search-content-bg.jpg');
    background-position: bottom;
}

.content-title {
    color: #7C7C7C;
}

.z-100 {
    z-index: 100;
}

.z-200 {
    z-index: 200;
}

.z-300 {
    z-index: 300;
}

.z-1000 {
    z-index: 1000;
}