/*
Vajda Papír
Készítette: netpeople.hu
http://netpeople.hu
(c) 2013
*/

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  outline: none;
}

b, strong, h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

i, em {
  /*
  font-weight: 500;
  font-style: normal; WTF??
  */
  font-style: italic;
}

a, input[type=submit] {
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img {
  border: none;
}

/* Font faces */
@font-face {
  font-family: "DaxWeb";
  src: url("../fonts/daxhu-regular-webfont.eot");
  src: url("../fonts/daxhu-regular-webfont.eot?#iefix") format("embedded-opentype"),
     url("../fonts/daxhu-regular-webfont.ttf") format("truetype"),
     url("../fonts/daxhu-regular-webfont.svg#DaxWeb") format("svg");
  font-weight: normal;
  font-style: normal;
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
  transform: rotate(-0.0000000001deg);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

@font-face {
  font-family: "DaxWeb";
  src: url("../fonts/daxhu-medium-webfont.eot");
  src: url("../fonts/daxhu-medium-webfont.eot?#iefix") format("embedded-opentype"),
     url("../fonts/daxhu-medium-webfont.ttf") format("truetype"),
     url("../fonts/daxhu-medium-webfont.svg#DaxWeb") format("svg");
  font-weight: bold;
  font-style: normal;
  font-smooth: always;
  -webkit-font-smoothing: subpixel-antialiased;
  transform: rotate(-0.0000000001deg);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

/* Body definitions */
body {
  background: #eaeaea;
  font: normal 14px "DaxWeb", Helvetica, Arial, sans-serif;
  color: #0b263a;
  text-align: center;
  overflow-y: scroll;
}

.wrapper {
  width: 1000px;
  height: 100%;
  position: relative;
  margin: 0 auto;
  text-align: left;
}

/* UI elements */
.btn {
  font: bold 16px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #fff;
  background: #0a5e9d;
  border: none;
  border-radius: 3px;
  padding: 11px 24px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn:hover {
  background: #1472b7;
}

.alert {
  width: 96%;
  float: left;
  padding: 1.5% 2%;
}

.incorrect {
  background: #f2dedf !important;
  border: 1px solid #dccccc !important;
  color: #a60100 !important;
}

.correct {
  background: #cee181 !important;
  border: 1px solid #8e9c56 !important;
  color: #556809 !important;
}

/* Language, login */
#user-head {
  width: 100%;
  height: 30px;
  float: left;
}

.user-head-link {
  float: right;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  color: #797979;
  margin-left: 20px;
}

.user-head-link:hover {
  color: #555;
}

.user-head-link.selected {
  color: #0a5e9d;
}

.user-head-link i {
  width: 13px;
  height: 12px;
  position: relative;
  top: 2px;
  left: 3px;
  display: inline-block;
  background: url(../img/user-head-link-icons.png) no-repeat;
}

.user-head-link i.icon-login { background-position: 0px 0px; }
.user-head-link i.icon-flag-hu { background-position: -13px -12px; }
.user-head-link i.icon-flag-en { background-position: -26px -12px; }
.user-head-link i.icon-flag-no { background-position: -39px -12px; }
.user-head-link i.icon-logout { background-position: -52px 0px; }

.user-head-link.selected i.icon-login { background-position: 0px 0px; }
.user-head-link.selected i.icon-flag-hu { background-position: -13px 0; }
.user-head-link.selected i.icon-flag-en { background-position: -26px 0px; }
.user-head-link.selected i.icon-flag-no { background-position: -39px 0px; }
.user-head-link.selected i.icon-flag-no { background-position: -52px -12px; }

/* Header section */
#header {
  width: 100%;
  height: 82px;
  position: relative;
  float: left;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

#header .logo {
  width: 70px;
  height: 82px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/logo.png) left center no-repeat;
}

/* Login form */
#login-form {
  position: absolute;
  top: 30px;
  right: 220px;
  display: none;
}

