/* ============== Typography Setup =============== */  

html,body{
	padding: 0;
	margin: 0;   
} 
body{   
	font-family: 'DB Helvethaica X Reg',sans-serif;
	color: #707070;
	font-size: 20px; 
	font-weight: 400;  
	margin: 0px;
	padding:0;
	line-height: 1.0;
	background:#fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 

	position: relative;
}
 
b, strong{
	font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 600;
}
h1,h2,h3,h4,h5,h6{   
	margin:0;  
	color: #e42f46; 
	line-height: 1;
	font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 600;
} 

.white{ color: #ffffff !important } 
 
/* ============== Input =============== */  

.heading{
	display: block;
	margin-bottom:20px; 
}

a{
	  -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: none;  }

.btn {
  display: inline-block;
  padding: 0 15px;
  margin-bottom: 0;
  font-size: 18px; 
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  width: auto;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle; 

  background-color: #333333;
  color: #fff;
  border: 0;
  position: relative;  
  border-radius: 0;

          -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

   -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
  background-image: none; 
} 
.btn-full{ width: 100% }
 

.rounded{border-radius: 100px;}

.btn-gray{
  background-color: #58595B;
  color: #D8E0DC;
}

.btn-readmore{
  background-color: #e42f46;
  color: #fff; 
  font-size: 17px;
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
  border-radius:0 0 5px 5px;
}

.btn-readmore i{ 
  position: relative;
  top: 2px;
  margin-left:5px 
}

.btn.btn-readmore:hover,
.btn.btn-readmore:focus,
.btn.btn-readmore:active{
  background-color: #000;
  color: #fff;
}

.btn-readmore.rounded{
  border-radius:100px;
  height: 38px;
  line-height: 38px;
  padding: 0 20px;
}

.btn-red{
  background-color: #e42f46;
  color: #fff;  
}

.btn.btn-red:hover,
.btn.btn-red:focus,
.btn.btn-red:active{
  background-color: #cf0922;
  color: #fff;
}  

.btn-outline{
  border:1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
 
  font-weight: normal;
}   

.btn-outline.white {
  border:2px solid #fff;
  color: #fff;
}
.btn.btn-outline.white:hover,
.btn.btn-outline.white:focus,
.btn.btn-outline.white:active{
  background-color: #c0b89a;
  border-color: #fff;
  color: #0465b0 !important;
} 

.btn-outline.blue {
  border:1px solid #19abdc;
  color: #19abdc;
}
.btn.btn-outline.blue:hover,
.btn.btn-outline.blue:focus,
.btn.btn-outline.blue:active{
  background-color: #19abdc;
  border-color: #19abdc;
  color: #fff !important;
} 

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  background-color: #000;
  border-color: #000;
  outline: none;
  color: #fff
}
.btn:hover,
.btn:focus,
.btn.focus { 
  text-decoration: none;
  background-color: #000;
  border-color: #000;
  color: #fff
}

