/*-----------------------------------------------------------------------------------
    Author: upgrad.id
    Author URI: http://upgrad.id/
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================
    01. Theme default CSS
		- Google Font
		- Setting Color
		- Common Style
		- Common Classes
		- Loading & Dialog
		- form
		- Table Responsive
		- Pagination
	02. Header
	03. Content
	04. Widget
	05. Vacancy
	06. Member
	07. Article
	08. Footer

-----------------------------------------------------------------------------------*/
/*  01. Theme default CSS ----------------------------------------*/
/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
/*-- Setting Color --*/
.txt-primary {
  color: #203e72;
}

.txt-orange {
  color: #f4852c;
}

.txt-gray {
  color: #cdcdcd;
}

.txt-green {
  color: #27ac03;
}

.txt-blue {
  color: #0fb3ff;
}

.txt-red {
  color: #f3204b;
}

/*-- Common Style --*/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}

body {
  background-color: #ffffff;
  line-height: 18px;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  visibility: visible;
  font-family: "Open Sans", sans-serif;
  color: #323232;
}

h6, h5, h4, h3, h2, h1 {
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 18px;
  line-height: 24px;
}
h1.big {
  font-size: 24px;
  line-height: 30px;
}

h2 {
  font-size: 30px;
  line-height: 36px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5 {
  font-size: 14px;
  line-height: 18px;
}

h6 {
  font-size: 12px;
  line-height: 14px;
}

a,
button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

*:focus {
  outline: none !important;
}

a {
  text-decoration: none;
  color: #2294c5;
}
a.opacity-0 {
  opacity: 1;
}
a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 1;
}

button,
input[type=submit] {
  cursor: pointer;
}

.btn-default {
  border-radius: 0.25rem;
}

img {
  max-width: 100%;
  height: auto !important;
}
img .maxwidth-unset {
  max-width: unset;
}