.layer-form {
  width: 230px;
  z-index: 800;
  background: #fff;
  padding: 10px 10px 0 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .15);
}

.layer-form p, .career-form p {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

.layer-form p .text-input {
  width: 90%;
  height: 26px;
  float: left;
  font: normal 15px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #555;
  background: #ececec;
  border: none;
  padding: 5px 15px;
  margin: 2px 0;
}

.layer-form p textarea {
  height: 120px !important;
  padding: 15px !important;
}

.layer-form p .forgot-pwd {
  width: 80px;
  font-size: 13px;
  line-height: 1.3em;
  color: #0a5e9d;
  float: right;
}

/* Forgot password */
#forgot-form {
  width: 50%;
  float: left;
}

#forgot-form p {
  width: 100%;
  float: left;
  line-height: 2.5em;
  margin: 10px 0;
}

#forgot-form .text-input {
  width: 68%;
  float: right;
  padding: 2%;
  font: normal 14px "DaxWeb", Helvetica, Arial, sans-serif;
  color: #555;
  background: #fff;
  border: 1px solid #e1e1e1;
}

#forgot-form .btn {
  float: right;
}

/* Search dropdown */
#search-form {
  position: absolute;
  top: 23px;
  right: 0;
  z-index: 900;
}

#search-form .search-toggler {
  width: 38px;
  height: 38px;
  float: right;
  background: url(../img/search.png) 0px -38px no-repeat #f2f2f2;
}

#search-form.open .search-toggler { height: 58px; }
#search-form.open .search-fields { display: block; }

#search-form .search-fields {
  width: 240px;
  position: absolute;
  top: 58px;
  right: 0;
  z-index: 700;
  background: #fff;
  display: none;
}

#search-form .search-fields .search-input {
  width: 210px;
  height: 30px;
  float: left;
  font: normal 16px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #777;
  background: #f2f2f2;
  border: none;
  padding: 8px 15px;
}

#search-form .search-fields .search-input.typing {
  background: #0a5e9d;
  color: #fff;
}

.ui-menu-item, .ui-menu-item:hover,
.ui-menu-item .ui-corner-all,
.ui-menu-item .ui-corner-all:hover {
  background: none !important;
  list-style-image: none !important;
  text-align: left !important;
}

.menu-toggler,
.submenu-toggler {
  width: 38px;
  height: 38px;
  float: right;
  margin: 23px 0 0 0;
  cursor: pointer;
  background: url(../img/menu-burger.png) no-repeat;
  display: none;
}

.submenu-toggler {
  margin: 0;
  background: url(../img/menu-burger-light.png) no-repeat;
}

/* Top navigation */
#menu {
  width: 870px;
  height: 82px;
  line-height: 82px;
  float: right;
  margin-right: 60px;
}

#menu ul {
  width: 100%;
  height: 82px;
  line-height: 82px;
  float: left;
  list-style: none;
}

#menu ul li.menu-link {
  position: relative;
  float: left;
  height: 82px;
  line-height: 82px;
  margin: 0 0 0 20px;
}

#menu ul li.menu-link > a {
  height: 82px;
  line-height: 82px;
  display: block;
  font: bold 17px/86px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #0a5e9d;
  padding: 0 4px;
}

#menu ul li.menu-link:hover,
#menu ul li.menu-link.selected {
  height: 80px;
  line-height: 80px;
  border-bottom: 2px solid #0a5e9d;
}

#menu ul li.menu-link.menu-link-karrier > a {
  //background: #0a5e9d;
  color: white;
  position: relative;  z-index: 0;
  padding: 0 12px;
}
#menu ul li.menu-link.menu-link-karrier > a:before {
  content: '';
  background: #0a5e9d;
  color: white;
  position: absolute;  left: 0;  width: 100%;  z-index: -1;
  top: 20px;  height: 45px;
}

#menu ul ul.sub {
  width: 250px;
  position: absolute;
  top: 82px;
  left: 0;
  z-index: 700;
  display: none;
  background: #0a5e9d;
}

