/* layout.css *
* Copyright (c) 2015, hariyazt16@gmail.com. All rights reserved. * version: 0.1.0 * * CSS Reset * Header * Body * Dialog * Footer * Responsive * */
/* =CSS Reset : reset default browser style
-------------------------------------------------------------*/

html {
    /* background: #fff; */
    width: 100%;
    margin: 0 auto;
    /* max-width: 1366px; */
	background: url('../images/resource/pattern.png') 0 0 repeat;
}
body, div.body {
    position: relative;
	min-height: 500px;
}
body.landing {
	padding: 0;
}
.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}
/* =Loading and Dialog
-------------------------------------------------------------- */
/* Loading */

div.loading, div.dialog {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
div.loading {
    z-index: 995;
    background: rgba(0, 200, 248, 0.3) url('../images/dialog/loading_medium.png') 50% 40px no-repeat;
	display: none;
}
/* End Loading */
/* Dialog */

div.dialog {
    display: none;
}
div.dialog {
    background: rgba(0, 200, 248, 0.3);
    z-index: 990;
}
div.dialog .fixed {
    position: fixed;
    left: 0;
    top: 50%;
    width: 100%;
}
div.dialog .dialog-box {
    position: relative;
    text-align: center;
}
div.dialog .dialog-box .content {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    position: relative;
    width: 513px;
    margin: 0 auto;
    background: #fff;
    text-align: left;
	border: none;
}
.dialog .dialog-box .dialog-header {
    background: #079eb7;
    border-bottom: 1px solid #aaa;
    padding: 5px 10px;
	box-shadow: 0 2px 2px #aaa;
	position: relative;
	z-index: 10;
}
.dialog .dialog-box .dialog-header img {
	width: 30px;
	float: left;
	background: #fff;
}
.dialog .dialog-box .dialog-header span {
	font-size: 20px;
    line-height: 24px;
	color: #fff;
	text-shadow: 1px 1px 1px #444;
	padding: 8px 0 0 40px;
	display: block;
}
.dialog .dialog-box .dialog-content {
    background: #fff;
    padding: 10px 15px;
	max-height: 70vh;
	overflow: auto;
}
.dialog .dialog-box .dialog-content * {
	font-size: 13px;
}
.dialog .dialog-box .dialog-submit {
    text-align: center;
	display: flex;
}
.dialog .dialog-box .dialog-submit a,
.dialog .dialog-box .dialog-submit input[type="submit"],
.dialog .dialog-box .dialog-submit input[type="button"] {
    display: block;
    width: 50%;
    padding: 15px 10px;
    font-size: 20px;
    color: #fff;
    background: #079eb7;
    text-decoration: none;
}
.dialog .dialog-box .dialog-submit a:hover,
.dialog .dialog-box .dialog-submit input[type="submit"]:hover,
.dialog .dialog-box .dialog-submit input[type="button"]:hover {
	background: #03afd8;
}
.dialog .dialog-box .dialog-submit a.red-btn,
.dialog .dialog-box .dialog-submit input[type="submit"].red-btn,
.dialog .dialog-box .dialog-submit input[type="button"].red-btn {
	background: #ff3823;
}
.dialog .dialog-box .dialog-submit a.red-btn:hover,
.dialog .dialog-box .dialog-submit input[type="submit"].red-btn:hover,
.dialog .dialog-box .dialog-submit input[type="button"].red-btn:hover {
	background: #d71e0a;
}
.dialog .dialog-box .dialog-submit.onebtn a {
	width: 100%;
}
.dialog .dialog-content fieldset {}
.dialog .dialog-content fieldset > div {
	margin: 5px 0;
}
.dialog .dialog-box .dialog-content fieldset label {
	float: left;
	width: 120px;
	font-size: 12px;
	line-height: 27px;
	padding: 0;
}
.dialog .dialog-box .dialog-content fieldset input {
	font-size: 12px;
	line-height: 18px;
}
.dialog .dialog-content fieldset label:after {
	content: ":";
	top: 0;
}
.dialog .dialog-content fieldset div .desc {
	padding: 0 0 0 130px;
	display: block;
	line-height: 27px;
}
/* End Dialog */
/* =Header
-------------------------------------------------------------- */
.header {
	position: fixed;
	width: 100%;
	z-index: 200;
	/* background: #fff; */
	top: 0;
	-webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
.header .toplogo {
	padding: 15px 10px;
}
.header .toplogo a {
	/* display: table; */
	margin: 0 auto;
	text-decoration: none;
}
.header .toplogo a img {
	/* display: table-cell; */
	height: 35px;
}
.header .toplogo a > span {
	display: table-cell;
	padding: 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	vertical-align: middle;
	color: #06879c;
}
.header .toplogo span span {
	display: block;
	font-weight: 600;
}
.header .call-center {
	background: url('../images/resource/contact.png') 0 50% no-repeat;
	padding: 10px 10px 10px 65px;
	min-height: 65px;
	float: right;
	background-size: 55px;
}
.header .call-center span {
	display: block;
	font-size: 18px;
	line-height: 24px;
}
.header .call-center a {font-size: 18px;line-height: 24px;}
.header.scroll {
	/* -webkit-animation-name: fadeOut;
	animation-name: fadeOut; */
	background: #fff;
	box-shadow: 0px 0 4px #666;
}
.header.scroll.menu-fix {
	/* -webkit-animation-name: fadeInDown;
	animation-name: fadeInDown; */
}
.header.scroll.menu-fix .toplogo,
.header.scroll.menu-fix .call-center  {
	display: none;
}
.header .mainmenu {
	/* background: #145c74;
	box-shadow: 0px 3px 2px #666; */
	z-index: 200;
	position: relative;
	min-height: 44px;
	background-image: url('../images/resource/bg-mainmenu.png') ,url('../images/resource/bg-mainmenu-transparent.png');
	background-position: 0 0, 50% 0;
	background-size: 50% 105px;
	background-repeat: no-repeat;
	
}
.header.scroll .mainmenu {
	-webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.header .mainmenu .container {
	padding: 0;
	background-image: url('../images/resource/bg-menu.png');
	height: 100px;
	background-size: auto 105px;
	background-repeat: no-repeat;
}
.header .mainmenu .logo {
	position: relative;
}
.header .mainmenu .logo a {
	text-decoration: none;
}
.header .mainmenu .logo a img {
	height: 90px;
	float: right;
	/* padding: 10px; */
}
.header .mainmenu .logo a span {
	padding: 10px 0 10px 50px;
	font-size: 24px;
	display: block;
	color: #fff;
	line-height: 24px;
	text-shadow: 0 2px 3px #444;
}
.header .mainmenu .menu {
	list-style: none;
	margin: 15px 0;
	/* float: right; */
}
.header .mainmenu .menu > li {
	float: left;
	/* border-left: 2px solid #00aed8;
	border-right: 2px solid #00aed8;
	margin: 0 0 0 -2px; */
}
.header .mainmenu .menu > li.user-menu,
.header .mainmenu .menu > li:last-child {
	/* float: right; */
}
.header .mainmenu .menu > li.member {
	display: none;
}
.header .mainmenu .menu > li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 24px;
	padding: 10px 25px;
	display: block;
	/* text-decoration: none; */
}
.header .mainmenu .menu > li a.search {
	background-image: url('../images/icons/icon_search.png');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 20px;
	padding: 10px 25px;
}
.header .mainmenu .menu > li a.home {
	background-image: url('../images/icons/home.png');
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 20px;
	padding: 10px 25px;
}
.header .mainmenu .menu > li a.user {
	padding: 2px 30px 2px 10px;
	background-image: url('../images/resource/arrow_down.png');
	background-position: 90% 50%;
	background-repeat: no-repeat;
	background-size: 12px;
}
.header .mainmenu .menu > li:hover a.user {
	background-image: url('../images/resource/arrow_up.png');
}
.header .mainmenu .menu > li a.user img {
	height: 40px;
}
.header .mainmenu .menu > li:hover {
	/* background: #00aed8; */
}
.header .mainmenu .menu > li.active {
	background: #0a5b6c;
}
.header .mainmenu .menu > li.active a {
	/* font-weight: 600; */
	text-decoration: none;
}
.header .mainmenu .menu > li.user-menu {
	position: relative;
}
.header .mainmenu .menu > li.user-menu ul {
	position: absolute;
	right: 0;
	margin: 0;
	list-style: none;
	background: #444;
	display: none;
}
.header .mainmenu .menu > li.user-menu:hover ul {
	display: block;
}
.header .mainmenu .menu > li.user-menu ul li {}
.header .mainmenu .menu > li.user-menu ul li a {
	padding: 10px;
	min-width: 140px;
	font-size: 13px;
	line-height: 18px;
	border-bottom: 1px solid #222;
}
.header .mainmenu .menu > li.user-menu ul li a:hover {
	background: #333;
}
.header .mainmenu .menu > li.user-menu ul li.name {
	font-size: 13px;
	padding: 10px;
	color: #fff;
}
.header .mainmenu .menu > li.user-menu ul li.name a {
	text-transform: unset;
	display: inline;
	padding: 0;
	font-style: italic;
}
.header .mainmenu .menu > li.user-menu ul li.name a:hover {
	background: none;
}
.header .menu-member {
	background: #14a2ba;
	z-index: 100;
	position: relative;
	border-bottom: 1px solid #0e5a71;
	/* margin: -10px 0 0 0;
	z-index: 200; */
}
.header .menu-member .container {
	padding: 0;
}
.header .menu-member .menu {
	list-style: none;
	margin: 0;
	float: right;
}
.header .menu-member .menu > li {
	float: left;
	/* border-left: 1px solid #005e78;
	border-right: 1px solid #005e78; */
	margin: 0 0 0 -2px;
	position: relative;
}
.header .menu-member .menu > li a {
	color: #fff;
	font-size: 13px;
	line-height: 18px;
	padding: 10px 20px;
	display: block;
	text-decoration: none;
}
.header .menu-member .menu > li:hover {
	background: #005e78;
}
.header .menu-member .menu > li.active {
	background: #0e5a71;
}
.header .menu-member .menu .notification:hover {
	background: #0e5a71;
}
.header .menu-member .menu .notification > a {
	background-image: url("../images/icons/notification.png");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	padding: 10px 20px;
	height: 38px;
}
.header .menu-member .menu .notification > a span {
	color: #fff;
	background: #ff0000;
	padding: 3px 10px;
	border-radius: 5px;
	font-weight: 600;
	position: absolute;
	right: 35px;
	top: 8px;
}
.header .menu-member .menu > li ul {
	position: absolute;
	list-style: none;
	margin: 0;
	background: #005e78;
	left: 0;
	box-shadow: 0 2px 3px #444;
	display: none;
	min-width: 180px;
}
.header .menu-member .menu > li:last-child ul {
	right: 0;
	left: auto;
}
.header .menu-member .menu > li:hover > ul {
	display: block;
}
.header .menu-member .menu > li ul li {
	position: relative;
}
.header .menu-member .menu > li ul li a {
	padding: 10px;
	border-top: 1px solid #01566d;
}
.header .menu-member .menu > li ul li a:hover {
	background: #01566d;
}
.header .menu-member .menu > li ul li.active > a {
	background: #0e5a71;
}
.header .menu-member .menu > li ul ul {
	position: absolute;
	list-style: none;
	margin: 0;
	background: #005e78;
	left: 100%;
	top: 0;
	box-shadow: 0 2px 3px #444;
	display: none;
	min-width: 130px;
}
.header .menu-member .menu > li:last-child ul ul{
	right: 100%;
	left: auto;
}
.header .menu-member .menu > li ul li:hover ul {
	display: block;
}
.header .menu-member .menu .notification ul {
	background: #fafafa;
	min-width: auto;
}
.header .menu-member .menu .notification ul li {}
.header .menu-member .menu .notification ul li a {
	color: #444;
	padding: 10px;
	width: 160px;
	border: none;
}
.header .menu-member .menu .notification ul li a:hover {
	color: #fff;
	background: #0e5a71;
}
.header .menu-member .menu .notification ul li a span {
	float: right;
}
.header .menu-member .menu .notification ul li a:hover span {
	color: #fff;
}
.header a.responsive-menu {
    display: none;
}
/* =Body
-------------------------------------------------------------- */
.breadcrumb {
	background: #f8f8f8;
    border: 1px solid #bbb;
    color: #888;
    font-size: 13px;
	width: 100%;
	padding: 5px 10px;
	margin: 0 auto 10px auto;
}
.breadcrumb a {
    font-size: 13px;
}
.breadcrumb span {
    padding: 10px 15px;
    background: url("../images/icons/arrow.png") no-repeat scroll 50% 50%;
}
.body {
	padding: 100px 0 0 0;
}
.body#member-log {
	padding: 150px 0 0 0;
}
.body#member-log.site {
	padding: 130px 0 0 0;
}
/* Slider */
#slider {
    overflow: hidden;
    position: relative;
	padding: 0 10px;
}
#slider .item {
    display: block;
    width: 100%;
	position: relative;
}
#slider .item img {
    width: 100%;
    object-fit: cover;
	object-position: 50% 0;
}
#slider .item .slide-desc {
	position: absolute;
	bottom: 0;
	background: rgba(0,0,0, 0.6);
	width: 100%;
}
#slider .item .slide-desc h4 {
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	padding: 7px 10px;
	font-weight: 600;
	background: rgba(0,0,0, 0.6);
}
#slider .item .slide-desc span {
	color: #fff;
	padding: 5px 10px 20px 10px;
	display: block;
}
#slider .owl-controls {
    bottom: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    z-index: 100;
	text-align: center;
}
body.main #slider .owl-controls {
	text-align: left;
}
#slider .owl-controls span {
	background: #333;
	opacity: 1;
}
#slider .owl-controls .active span {
	background: #079eb7;
}
/* End Slider */
/* Content */
.content {
	border: 1px solid #d4e3fc;
	background: #fff;
}
/* End Content */
/* Footer */
.footer {
	/* background: #0e5a71; */
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#19a1bb+0,135b71+100 */
background: #19a1bb; /* Old browsers */
background: -moz-linear-gradient(left, #19a1bb 0%, #135b71 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #19a1bb 0%,#135b71 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #19a1bb 0%,#135b71 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#19a1bb', endColorstr='#135b71',GradientType=1 ); /* IE6-9 */
	/* background: #12736d; */
	/* padding: 20px 10px; */
	margin: 20px 0 0 0;
	box-shadow: 0 -3px 4px #aaa;
}
.footer * {
	color: #fff;
	font-size: 14px;
	line-height: 18px;
}
footer .footer a {
	color: #fff;
	margin: 0 10px;
}
footer .copyright {
	background: #19a1bb; /* Old browsers */
background: -moz-linear-gradient(left, #19a1bb 0%, #135b71 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #19a1bb 0%,#135b71 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #19a1bb 0%,#135b71 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#19a1bb', endColorstr='#135b71',GradientType=1 ); /* IE6-9 */
padding: 10px;
border-top: 1px solid #a1e4ed;
}
footer .copyright .container {
	font-size: 13px;
}
/* End Footer */
/* =Responsive
-------------------------------------------------------------- */
/* Resolution 1280 */

@media only screen and (max-width:1280px) {}
/* Resolution 1024 */

@media only screen and (max-width:1024px) {
}
/* Resolution 768 */

@media only screen and (max-width:768px) {
	.header .toplogo {
		text-align: center;
	}
	.header .toplogo a {
		display: inline-block;
	}
	.header .contact-box {
		display: none;
	}
	.container {
		padding: 0 10px;
	}
	.header .mainmenu {
		background: none;
	}
	.header .mainmenu .container {
		background-size: 90% auto;
	}
	.header a.responsive-menu {
        background: #fff url("../images/button/responsive_menu.png") no-repeat scroll 50% 50%;
        display: block;
        height: 40px;
        position: fixed;
        left: 10px;
        width: 40px;
        top: 10px;
		border: 1px solid #aaa;
		z-index: 210;
    }
	.header.scroll a.responsive-menu {
		top: 3px;
	}
    .header a.responsive-menu.active {
        background: #06879c url("../images/button/responsive_menu_white.png") no-repeat scroll 50% 50%;
        border: 1px solid #06879c;
        color: #fff;
        left: 205px;
    }
	.header .mainmenu .menu {
        background: #00aed8;
        display: none;
        height: 100vh;
        position: fixed;
        left: -200px;
        top: 0;
        width: 200px;
        z-index: 200;
        margin: 0 !important;
        padding: 0 !important;
		border-left: 1px solid #00aed8;
		box-shadow: 0px 0px 2px 2px #777;
		overflow: auto;
    }
    .header .mainmenu .menu.active {
        display: block;
        left: 0;
    }
    .header .mainmenu .menu > li {
        float: none;
		border-right: none;
		border-left: none;
		padding: 0;
    }
	.header .mainmenu .menu > li.member {
		display: block;
		/* text-align: right; */
	}
    .header .mainmenu .menu > li a {
        /* border-top: 1px solid #06879c; */
        color: #fff;
		display: block;
		padding: 8px 15px;
    }
    .header .mainmenu .menu > li a:hover {
        color: #fff;
		top: 0;
    }
	.header .mainmenu .menu > li a.active {
        color: #fff;
		padding: 8px 15px 8px 25px !important;
    }
	.header .mainmenu .menu > li a.user {
		/* display: none; */
	}
	.header .mainmenu .menu > li.user-menu ul {
		width: 100%;
	}
	.header .mainmenu .menu > li a.user img {
		margin: 0;
		display: inline;
	}
	.header .mainmenu .menu > li.member ul {
       padding: 0;
       margin: 0;
	   list-style: none;
	   display: none;
    }
	.header .mainmenu .menu > li.member.active ul {
		display: block;
	}
	.header .mainmenu .menu > li.member ul li {
		position: relative;
	}
	.header .mainmenu .menu > li.member ul li:before {
		content: "";
		position: absolute;
		width: 1px;
		height: 100%;
		background: #fff;
		left: 18px;
	}
	.header .mainmenu .menu > li.member ul li:last-child:before {
		height: 50%;
	}
	.header .mainmenu .menu > li.member ul li:after {
		content: "";
		position: absolute;
		width: 7px;
		height: 1px;
		background: #fff;
		left: 18px;
		top: 20px;
	}
	.header .mainmenu .menu > li.member.actived {
		background: #029ec4;
	}
	.header .mainmenu .menu > li.member ul a {
		padding: 7px 15px;
		font-size: 13px;
		text-transform: unset;
		border: none;
	} 
	.header .mainmenu .menu > li.member > ul > li > a {
		padding: 7px 15px 7px 30px;
	}
	.header .mainmenu .menu > li.member > ul > li.active > a {
		background: #02556c;
	}
	.header .mainmenu .menu > li.member > ul > li ul a {
		padding: 7px 15px 7px 50px;
	}
	.header .mainmenu .menu > li.member ul ul li:before {
		left: 40px;
	}
	.header .mainmenu .menu > li.member ul ul li:after {
		left: 40px;
	}
	.header .menu-member {
		display: none;
	}
	.header .mainmenu .menu > li.user-menu,
	.header .mainmenu .menu > li:last-child {
		float: none;
	}
	.vacancy-title-main,
	.test-title-main,
	.login-fullwidth	{
		display: none;
	}
	.vacancy-main-list,
	.test-main-list,
	.vacancy-title-responsive,
	.test-call-title-responsive,
	.login-for-top {
		display: block !important;
	}
}
/* Resolution 600 */

@media only screen and (max-width:640px) {
	.header .mainmenu .container {
		background-position: 170% 0;
		background-size: 120% auto;
	}
}
/* Resolution 480 */

@media only screen and (max-width:480px) {
	.header .mainmenu .container {
		background-position: 130% 0;
		background-size: 170% auto;
	}
}
/* Resolution 320 */

@media only screen and (max-width:320px) {}

/* grid form n search form */
div.body .container .search-form,
div.body .container .grid-form,
div.body .container .grid-option {
	background: #f0f0f0;
	padding: 12px 15px;
	display: none;
}
div.body .container .search-form .shadow,
div.body .container .grid-option .shadow {
	bottom: -7px;
	background: url('../images/resource/title_shadow.png') 0 -3px repeat;
}
div.body .container .search-form ul,
div.body .container .grid-option ul {
	display: block;
	list-style: none;
	margin: 0 0 0 0;
}
div.body .container .search-form ul li,
div.body .container .grid-option ul li {
	float: left;
	margin: 0 12px 0 0;
}
div.body .container .search-form ul li {
	font-weight: bold;
}
div.body .container .search-form ul li.submit {
	padding: 22px 0 0 0;
}
div.body .container .search-form ul li input[type="text"],
div.body .container .search-form ul li select,
div.body .container .search-form ul li.submit input {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height: 30px;
}
div.body .container .search-form ul li input[type="text"],
div.body .container .search-form ul li select {
	margin: 5px 0 0 0;
}
div.body .container .search-form ul li input[type="text"] {
	padding: 7px 7px;
	width: 180px;
}
div.body .container .search-form ul li select {
	min-width: 80px;
}
div.body .container .search-form ul li.submit input {
	padding: 5px 15px 6px 15px;
	border: 1px solid #477dae;
	background: #477DAE url(../images/login/buttonblue_bg.png) 0 0 repeat-x;
	color: #fff;
	text-shadow: 0 1px 0 #104266;
}
div.body .container .search-form ul li.submit input:hover {
	background: #558bbc;
}
div.body .container .grid-option ul li {
	padding: 0 0 10px 0;
}
div.body .container .grid-option ul li input {
	margin: 0 5px 0 0;
}
/*end grid form n search form */