.btn {
  opacity: 0.9;
}
.btn.btn-rounded {
  border-radius: 20px;
  font-weight: 600;
  padding: 7px 20px;
  margin: 5px;
  opacity: 0.9;
  font-size: 14px;
  vertical-align: unset;
  line-height: 24px;
  color: #fff !important;
}
.btn.btn-rounded.btn-sm {
  padding: 4px 15px;
  line-height: 18px;
  font-size: 13px;
}
.btn:hover, .btn:focus, .btn.btn-rounded:hover, .btn.btn-rounded:focus {
  opacity: 1;
}
.btn.btn-xs {
  font-size: 12px !important;
  padding: 3px 8px !important;
  line-height: 14px !important;
  height: auto;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.required span {
  color: #ff0000;
}

ul.no-list {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

ul.list-disc.primary {
  color: #203e72;
}

/*--
    Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.section {
  float: left;
  width: 100%;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.box-shadow {
  box-shadow: 0 0 5px #ddd;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x {
  overflow-x: auto !important;
}

/*--
    Loading & dialog
-----------------------------------------*/
/* Loading */
.loading {
  top: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  width: 100%;
  text-align: center;
}
.loading span {
  position: relative;
  background-image: url("../images/button/loading.gif");
  background-repeat: no-repeat;
  width: 80PX;
  height: 80px;
  display: inline-block;
  background-size: 100%;
  background-position: 50% 50%;
  top: 50%;
  margin-top: -40px;
}

/* Dialog */
.photo-upload, .dialog {
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.photo-upload .fixed, .dialog .fixed {
  left: 50%;
  top: 50%;
  position: fixed;
}
.photo-upload .dialog-box, .dialog .dialog-box {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px;
}
.photo-upload .dialog-box form, .dialog .dialog-box form {
  padding: 0;
  margin: 0;
}
.photo-upload .dialog-box .content, .dialog .dialog-box .content {
  border: 1px solid #fff;
  width: 280px;
}
@media only screen and (max-width: 576px) {
  .photo-upload .dialog-box .content, .dialog .dialog-box .content {
    width: 100% !important;
  }
}
.photo-upload .dialog-box .dialog-content, .dialog .dialog-box .dialog-content {
  padding: 12px 12px 15px 12px;
  background: #FEFCE0;
  font-size: 13px;
}
.photo-upload .dialog-box .dialog-submit, .dialog .dialog-box .dialog-submit {
  padding: 10px 12px;
  text-align: right;
  background: #FEFCE0;
}
@media only screen and (max-width: 576px) {
  .photo-upload .dialog-box, .dialog .dialog-box, .photo-upload .fixed, .dialog .fixed {
    left: 0 !important;
    width: 100% !important;
  }
}

.dialog .dialog-box .content[id="300px"] {
  width: 300px;
}
.dialog .dialog-box .content[id="350px"] {
  width: 350px;
}
.dialog .dialog-box .content[id="400px"] {
  width: 400px;
}
.dialog .dialog-box .content[id="450px"] {
  width: 450px;
}
.dialog .dialog-box .content[id="500px"] {
  width: 500px;
}
.dialog .dialog-box .content[id="550px"] {
  width: 550px;
}
.dialog .dialog-box .content[id="600px"] {
  width: 600px;
}
.dialog .dialog-box .content[id="650px"] {
  width: 650px;
}
.dialog .dialog-box .content[id="700px"] {
  width: 700px;
}
.dialog .dialog-box .content[id="750px"] {
  width: 750px;
}
.dialog .dialog-box .content[id="800px"] {
  width: 800px;
}
.dialog .dialog-box .content.overflow {
  height: auto;
  width: auto;
}
.dialog .dialog-box .dialog-header {
  background: #203e72;
  padding: 10px 10px 13px 15px;
  color: #fff;
  font-size: 17px;
  line-height: 17px;
  font-weight: bold;
}
.dialog .dialog-box .dialog-submit div {
  padding: 7px 0 0 0;
}
.dialog .dialog-box .dialog-submit input {
  margin: 0 0 0 8px;
}
.dialog .dialog-box .dialog-submit div.clear {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 576px) {
  .dialog .dialog-box .dialog-submit {
    text-align: center;
  }
  .dialog .dialog-box .dialog-submit div {
    float: none;
  }
}

.photo-upload {
  top: 0;
  left: 0;
  position: fixed;
}
.photo-upload .dialog-box {
  left: -225px;
  top: -115px;
}
.photo-upload .dialog-box .content {
  width: 450px;
}
.photo-upload .dialog-box .dialog-content {
  padding: 13px 25px 13px 25px;
}
.photo-upload .dialog-box .dialog-content a {
  position: relative;
  float: left;
  display: block;
  margin: 0 20px 0 0;
  border: 6px solid transparent;
  background: transparent url("../../../images/resource/photo-frame-bg.gif") repeat;
}
.photo-upload .dialog-box .dialog-content a img {
  display: block;
  border: 1px solid transparent;
  width: 116px;
  height: 162px;
}
.photo-upload .dialog-box .dialog-content a:hover img {
  border: 1px solid #ddd;
  -webkit-transition: border-color 0.5s;
  -moz-transition: border-color 0.5s;
  -o-transition: border-color 0.5s;
  transition: border-color 0.5s;
}
.photo-upload .dialog-box .dialog-content a span {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  padding: 3px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  color: #fff;
  text-align: center;
}
.photo-upload .dialog-box .dialog-content p {
  display: block;
  margin: 20px 0 0 0;
}
.photo-upload .dialog-box .dialog-content p.larger-px {
  margin: 30px 0 0 0;
}

/*--
    Form
-----------------------------------------*/
.btn.btn-primary {
  background: #203e72;
  border: 1px solid #203e72;
}
.btn.btn-primary.boot {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  border: 1px solid transparent;
}
.btn.btn-primary.boot:hover, .btn.btn-primary.boot:visited, .btn.btn-primary.boot:active, .btn.btn-primary.boot:focus {
  background: #007bff !important;
}
.btn.btn-primary.border-on {
  border: 1px solid #203e72;
}
.btn.btn-primary:hover, .btn.btn-primary:visited, .btn.btn-primary:active, .btn.btn-primary:focus {
  color: #fff;
  background: #203e72 !important;
}

.errorMessage {
  color: #ff0000;
}

.custom-checkbox label.custom-control-label {
  line-height: 1.7;
  cursor: pointer;
}
.custom-checkbox label.custom-control-label::before {
  border-radius: 100%;
  background: #fff;
  border: 1px solid #bbb;
}
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: #dc4c18;
  border: 1px solid #dc4c18;
}

.form-group label.colon:after {
  position: absolute;
  content: ":";
  right: 0;
  top: 0;
}
.form-group label.col-form-label.colon:after {
  top: 7px;
}

/* language style */
fieldset legend {
  display: none;
}

div#lang-en {
  display: none;
}

.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
  border: 2px solid #203e72;
  border-radius: 20px;
}