#menu.contact-open ul li.menu-link:hover ul.sub {
  display: none;
}

#menu ul ul.sub li {
  width: 85%;
  float: left;
  padding: 15px 7.5%;
  background: #0a5e9d;
  border-bottom: 1px solid #146eb2;
}

#menu ul ul.sub li:hover {
  background: #0e6bb0;
}

#menu ul ul.sub li a {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #fff;
}

#menu ul li.menu-link:hover ul.sub {
  display: block;
}

/* Sticky buttons */
#actions {
  width: 145px;
  position: fixed;
  top: 122px;
  right: 0;
  z-index: 999;
}

#actions a {
  width: 100px;
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 1.3em;
  color: #0a5e9d;
  padding: 10px 10px 10px 35px;
  background: #fff;
  text-align: left;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#actions a.pp {
  padding: 0;
  width: initial;
  margin-top: .5rem;
}

#actions a:hover,
#actions a.selected {
  background: #0a5e9d;
  color: #fff;
}

#actions a i {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 6px;
  display: inline-block;
  background: url(../img/main-icons.png) no-repeat;
}

#actions a i.dl { top: 11px; background-position: -48px 0; }
#actions a i.wr { top: 6px; background-position: -72px 0; }
#actions a:hover i.dl, #actions a.selected i.dl { background-position: -48px -24px; }
#actions a:hover i.wr, #actions a.selected i.wr { background-position: -72px -24px; }

#actions.fixed-top {
    position: absolute !important;
    top: -2.5px !important;
    right: 260px !important;
}

#actions.fixed-top.logged {
  right: 430px !important;
}

#actions.fixed-top a {
    background: none !important;
}

#actions.fixed-top a:hover,
#actions.fixed-top a.selected {
    color: #0a5e9d;
}

#actions.fixed-top a:hover i.dl, #actions a.selected i.dl { background-position: -48px 0; }
#actions.fixed-top a:hover i.wr, #actions a.selected i.wr { background-position: -72px 0; }

#actions.fixed-top #contact-layer {
  position: absolute !important;
  top: 32px !important;
  right: auto !important;
  left: 0 !important;
}

/* Contact form layer */
#contact-layer {
  background: #fff;
  position: fixed;
  top: 158px;
  right: 0;
  text-align: left;
  display: none;
}

#contact-layer .alert {
  margin-bottom: 10px;
}

#contact-layer .btn {
  padding-left: 35px;
  padding-right: 35px;
}

/* Slider */
#slider {
  width: 100%;
  height: 415px;
  float: left;
  position: relative;
  z-index: 300;
  margin: 10px 0;
}

#slider .slide {
  width: 1000px;
  height: 415px;
  overflow: hidden;
  display: none;
}

#slider .slide .slide-bg {
  width: 1000px;
  height: 415px;
  position: absolute;
  z-index: 400;
}

#slider .slide .slide-layer {
  max-width: 460px;
  position: absolute;
  left: 25px;
  bottom: 65px;
  z-index: 500;
  padding: 30px 25px;
  background: url(../img/trans-wh-70.png) repeat;
}
#slider .slide.wide .slide-layer {
  max-width: none;
}
#slider .slide.right .slide-layer {
  left: auto;
  right: 25px;
  text-align: right;
}


#slider .slide > a {
  position: absolute;  z-index: 500;
  top: 0;  left: 0;  bottom: 0;  right: 0;
}

#slider .slide .slide-layer h3 {
  font: bold 44px/1.2em "DaxWeb", Arial, Helvetica, sans-serif;
  color: #0a5e9d;
}

#slider .slide .slide-layer .btn {
  float: left;
  margin-top: 10px;
}
#slider .slide.right .slide-layer .btn {
  float: right;
}

#slider .slider-nav {
  width: 100%;
  height: 40px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 700;
  background: url(../img/trans-wh-30.png) repeat;
}

#slider .slider-nav .direction-nav {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 7px;
  background: url(../img/main-icons.png) no-repeat;
}