.btn-line:hover,
.btn-line.focus,
.btn-line:focus,
.btn-line:active:focus,
.btn-line.active:focus,
.btn-line.focus,
.btn-line:active.focus,
.btn-line.active.focus {
  background-color:#fff;
  border-color: #fff;
  outline: none;  
  color: #040c19
} 
.btn:active {
 background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

.close {
  height:30px;
  width:30px;
  position:absolute;
  top:15px;
  right: 15px;
  box-sizing: border-box;
  line-height: 2px;
  display: inline-block;
  cursor: pointer;
  opacity: 1;

   -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.close:before,
.close:after { 

      -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);

  content: '';
  position: absolute;
  top: 50%;
  left: 50%; 
  display: block;
  height: 2px;
  width: 100%;
  margin-left: -15px;
  margin-top: -2px;
  background-color: #fff;
  transition: all 0.2s ease-out;
}
.close:after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.breadcrumb{
  background-color: transparent;
  padding: 40px 0 40px 23px;
  margin: 0 -10px;
  position: relative;
  z-index: 10
}
.breadcrumb > li{
  position: relative; 
  padding: 0 15px;
  color: #a0a0a0;
}
.breadcrumb > li a{color: #a0a0a0;}
.breadcrumb > li a .fas{
  font-size: 18px; 
  margin-right:4px;
  position: absolute;
  top: 0;
  left: -15px
}
.breadcrumb > li:before{
  content: '';
  position: absolute;
  left: -7px;
  top: 7px;
  width:7px;
  height:7px;
  padding: 0 !important; 
  vertical-align:top;
  border-top: 2px solid #a0a0a0;
  border-left: 2px solid #a0a0a0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}
.breadcrumb > li:first-child:before{ display: none; }
.breadcrumb > li + li:before{content: ''; top: 7px;} 

.breadcrumb > li:hover a{ 
  color: #292929; 
}
.breadcrumb > li.active span{
  color: #e42f46; 
  text-decoration: underline; 
}

.modal .close:before,
.modal .close:after {
  width: 70%;
  background-color: #fff;
  margin-left: -12px;
}
.modal .close{
  position: absolute;
  top: 30px;
  right:35px;
  background-color: transparent !important;
}

.form-control{-webkit-appearance: none;}

.radio-group, 
.checkbox-group{ 
	padding-left:0; 
	position:relative;
	list-style-type:none;
	margin:0px;
	padding:0px;
	text-align:center;
	display:inline-block;
	vertical-align:top
}
.radio-group{ display:inline-block; position:relative}


.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
	/*display: none;*/
	visibility: hidden;
	opacity: 0;
	height: 0;
	position: absolute;
	width: 0
}
.checkbox-group label:before,
.radio-group label:before {
	content: "";
	display: inline-block;

	margin-right: 5px;
	position: absolute;
	left:0;
	top:6px;
	background-color: transparent;
	border: 1px solid #aaaaaa; 
	width:18px;
	height:18px; 

	 -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.radio-group label:before { 
	
  /*-webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;*/
	
}
.radio-group label,
.checkbox-group label {
	position:relative;
	padding-left:30px;
	padding-right:15px;
	text-align:left;
	margin:1px 0;
	display:block;
	font-weight:300;
	font-size:inherit;
	line-height:30px;
	cursor:pointer;

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.checkbox-group label{color: inherit;} 
.radio-group label{color: inherit; padding-left: 28px} 
 
.radio-group input[type="radio"]:checked + label:after {
    content: "";
    color: #ea6f21;
	background-color:#555;
	-webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
	position:absolute;
	left:3px;
	top:9px;
	width:12px;
	height:12px;
}
 

.checkbox-group input[type="checkbox"]:checked + label:after,
.checkbox-group input[type="checkbox"]:checked + .error + label:after {
	content: "";
	width:15px;
	height:15px;
	position:absolute;
	top:3px;
	left:3px;
	display:block; 
	background-image: url(../img/icons/icon-checked.svg);
	background-position:0 0;
	background-size: 13px;
	background-repeat: no-repeat;
	
}
  
.checkbox-disable.checkbox-group label:before{
	background-color:#c0c0c0;
	border:2px solid #b1b1b1;
	cursor:default !important
}
.checkbox-disable.checkbox-group input[type="checkbox"]:checked + label:after {
	content:'';
}


.select-wrap{
	position:relative;
	padding-left:0 !important;
	cursor:pointer;
	display:block;
	margin-bottom:0;  
	
}

.select-wrap.inline-block{display: inline-block;}
.select-group { display: inline-block; vertical-align: top; margin-left: 10px; cursor: text;  }
.select-group .input-text,
.select-group .select-wrap,
.layout-switcher{ display: inline-block; }

.select-wrap:before{
	content:'';
	width: 0; 
  	height: 0;  

  	position: absolute;
	right:15px;
	top: 12px;
	width:10px;
	height:10px;
	vertical-align:top;
	margin-left:1px;
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	-webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}
 

.select-wrap .customSelect{   
	width:100%;
	color:inherit;
	padding:0 25px 0 15px;   
	cursor:pointer;  
	display:block;
	font-size:14px;
	border:0px; 
	background-color: #fff;
	border: 1px solid #ccc; 
	height: 40px;
	line-height: 40px;
	font-family:inherit;  

   border-radius: 5px;
	
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
} 

.select-wrap select{
	width:100%;	
	height: 100% !important;
	opacity: 0 !important;
	z-index: 9;
	position: relative;
}
.select-wrap select option{ 
	font-size:12px;
	padding:2px;
	color:#8a8c8f; 
	font-family:inherit;
}
 
span.error, div.error{
	font-family: tahoma,arial;
	font-size: 11px;
	color: red;
	display: block;
	margin-bottom:5px;
	margin-top:5px; 
  text-align: right;

  position: absolute;
  bottom: -25px;
  right: 0
}
.form-control.error{ border-color: #ffaaaa }
 
.btn-file {
  position: relative;
  overflow: hidden;
  vertical-align: middle;

}
.btn-file > input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 23px;
  cursor: pointer;
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 999;

  direction: ltr;
}
.fileinput {
  display:block;
  margin-bottom: 15px;
  position: relative;
}
 
.fileinput .btn {
  vertical-align: middle;
}
.fileinput-exists .fileinput-new,
.fileinput-new .fileinput-exists {
  display: none;
}
.fileinput-inline .fileinput-controls {
  display: inline;
}
.fileinput-filename {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle; 
}

.fileinput .fileinput-filename{ 
    border: 0;
    background-color: #fff;
    border-radius: 0; 
    height: 40px; 
    line-height: 40px;
    width: 100%;
    padding-left: 15px;
    display: inline-block !important;
    vertical-align: top;
    white-space:nowrap; 
    font-size: 14px;
    color: rgba(61,57,58,0.5)
} 
.fileinput.fileinput-exists .fileinput-filename{color: rgba(61,57,58,1)}

.fileinput .btn-primary{
	width: auto; 
	text-transform: none;
	color: #fff;
	font-size: 14px;
	margin-left: -5px;
	height: 40px;
	line-height: 40px; 
	border-radius:0;
	background-color: #00205b;
	position: absolute;
	top: 0;
	right: 0; 
}
.fileinput .btn-primary:hover{ background-color: #646366 }

.fileinput .btn-primary i{ font-style: normal; }
.fileinput .btn-link{
	text-transform: none;
	font-family: tahoma,arial;
	font-size: 14px;
	font-weight: bold;
	background-color: transparent !important;
	text-decoration:none !important; 
}
.fileinput .btn-add,
.fileinput .btn-del{
	height: 38px; 
	line-height: 38px; 
	color: #5dbd88
}
.fileinput .btn-del{ 
	display: none !important;
	color: #f26d7d;
}
 
 
.no-fileinput .fileinput .btn-primary{
	border-radius: 5px;
	width: 100%;
	margin:0;
	padding: 0; 
}
.no-fileinput .fileinput{
	display: block;
	width: 100%;
}

.form textarea.form-control{ 
  height: 80px !important; 
  line-height: 20px !important;
  -webkit-overflow-scrolling: touch;
} 
 

/***/

/* ============== Icon Setup   =============== */ 

.icons{
	display:inline-block;
	position:relative;
	vertical-align:top;
	background-image:url(../img/icons.png);
	background-repeat:no-repeat;
}
.icons-svg{
  display:inline-block;
  position:relative;
  vertical-align:top; 
  background-repeat:no-repeat;
  background-position: center center;
  background-size: 100%;
}

.icon-user{
  width: 20px;
  height: 20px;
  background-image:url(../img/icons/icon-user.svg);
  opacity: 0.6;
  vertical-align:middle; 
}
.icon-inbox{
  width: 20px;
  height: 20px;
  background-image:url(../img/icons/icon-inbox.svg);
  opacity: 0.6;
  vertical-align:middle; 
}

.icon-menu{
  width: 35px;
  height: 35px;
  background-image:url(../img/icons/icon-menu.svg);
}
.icon-menu-close{
  width: 35px;
  height: 35px;
  background-image:url(../img/icons/icon-menu-close.svg);
}

.icon-search{
  width: 27px;
  height: 28px;
  background-image:url(../img/icons/icon-search.svg);
}

.icon-global{
  width: 45px;
  height: 45px;
  background-image:url(../img/icons/icon-global.svg);
}

.icon-shield{
  width: 45px;
  height: 45px;
  background-image:url(../img/icons/icon-shield.svg);
}




/**/

.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down{
  position: absolute;
  left: 0;
  top: 0;
  width:5px;
   height:5px;
   vertical-align:top;

   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.arrow-left{
   border-top: 1px solid #676767;
   border-left: 1px solid #676767;
   -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);  
}

.arrow-right{
  border-top: 1px solid #676767;
  border-left: 1px solid #676767;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}

.arrow-up{
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.arrow-down{
   margin-left:1px;
   border-top: 1px solid #000000;
   border-left: 1px solid #000000;
   -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}

html.page-fullscreen, .page-fullscreen body{
  height: 100%;
}

.page{
	
	position: relative;
	overflow: hidden;
	display: block;
	height: 100%;
	width: 100%
}

.page-allpage{
  padding-top: 125px
}


 
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100%;
  height: 100%;
  background-color: #333333;
  overflow: hidden;
 
}
.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.preloader-icon {
  width: 72px;
  height: 72px;
  display: inline-block;
  padding: 0px;
}
.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background-color: #c3a76c;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}
.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}
@keyframes preloader-fx {
  0% {transform: scale(0, 0); opacity:0.5;}
  100% {transform: scale(1, 1); opacity:0;}
}
@-webkit-keyframes preloader-fx {
  0% {-webkit-transform: scale(0, 0); opacity:0.5;}
  100% {-webkit-transform: scale(1, 1); opacity:0;}
} 

/* ============== Header Setup   =============== */ 
.header{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0; 
	z-index: 100;
	padding:20px 0 0; 
  height: 125px;
	background-color:#fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
} 

.header .container{ position: relative; height: 100%; }

.navbar-toppage{
  display: block;
}

.navbar-brand{
  padding: 0;
  width: 130px; 
  position: relative;
  z-index: 502;
  top: -2px;
}
.navbar-brand a{ display: block; }
.navbar-brand a img{ width: 100% }

.navbar-user{
  float: right;
  position: relative;
  top: 0;

  -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
.navbar-user:before,
.navbar-user:after{
  display: table;
  content: " ";
}

.navbar-user:after{clear: both;}

.navbar-user .nav{
  border:1px solid #c7c7c7;
  border-radius: 100px;
}
.navbar-user > .nav > li{
  float: left;
  width: auto;
}
.navbar-user > .nav > li + li{border-left:1px solid #c7c7c7;}
.navbar-user .nav li .text-label{
  display: block;
  font-size: 20px;
  padding: 0 10px 0 15px;
  height: 42px;
  line-height: 42px;
  position: relative;
  color: #6b6b6b;
  background-color: transparent !important;
  cursor: pointer;
}
.navbar-user .nav li.user-item .text-label{ padding-right: 45px }

.navbar-user .nav li .text-label .icons-svg{ margin-right: 5px;}
.navbar-user .nav li .text-label .badge{
  width: 26px;
  height: 26px;
  background-color: #e42f46;
  line-height: 26px;
  color: #fff;
  border-radius: 50%;
  padding: 0;
  font-size: 20px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
}

.header .dropdown-menu{
  box-shadow: none;
  border-radius: 0;
  background-color: #e42f46;
  border: 0;
  margin-top:0;
  min-width: 0;
  width: 100%;
}
.header .dropdown-menu li a{
  color: #fff;
  font-size: 20px
}

.header .dropdown-menu li:hover a,
.header .dropdown-menu li:hover a:focus{
  background-color: #eb3f55;
}

.header .nav li a .arrow-down{
  left: auto;
  right: 20px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #e42f46;
  border-left: 2px solid #e42f46;
}

.user-item .dropdown-menu{
  min-width: 0;
  width: 100%;
  margin-top:0px; 
}

.msg-item .dropdown-menu{
  min-width: 0;
  width:335px;
  margin-top:0px;
  left: auto;
  right: 0;
  color: #fff;
  padding: 0;
 
  background-color: #cf2238;
}
.msg-item .dropdown-menu:before,
.user-item .dropdown-menu:before{
  content: '';
  width: 0; 
  height: 0; 
  position: absolute;
  top: -7px;
  right: 60px;
  display: block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  
  border-bottom: 7px solid #96a1a9;
}

.user-item .dropdown-menu:before{
  border-bottom: 7px solid #e42f46;
  right: 40%;
  margin-left: -2px;
}

.notification{ 
  
}
.notification.main{display: block;} 

.notification .title{
  background-color: #96a1a9;
  color: inherit;
  font-family: 'DB Helvethaica X Med Cond';
  font-weight: 500;
  font-size: 24px;
  padding:10px 5px 10px 40px; 
  position: relative;
  border-bottom: 1px solid #fff;
  color: #fff
}

.notification .title .icon{
  padding-top: 16px
}

.notification .viewall{
  display: block;
}
.notification .viewall a{
  background-color: #96a1a9;
  color: inherit;
  font-family: 'DB Helvethaica X Med Cond';
  font-weight: 500;
  font-size: 18px;
  padding:10px 5px 10px 5px; 
  position: relative; 
  text-align: center;
  color: #fff;
  display: block;
}
.notification .viewall a:hover{ background-color: #a5b2bb }

.notification .loading{
  display: block;
  text-align: center;
  padding-top: 15px
}
.notification .loading img{
  display: inline-block;
  max-width: 100%
}

.notification ul{
  list-style-type: none;
  margin:0;
  padding: 0; 
  position: relative;
  background-color: #637a8a;
  
}

.notification ul.scrollbar{
  max-height: 322px;
  overflow:hidden; 
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.notification ul li{ 
  margin:0;
  padding: 0; 
  display: block;
}

.notification li a{
  padding:7px 5px 7px 40px; 
  position: relative;
  font-size: 11px !important;
  font-family: tahoma, arial !important;
  border-bottom: 1px solid #9faeb8;
  display: block;
  color: #fff;
}
.notification li:hover a{ background-color: #8998a3 !important }
.notification li a u{
  font-weight: bold;
  display: inline-block;
  margin-right:5px; 
}
.notification .icon{
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px; 
  width: 40px;
  text-align: center;
  padding-top: 14px;
}
.notification .text{
  display: block;
  padding-right: 15px
}
.notification .text span{
  display: block;
  line-height: 1.4;
  padding: 2px 0
}
.notification .text span.t1{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.notification .nicescroll-cursors{ right: 5px; }


.navbar-main{ 
  text-align: right;
  float: left;
  width: 100%; 

  position: absolute;
  top: 63px;
  right: 15px;

  -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
 
.navbar-main:before,
.navbar-main:after{
  display: table;
  content: " ";
}
.navbar-main:after{clear: both;}

.navbar-main .nav > li{
  display: inline-block;
  vertical-align: top;
}
.navbar-main .nav > li > a{
  display: block;
  padding: 0 15px;
  color: #979797;
  font-size: 20px;
  height: 42px;
  line-height: 42px;
}
.navbar-main .nav > li.active > a,
.navbar-main .nav > li:hover > a,
.navbar-main .nav > li:hover > a:focus,
.navbar-main .nav > li > a:focus{
  background-color: #f5f5f5;
  color: #000
}

.navbar-main .nav li.dropdown > a{
  padding-right: 35px
}
.navbar-main .nav li.dropdown .arrow-down{ right: 15px }
.navbar-main .nav li .dropdown-menu { text-align: center; }

.scrolling .header{height: 75px; padding-top: 15px; box-shadow: 0 0 10px rgba(0,0,0,0.15);}
.scrolling .navbar-user{
  visibility: hidden;
  opacity: 0;
  margin-top:-100px 
}

.scrolling .navbar-main{ top: 0 }


@media (max-width: 992px) {
  .page-allpage{ padding-top: 145px; }
  .header{height: 145px}


  .navbar-brand{ margin-bottom: 10px }
  .navbar-user{
    float: left;
    width: 100%;
  }
  .navbar-user{ margin-bottom: 0; margin-top: 0 !important } 
  .navbar-user > .nav > li{
    width: 50%
  }
  .navbar-user .text-label{
    text-align: center;
  }
  .navbar-user .text-label .inner{
    display: inline-block;
    position: relative;
  }
  .navbar-user .user-item .text-label .inner{padding-right: 20px}
  .navbar-user .nav li a .arrow-down{ right: 0 }

  .navbar-user .nav li .text-label{padding-left: 10px; padding-right: 10px}
  .navbar-user .nav li.user-item .text-label{padding: 0 15px;}
}

@media (max-width: 767px) {}

@media (max-width: 600px) {
   
}

@media (max-width: 480px) {
  
   
}

@media (max-width: 320px) {
  .section-hot-news .title-md{ font-size: 25px }
}


/* ============== Template Elements =============== */ 

.title-md{
  font-size: 36px;
}

.ellipsis{
  overflow: hidden;
  position: relative;
  display: block;
}

.section{
  display: block;
  position: relative;
}
 
.section.fullscreen,
.section.fullscreen-js{ 
  padding:0;
  display: table;
  
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
} 
.section.fullscreen{
  height: 100%;
}

.section.fullscreen .section-inner,
.section.fullscreen-js .section-inner{
  display: table-cell;
  width: 100%;
  height: 100%; 
  vertical-align: top;
}

.section .background{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
}
.section .background .bg-shadow{
  width: 100vw;
  height: 100vh;
  display: block; 
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+1,000000+100&0.8+50,0.3+100 */
  background: -moz-linear-gradient(top, rgba(0,0,0,0.6) 1%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.6) 1%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 1%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#4d000000',GradientType=0 ); /* IE6-9 */
}

.section-banner{ padding: 0 }

.section-login .container{
  position: relative;
  height: 100%; 
}

.form-logo{
  display: block;
  text-align: center;
}
.form-logo img{
  display: inline-block;
  width: 114px;
}

.form-login{
  display: block;
  margin: -40px auto 0;
  width: 100%;
  max-width: 580px;

  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.form-login h1{
  text-align: center;
  font-family: 'DB Helvethaica X Cond';
  font-weight: bold;
  font-size: 65px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 15px;
  margin: 50px 0 35px;
}

.form-login h5{
  font-size: 28px;
  color: #fff;
  text-align: center;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  margin: 0 0 30px 0;
}

.form-login .input-group{ 
  width: 100%;
  padding-right: 70px;
  margin-bottom: 35px;
}
.form-login .input-group-addon{ 
  width: 85px;
  background-color: transparent;
  border:0;
  padding-right: 10px;
}
.form-login .input-group-addon img,
.form-login .input-group-addon svg{ width: 100%; position: relative; }

.form-login .input-group-addon img.icon-email{width: 24px}
.form-login .input-group-addon img.icon-lock{width: 20px}
.form-login .input-group-addon img.icon-login{width: 30px; right: -3px; }

.form-login .input-group .form-control{
  background-color: #fff;
  border-radius: 0px;
  border-bottom:1px solid #ccc;
  box-shadow: none;
  color: #495057;
  font-size: 24px; 
  height: 42px;
  line-height: 42px;
  padding: 0 17px;
  font-family: 'DB Helvethaica X Reg',sans-serif; 
}
.form-login .input-group .input-group-btn{
  width: auto;
}
.form-login .input-group .input-group-btn .btn{ 
  width: 100%;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  background-color: #007999;
  text-align: left;
  padding-left: 20px;
}
.form-login .input-group .input-group-btn .btn:hover{background-color: #006883;} 

.form-login .form-inner{
  display: block;
  padding: 0 50px;
}
@media (max-height: 800px) and (min-width: 769px) {
  .form-logo img{ width: 80px }
  .form-login h1{
      font-size: 50px;
      letter-spacing:7px
  }

  .form-login .input-group{ margin-bottom: 25px }
}


@media (max-height: 700px) and (min-width: 769px) {
  html.page-fullscreen, 
  .page-fullscreen body{
    height: auto;
  }

  .form-login{
    position: relative;
    top:0;
    left:auto;
    margin: 40px auto 50px;
    -webkit-transform: translate(0%,0%);
    -moz-transform: translate(0%,0%);
    transform: translate(0%,0%);
  }
}

.section-hot-news{
  padding: 65px 0;
}

.section-hot-news .title-md{
  margin-bottom: 15px;
  display: block;
}

.photo{
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
.photo:hover{ opacity: 0.85 }
.photo img{ width: 100% }

.news-item{
  display: block;
  position: relative;
}
.news-item .detail{
  display: block;
  padding: 20px 0;
  font-size: 18px;
  line-height: 1.2
}
.news-item .detail h2{
  color: #4e4e4e;
  font-size: 20px;
  margin-bottom: 10px;
}

.news-item .detail p{margin: 0 0 10px}
.news-item .detail p.red{color: #ed4756}

.news-item .detail .btn{
  text-transform: uppercase;
  padding: 0 20px;
  height: 30px;
  line-height: 30px; 
  font-weight: 700;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  background-color: #fff;
  margin-top:17px; 
}

.news-item .link {
  display: block;
  padding-bottom: 15px
}

.news-item.horizontal{ display: table; }
.news-item.horizontal .photo,
.news-item.horizontal .detail{
  display: table-cell;
  width:35%;
  vertical-align: top;
}
.news-item.horizontal .detail{width: 65%;}

.news-item.horizontal .detail{
  padding:0 0 0 20px !important; 
}

.news-item.horizontal .detail h2{ color:#e42f46 !important}
.news-item.horizontal .detail h2 a{ color: inherit; }

.owl-news{
  width: auto;
  margin-left:-15px; 
  text-align: left;
}
.owl-news .news-item{
  padding: 15px;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.owl-news .owl-item { direction: rtl; }
.owl-news .item:hover .news-item{
  background-color: #f2f2f2
}

.owl-news .link{
  display: block;
  text-align: right;
  margin-top:-3px;
  padding-right: 15px; 
}


.owl-carousel .owl-nav [class*="owl-"]{
  position: absolute;
  top:-60px; 
  margin: 0
}

.owl-carousel .owl-nav .owl-prev{ right: 60px }
.owl-carousel .owl-nav .owl-next{ right: 15px }

.section-ceo { 
  min-height:375px;
  margin-top: 200px;
}
.ceo-row{ position: relative; }
.ceo-row.row1 .row{ display: table; }
.ceo-row.row1 .row > div{ 
  display: table-cell; 
  height: 100%; 
  float: none;
  vertical-align: top;
}
.ceo-row .background{
  background-image: url(../img/banner-1600x370--1.png);
  height: 100%;
}

.ceo-row .article-01{
  display: inline-block;
  text-align: center;
  color: #fff;
  padding: 70px 40px;
  line-height: 1
}
.ceo-row .article-01 h3.btn{
  font-weight: normal;
  height: 55px;
  line-height: 55px;
  padding: 0 40px;
  cursor: text;
  background-color: #e42f46 !important;
  margin-bottom: 30px
}

.ceo-row .article-01 h4{
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1
}
.ceo-row .article-01 p{ margin: 10px 0 }
.ceo-row .article-01 p.medium{
  font-size: 24px; 
}

.ceo-row .article-01 p.small{
  font-size: 18px;
  font-weight: 500; 
  margin-top: 20px
}

.ceo-photo{
  display: block;
  margin-left:-70px;
  margin-right: 40px;
  position: absolute;
  height: 100%; 
  width: 100%;
  right: 15px;
  bottom: 0;
}
.ceo-photo img{ 
  width: 100%;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

.section-ceo .article-02{
  display: block;
  padding:40px;
  margin: -30px auto 0;
  line-height: 1;
  color: #6b6b6b;
  background:#fff;  
  width: 100%;
  max-width: 990px;
  text-align: justify;
}
.section-ceo .article-02 p{ margin-bottom: 20px  }
.section-ceo .article-02 .readmore{
  text-align: right;
  padding: 20px 0
}

.section-relationship{height: 480px}
.section-relationship .background{
  background-image: url(../img/banner-1600x540--1.jpg);
}

.page-caption{
  display: block;
  text-align: center;
  position: relative;
  z-index: 9;
  margin: 0 auto 0;
  padding-top: 150px;
  width: 100%;
  max-width: 250px;
  text-decoration: none !important;
}
.page-caption .icon{
  width: 105px;
  height: 105px;
  background-color: #e42f46;
  border-radius: 50%;
  display: table;
  text-align: center;
  margin: 0 auto
}
.page-caption .icon span{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align:middle;
}
.page-caption .icon img{
  display: inline-block;
  width: 55px;
}

.page-caption h3{
  color: #fff;
  font-size: 40px;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 400;
  margin-top: 15px;
}

/*.section-article .row-main{ margin: 0 -6px; }
.section-article .row-main > div{ padding: 0 6px }*/

.section-article{
  padding: 75px 0
}

.article-item{
  display: block;
}
.article-item .icon-title{
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  padding: 30px 30px 30px 90px;
  z-index: 9;
  pointer-events: none;

}
.article-item h6{
  color: #fff;
  font-size: 30px;
  font-weight: 500
}
.article-item .icon-title h6{color: #fff;}
.article-item .icon-title .icon{
  width: 52px;
  height: 52px;
  background-color: #e42f46;
  border-radius: 50%;
  text-align: center;
  display: table;

  position: absolute;
  top: 17px;
  left: 20px
}
.article-item .icon-title .icon span{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.article-item .icon-title .icon span img{
  display: inline-block;
  max-width: 100%;
  width: 35px
}

.article-item .detail{
  display: block;
  padding: 25px 0 25px
}
.article-item .detail h6{
  color: #e42f46;
  margin-bottom:10px;
  font-size: 29px 
}
.article-item h3{
  color: #16aadd; 
  font-size: 22px;
  line-height: 0.8;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
 
  max-height: 35px
}
.article-item p{
  max-height: 40px
}

.article-item p.readmore{
  text-align: right;
  padding: 15px 0 0;
  max-height: 100%;
  height: auto !important;
}

.ellipsis{
  overflow: hidden;
  position: relative;
  display: block;
}

.article-box {
  background-color: #f3f5f7;
  display: block; 
  padding: 25px 20px 15px 70px;
  position: relative;
}
.article-box h2{
  position: relative;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}
.article-box h2 a{
  text-decoration: none !important;
  color: inherit;
}

.article-box h3{ margin-bottom: 6px }
.article-box .icon{
  position: absolute;
  left: -70px;
  top: 0;
  width: 68px;
  height: 50px;
  display: block;
  text-align: center;
}
.article-box .icon img{
  display: inline-block;
}
.article-box .icon-knowledge{ width:35px}
.article-box .icon-online{ width:18px}
.article-box .icon-redeem{ width:33px}

.article-item .article-box:nth-child(odd){ background-color: #ebeef2 }

.section-ceo-heading{
  display: block;
  text-align: center;
  padding: 60px 0
}

.section-ceo-heading h1{
  font-size: 60px;
  font-weight: 400;
  letter-spacing: 5px
}
.section-ceo-heading h2{
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #00606b;
  margin: 10px 0
}
.section-ceo-heading h2 span{
  text-decoration: underline;
}

.section-ceo-heading h3{
  font-size: 30px;
  font-family: 'DB Helvethaica X Med Cond';
  font-weight: 500;
  color: #d1d1d1;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-top:40px; 
}

.section-ceo-heading .followus{
  text-align: center;
}
.section-ceo-heading .followus .item{
  background-color: #acacac;
  border:0;
  line-height: 36px;
}

.section-ced-message .article{
  display: block;
  max-width: 745px;
  margin: 0 auto 0;
  padding: 50px 0;
  font-size: 30px;
  color: #343434;
}
.section-ced-message .article .heading{
  text-align: center;
  margin: 0
}

.section-ced-message .article .title-main{
  color: #00606b;
  text-align: center;
  font-size: 48px;
  font-family: 'DB Helvethaica X Ext';
  font-weight: bold;
}

.section-ced-message .article .title-label{
  color: #ff4564;
  text-align: center;
  font-size: 60px;
  font-family: 'DB Helvethaica X Med Cond'; 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 10px;
  display: inline-block;
  background-color: #f3f3f3;
  padding: 0 50px;
  line-height: 83px;
  height: 80px;
  border-radius:100px;
  margin:  50px 0
}

.section-ced-message .article p{
  margin-bottom: 30px;
}
.section-ced-message .article p.date{
  font-size:22px;
  color: #798394;
}
.section-ced-message .article p.date .far{
  color: #e80d0d;
  margin-right:5px;
  position: relative;
  top: 2px 
}

.section-gm-message{
  background-color: #f4f4f4;
  background-image: url(../img/gm-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 1160px;
  padding: 85px 0 450px; 
}

.owl-gm {
  padding: 0 70px
}
.owl-gm .owl-nav{ margin: 0 }
.owl-gm .owl-nav [class*="owl-"]{
  position: absolute;
  top: 32% !important;
  background-color: transparent !important;
  font-size: 40px;
  color: #000 !important
}
.owl-gm .owl-nav .owl-prev{ left: 0 }
.owl-gm .owl-nav .owl-next{ right: 0 }

.owl-gm .owl-dots{
  position: relative;
  bottom: -70px
}

.gm-msg{
  display: block;
  background-color: #e42f46;
  color: #fff;
  height: 190px;
  padding: 15px;
  position: relative;
  top: 0;
 
} 

.gm-msg h4{
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 400
}

.gm-msg h2{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  font-family: 'DB Helvethaica X Cond'; 
  font-weight: bold;
  color: #fff;
  font-size: 33px;
  height: 50%;
  width: 100%;
  display: table;

  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(0%,-50%);
}
.gm-msg h2 span{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.gm-msg .date{
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: right;
  margin: 0;
  font-family: 'DB Helvethaica X Cond'; /*77 bold*/
}
.gm-msg .date a{color: #fff}

.section-nav-shortcut{
  background-color: #105876;
  display: block;
  position: relative;
  z-index: 9
}


.nav-shortcut{
  margin: 0;
  padding: 0 70px;
  list-style-type: none;
  font-size: 0;
  text-align: center;
}
.nav-shortcut:before,
.nav-shortcut:after{
  display: table;
  content: " ";
}
.nav-shortcut:after {
  clear: both;
}
.nav-shortcut li{
  width: 25%;
  float: none;
  display: inline-block;
}
.nav-shortcut li a{
  display: block;
  padding: 30px 0;
}
.nav-shortcut li:hover a,
.nav-shortcut li.active a{
  background-color: #286984
}
.nav-shortcut li .icon{
  display: table;
  margin: 0 auto;
  width: 130px;
  height: 130px;
  
}
.nav-shortcut li .icon span{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.nav-shortcut li .icon img{ max-width: 100%;}

.nav-shortcut li .icon.activity img{ width: 92px }
.nav-shortcut li .icon.retailer img{ width: 67px }
.nav-shortcut li .icon.coach img{ width: 120px }
.nav-shortcut li .icon.earth img{ width: 87px }

.nav-shortcut li .icon.knowledge img{ width: 82px }
.nav-shortcut li .icon.onlineclass img{ width: 70px }
.nav-shortcut li .icon.test img{ width: 72px }

.nav-shortcut li h2{
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0
}

.article-activity{
  display: block;
}
.article-activity .detail{
  display: block;
  padding: 20px;
}
.article-activity h2{
  font-size: 30px;
  color: #e42f46; 
  margin-bottom: 5px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
}
.article-activity h2 a{ color: inherit; }

.article-activity p{
  font-size: 30px;
  color: #00b1fb;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500
}

p.date{
  color: #798394;
  font-size: 16px;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 400
}
p.date .far{
  color: #e42f46;
  position: relative;
  top: 2px;
  margin-right:5px 
}

.section-news{
  padding:0; 
  position: relative;
  z-index: 1
}
.section-news.related{
  background-color: #ebebeb;
  padding-top: 10px
}

.section-news .container{
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}

.section-news .container:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  border-bottom: 1px solid #dededd;
  height: 1px;
  display: block;
}
.section-news.no-border .container{ padding-bottom: 0 }
.section-news.no-border .container:before{ display: none; }


.section-news.last .container{ padding-bottom: 80px }

.title-md{
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 9
}
.title-md a{color: inherit;}
.section-news .news-item { background-color: #fff }
.section-news .news-item .date{ margin: 0 }
.section-news .news-item .detail{
  padding: 15px;
}
.section-news .news-item .detail h2{
  font-size: 20px;
  color: #16aadd;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  position: relative;
  overflow: hidden;
  height: 38px
}

.section-news .news-item .detail h2 a{
  color: inherit;
}
.section-news .news-item .detail h2:hover a{ color: #0780aa }

.owl-activity .owl-nav,
.owl-related .owl-nav{margin: 0}

.owl-activity .owl-nav .owl-prev,
.owl-related .owl-nav .owl-prev{ right: 45px }

.owl-activity .owl-nav .owl-next,
.owl-related .owl-nav .owl-next{ right: 0 }

.owl-activity .owl-dots,
.owl-related .owl-dots{ display: none; }

.news-backgound{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;

  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  background-image: url(../img/activity-bg.jpg);
}

.activity-heading{
  display: block;
  text-align: center;
  font-family: 'DB Helvethaica X Med Cond'; 
  font-weight: 500;
  padding: 40px 0 60px
}
.activity-heading h4{
  color: #5f829a;
  font-size: 47px;
  margin:10px 0 
}
.activity-heading h3{
  color: #e42f46;
  font-size: 59px;
  text-transform: uppercase;
  letter-spacing: 15px;
  font-family: 'DB Helvethaica X Reg';
  font-weight: 400
}

.activity-detail{
  display: block;
}

.activity-detail .photo{
  display: block;
  border:1px solid rgba(0,0,0,0.08);
}
.activity-detail .photo img{ width: 100% }

.activity-detail .inner{
  display: block;
  margin:0 auto ;
  max-width: 750px;
  padding: 30px 0 100px;
}

.activity-detail h2{
  text-align: center;
  color: #457088;
  font-size: 48px;
  font-family: 'DB Helvethaica X Ext';
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.activity-detail p{
  font-size: 24px;
  line-height: 1.2
}

.activity-share,
.article-share{
  display: block;
  padding:25px 0;
  border-top:1px solid #dedede;
  border-bottom:1px solid #dedede;  
}
.activity-share p,
.article-share p{ margin-bottom:0  }

.activity-share p.date,
.article-share p.date{font-size: 22px;}

.activity-share .share-box,
.article-share .share-box{text-align: right;}

.activity-share .share-box .at-style-responsive .at-share-btn,
.article-share .share-box .at-style-responsive .at-share-btn{
  margin: 0 5px 5px;
  background-color: #e42f46 !important
}

.activity-direction,
.article-direction{
  display: block;
  padding: 35px 0;
  margin-bottom:100px 
}

.activity-direction .btn,
.article-direction .btn,
.btn-viewall{
  height: 50px;
  line-height: 52px;
  text-align: center;
  padding: 0 30px;
  font-size: 24px;
  font-family: 'DB Helvethaica X Cond';
  border-radius: 100px; 
   font-weight: bold;
}
.activity-direction .btn.btn-article-prev .fas,
.article-direction .btn.btn-article-prev .fas{
  margin:0 5px 0 0;
  position: relative;
  top: 3px;
}
.activity-direction .btn.btn-article-next,
.article-direction .btn.btn-article-next{ float: right; }

.activity-direction .btn.btn-article-next .fas,
.article-direction .btn.btn-article-next .fas{
  margin:0 0 0 5px;
  position: relative;
  top: 3px;
}
.section-news.related .buttons{
  text-align: center;
  margin:60px 0 0px
}
.btn-viewall{
  font-size: 30px;
  min-width:190px;
  height: 60px;
  line-height: 60px;
}

.article-icons{
  background-color:#166582;
  border-radius:15px;
  display: block;
  margin-bottom: 50px;
  margin-top:-20px; 
  padding:5px 15px 20px 
}
.article-icons ul{
  padding:0;
  margin: 0;
  list-style-type: none;
  display: block;
  float: left;
  width: 100%; 
}
.article-icons ul:before,
.article-icons ul:after{
  display: table;
  content: " ";
}
.article-icons ul:after{
  clear: both;
}

.article-icons ul li{
  float: left;
  width: 16.6667%;
  text-align: center;
}

.article-icons h3{
  color: #fff;
  font-size: 20px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500
}

.article-icons .icon{
  display: table;
  width: 60px;
  height: 100px;
  margin: 0 auto
}
.article-icons .icon span{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.article-icons .icon img{
  max-width: 100%;
  display: inline-block;
} 

.section-news-shortcut .row{ position: relative; margin:0 -10px  }
.section-news-shortcut .row > div{ padding: 0 10px; }
.section-news-shortcut .col-absolute{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%
}
.section-news-shortcut .col-absolute .row{ height: 100% }
.section-news-shortcut .col-absolute .row > div{
  height: calc(50% - 10px);
  margin-bottom:20px; 
  width: 100%;
}


.news-shortcut{
  position: relative;
  z-index: 9;
  display:block;
}
.news-shortcut.sm{
  /*height: calc(50% - 10px);
  margin-bottom:20px; 
  width: 100%;*/
  height: 100%;
}
.news-shortcut.sm .photo{ height: 100% }
.news-shortcut.sm .photo img{ display: none; }
.news-shortcut .photo{
  position: relative;
}
.news-shortcut .photo:before{
  background-color:rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0; 

  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
}

.news-shortcut .detail{
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 18px;
  z-index: 9;
  display: block;
  pointer-events: none;
  max-width: 80%;

}
.news-shortcut .detail .bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-shortcut .detail h3{
  color: #fff;
  font-size: 24px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
}
.news-shortcut .detail p{
  margin-bottom:0;
  color: #fff; 
  position: relative;
  overflow: hidden;
  height: 35px;
}

.news-shortcut .detail p.date{
  display: inline-block;
  background-color: #e42f46;
  font-size: 14px !important;
  padding: 8px 13px;
  margin-bottom:10px; 
  height: auto;
}
.news-shortcut .detail p.date .far{
  color: #fff;
  position: relative;
  top: 2px;
}

@media (min-width: 768px) {
  .news-shortcut.lg .detail{
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
  .news-shortcut.lg .detail{ font-size: 27px; }
  .news-shortcut.lg .detail h3{ font-size: 36px; }
  .news-shortcut.lg .detail p{ height: auto; }

} 
.news-list .row > div{ padding-bottom: 80px }
.news-list .buttons{ 
  text-align: center; 
  display: block;
}
.news-list .buttons .btn{margin-top: -20px;}

.news-content > .row{ display: table; width: 100%;margin: 0 }
.news-content > .row > div{
  display: table-cell;
  float: none; 
}
.news-content > .row > div.content{
  padding-right: 40px;
  width: auto;
  padding-top: 40px;
}
.news-content > .row > div.sidebar{
  width: 295px;
  padding-top: 40px;
}
.news-content > .row > div.sidebar.w335{ width: 365px }

.news-detail{
  display: block;
  font-size: 22px;
  line-height: 1.2;
  padding-bottom: 40px;
  text-align: justify;
  color: #707070;
  padding-top: 20px
}
.news-detail h2{
  text-align: center;
  font-size: 48px;
  color: #457088;
  font-family: 'DB Helvethaica X Ext';
  font-weight: 500;
  margin-bottom:30px; 
}
.news-detail .partner-debut{
  font-size: 35px;
  color: #7c7c7c;
  font-family: 'DB Helvethaica X Med Cond'; /*67 bold*/
  font-weight: 500;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px
}

.news-detail h5{
  font-size: 22px;
  line-height: 1.2;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 400;
  color: inherit;
}

.news-detail p,
.news-detail ul,
.news-detail ol{ 
  margin: 0 0 20px 0;
  padding:0 
}

.news-detail ul li,
.news-detail ol li{ position: relative; }

.news-detail ol {
  list-style-type: none;
  counter-reset: item; 
  margin: 0
}
.news-detail > ol{ margin-bottom: 20px }

.news-detail ol > li {
  display: table;
  counter-increment: item; 
}

.news-detail ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.3em;    
}

.news-detail li ol > li {
  margin: 0;
}

.news-detail li ol > li:before {
  content: counters(item, ".") " ";
}

.news-detail ul{
  list-style-type: none;
  padding-left: 30px
}
.news-detail ul li{
  padding-left: 18px
}

.news-detail ul li:before{
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #707070;
  border-radius: 50%;
}

.news-detail .blue{color: #007eb8}
.news-detail .blue a{color: #007eb8}
.news-detail a:hover{ text-decoration: underline; }

.sidebar h2{
  font-size:40px;
  color: #e42f46;
  text-align: center; 
  margin-bottom:20px; 
}

.sidebar h3{
  font-size:30px;
  color: #e42f46;
  text-align: center; 
  margin-bottom:10px; 
}


.sidebar .news-item{
  padding:20px 0;
  border-top:1px solid #dedede; 
}
.sidebar h3 + .news-item{border-top:0 !important; }

.sidebar .button{
  text-align: right;
  margin-top: 30px;
}
.sidebar .button .btn-viewall{
  font-size:24px;
  height: 50px;
  line-height: 50px; 
  min-width: 0;
  padding: 0 40px
}

.sidebar .customer-message{
  background-color: #e42f46;
  border-radius: 15px;
  padding:70px 25px; 
  text-align: center;
  font-size: 30px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  color: #fff;
  text-indent: 40px;
  position: relative;
}
.sidebar .customer-message:before,
.sidebar .customer-message:after{
  content: '';
  position: absolute;
  font-size: 230px;
  color: #fff;
  font-family: 'DB Helvethaica X Med Cond';
  font-weight: 500;
  line-height: 80px;
}
.sidebar .customer-message:before{
  content: '“';
  top: 45px;
  left: -30px;
}
.sidebar .customer-message:after{
  content: '”';
  bottom: -48px;
  right: 10px;
}
.sidebar .customer-message .inner{
  display: block;
  padding:10px 0 15px 
}

.section-search{
  background-color: #eeeeee
}

.search-option{
  background-color: #e42f46;
  padding: 20px 65px 54px;
  display: block;
  color: #fff;
  border-radius:15px;
  margin-bottom:50px;
  margin-top:10px;  
}

.search-option h3{
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

.search-option .dropdown{
  color: #fff;
  text-align: center;
}
.search-option .dropdown a{
  color: inherit;
  font-size: 30px;
  text-decoration: none !important;
}
.search-option .dropdown a.text-label{
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  border-bottom: 2px solid #fff;
  display: block;
  padding: 5px 0
}
.search-option .dropdown a .fas{
  position: absolute;
  top: 7px;
  right: 0;
  font-size: 22px;
}
.search-option .dropdown .dropdown-menu{
  box-shadow: none;
  border-radius:0;
  border:0;
  background-color: #e42f46;
  width: 100%;
  margin: 0;
  padding: 0;
  max-height: 210px;
  overflow: hidden;
  overflow-y: auto;
   -webkit-overflow-scrolling: touch;
}
.search-option .dropdown .dropdown-menu li{
  display: block;
}
.search-option .dropdown .dropdown-menu a,
.search-option .dropdown .dropdown-menu span{
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  padding: 12px 10px;
  cursor: pointer;

    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.search-option .dropdown .dropdown-menu li:hover a,
.search-option .dropdown .dropdown-menu li:hover span,
.search-option .dropdown .dropdown-menu li.active a,
.search-option .dropdown .dropdown-menu li.active span{
  background-color: #c42236;
}

.search-option .form{
  position: relative;
  padding-right: 70px;
}
.search-option .btn-search{
  padding: 0;
  margin: 0;
  list-style-type: none;
  background-color: transparent !important;
  position: absolute;
  top: 10px;
  right: 0;
}
.search-option .btn-search:hover{ opacity: 0.75 }

.section-csr{
  background-color: #004e6b
}

.csr-wrap {
  margin-bottom: 60px;
}
.csr-wrap .row{
  text-align: center;
  margin: 0;
  font-size: 0
}
.csr-wrap .row > div{
  width: 555px;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding:0;
}

.csr-item .heading{
  display: block;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-family: 'DB Helvethaica X Cond';
  font-weight: bold;
  margin: 0;
  padding:25px 20px; 
  cursor: pointer;
  position: relative;
}
.csr-item .heading:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 75px solid transparent;
  border-top: 75px solid #fff;
}
.csr-item .heading:after {
  content: '';
  position: absolute;
  right: 40px;
  top: 45%; 
  width: 15px;
  height: 25px;
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url(../img/icons/icon-arrow-white.svg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);  

}

.csr-item .heading .icons-svg{
  display: block;
  margin: 5px auto 10px
}

.csr-item .heading,
.csr-item .heading:before,
.csr-item .heading:after{
   -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.csr-item.active .heading,
.csr-item .heading:hover{
  background-color: #e42f46
}


.csr-item.active .heading:before{ opacity: 1 }
.csr-item.active .heading:after{
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.csr-wrap .ip-details{
  display: none;
  text-align: left;
}
.csr-wrap .inlinepopup {
  display: block!important;
  width: 100%!important; 
  position: relative; 
  float: left;
  color: #fff;
  background-color: #e42f46
}

 

.csr-wrap .inlinepopup_content {
  padding: 0 15px;
  display: block; 
  position: relative;
  z-index: 9;
  text-align: left;
  width: 100% !important
}

.csr-wrap .article{
  color: #fff;
  font-size: 25px;
  text-align: justify;
  padding:70px 0; 
}
.csr-wrap .article h2{
  font-size: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: 'DB Helvethaica X Cond';
  font-weight: bold;
  margin-bottom: 30px;
}

.csr-wrap .article .container{ position: relative; }

.csr-wrap .article .icons-svg{
  position: absolute;
  top: 70px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  display: block;
  margin:0 auto; 
  background-position: center bottom;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}

.inlinepopupClose .close{
  z-index: 9;
  top: 30px;
  right: 35px;
  width: 45px;
  height: 45px;
}

.section-promotion{
  padding-top: 20px
}

.card-item{
  position: relative;
  display: block;
  border:1px solid #e8e6e1;
  background-color: #fff;
  margin-bottom: 60px;
}

.card-item .detail{
  display: block;
  padding:15px; 
}
.card-item .detail h2{
  color: #16aadd;
  font-size: 30px;
  font-family: 'DB Helvethaica X Cond';
  font-weight: bold;
  /*font-family: 'DB Helvethaica X Med';
  font-weight: 500 ;*/
  margin-bottom: 15px;
}
.card-item .detail h2 a{color: inherit;}
.card-item .detail h2:hover a{color: #0291c2;}
.card-item .date{
  color: #e42f46
}

.loadmore-item{ display: none; }
.loadmore-item.display{ display: block; }

.loadmore-button{
  text-align: center;
  margin:0;
  padding-top: 20px !important;
  padding-bottom: 80px !important;
}

.section.no-padding-top,
.section.no-padding-top .container{ padding-top: 0 !important }

.red{ color: #eb0b0b }

.owl-related .card-item{ margin-bottom: 0 }

.section-partner { padding:50px 0  }
.section-partner.slider{background-color: #eeeeee}
.partner-item{
  font-size: 0;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;  
}

.partner-item .col{
  display: inline-block; 
  position: relative;
}
.partner-item .col.left{
  width: 30%;
  background-color: #e42f46;
  text-align: center;
  vertical-align: middle;
}
.partner-item .col.right{width: 70%}
.partner-item .shop-name{
  display: inline-block;
  text-align: center;
  padding:40px 0;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;

  -webkit-transform: translate(0%,-50%);
  -moz-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
}
.partner-item .shop-name .icon{
  display: inline-block;
  width: 100px
}
.partner-item .shop-name .icon img{ width: 100% }
.partner-item .shop-name h2{
  color: #fff;
  font-size: 34px;
  margin-top:20px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500 
}

.partner-item .right img { width: 100% }

.partner-item .caption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding:25px 100px 25px 20px; 
  background-color: rgba(5,78,107,0.6);
  color: #ededed;
  text-transform: uppercase;
}
.partner-item .caption h3{
  color: inherit;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  margin-bottom: 5px;
}
.partner-item .caption .date{
  color: #ededed;
  font-size:24px; 
  margin: 0
}
.partner-item .caption p.date .far{
  color: #ededed;
  font-size: 18px
}

.partner-item .caption .btn{
  height: 48px;
  line-height: 48px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  font-size: 24px;
  padding:0 20px;
  position: absolute;
  top: 50%;
  right: 20px; 
  margin-top:-24px; 
}
.visible-xs-custom{ display: none; }

.marquee{
    margin: auto;
    position: relative;
    overflow: hidden; 
    height: 100px;
    width: 100%;
}

.marquee ul li{
    position: absolute;
    list-style-type: none;
}

.section-marquee{
  background-color: #f5f5f5
}

.logo-list{
  height: 100px;
  margin: 30px 0
}
.logo-list ul li{
  padding: 0
}
.logo-list ul li span,
.logo-list ul li a{
  display: block; 
  padding: 0 50px;
  filter: gray; /* IE */
    -webkit-filter: grayscale(1); /* Old WebKit */
    -webkit-filter: grayscale(100%); /* New WebKit */
    filter: url(resources.svg#desaturate); /* older Firefox */
    filter: grayscale(100%); /* Current draft standard */
    opacity: 0.5;  

    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.logo-list ul li img{
  display: block;
  height: 100px;

}

.logo-list ul li a:hover,
.logo-list ul li span:hover{
  opacity: 1;
  filter: gray; /* IE */
    -webkit-filter: grayscale(0); /* Old WebKit */
    -webkit-filter: grayscale(0%); /* New WebKit */
    filter: url(resources.svg#desaturate); /* older Firefox */
    filter: grayscale(0%); /* Current draft standard */
}

.section-knowledge .heading{
  margin-bottom:50px; 
  margin-top:10px; 
  text-align: center;
}
.section-knowledge .heading h2{
  font-size: 48px;
  color: #00606b;
  font-family: 'DB Helvethaica X Ext';
  font-weight: bold;
}
.section-knowledge .heading h4{
  font-size: 36px;
  color: #888888;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  margin-top:20px; 
}
.section-knowledge .heading p{
  text-align: left;
  font-size: 21px;
  margin-top:20px;
  line-height: 1.15;
}
.download-wrap{
  display: block;
  padding-bottom: 60px
}
.download-wrap ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.download-wrap ul li{
  display: block;
}
.download-wrap ul li a{
  display: table;
  width: 100%;
  padding:25px 50px;
  background-color: #e5e5e5;
  position: relative;
  font-size: 30px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  border-radius: 15px;
  margin-bottom:40px; 
  color: #105775;
}
.download-wrap ul li a:before{
  content: '';
  position: absolute;
  right: 20px;
  top: 28px;
  width: 33px;
  height: 29px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/icons/icon-external.svg);
}

.download-wrap ul li:hover a{
  background-color: #105775;
  color: #fff;
}

.download-wrap ul li span{
  display: table-cell;
   -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}

.download-wrap ul li span.date{ width: 200px; color: #848484 }
.download-wrap ul li:hover a span.date{ color: #fff }

.vedio-thumb{
  position: relative;
  padding-bottom: 30px
}
.vedio-thumb .photo{
  background-color: #000;
  background-size: contain;
  cursor: pointer;
  position: relative;
  opacity: 1 !important
}
.vedio-thumb .photo:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  background-image: url(../img/icons/icon-play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70px;

  -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.vedio-thumb:hover .photo:before{background-color: rgba(0,0,0,0.2);}
.vedio-thumb .photo img{
  width: 100%
}

.vedio-thumb .caption{
  display: block;
  padding: 20px 0;
  color: #989898;
  font-size: 21px;
}

.vedio-thumb .caption h2{
  font-family: 'DB Helvethaica X Med Cond';
  font-weight: 500;
  margin-bottom:5px;
  cursor: pointer;
  font-size: 23px;
}

.modal-content{
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.modal-vdo .modal-content{
  padding: 10px;
  background-color: #fff;
  max-width: 1110px;
}

.modal-vdo .close{
  top: -40px; 
  border:2px solid #fff;
  border-radius: 50%;
  right: 0
}

.modal-vdo .close:before,
.modal-vdo .close:after{
  margin-left: -10px;
  margin-top: -1px;
}
 
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  cursor: pointer;
}
.video-wrapper iframe,
.video-wrapper video,
.video-wrapper .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-notification{
  padding: 50px 0 100px
}


.member-header{
  display: block;
  background-color: #e42f46;
  padding-top: 75px;
  color: #fff;
  height: 250px;
}

.member-toppage{
  display: block;
  font-size: 0;
  height: 52px;
  
}
.toppage-info{
  display: inline-block;
  vertical-align: top;
  border-left: 1px solid #fff;
  padding-left: 40px;
  margin-left: 40px; 
  position: relative;
  top: -3px 
}
.toppage-info h3{
  display: inline-block;
  vertical-align: top;
  /*font-family: 'DB Helvethaica X Reg';
  font-weight: 400;*/

  font-family: 'Prompt', sans-serif;
  font-weight: 200;
  font-size: 47px;
  color: inherit;
  line-height: 52px
}

.toppage-info.has-avatar{
  padding-left: 175px;
}
.toppage-info .avatar{
  position: absolute;
  top: -18px;
  left: 40px;
  border:0 !important;
  background-color: transparent;
  overflow: hidden;
}

.member-navbar{ 
  text-align: center;
  width: 100%;
  padding-top: 65px;
}
.member-navbar .nav{
  display: block;
  padding: 0;
  margin:0; 
}

.member-navbar .nav li{
  display: inline-block;
  vertical-align: top;
}
.member-navbar .nav li a{
  display: block;
  color: #fff;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  font-size: 24px;
  background-color: transparent;
  padding: 10px 40px;
}

.member-navbar .nav li:hover a,
.member-navbar .nav li.active a{
  opacity: 0.7
}

.membernav-toggle .icon {
    height:30px;
    width:30px;
    position:absolute;
    top:18px;
    right: 20px;
    display: block;
}

.membernav-toggle .icon span{
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.membernav-toggle .icon span:before,
.membernav-toggle .icon span:after{
  content: '';
  display: block;
  background-color: #fff;
  height: 3px;
  width: 100%;

  position: absolute;
  top: 7px;
  left: 0
}

.membernav-toggle .icon span:after{
  top: 14px
}

/*
.membernav-toggle .icon {
  height:20px;
  width:20px;
  position:absolute;
  top:17px;
  right: 10px;
  box-sizing: border-box;
  line-height: 2px;
  display: inline-block;
  cursor: pointer;
}
.membernav-toggle .icon:before,
.membernav-toggle .icon:after { 

      -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);

  content: '';
  position: absolute;
  top: 50%;
  left: 50%; 
  display: block;
  height: 2px;
  width: 100%;
  margin-left: -15px;
  margin-top: -2px;
  background-color: #fff;
  transition: all 0.2s ease-out;
}
.membernav-toggle .icon:after {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.membernav-opened .membernav-toggle .icon:before{ 

      -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.membernav-opened .membernav-toggle .icon:after {
   -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}*/

@media (min-width: 768px) {
  .member-navbar { display: block !important; }
  .membernav-toggle{ display: none; }
}

.member-body{
  display: block;
  padding: 75px 0 
}

.form-member{
  display: block;
  margin:0 auto;
  width: 100%; 
  max-width: 565px;
}
.form-member .buttons{
  text-align: center;
  margin:50px 0 30px
}
.form-member .buttons .btn{
  height: 63px;
  line-height: 65px;
  color: #fff;
  font-size: 30px;
  padding: 0;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  margin:0 10px;
  width: 190px;
}
.form-member .buttons .btn-submit{background-color: #003764}
.form-member .buttons .btn-cancel{background-color: #e42f46}

.form-member .buttons .btn-submit:hover{background-color: #002543}
.form-member .buttons .btn-cancel:hover{background-color: #b42033}

.input-block{
  display: block;
  margin-bottom: 50px;
  position: relative;
}
.input-block .form-control,
.input-block .select-wrap .customSelect{
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: none;
  border-radius: 0;
  padding:2px 0;
  font-size: 30px;
  height: auto;
  line-height:1.4;
  color: #000
}
/*

.input-block .select-wrap .customSelect{ color: #969696 }
.input-block .select-wrap .customSelect.customSelectChanged{ color: #000000 }*/

.input-block .form-control.error{
  border-bottom: 1px solid #ffa7b2;
}

.input-block .select-wrap .error + .customSelect{border-bottom: 1px solid #ffa7b2 !important;} 
.input-block .select-wrap .error[style="display: none;"] + .customSelect{border-bottom: 1px solid #e8e8e8 !important;} 

.input-block .select-wrap div.error{ display: none; }

.input-text{
  display: block;
  color: #969696;
  font-size: 24px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  margin-bottom: 20px;
}
.star{
  color: #ff0000;
  font-style: normal;
}

.form-resetpass{
  padding: 5% 0
}
.form-resetpass p{
  font-size: 24px;
  margin-bottom: 40px
}

.form-resetpass .input-text{
  color: #000;
  font-size: 30px;
}

.form-resetpass .buttons{ margin-top:90px; margin-bottom: 0 !important  }
.form-register .btn-map{
  background-color: #ececec;
  font-size: 20px;
  padding: 0 20px;
  font-family: 'DB Helvethaica X Reg',sans-serif;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
}
.form-register .btn-map:hover{
  background-color: #c9c9c9
}
.form-register .btn-map img{
  margin: 0 5px 0 -5px;
}
.map{
  display: block;
  width: 100%;
  height:250px; 
}

.map-text p{
  color: #000000;
  margin-top: 30px; 
}


.image-editor{ 
  display: block; 
  margin:30px auto 30px;
  padding: 0 0 30px 0; 
  border-bottom: 1px solid #e8e8e8;
}
.image-editor-inner{
    display: inline-block;
    position: relative;
    width: auto; 
}

.cropit-preview, .avatar {
     background-color: #f6f6f6;
    background-size: cover;
    background-position:  center center;
    background-repeat: no-repeat; 
   
    -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;

    width: 100px;
    height: 100px;
    display: inline-block; 
}
.avatar img{ width: 100% }
.cropit-preview.cropit-image-loaded{ background-image: none !important; }

.cropit-preview-image-container {
    cursor: move;
    overflow: hidden;
    position: relative;
    display: block;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;

          -webkit-transform: translateZ(0);
   -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}


.image-size-label {
    margin-top: 0;
}

.image-editor  input {
    display: block;
}

.image-editor  button[type="submit"] {
    margin-top: 10px;
}

.image-editor #result {
    margin-top: 10px;
    width: 900px;
}

.image-editor  #result-data {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.image-editor .fileinput{
    position:relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    z-index: 99;
    vertical-align: top;
    text-align: left;
}
.image-editor .fileinput-text{
    width: auto;
    height: auto; 
    display: block;
    padding:5px 0 0 25px;
    position: relative;
    z-index: 0;
    border:0;
    background-color: #fff!important; 

    -webkit-box-shadow:none;
          box-shadow:none;

          -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
         -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
}
.image-editor .fileinput-text p{
  color: #000;
  font-size: 24px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  position: relative;
  z-index: 1000;
  margin-bottom: 15px;
}

.image-editor .fileinput-text > input {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 23px;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 999;
    direction: ltr;
}

.image-editor .fileinput-text .btn{
  background-color: #f3f4f5;
  color: #8b8b8b;
  font-size: 24px;
  font-family: 'DB Helvethaica X Med';
  font-weight: 500;
  padding: 0 20px;
}
.image-editor .fileinput-text input:hover  + .btn{ background-color: #003764; color: #fff }
 

.logout-text{
  text-align: center;
  font-size: 36px;
  color: #000;
  padding-top: 40px;
  display: block;
}
.logout-text .icon{
  display:inline-block;
  width: 100px;
  margin-bottom: 10px;
}

.form-thankyou{ max-width: 890px; }

.thankyou-text{
  display: block;
  text-align: center;
  background-color: #b4b4b4;
  color: #fff;
  padding:70px 20px; 
  margin:20px auto; 
  font-size: 24px;
  border-radius: 20px;
}

.thankyou-text h3{
  color: #fff;
  font-size: 60px;
  text-transform: uppercase;
  margin:30px 0 20px 
}
.thankyou-text p{
  margin:0 
}

/* ============== Footer Sutup =============== */ 


 
.footer{
	position: relative; 
  z-index: 9;
  padding: 30px 0; 
  background-color: #e42f46;

  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin: 0;
  line-height: 16px;

  -webkit-box-shadow: inset 0px 4px 8px -2px rgba(0,0,0,0.35);
  -moz-box-shadow: inset 0px 4px 8px -2px rgba(0,0,0,0.35);
  box-shadow: inset 0px 4px 8px -2px rgba(0,0,0,0.35);
}

.footer h5{
  font-family: 'Raleway', sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.footer p{
  margin: 0
}

.followus{
  display: block;
  text-align: right;
  margin-top:12px 
}
.followus .item{
  display: inline-block;
  vertical-align: top;
  width: 35px;
  height: 35px; 
  line-height: 33px;
  font-size: 16px;
  text-align: center;
  color: #fff !important;
  border: rgba(255,255,255,0.6) 1px solid;
  border-radius: 50%;
  margin: 0 0 0 8px;
  opacity: 0.6;
}
.followus .item.fa-instagram{ font-size: 20px; line-height: 32px }
.followus .item:hover{ opacity: 1 }

.page-fullscreen .footer{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 0; 
} 


@media screen and (max-height: 700px) {
  .page-fullscreen .footer{
    position: relative;
  }
}

.member-footer{
  position: relative; 
  z-index: 9;
  padding: 30px 0; 
  background-color: #e42f46;

  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin: 0;
  line-height: 16px;

  -webkit-box-shadow: inset 0px 4px 8px -2px rgba(0,0,0,0.35);
  -moz-box-shadow: inset 0px 4px 8px -2px rgba(0,0,0,0.35);
  box-shadow: inset 0px 4px 8px -2px rgba(0,0,0,0.35);
}

.member-footer h5{
  font-size: 18px;
  text-align: center;
  padding: 30px 0;
  margin-bottom:0 
}