.dialog .dialog-content fieldset div label.onoffswitch-label {
  float: none;
  padding: 0;
  width: auto;
  text-align: left;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
  padding: 0;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ID";
  padding-left: 10px;
  background-color: #203e72;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "EN";
  padding-right: 10px;
  background-color: #203e72;
  color: #FFFFFF;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 2px solid #203e72;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

/*--
    Table Responsive
-----------------------------------------*/
div > .fixed-column {
  position: absolute;
  width: auto !important;
  border-right: 1px solid #ddd;
  background: #fff;
  z-index: 100;
}

.grid-view table.items.fixed-column .empty {
  font-size: 0px;
}

.grid-view table.items .empty {
  text-align: center;
}

.tbl-responsive {
  overflow-x: auto;
  position: relative;
  z-index: 10;
}
.tbl-responsive.active {
  display: block;
}

/*--
    custom pagination
-----------------------------------------*/
/*--
    custom pagination
-----------------------------------------*/
.pager {
  margin: 30px 20px;
}

ul.pagination, ul.yiiPager {
  display: block;
  text-align: center;
}
ul.pagination li, ul.yiiPager li {
  margin: 2px;
  display: inline-block;
}
ul.pagination li span, ul.yiiPager li span {
  padding: 5px 10px;
  display: block;
}
ul.pagination li a, ul.yiiPager li a {
  color: #203e72 !important;
  line-height: unset;
  border-bottom: none;
  background: #fff;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  line-height: 27px;
  text-align: center;
}
ul.pagination li a:hover, ul.yiiPager li a:hover {
  border: 1px solid #203e72 !important;
}
ul.pagination li.prev a, ul.pagination li.previous a, ul.pagination li.first a, ul.pagination li.next a, ul.pagination li.last a, ul.yiiPager li.prev a, ul.yiiPager li.previous a, ul.yiiPager li.first a, ul.yiiPager li.next a, ul.yiiPager li.last a {
  white-space: nowrap;
  width: unset;
  padding: 0 10px;
  border-radius: 5px;
}
ul.pagination li.active a, ul.pagination li.active a:hover, ul.pagination li.selected a, ul.pagination li.selected a:hover, ul.yiiPager li.active a, ul.yiiPager li.active a:hover, ul.yiiPager li.selected a, ul.yiiPager li.selected a:hover {
  color: #fff !important;
  background: #203e72;
  border: 1px solid #203e72;
}

ul.pagination .hidden {
  display: none;
}

/*  02. Header ----------------------------------------*/
header .mainmenu {
  background: #203e72;
  z-index: 110;
}
header .mainmenu .navbar .navbar-brand img {
  max-width: 100px;
}
header .mainmenu .navbar li.active, header .mainmenu .navbar li:hover, header .mainmenu .navbar li .dropdown-item {
  background: #2b4c87;
}
header .mainmenu .navbar li .dropdown-menu {
  display: none !important;
}
header .mainmenu .navbar li:hover > .dropdown-menu {
  display: block !important;
}
header .mainmenu .navbar li .dropdown-item {
  font-size: 13px;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .mainmenu .navbar li.login-link.responsive-link {
  display: none;
}
header .mainmenu .navbar li.login-link .login-box {
  position: absolute;
  right: 0;
  background: #272727;
  z-index: 10;
  display: none;
  width: 225px;
}
@media only screen and (max-width: 768px) {
  header .mainmenu .navbar li.login-link {
    display: none;
  }
  header .mainmenu .navbar li.login-link.responsive-link {
    display: block;
  }
}
header .mainmenu.scroll {
  position: fixed;
  width: 100%;
  z-index: 101;
  top: 0;
}

/*  03. Content ----------------------------------------*/
.headline .content #slider .item a, .headline .content #slider .item img {
  overflow: hidden;
  width: 100%;
}
.headline .content #slider .item img {
  display: block;
  object-fit: cover;
  object-position: 50%;
}
.headline .content #slider .item .desc {
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 20px;
  width: 100%;
  height: 100%;
}
.headline .content #slider .item .desc h4 {
  font-size: 24px;
  line-height: 35px;
  margin: 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .headline .content #slider .item .desc h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .headline .content #slider .item .desc h4 {
    font-size: 14px;
    line-height: 18px;
  }
}

.owl-carousel.owl-theme .owl-stage-outer {
  z-index: 10;
}
.owl-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -25px;
}
.owl-carousel.owl-theme .owl-nav button {
  width: 50px;
  height: 50px;
  font-size: 0;
  z-index: 20;
  position: relative;
}
.owl-carousel.owl-theme .owl-nav button.owl-prev {
  float: left;
  background: url("../images/icons/prev.png") 0 0 no-repeat;
}
.owl-carousel.owl-theme .owl-nav button.owl-next {
  float: right;
  background: url("../images/icons/next.png") 0 0 no-repeat;
}