#slider .slider-nav .direction-nav.prev { background-position: 0px 0px; left: 7px; }
#slider .slider-nav .direction-nav.next { background-position: -24px 0px; right: 7px; }

#slider .slider-nav .bullets {
  width: 80%;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  left: 10%;
  text-align: center;
}

#slider .slider-nav .bullets span {
  width: 24px;
  height: 24px;
  position: relative;
  top: 8px;
  margin: 0 3px;
  display: inline-block;
  background: url(../img/main-icons.png) no-repeat;
  background-position: -96px 0px;
  text-indent: -9999px;
  cursor: pointer;
}

#slider .slider-nav .bullets span.cycle-pager-active {
  background-position: -120px 0px;
}

/* Featured categories */
#product-menu {
  width: 100%;
  float: left;
}

#product-menu .wrapper {
  height: 70px;
  background: #fff;
  text-align: center;
}

#product-menu .wrapper a {
  font: bold 17px "DaxWeb", Arial, Helvetica, sans-serif;
  display: inline-block;
  height: 68px;
  line-height: 74px;
  color: #0a5e9d;
  margin: 0 25px;
  padding: 0 4px;
}

#product-menu .wrapper a:hover {
  border-bottom: 2px solid #0a5e9d;
}

/* Brand logos */
#brands {
  width: 100%;
  height: 95px;
  float: left;
}

#brands .wrapper {
  height: 95px;
  background: #fff;
  text-align: center;
}

#brands .wrapper a {
  display: inline-block;
  height: 95px;
  line-height: 95px;
  margin: 0 15px;
  vertical-align: middle;
}

#brands .wrapper a img {
  height: 60px;
  line-height: 95px;
  vertical-align: middle;
}

/* Main columns */
#main-cols {
  width: 100%;
  float: left;
  margin-top: 10px;
}

/*
#main-cols .col may have:
  > article
  > .two-cols >article
*/
/*#main-cols .col.right {
  float: right;
}*/
#main-cols .col {
  /* width: 495px; float: left; */
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}
#main-cols .col > * {
  margin-left: 10px;
  min-width: 400px;
  flex: 1 1 35%;
}

#main-cols .col article {
  /*  max-height: 370px; */
  background: #fff;
  margin-bottom: 10px;
}

#main-cols .col .two-cols {
}
#main-cols .col .two-cols .wrapper {
  width: auto;
  display: flex;
  margin-left: -10px;
}

#main-cols .col .two-cols article {
  width: 242px;
  flex: 1 1 50%;
  margin-left: 10px;
}

#main-cols .col .two-cols article .title {
  width: 208px;
}

/* 
#main-cols .col .two-cols article.right {
  float: right;
}
 */

#main-cols #contact-box {
  overflow: hidden;
}

#main-cols #contact-box .wrap {
  width: 100%;
  height: 280px !important;
  overflow: hidden !important;
}

#main-cols #contact-box #vmap {
  position: relative;
  top:  -110px;
  left: -200px;
}

.fb-like-box-wrapper {
  overflow: hidden;
  /* height: 375px; */
}

.fb-like-box {
  height: 50%;
}



#main-cols .col article .title {
  width: 460px;
  height: 50px;
  position: relative;
  float: left;
  font: normal 22px/52px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #0a5e9d;
  padding: 0 15px 0 20px;
  border-bottom: 1px solid #e0e0e0;
}

#main-cols .col article .title .more {
  width: 98%;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon-more.png) right center no-repeat;
}

#main-cols .col article .wrap {
  width: 245px;
  float: left;
  padding: 20px 10px 20px 20px;
}

#main-cols .col article .wrap h3 {
  font: normal 24px/1.3em "DaxWeb", Arial, Helvetica, sans-serif;
  color: #7d7d88;
  margin-bottom: 10px;
}

#main-cols .col article .wrap div,
#main-cols .col article .wrap p,
#main-cols .col article .wrap li {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 10px;
}