.nt.nav-tabs .nav-item {
  margin: 0;
}
.nt.nav-tabs .nav-item .nav-link {
  border: none;
  border-radius: unset;
  font-weight: 600;
  height: 100%;
  opacity: 0.9;
}
.nt.nav-tabs .nav-item .nav-link img {
  width: 20px;
}
.nt.nav-tabs .nav-item .nav-link:hover, .nt.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .nt.nav-tabs .nav-item .nav-link {
    text-align: center;
  }
  .nt.nav-tabs .nav-item .nav-link img {
    display: none;
  }
}
.nt.nts-1 {
  border-bottom: 3px solid #2294c5;
  background: #ddd;
}
.nt.nts-1 .nav-item .nav-link.active {
  color: #fff;
  background: #2294c5;
}
.nt.nts-2 .nav-item .nav-link {
  background: #203e72;
  color: #fff;
}
.nt.nts-2 .nav-item .nav-link.active {
  background: #2b4c87;
}

.box h1.title, .box h5.title {
  color: #fff;
}
.box h1.title img, .box h5.title img {
  margin-top: -5px;
}
.box a.title {
  font-size: 14px;
}
.box .box-foo {
  background: #eaeaea;
}
.box .box-foo .btn-more {
  background: #2294c5;
  color: #fff;
}
.box.bs-1 a {
  color: #2294c5;
}
.box.bs-1 h1.title, .box.bs-1 h5.title {
  background: #2294c5;
}
.box.bs-1 .box-foo .btn-more {
  background: #2294c5;
}
.box.bs-2 a {
  color: #2b4c87;
}
.box.bs-2 h1.title, .box.bs-2 h5.title {
  background: #2b4c87;
}
.box.bs-2 .box-foo .btn-more {
  background: #2b4c87;
}
.box.bs-3 a {
  color: #3f6687;
}
.box.bs-3 h1.title, .box.bs-3 h5.title {
  background: #3f6687;
}
.box.bs-3 .box-foo .btn-more {
  background: #3f6687;
}
.box.bs-4 a {
  color: #2b76bc;
}
.box.bs-4 h1.title, .box.bs-4 h5.title {
  background: #2b76bc;
}

/*  04. Widget ----------------------------------------*/
.test-widget .bs-1 .date * {
  color: #2294c5;
}
.test-widget .bs-2 .date * {
  color: #2b4c87;
}
.test-widget .bs-3 .date * {
  color: #3f6687;
}

.vac-all-widget .bs-1 a {
  background: #2294c5;
}
.vac-all-widget .bs-2 a {
  background: #2b4c87;
}

.social-widget .bs-1 a, .social-widget .bs-1 span {
  font-size: 18px;
  color: #2294c5;
}
.social-widget .bs-2 a, .social-widget .bs-2 span {
  font-size: 18px;
  color: #2b4c87;
}

/*  05. Vacancy ----------------------------------------*/
.vacancy .filter h5 {
  background: #272727;
  color: #fff;
}
.vacancy .filter .filter-box {
  height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
}
.vacancy .filter .filter-box.filter-overflow {
  overflow: hidden;
  height: 270px;
}
.vacancy .filter .filter-box ul li a {
  padding: 10px;
  display: block;
  color: #444;
}
.vacancy .filter .filter-box ul li a:hover {
  color: #dc4c18;
}
.vacancy .filter .filter-box ul li.active a {
  background: #dc4c18;
  color: #fff;
  opacity: 1;
}
.vacancy .filter a.more {
  background: #eaeaea;
  color: #444;
  display: block;
}
@media only screen and (max-width: 768px) {
  .vacancy .filter {
    display: none;
  }
}
.vacancy .content .filter-btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  .vacancy .content .filter-btn {
    display: block;
  }
}

/* =Vacancy Content
-------------------------------------------------------------- */
.vacancy {
  /* =Vacancy Details-------------------------------- */
}
.vacancy .topcontent {
  margin: -14px 0 10px 0;
  background-size: cover;
  background-position: 50%;
  min-height: 300px;
  background-repeat: no-repeat;
}
.vacancy .topcontent .countdown #timer {
  margin: 0;
  font-size: 40px;
  white-space: nowrap;
  line-height: 40px;
  text-shadow: 0 0 4px #000;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.vacancy .content .sep {
  position: relative;
  margin: 0 0 15px 60px;
}
.vacancy .content .sep span.icons {
  position: absolute;
  top: -2px;
  left: -14px;
  background: url("../../../images/icons/ribbon.png") 0 0 no-repeat;
  display: none;
  width: 25px;
  height: 43px;
}
.vacancy .content .sep.new span.icons {
  display: inline-block;
}
.vacancy .content .sep .company {
  position: relative;
  padding: 0 60px 10px 15px;
  color: #777;
  min-height: 80px;
}
.vacancy .content .sep .company span {
  position: absolute;
  top: 50%;
  left: -30px;
}
.vacancy .content .sep .company span em, .vacancy .content .sep .company span span {
  color: #dc4c18;
  text-transform: uppercase;
}
.vacancy .content .sep .company span span {
  display: inline-block;
  position: absolute;
  left: -20px;
  top: -24px;
  width: 40px;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
}
.vacancy .content .sep .company span em {
  display: block;
  padding: 0 0 0 0;
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}
.vacancy .content .sep .company a {
  display: inline-block;
  padding: 7px 0 0 0;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.vacancy .content .sep .company img {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
}
.vacancy .content .sep .company.jobfair {
  padding: 0 110px 10px 15px;
}
.vacancy .content .sep .company.jobfair .logo-jobfair {
  right: 83px;
}
.vacancy .content .sep .position {
  position: relative;
}
.vacancy .content .sep .position ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.vacancy .content .sep .position .menu {
  position: absolute;
  top: 0;
  left: 0;
}
.vacancy .content .sep .position .menu ul {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
}
.vacancy .content .sep .position .menu ul li a {
  display: block;
  border: 1px solid transparent;
  background: #fff;
  padding: 5px 0 7px 10px;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 1;
}
.vacancy .content .sep .position .menu ul li.active a {
  background: #eee;
  font-weight: 600;
}
.vacancy .content .sep .position .list, .vacancy .content .sep .position .about {
  padding: 6px 0 6px 15px;
  background-color: #eee;
  min-height: 57px;
}
.vacancy .content .sep .position .about {
  display: none;
}
.vacancy .content .sep .position .list li {
  position: relative;
  border-bottom: 1px dotted #ccc;
  padding: 0 110px 5px 15px;
  margin: 0 0 5px 0;
}
.vacancy .content .sep .position .list li:last-child {
  border-bottom: none;
  margin: 0;
}
.vacancy .content .sep .position .list li em {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
  font-style: normal;
}
.vacancy .content .sep .position .list li a {
  color: #dc4c18;
}
.vacancy .content .sep .position .list li span {
  position: absolute;
  font-size: 11px;
  line-height: 14px;
  color: #444;
}
.vacancy .content .sep .position .list li span.apply {
  top: -1px;
  right: 45px;
  display: inline-block;
  width: 60px;
  background: url("../../../images/icons/apply_on.png") 0 50% no-repeat;
  padding: 2px 12px 2px 17px;
}
.vacancy .content .sep .position .list li span.valid {
  top: -1px;
  right: 0;
  display: inline-block;
  width: 55px;
  background: url("../../../images/icons/valid_on.png") 0 50% no-repeat;
  padding: 2px 0 2px 18px;
}
.vacancy .content .sep .position .list li:hover span {
  color: #555;
}
.vacancy .content .sep .position .list li:hover span.apply {
  background: url("../../../images/icons/apply_on_hover.png") 0 50% no-repeat;
}
.vacancy .content .sep .position .list li:hover span.valid {
  background: url("../../../images/icons/valid_on_hover.png") 0 50% no-repeat;
}
.vacancy .content .sep .position .list li.closed span.valid {
  background: url("../../../images/icons/valid_closed.png") 0 50% no-repeat;
}
.vacancy .content .sep .position .list li.closed:hover span.apply {
  background: url("../../../images/icons/apply_closed_hover.png") 0 50% no-repeat;
}
.vacancy .content .sep .position .list li.closed:hover span.valid {
  background: url("../../../images/icons/valid_closed_hover.png") 0 50% no-repeat;
}
.vacancy .content .sep .position .list .vacancy_pager {
  text-align: center;
  position: relative;
}
.vacancy .content .sep .position .list .vacancy_pager a.next_vacancy {
  position: absolute;
  right: 0;
}
.vacancy .content .sep .position .list .vacancy_pager a.previous_vacancy {
  position: absolute;
  left: 0;
}
.vacancy.details .photo img {
  border: 1px solid #d5d5d4;
  padding: 4px;
}
.vacancy.details .info a {
  font-size: 14px;
  line-height: 18px;
}
.vacancy.details .content .date span {
  display: inline-block;
  background: url("../../../images/icons/valid_on.png") 0 50% no-repeat;
  padding: 2px 0 2px 22px;
}
.vacancy.details .content .apply {
  padding: 5px 10px 5px 22px;
  background: url("../../../images/icons/apply_medium.png") 0 50% no-repeat;
}
.vacancy.details .content .menu ul li {
  position: relative;
}
.vacancy.details .content .menu ul li span {
  display: none;
  position: absolute;
  bottom: -1px;
  left: 50%;
}
.vacancy.details .content .menu ul li span i {
  position: absolute;
  bottom: 0;
  left: -5px;
  display: inline-block;
  background: url("../../../images/icons/vacancy_detail_menu_arrow.png") 50% 0 repeat-x;
  overflow: hidden;
  width: 11px;
  height: 6px;
  color: transparent;
}
.vacancy.details .content .menu ul li.active a {
  opacity: 1;
}
.vacancy.details .content .menu ul li.active span {
  display: inline-block;
}
@media only screen and (max-width: 576px) {
  .vacancy.details .content .menu ul li a {
    padding: 7px 10px;
    font-size: 12px;
  }
}
.vacancy.details .content .box #special, .vacancy.details .content .box #additional {
  display: none;
}
.vacancy.details .content .box .ajax-on {
  font-size: 13px;
  line-height: 18px;
}
.vacancy.details .content .box .ajax-on * {
  font-size: 13px;
  line-height: 18px;
}
.vacancy.details .content .box .ajax-on ul, .vacancy.details .content .box .ajax-on ol {
  margin: 0;
  padding: 0 0 0 20px;
}
.vacancy.details .content .box .ajax-on td {
  vertical-align: top;
  padding: 7px;
}
.vacancy.details .content .box .ajax-on td:first-child {
  font-weight: 600;
  color: #606060;
}
.vacancy.details .bs-1 .content .menu {
  background-color: #2294c5;
}
.vacancy.details .bs-1 .content .menu li.active a {
  background-color: #1186b4;
}
.vacancy.details .bs-2 .content .menu {
  background-color: #2b4c87;
}
.vacancy.details .bs-2 .content .menu li.active a {
  background-color: #2b4c87;
}
.vacancy.details .bs-3 .content .menu {
  background-color: #3f6687;
}
.vacancy.details .bs-3 .content .menu li.active a {
  background-color: #305472;
}