#main-cols .col article .wrap .btn {
  float: left;
  margin-top: 10px;
}

#main-cols .col article .image {
  width: 215px;
  /** /
  height: 375px;
  /**/
  float: right;
  overflow: hidden;
}

#main-cols .col article .image img {
  display: block;
  width:  215px;
  height: 320px;
}
#main-cols .col article .image a {
  display: block;
}

#main-cols .scroll-content {
  width: 100%;
  height: 340px;
  float: left;
}

#main-cols .scroll-content ul.certs {
  width: 100%;
  float: left;
  list-style: none;
}

#main-cols .scroll-content ul.certs li {
  width: 90%;
  float: left;
  padding: 20px 5%;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}

#main-cols .scroll-content ul.certs li .cert-image {
  width: 26%;
  float: left;
  vertical-align: middle;
}

#main-cols .scroll-content ul.certs li span {
  width: 70%;
  float: right;
  font: normal 27px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #7d7d88;
}

.fb-like-box-wrapper {
  height: 365px;
  overflow: hidden;
}

.fb-like-box {
  position: relative;
  top: -25px;
}

.fb-tiny {
  display: none;
}

/* Page wrappers */
.page-wrapper {
  width: 100%;
  float: left;
  margin-top: 10px;
}

.white-box {
  background: #fff;
}

#head-image {
  width: 100%;
  /* height: 290px; */
  float: left;
  margin: 0 0 10px 0;
}





/* Left navigation: common */
.left-nav {
  width: 240px;
  float: left;
}
.left-nav .submenu-toggler {
  width: 38px;
  height: 38px;
  display: none;
  margin: 4% 4% 4% 0;
}
.left-nav ul {
  width: 100%;
  float: left;
  list-style: none;
}
.left-nav li {
  width: 210px;
  float: left;
  padding: 0 10px 0 20px;
}
.navtree > li {
  padding-left: 0;
}
.left-nav a {
  width: 100%;
  float: left;
  font-size: 18px;
  line-height: 1.4em;
  color: #0a5e9d;
  padding: 18px 0 16px 0;
}


/* .left-nav > ul.navlist: Normal left nav: sibling or subpages */
.navlist li {
  border-bottom: 1px solid #e0e0e0;
}
.navlist li:last-child {
  border-bottom: none;
}
.navlist li.selected,
.navlist li:hover {
  border-right: 2px solid #0a5e9d;
}


/* .left-nav > ul.navtree: Product menu, Karrier menu */
.navtree .section {
  margin: 15px 0 20px 0;
}
.navtree .section p.title {
  font-size: 17px;
  line-height: 1.3em;
  color: #7d7d88;
  padding: 5px 0 5px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.navtree ul,
.navtree li,
.navtree a {
  display: block;
  float: none;
  width: 100%;
  box-sizing: border-box;
}
.navtree li {
  border: none;
  padding-right: 0;
}
.js .navtree .level-2,
.js .navtree .level-3,
.js .navtree .level-4 {  display: none;  }
.navtree img {  height: 45px;  }

.navtree a {
  padding-left: 20px;
  position: relative;
}
.navtree a i {
  position: absolute;  top: 0;  bottom: 0;  left: 0;
  width: 20px;
  overflow: hidden;
}
.navtree a i:before {
  content: '';
  display: block;
  position: absolute;  top: 50%;  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../img/icon-more.png) left center no-repeat;
  transition: transform 0.2s ease-in-out;
  transform-origin: 5px 50%;
}
.navtree a:not(.toggle):hover i:before {
  /* background-position: 50% center; */
  transform: translate( 7px, 0 );
}
.navtree a.toggle:hover i:before,
.navtree a.toggle.open  i:before {
  transform: rotate(90deg);
  /* background-image: url(../img/icon-more-down.png); */
}

.navtree .level-2 a {
  font-size: 15px;
  padding-top:    5px;
  padding-bottom: 5px;
}
.navtree .level-4 a {
  font-size: 14px;
  background: none;
  padding: 5px 0 5px 0;
  color: #797979;
}
.navtree .level-1 a.selected,
.navtree .level-3 a:hover {  color: #797979;  }







/* Page content */
#content {
  width: 710px;
  float: right;
  padding: 25px 20px;
}

.full-width {
  width: 96% !important;
  padding: 25px 2% !important;
}

ul.breadcrumb {
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

ul.breadcrumb li {
  float: left;
  line-height: 1.3em;
  color: #0e6bb0;
  margin-right: 5px;
}

ul.breadcrumb li a {
  color: #0a5e9d;
}

ul.breadcrumb span {
  font-weight: bold;
  color: #0e6bb0;
  word-wrap: break-word;
  line-height: 1.3em;
}

h2.page-title {
  width: 100%;
  float: left;
  font-size: 27px;
  font-weight: normal;
  line-height: 1.5em;
  color: #7d7d88;
  margin-bottom: 20px;
}

.lead-image {
  width: 220px;
  float: left;
  margin: 0 10px 10px 0;
}

.page-content a {
  color: #0a5e9d;
}

.page-content img {
  max-width: 100%;
  height: auto !important;
}

.page-content,
.page-content div,
.page-content p,
.page-content li {
  font-size: 16px;
  color: #0b263a;
  line-height: 1.7em;
  margin-bottom: 15px;
}

.page-content ul,
.page-content ol {
  width: 95%;
  display: block;
  margin-left: 5%;
}

.page-content ul li,
.page-content ol li {
  line-height: 1.5em;
  margin-bottom: 5px;
}

.page-content ul li {
  list-style-type: disc;
}

.page-content ol li {
  list-style-type: decimal;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  font-weight: bold;
  line-height: 1.3em;
  margin: 15px 0 5px 0;
}

.page-content h2 { font-size: 22px; }
.page-content h3 { font-size: 20px; }
.page-content h4 { font-size: 18px; }
.page-content h5 { font-size: 16px; }
.page-content h6 { font-size: 14px; }

.page-content table {
  margin: 15px 0;
  border-collapse: collapse;
}

.page-content table td {
  padding: 5px 0;
  vertical-align: middle;
}

.page-content table.years {
  width: 90%;
  float: left;
  margin: 20px 0 20px 10%;
}

.page-content table.years td.year {
  width: 150px;
  font-size: 50px;
  border-bottom: none;
}

.page-content table.years td {
  font-size: 14px;
  color: #0a5e9d;
  border: none;
  line-height: 1.5em;
  padding: 15px 0;
  vertical-align: top;
  border-bottom: 1px solid #e1e1e1;
}

.page-content table.years tr:last-child td {
  border-bottom: none;
}

/* Subpages */
.page-nodes {
  width: 100%;
  float: left;
}

.page-nodes article {
  width: 100%;
  float: left;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.page-nodes article:last-child {
  border-bottom: none;
}

.page-nodes article h3 {
  width: 100%;
  float: left;
  font-size: 27px;
  font-weight: normal;
  line-height: 1.5em;
  color: #7d7d88;
  margin-bottom: 15px;
}

.page-nodes article h3 a {
  color: #7d7d88;
}

.page-nodes article p,
.page-nodes article div,
.page-nodes article li {
  line-height: 1.5em;
}

.page-nodes article .image {
  width: 220px;
  float: left;
  border: none;
}

.page-nodes article .image img {
  width: 100%;
  border: none;
}

.page-nodes article .map-container {
  width: 350px;
  float: left;
  border: none;
}

.page-nodes article .wrap {
  width: 480px;
  float: right;
}

.page-nodes article .map-wrap {
  width: 590px !important;
}

.page-nodes article .btn {
  float: left;
  margin-top: 20px;
}

.full-width .page-nodes article .wrap {
  width: 720px;
}

.logo-gallery {
  width: 100%;
  float: left;
  border-top: 1px solid #e1e1e1;
  padding: 5px 0;
  text-align: center;
}

.logo-gallery div {
  width: 14.5% !important;
  height: 80px !important;
  line-height: 80px !important;
  float: left;
  margin: 3% 1%;
  text-align: center;
  vertical-align: middle;
}

.logo-gallery img {
  width: 80%;
  line-height: 80px !important;
  vertical-align: middle;
}

.page-gallery {
  width: 100%;
  float: left;
  border-top: 1px solid #e1e1e1;
  padding: 5px 0;
  text-align: center;
}

.page-gallery .gallery-item {
  width: 31% !important;
  float: left;
  margin: 2% 1%;
  text-align: center;
  vertical-align: middle;
}

.page-gallery .gallery-item img {
  max-width: 95%;
  vertical-align: middle;
}












/* Product list */
.product-list {
  margin-top: 40px;
}

.product-list .image {
  text-align: center;
}

.product-list.product-list .image img {
  max-width:  80%;
  max-height: 200px;
  width:  auto;
  height: auto;
}

.product-list .wrap .btn {
  float: left;
  margin-top: 5px;
}

/* Product page */
.product-page {
  width: 100%;
  float: left;
}

.product-page + .wrap .btn {
  margin-top: 2em;
}

.product-page + .wrap .btn {
  display: inline-block;
}

.product-page .image {
  width: 30%;
  float: left;
  text-align: center;
  vertical-align: middle;
}

.product-page.product-page .image img {
  max-width:  90%;
  max-height: 450px;
  width:  auto;
  height: auto;
  border: none;
  vertical-align: middle;
}

.product-gallery {
  width: 100%;
  float: left;
}

.product-gallery .row {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.product-gallery .gallery-item {
  width: 31%;
  position: relative;
  float: left;
  margin-left: 1%;
  text-align: center;
  padding-bottom: 30px;
}

.product-gallery .gallery-item .highslide {
  width: 100%;
  height: 250px;
  line-height: 250px;
  text-align: center;
  vertical-align: middle;
}

.product-gallery .gallery-item img {
  width: 90%;
  vertical-align: middle;
}

.product-gallery .download-link {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.8em;
  text-align: center;
}

.product-gallery .download-link a {
  font-size: 15px;
  font-weight: bold;
  color: #0a5e9d;
}

.product-page .wrap {
  width: 68%;
  float: right;
}

.product-page .wrap table {
  width: 100%;
  float: left;
}

.product-page .wrap table td {
  font-size: 14px;
  padding: 8px 0;
  line-height: 1.5em;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}

.product-page .wrap table tr:last-child td {
  border-bottom: none;
}

.product-page .wrap table td.caption {
  width: 210px;
  padding-left: 20px;
}

.product-page .wrap table td small {
  font-size: 11px;
  display: block;
}

/* Pagination */
.pager {
  width: 70%;
  float: left;
  position: relative;
  text-align: center;
  margin: 20px 0 30px 0;
  padding: 0 15%;
}

.pager a {
  font-size: 18px;
  color: #444;
  display: inline-block;
  padding: 4px 6px;
}

.pager a.selected {
  background: #0a5e9d;
  color: #fff;
}

.pager .direction {
  position: absolute;
  top: 0;
}

.pager .direction.left { left: 0; }
.pager .direction.right { right: 0; }

/* Sitemap */
.sitemap-nodes {
  width: 100%;
  float: left;
}

.sitemap-nodes ul {
  width: 95%;
  float: left;
  margin: 10px 0 10px 5%;
}

.sitemap-nodes ul li {
  width: 100%;
  float: left;
  margin: 8px 0;
  list-style-type: disc;
}

.sitemap-nodes ul ul li {
  margin: 3px 0;
}

.sitemap-nodes ul li a {
  font-size: 19px;
  font-weight: bold;
  color: #0a5e9d;
}

.sitemap-nodes ul ul li a {
  font-size: 16px;
}

.sitemap-nodes ul ul ul li a {
  font-size: 13px;
  font-weight: normal !important;
}



/* Footer section */

#footer {
  width: 100%;
  float: left;
  margin: 30px 0;
}

#footer p {
  /* width: 30%; */
  /* float: left; */
  overflow: hidden;
  font-size: 13px;
  color: #0a5e9d;
}

#footer .awards {
  display: inline-block;
  margin-left: 40px;
  vertical-align: middle;
}