.editorial {
  font-size: 11px;
  color: #fff;
  background: url("../../../images/resource/editorial_bg.png") repeat;
}
.editorial * {
  font-size: 11px;
  color: #fff;
}

/*  06. Member ----------------------------------------*/
/* Sidebar */
.profile .bs-1 .sidebar ul li a {
  color: #2294c5;
}
.profile .bs-1 .sidebar ul li.active a {
  background-color: #2294c5;
  color: #fff;
}
.profile .bs-2 .sidebar ul li a {
  color: #2b4c87;
}
.profile .bs-2 .sidebar ul li.active a {
  background-color: #2b4c87;
  color: #fff;
}
.profile .bs-3 .sidebar ul li a {
  color: #3f6687;
}
.profile .bs-3 .sidebar ul li.active a {
  background-color: #3f6687;
  color: #fff;
}
.profile .sidebar ul {
  list-style: none;
  border: 1px solid #ddd;
}
.profile .sidebar ul li {
  position: relative;
  padding: 0;
}
.profile .sidebar ul li a {
  display: block;
  padding: 7px 15px;
  text-decoration: none;
}
.profile .sidebar ul li.active a {
  color: #fff;
}
.profile .sidebar ul li span {
  display: none;
}
.profile .content div[name=tabs-on].test {
  display: none;
}
.profile .content .list-view .items {
  padding: 10px;
}
.profile .content .list-view .items span.empty {
  display: block;
  padding: 15px 15px;
}
.profile .content .list-view .items .sep {
  position: relative;
  border-bottom: 1px dotted #bebebe;
  padding: 0 12px 10px 12px;
  margin: 0 0 10px 0;
}
.profile .content .list-view .items .sep:last-child {
  border-bottom: none;
  margin: 0 0 0 0;
}
.profile .content .vacancy .list-view .sep, .profile .content .closedVacancy .list-view .sep {
  color: #017fa8;
}
.profile .content .vacancy .list-view .sep span, .profile .content .closedVacancy .list-view .sep span {
  position: absolute;
  right: 5px;
  top: 0;
  display: inline-block;
  padding: 3px 0 3px 20px;
  width: 90px;
  background: url("../../../images/icons/valid_on.png") 0 0 no-repeat;
  color: #454545;
  font-size: 11px;
  line-height: 11px;
}
.profile .content .vacancy .list-view .sep span.closed, .profile .content .closedVacancy .list-view .sep span.closed {
  background: url("../../../images/icons/valid_closed.png") 0 0 no-repeat;
}
.profile .content .vacancy .list-view .sep:hover span, .profile .content .closedVacancy .list-view .sep:hover span {
  background: url("../../../images/icons/valid_on_hover.png") 0 0 no-repeat;
}
.profile .content .vacancy .list-view .sep:hover span.closed, .profile .content .closedVacancy .list-view .sep:hover span.closed {
  background: url("../../../images/icons/valid_closed_hover.png") 0 0 no-repeat;
}
.profile .content .vacancy .list-view .pager, .profile .content .closedVacancy .list-view .pager {
  padding: 20px 0 20px 0;
}
.profile .content .test .list-view .sep {
  color: #808080;
  text-transform: uppercase;
}
.profile .content .test .list-view .sep a {
  padding: 0 0 2px 0;
  font-weight: 600;
}