#footer .awards img {
  width: 340px;
  max-width: 40vw;
  display: block;
}

#footer ul {
  margin-top: 26px;
  /* width: 70%; */
  float: right;
  text-align: right;
}

#footer ul li {
  float: right;
  font-size: 13px;
  color: #0a5e9d;
  padding: 0 10px;

  border-left: 1px solid #0a5e9d;
}

#footer ul li:last-child {
  border-left: none;
}

#footer ul li:first-child {
  padding-right: 0;
}

#footer ul li a {
  font-size: 13px;
  color: #0a5e9d;
}

a.adatlap {
  display: inline-block;
  width: 200px;
  text-align: center;
  vertical-align: top;
  margin-bottom: 30px;
  margin-right: 30px;
}

a.adatlap img {
  display: block;
  max-height: 150px;
  margin: 5px auto 0;
  border: 1px solid #DDD;
}

.career-modal-wrapper {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  overflow: unset;
  align-items: center;
  justify-content: center;
}

.career-modal-wrapper .dark {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: url(../img/trans.png) repeat;
}

.career-modal {
  width: 90%;
  height: auto;
  max-height: 90vh;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  background-color: #fafafa;
  padding: 1em 1em 1em 1em;
  z-index: 1;
  overflow-y: auto;
}

@media only screen and (min-width: 768px) {
  .career-modal {
    width: 40%;
  }
}

.career-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -0.3em;
  /* margin-right: 1em; */
}

.career-modal-close:hover, .career-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.career-form .text-input {
  width: 93%;
  float: left;
  font: normal 15px "DaxWeb", Arial, Helvetica, sans-serif;
  color: #555;
  background: #ececec;
  border: none;
  padding: 9px 5px;
  margin: 2px 0;
}

.career-form textarea {
  padding: 9px 5px;
  resize: vertical;
}

/* #dark {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../img/trans.png) repeat;
    display: none;
} */

.loader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
}

.loader:after,
.loader:before {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 5px solid transparent;
  border-top-color: black;
}

.loader:before {
  z-index: 100;
  animation: spin 1s linear infinite;
}

.loader:after {
  border: 5px solid #ccc;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.site-section-befektetoknek .page-nodes article .image  img {
  height: 140px;
  width: auto;
}
.site-section-befektetoknek .lead-image {
  display: none;
}
.befektetoknek-doc-link {
  display: block;
  padding-left: 2em;
  position: relative;
  overflow: hidden;
}
.befektetoknek-doc-link a {
  display: inline-block;
  height: 2em;
}
.befektetoknek-doc-link a[href=""], .befektetoknek-doc-link a[href="#"] {
  display: none;
}
.befektetoknek-doc-link img {
  height: 2em !important;  /* override .page-content img { height !important } */
  vertical-align: middle;
  max-width: 100%;
  position: absolute;
  top: 0;  left: 0;
}


/*
https://vajdapapir.hu/karrier
*/
.ukraine-jobs {
  background-color: #3164A1;
  color: white;
  clear: both;
  padding: 1em;
  border: 5px solid #CDCA26;
}
.ukraine-jobs p {
  color: white;
  line-height: 1.5em;
  margin-bottom: 0.3em;
}
.ukraine-jobs hr {
  border: 1px solid #CDCA26;
}
.ukraine-jobs a {
  color: white;
  text-decoration: underline;
}
p.ukraine-jobs-p1 {
  font-size: 1.2em;
}
p.ukraine-jobs-p2 {
  text-indent: 2em;
}
p.ukraine-jobs-p2:first-letter {
  font-size: 1.05em;
  font-weight: bold;
}