.register .guide ul {
  list-style: decimal;
  margin: 0;
}
.register .guide ul li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.register .guide ul li span {
  line-height: 30px;
}
.register .guide ul li ul {
  list-style: disc;
}
.register .guide ul li ul li {
  border: none;
}

.member-info .box {
  border: 1px solid #203e72;
}
.member-info .box * {
  color: #203e72;
}
.member-info .box span {
  font-size: 20px;
}
.member-info .box a {
  font-size: 30px;
  border-left: 1px solid #203e72;
}
.member-info .box a span {
  font-size: 11px;
  margin-top: 5px;
}

#member-page .top-account {
  background: #203e72;
}
#member-page .top-account #show-upload span {
  opacity: 0.8;
  top: 0;
}
#member-page .top-account #show-upload:hover span {
  display: block !important;
}
#member-page .pasport #button-upload-foto span {
  opacity: 0.8;
  top: 0;
  left: 0;
}
#member-page .pasport #button-upload-foto:hover span {
  display: block !important;
}
#member-page .usermenu ul {
  display: block;
}
#member-page .usermenu ul li a {
  padding: 10px;
  display: block;
}
#member-page .usermenu ul li.active a {
  background: #2b4c87;
  color: #fff;
  opacity: 1;
}
#member-page .usermenu .member-menu-responsive {
  display: none;
}
@media only screen and (max-width: 768px) {
  #member-page .usermenu ul {
    display: none;
  }
  #member-page .usermenu .member-menu-responsive {
    display: block;
  }
  #member-page .usermenu:hover ul {
    display: block;
  }
}
#member-page #sidebar-member {
  display: none;
}
@media only screen and (max-width: 768px) {
  #member-page #member-sidebar .sidebar {
    display: none;
  }
  #member-page #sidebar-member {
    display: block;
  }
}

.total-apply span {
  font-size: 30px;
}
.total-apply span span {
  white-space: nowrap;
  font-size: 14px;
}

.sidebar .menu a.responsive-menu-edit {
  display: none;
}
.sidebar .menu ul li a {
  color: #3f6687;
  padding: 0.75rem;
}
.sidebar .menu ul li a:hover {
  background: #f5f5f5;
}
.sidebar .menu ul li.active a, .sidebar .menu ul li.active a:hover {
  background-color: #3f6687;
  color: #fff;
  font-weight: 600;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .sidebar .menu a.responsive-menu-edit {
    display: block;
  }
  .sidebar .menu ul {
    display: none;
  }
}

/* print member card */
.print-cardbox .cardbox-forward,
.print-cardbox .cardbox-backward {
  display: block;
  margin: 10px auto 15px;
  border: 1px solid transparent;
  width: 328px;
  height: 205px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  position: relative;
}
.print-cardbox .cardbox-forward {
  background: url("../../../images/resource/card-forward.jpg") no-repeat;
  background-size: 328px 205px;
}
.print-cardbox .cardbox-forward .photo-box {
  border: 1px solid transparent;
  height: 80px;
  width: 68px;
  position: absolute;
  bottom: 42px;
  left: 7px;
}
.print-cardbox .cardbox-forward .photo-box img {
  display: block;
  height: 80px;
  max-height: 80px;
  width: 68px;
  max-width: 68px;
}
.print-cardbox .cardbox-forward .expired {
  display: block;
  font-size: 9px;
  position: absolute;
  bottom: 6px;
  left: 18px;
}
.print-cardbox .cutting-line {
  display: block;
  margin: 0 auto;
  width: 320px;
  height: 1px;
  border-top: 1px dashed #aeaeae;
}
.print-cardbox .cardbox-backward {
  background: url("../../../images/resource/card-backward.jpg") no-repeat;
  background-size: 328px 205px;
}
.print-cardbox .cardbox-backward ul.cb-data {
  display: block;
  width: 290px;
  max-width: 290px;
  padding: 0;
  position: absolute;
  top: 17px;
  left: 16px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.print-cardbox .cardbox-backward ul.cb-data li {
  display: table;
  vertical-align: top;
  width: 100%;
  font-size: 10px;
  line-height: 12px;
}
.print-cardbox .cardbox-backward ul.cb-data li label {
  display: table-cell;
  vertical-align: top;
  width: 90px;
  font-size: 10px;
  line-height: 12px;
}
.print-cardbox .cardbox-backward .barcode-box {
  display: table;
  vertical-align: middle;
  position: absolute;
  bottom: 16px;
  right: 10px;
  padding: 4px;
  background-color: #fff;
}
.print-cardbox .cardbox-backward .barcode-box img {
  display: table;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
  width: 60px;
  max-width: 60px;
  height: 60px;
  max-height: 60px;
}
.print-cardbox .cardbox-backward .barcode-box p {
  display: block;
  margin: 0 0 -2px 0;
  padding: 3px 0 0 0;
  font-size: 9px;
  line-height: 10px;
  text-align: center;
  font-family: arial;
}

/* feature custome for member card */
.cardboxed {
  margin: 30px auto;
  display: block;
  border: 1px solid #35A4F0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  width: 400px;
  height: 220px;
  padding: 15px 20px;
  background-color: #35A4F0;
}

.cardboxed.c-forward .forward-header {
  display: table;
  vertical-align: top;
  width: 100%;
}

.cardboxed.c-forward .forward-header .fh-left {
  display: table-cell;
  vertical-align: middle;
  width: 72px;
}

.cardboxed.c-forward .forward-header .fh-left img {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: #333;
}

.cardboxed.c-forward .forward-header .fh-right {
  display: table-cell;
  vertical-align: middle;
  width: auto;
  padding-left: 10px;
}

.cardboxed.c-forward .forward-header .fh-right h4 {
  color: #D1FD30;
}

.cardboxed.c-forward .forward-header .fh-right p {
  color: #D1FD30;
  margin-top: 2px;
}

.cardboxed.c-forward .forward-data {
  display: block;
  padding-left: 70px;
  margin-top: 40px;
}

.cardboxed.c-forward .forward-data h3 {
  color: #D1FD30;
  font-size: 20px;
  line-height: 24px;
  display: block;
  letter-spacing: 0;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  padding: 0;
  font-weight: bold;
}

.cardboxed.c-forward .forward-data ul {
  margin: 5px 0 0 0;
  padding: 0;
}

.cardboxed.c-forward .forward-data ul li {
  list-style: none;
  color: #fff;
}

.cardboxed.c-forward .forward-data ul li label {
  width: 53px;
  display: inline-block;
  color: #fff;
}

.cardboxed.c-backward {
  display: block;
  position: relative;
}

.cardboxed.c-backward ul {
  display: block;
  margin: 0 0 0 10px;
  position: absolute;
  padding: 0;
  bottom: 25px;
}

.cardboxed.c-backward ul li {
  list-style: none;
  font-size: 11px;
  font-weight: bold;
  color: #252525;
}

/*  07. Article ----------------------------------------*/
.sidebar-aticle h5 {
  background: #272727;
  color: #fff;
}
.sidebar-aticle .category ul li a {
  padding: 10px;
  display: block;
  color: #444;
}
.sidebar-aticle .category ul li a:hover {
  color: #e82022;
}
.sidebar-aticle .category ul li.active a {
  background: #e82022;
  color: #fff;
  opacity: 1;
}
.sidebar-aticle .archive ul i.fas {
  width: 14px;
  height: 14px;
  line-height: 14px;
  background: #e82022;
}
@media only screen and (max-width: 768px) {
  .sidebar-aticle .archive {
    display: none;
  }
}

.article .content {
  line-height: 1.5 !important;
}
.article .content * {
  line-height: 1.5 !important;
}

/*  08. Footer ----------------------------------------*/
footer {
  background: #203e72;
}
footer a {
  opacity: 0.8;
}
footer *, footer a:hover {
  color: #fff;
}
footer .foo-social a {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 18px;
}
footer .foo-social a.facebook {
  background-image: url("../images/icons/icon-fb.png");
}
footer .foo-social a.linkedin {
  background-image: url("../images/icons/icon-linkedin.png");
}
footer .foo-social a.twitter {
  background-image: url("../images/icons/icon-tw.png");
}
footer .foo-social a.instagram {
  background-image: url("../images/icons/icon-ig.png");
}
footer .copyright {
  background: #2b4c87;
}
footer .copyright * {
  font-weight: 600;
}
footer .visitor .count .num {
  font-size: 36px;
  display: inline-block;
  line-height: 45px;
}
footer .visitor .count .loading {
  height: unset;
  width: unset;
  background: none;
}
footer .visitor .count .loading span {
  background-size: 45px;
  width: 35px;
  height: 35px;
  margin: 0;
  top: 5px;
}

/*# sourceMappingURL=general.css.map */
