/*  ----------  WRAPPER  ----------  */

#wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
}

#wrapper.fixed {
    position: fixed;    
}

#wrapper .inner {
    margin: 0 auto;
    width: 100%;
    max-width: 966px;
    min-width: 966px;
}

/*  ----------  HEADER  ----------  */

#header {
    min-width: 100%;
    /*min-width: 966px;*/
    height: 145px;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#header.fixed {
    margin-top: -100px;
    position: fixed;    
    /*overflow: hidden;*/
    background-color: rgba(255,255,255,0.9);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.25); /* drop shadow */
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.25); /* drop shadow */
    box-shadow: 0 0 5px rgba(0,0,0,.25); /* drop shadow */
}

#header .inner {
    height: 145px;    
    width: 90%;
    min-width: 966px;
    margin-left: 20vw;
}

#header .header-left {
    height: 145px;
    float: left;
    padding: 0 5%;
    width: 25%;
}

#header .header-left a {
    background-image: url("../images/header-logo.png");
    background-repeat: no-repeat;

    background-size: 100% auto;
    display: block;
    height: 58px;
    margin-top: 40px;
    width: 270px;
    max-width: 100%;
}

.barbarpage #header .header-left a {
    background-image: url("../images/header-logo-gold.png");
}

#header.fixed .header-left a {
    margin-top: 102px;
    background-image: url("../images/header-logo-small.png");
    height: 37px;
    width: 157px;
    background-position: left center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

.barbarpage #header.fixed .header-left a {
    background-image: url("../images/header-logo-gold-small.png");
}

#header .header-right {
    height: 145px;
    float: right;
    text-align: right;
    width: 65%;
}

/* languages and social */

#header .languages,
#header .social {
    float: right;
}

#header .languages li,
#header .social li {
    float: left;
}

#header .social li {
    margin-left: 3px;
}

#header .languages li a,
#header .social li a  {
    text-decoration: none;
    display: block;
    width: 32px;
    height: 45px;
    background-position: left top;
    background-repeat: no-repeat;    
    text-align: center;
    font-size: 17px;
    font-weight: 200;
    padding-top: 6px;
    line-height: 17px;
    font-weight: normal;
}

#header .languages li.current {
    float: right;
}

#header .languages li a {
    color: #515151;
    display: none;
    margin: 0;
}

#header .languages li.current a {
    background-image: url("../images/flag-light.png");
    color: #fff;
    display: block;
    font-weight: normal;
}

#header .social .facebook a {
    background-image: url("../images/flag-dark.png");
    color: #fff;
}

#header .languages.open li a,
#header .languages:hover li a {
    display: block;
} 

/* menu */

#header .menu {
    margin-top: 20px;
    float: right;
}

#header.fixed .menu {
    margin-top: 66px;    
}

#header .menu li {
    float: left;
    padding: 0 0 5px;
    margin-right: 10px;
    line-height: 12px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: normal;
}
#header .menu li:after {
    content:"/";
    color: #C7796C;
    font-size: 14px;
    padding-left: 10px;
}
#header .menu li.header:after {
    content: '';
}
#header .menu li.header {
    display: none;
}
#header .menu li:last-child:after {
    content: '';
}
#header .menu li:last-child {
    padding-right: 0;
    border: 0 none;
    margin-right: 0;
}

#header .menu li a {
    display: inline-block;
    text-decoration: none;
    color: #4b4b4b;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.2;
}

#header .menu li a:hover {
    /*color: #696864;*/
    opacity: 0.75;
}

#header .menu li.parent{
    position: relative;
}

#header .menu li.parent:hover > ul{
    display: flex;
}

#header .menu li ul.level-2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 140px;
    flex-direction: column;
    margin-top: 5px;
    padding: 5px 10px;
    white-space: nowrap;
    background: rgba(255,255,255,0.8);
    border-top: 1px solid #C7796C;
    text-align: center;
    transform: translateX(-50%);
}

#header .menu li ul.level-2.open{
    display: block;
}

#header.fixed .menu li ul.level-2 {
    background: rgba(255,255,255,0.9);
}

#header .menu li ul.level-2:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

#header .menu li ul.level-2 li{
    position: relative;
    float: none;
    margin-right: 0;
    text-align: left;
    padding: 8px 0;
}

#header .menu li ul.level-2 li:before{
    content: "/";
    color: #C7796C;
    font-size: 14px;
    padding-right: 2px;
}

#header .menu li ul.level-2 li:after{
    display: none;
}

/*  ----------  CONTENT  ----------  */

#content {
    width: 100%;
    max-width: 966px;
    margin: 0 auto;
    padding-bottom: 600px;
}

.mainpage #content {
    background-image: url("../images/header-text-gradient.png");
    background-repeat: repeat-x;
    background-position: left bottom;
    /*min-width: 966px;*/
    max-width: none;
    height: 100%;
    width: 100%;
    position: absolute;
    padding: 0;
    /*min-height: 642px;*/
}

#content .simple-text {
    margin-top: 145px;
    padding-top: 25px;
}

#content .simple-text p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;    
}

.barbarpage #content .inner {
    position: relative;
}

#content .barbar-background {
    position: absolute;
    width: 100%;
    height: 377px;
    background-image: url("../images/barbar-bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    top: -145px;
    left: 0;
}

/* mainpage panels */

#content .panels {
    /*margin-top: 548px;*/
    position: fixed;
    bottom: 45px;
    overflow: hidden;
}

#content .panels .arrow {
    position: absolute;
    top: 12px;
    right: 0;
    width: 15px;
    height: 17px;
    /*z-index: 1000;*/
}

#content .panels.open .arrow {
    background-image: url("../images/arrow-down-white.png");    
}

#content .panels.closed .arrow {
    background-image: url("../images/arrow-up-white.png");    
}

#content .panels .arrow:hover {
    opacity: 0.75;
}

#content .panels.closed {
    height: 50px;
}

#content .panels.open {
    height: 452px;
}

#content .panels .panel {
    width: 312px;
    float: left;
    margin-right: 15px;
}

#content .panels .panel:last-child {
    margin: 0;    
}

#content .panels .panel .header {
    color: #fff;
    font-size: 36px;
    /*text-transform: lowercase;*/
    font-style: italic;    
    line-height: 40px;
    height: 40px;
    margin-bottom: 10px;
    font-weight: 200;
}

#content .panels .panel .header a {
    color: #fff;
    font-weight: 200;
}

#content .panels .panel .header .arrow {
    display: none;
}

#content .panels .panel .content {
    background-color: rgba(255,255,255,0.8);
    padding: 12px;
    height: 300px;    
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
    position: relative;
}

#content .panels .panel .content .news-img {
    margin: -12px 0 8px -12px;
    width: 312px;
    height: 174px;
    overflow: hidden;
}

#content .panels .panel .content .news-img img {
    width: 100%;
    height: auto;
    display: block;
}

#content .panels .panel.offer .content .bottle {
    float: right;
    display: block;
    margin: 0 25px 0 10px;
    height: 265px;
    width: 60px;
}

#content .panels .panel.offer .content .reflect {
    width: auto !important;
    height: auto !important;    
}

#content .panels .panel.offer .content .bottle img {
    max-height: 265px;
    max-width: 60px;
    width: 100%;
}

#content .panels .panel.offer .content .bottle canvas {
    max-width: 60px;
}

#content .panels .panel .content .tip {
    width: 74px;
    height: 74px;
    background-repeat: no-repeat;
    margin-bottom: 16px;
}

#content .panels .panel .content .tip.hu {
    background-image: url("../images/tip-hu.png");
}

#content .panels .panel .content .tip.en {
    background-image: url("../images/tip-hu.png");
}

#content .panels .panel .content .tip.de {
    background-image: url("../images/tip-de.png");
}

#content .panels .panel .content .text {
    max-height: 150px;    
    overflow: hidden;
    margin-bottom: 10px;
}

#content .panels .panel .content h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 6px;
}

#content .panels .panel.news .content h2 {
    margin-bottom: 24px;    
}

#content .panels .panel .content p {
    margin-bottom: 10px;    
}

#content .panels .panel.news .content .text {
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#content .panels .panel.news .content .text p {
    margin-bottom: 0;
}

#content .panels .panel .content .tumblr {
    line-height: 20px;
    font-family: 'Arial';
    font-size: 11px;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    margin: 0;
    /*z-index: 1000;*/
}

#content .panels .panel .content .tumblr a {
    text-decoration: none;
    color: #999999;    
}

#content .panels .panel .content .tumblr img {
    width: 43px;
    height: auto;
}

#content .panels .panel .content .link-arrow {
    background-image: url("../images/arrow-fw-red.png");
    background-repeat: no-repeat;
    width: 27px;
    height: 22px;
    display: inline-block;
    text-indent: -9999px;
}

#content .panels .panel .content .link-arrow:hover {
    opacity: 0.75;    
}

#content .panels .panel .footer {
    height: 28px;
    line-height: 28px;
    text-align: right;
    margin-bottom: 25px;
}

#content .panels .panel .footer a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    /*text-transform: lowercase;*/
    padding-right: 38px;
    font-size: 25px;
    font-style: italic;
    background-image: url("../images/arrow-fw-red.png");
    background-repeat: no-repeat;
    background-position: right 4px;
    font-weight: normal;
}

#content .panels .panel .footer a:hover {
    opacity: 0.75;    
}

/* content blocks */

#content .content-block {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

#content .content-block .block-header {
    height: 990px;
    width: 100%
}

#content .content-block .block-header.small {
    height: 470px;
}

#content .content-block .block-header.small .header-image{
    height: 470px;
}

#content .content-block .block-header .header-image{
    width: 100%;
    height: 990px;
    background-repeat: no-repeat;
    /*background-position: center top;*/
    background-position: center center;
    left: 0;
    position: absolute;
    z-index: 0;
    background-attachment: scroll;
    background-size: cover;
    overflow: hidden;
}

#content .content-block .block-header .header-video{
    position: absolute;
    width: 100%;
    height: 100%;
}

#content .content-block .block-header .header-video video{
    position: absolute;
    top: 50%;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-size: cover;
    transform: translateY(-50%);
}

/*#content .content-block .block-header .header-image.kamionparkolo.image-1,
#content .content-block .block-header .header-image.kamionparkolo.image-2{
    height: 470px;
}*/

#content .content-block .block-header .header-image .header-text {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-style: italic;
    font-size: 48px;
    line-height: 105%;
    /*padding: 252px 0 68px 0;*/
    background-image: url("../images/header-text-gradient.png");
    background-repeat: repeat-x;
    background-position: left bottom;
}

#content .content-block .block-header .header-image.darkened .header-text {
    background-size: 3px;
}

#content .content-block .block-header .header-image .header-text .title {
    font-size: 5vw;
    line-height: 1.25 !important;
    font-weight: bold;
    width: 100%;
    margin-bottom: 60px;
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 520px;*/
}

#content .content-block .block-header .header-image .header-text.szekszard-block-1 .title {
    /*top: 220px;*/
}

#content .content-block .block-header .header-image .header-text.szekszard-block-2 .title {
    /*top: auto;*/
    /*bottom: 88px;*/
}

#content .content-block .block-header .header-image .header-text .subtitle {
    /*max-width: 966px;*/
    width: 100%;
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 68px;*/
    font-size: 1.8vw;
    line-height: 1.25 !important;
}

#content .content-block .block-header .header-image .header-text .subtitle .subtitle-border {
    height: 16px;
    background-image: url("../images/subtitle-border.png");
    background-repeat: no-repeat;
    background-position: center top;
}

#content .content-block .block-header .header-image .header-text .subtitle p {
    padding: 35px 0 45px 0;    
}

#content .content-block .block-header .header-image .header-text .title a,
#content .content-block .block-header .header-image .header-text .subtitle a {
    display: block;    
}

#content .content-block .block-content {
    position: relative;
    padding: 70px 0 85px 0;
}

#content .content-block .block-content p {
    margin-bottom: 28px;    
}

#content .content-block .block-content .content-nav-arrow {
    /*display: block;
    width: 76px;
    height: 76px;
    position: absolute;
    bottom: 21px;
    left: 50%;
    margin-left: -37px;*/
    display: block;
    width: 76px;
    height: 76px;
    position: relative;
    bottom: 0 !important;
    left: 0;
    margin: 30px auto 15px;
}

#content .content-block .block-content .content-nav-arrow.down {
    background-image: url("../images/gabona-black.png");
}

#content .content-block .block-content .content-nav-arrow.down:hover {
    background-image: url("../images/arrow-down-red.png");    
}

#content .content-block .block-content .content-nav-arrow.up {
    background-image: url("../images/arrow-up-black.png");
}

#content .content-block .block-content .content-nav-arrow.up:hover {
    background-image: url("../images/arrow-up-red.png");    
}

#content .content-block .block-content .link-gallery {
    margin: -34px 0 52px 0;
}

#content .content-block .block-content .link-gallery a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding-left: 54px;
    background-image: url("../images/icon-gallery-black.png");
    background-repeat: no-repeat;
    background-position: left top;
    text-align: left;
}

#content .content-block .block-content .link-gallery a:hover {
    background-image: url("../images/icon-gallery-red.png");
}

#content .content-block .block-content .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    width: 100%;
    margin-bottom: 28px;
}

#content .content-block .block-content .video-wrapper  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* content columns */

#content .content-block .block-content .columns-three .column {
    width: 242px;
    float: left;
    margin-right: 120px;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
}

#content .content-block .block-content .columns-three .column h2 {
    font-size: 28px;
    text-transform: none;
    font-weight: normal;
    font-style: italic;    
    border-bottom: 1px solid #000;
    line-height: 32px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    white-space: nowrap;
}

#content .content-block .block-content .columns-three .column h2.small {
    font-size: 22px;    
}

#content .content-block .block-content .columns-three .column:last-child {
    margin: 0;    
}

/*  ----------  FOOTER  ----------  */

#footer {
    min-width: 100%;
    /*max-width: 966px;*/
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.25); /* drop shadow */
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.25); /* drop shadow */
    box-shadow: 0 0 5px rgba(0,0,0,.25); /* drop shadow */
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#footer.closed {
    height: 45px;
}

#footer.open {
    height: 510px;
}

#footer .arrow {
    position: absolute;
    top: -36px;
    right: 0;
    width: 15px;
    height: 17px;
    /*z-index: 1000;*/
}

#footer.open .arrow {
    background-image: url("../images/arrow-down-black.png");
}

#footer.closed .arrow {
    background-image: url("../images/arrow-up-black.png");
}

#footer .arrow:hover {
    opacity: 0.75;
}

#footer .inner {
    width: 100%;
    position: relative;
    min-width: 966px;
}

#footer .panels {
    margin-top: 48px;
    padding-bottom: 33px;
}

#footer .panels .panel {
    width: 292px;
    height: 380px;
    float: left;
    margin-right: 14px;
    border-right: 1px solid #000;
    position: relative;
    padding: 0 20px 0 0;
    font-size: 14px;
    line-height: 24px;
}

#footer .panels .panel.map {
    background-image: url("../images/map-bg.jpg");
    background-repeat: no-repeat;
    background-position: left bottom;    
}

#footer strong {
    font-weight: bold;
}

#footer .panels .panel.map .gmap {
    display: block;
    height: 68px;    
}

#footer .panels .panel.purchase .purchase-box {
    display: block;
    float: left;
    margin: 0 10px 8px 0;
    width: 83px;
}

#footer .panels .panel.purchase .logo-bortarsasag {
    display: block;
    float: left;
    width: 78px;
    height: auto;
    margin: 10px 15px 50px 0;
}

#footer .panels .panel.purchase p {
    margin-bottom: 50px;
}

#footer .panels .panel.contact ul {
    padding-right: 62px;    
}

#footer .panels .panel.contact a {
    font-style: italic;
}

#footer .panels .panel:last-child {
    margin: 0;    
    border: 0 none;
}

#footer .panels .panel h2 {
    margin: -36px 0 16px 0;
}

#footer .panels .panel h2 a {
    font-weight: normal;
    font-style: normal !important;    
}

#footer .panels .panel h2 .arrow {
    display: none;    
}

#footer .panels .panel .fb {
    position: absolute;
    top: 214px;
    left: 0;
    right: 12px;
}

#footer .panels .panel .fb .logo {
    width: 101px;
    height: 34px;
    background-image: url("../images/icon-footer-fb.png");
    background-repeat: no-repeat;
    float: left;
}

#footer .panels .panel .fb .arrow {
    width: 14px;
    height: 18px;
    background-image: url("../images/arrow-down-blue.png");
    background-repeat: no-repeat;
    float: right;
    margin-top: 9px;
}

#footer .panels .panel .fb .like {
    padding-top: 6px;    
}

#footer .copyright {
    background: #f2f2f2;
    color: #9A9A9A;
    font-size: 13px;
    height: 28px;
    line-height: 28px;
    padding: 10px;
    text-align: right;
}

#footer .copyright .admin {
    font-size: 13px;
    text-transform: lowercase;
    border-left: 1px solid #9a9a9a;
    margin-left: 5px;
    padding-left: 5px;
    color: #9a9a9a;
}

/*  ----------  GALLERY  ----------  */

.layout.gallery-page #content {
    width: 100%;
    max-width: 1600px;
    padding-top: 145px;
}

.layout.gallery-page #content .inner {
    width: 100%;
    max-width: 1600px;
}

#content .gallery {
    margin: 0 auto;
    padding: 4px 0;
}

#content .gallery .box {
    float: left;
    margin: 2px;
    background-color: #000;
    background-image: url("../images/loading.gif");
    background-repeat: no-repeat;
    background-position: center;
}

#content .gallery .col-1 {
    width: 156px;
}

#content .gallery .col-2 {
    width: 316px;
}

#content .gallery .col-1.col-large {
    width: 476px;
}

#content .gallery .col-2.col-large {
    width: 956px;
}

#content .gallery .box img {
    max-height: 213px;
    height: 213px;
    width: 100%;
    display: block;
}

#content .gallery .box:hover {
    background-image: url("../images/magnifier.png");
}

#content .gallery .box.col-large:hover {
    background-image: url("../images/loading.gif");
}

#content .gallery .box img:hover {
    opacity: 0.5;
}

#content .gallery .box.col-large img:hover {
    opacity: 1;
}

#content .gallery .col-1.col-large img {
    max-height: 647px;
    height: 647px;
}

#content .gallery .col-2.col-large img {
    max-height: 647px;
    height: 647px;
}

/* Transitions */

.masonry,
.masonry .masonry-brick {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.masonry {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.masonry .masonry-brick {
  -webkit-transition-property: left, right, top;
     -moz-transition-property: left, right, top;
      -ms-transition-property: left, right, top;
       -o-transition-property: left, right, top;
          transition-property: left, right, top;
}


/*  ----------  TUMBLR  ----------  */

/* text */

#content .panels .panel.news .content.regular .text {
    max-height: 196px;
}

/* photo */

#content .panels .panel.news .content.photo .text {
    max-height: 72px;
}

/* link */

#content .panels .panel.news .content.link .text {
    max-height: 240px;
}

/* video */

#content .panels .panel.news .content.video .news-img iframe {
    display: block;
    width: 312px;
    height: 174px;    
}

#content .panels .panel.news .content.video .text {
    max-height: 72px;
}


/*  ----------  WINES  ----------  */

/* list */

#wines {
    margin-top: 145px;
    text-align: left;
    padding-top: 25px;
}

#wines h1 {
    font-size: 86px;
    font-weight: 200;
    font-style: italic;    
    line-height: 100%;
    margin-bottom: 45px;
}

#wines .wine-item {
    width: 294px;
    float: left;
    margin: 0 13px 60px 13px;
}

#wines .wine-item .picture {
    height: 90px;
}

#wines .wine-item .picture a {
    display: block;
}

#wines .wine-item .picture img {
    max-width: 100%;
    max-height: 70px;
}

#wines .wine-item .picture canvas {
    margin-top: -1px;
}

#wines .wine-item .name,
#wines .wine-item .short-description,
#wines .wine-item .link {
    white-space: nowrap;    
    overflow: hidden;
    text-overflow: ellipsis;
}

#wines .wine-item .name {
    font-size: 22px;
    font-style: italic;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 4px;
}

#wines .wine-item .short-description {
    font-size: 16px;    
    margin-bottom: 8px;
    line-height: 22px;
    font-weight: 200;
}

#wines .wine-item .link a {
    text-indent: -9999px;
    display: block;
    width: 17px;
    height: 14px;
    background-image: url("../images/arrow-fw-black-med.png");
    background-repeat: no-repeat;
    background-position: left top;
}

/* detail */

#wrapper #wines-detail {
    margin-top: 145px;    
    padding-top: 25px;
}

#wines-detail {
    text-align: left;
}

#wines-detail .picture {
    float: left;
    height: 530px;
}

#wines-detail .picture .reflect {
    max-width: 100%;
}

#wines-detail .picture img {
    max-height: 530px;    
}

#wines-detail .text {
    float: right;
    width: 505px;    
}

#wrapper #wines-detail .text {
    width: 760px;    
}

#wines-detail .name {
    margin-bottom: 5px;
}

#wines-detail .short-description {
    font-weight: 200;
    font-size: 17px;
    line-height: 24px;
}

.popup-window hr {
    margin: 30px 0;
}

#wines-detail .description {
    font-size: 16px;
    line-height: 24px;    
    font-weight: 200;
}

#wines-detail .description p {
    margin-bottom: 24px;    
}

#wines-detail .button-order {
    position: absolute;
    right: 60px;
    bottom: 45px;
}

#wrapper #wines-detail .button-order {
    position: relative;
    bottom: auto;
    right: auto;
    float: right;
}

/* order */

#wrapper #wines-order {
    margin-top: 145px;    
    padding-top: 60px;
}

#wines-order {
    text-align: left;
}

#wines-order .header {
    margin-bottom: 50px;
}

#wines-order .header .box {
    display: block;
    float: left;
    margin: -36px 0 0 -17px;    
}

#wines-order .header .text {
    float: right;
    width: 420px;    
}

#wrapper #wines-order .header .text {
    width: 660px;    
}

#wines-order .wines .row {
    line-height: 24px;
    margin-bottom: 12px;
}

#wines-order .wines .column-1 {
    width: 500px;
    float: left;    
    font-size: 20px;
}

#wines-order .wines .name {
    float: left;    
}

#wines-order .wines .prize-container {
    float: right;
    font-weight: 400;
    color: #d2232a;    
}

#wines-order .wines .column-2 {
    float: right;    
}

#wines-order .wines input[type="text"],
#wrapper #wines-order .wines input[type="text"] {
    width: 20px;
    height: 20px;
    padding: 2px;
    border: 1px solid #000;
    text-align: center;
    display: inline-block;
    float: none;
}

#wines-order .wines .quantity-label {
    display: inline-block;
    margin-right: 5px;
    font-weight: 400;
}

#wines-order .wines .quantity-button {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center;
}

#wines-order .wines .quantity-button.minus {
    background-image: url("../images/icon-minus.png");    
}

#wines-order .wines .quantity-button.plus {
    background-image: url("../images/icon-plus.png");    
}

#wines-order .form-description {
    margin: 45px 0 35px 0;
}

#wines-order .row {
    margin-bottom: 12px;    
}

#wines-order label {
    display: block;
    float: left;
    width: 125px;
    font-weight: 400;
    line-height: 24px;
    font-size: 15px;
}

#wines-order input[type="text"] {
    width: 565px;    
    height: 22px;
    line-height: 22px;
    float: right;
    display: block;
    padding: 0 5px;
    border: 1px solid #000;
}

#wrapper #wines-order input[type="text"] {
    width: 820px;
}

#wines-order .button-send-order {
    position: absolute;
    right: 60px;
    bottom: 45px;
}

#wrapper #wines-order .button-send-order {
    position: relative;
    bottom: auto;
    right: auto;
    float: right;
}

/*  ----------  POPUP  ----------  */

.popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.75;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.popup-overlay.loading {
    background-image:url("../images/loading-popup.gif");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
}

.popup-window {
    position: absolute;
    left: 50%;
    top: 0;
    width: 824px;
    z-index: 3;
    margin-left: -412px;
    display: none;
    padding: 5% 0;
}

.popup-window-inner {
    position: relative;
    padding: 70px 60px 105px 60px;
    background-color: #fff;
    -moz-box-shadow: 3px 4px 16px rgba(0,0,0,.31); 
    -webkit-box-shadow: 3px 4px 16px rgba(0,0,0,.31);
    box-shadow: 3px 4px 16px rgba(0,0,0,.31); 
    font-size: 16px;
    line-height: 24px;    
    font-weight: 200;
}

.popup-close {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 13px;
    right: 12px;
    text-indent: -9999px;
    background-image: url("../images/button-close.png");
}

#wines-detail hr,
#wines-order hr, 
.popup-window hr {
    margin: 20px 0;
    border: 0;
    height: 1px;
    background-color: #000;
}

#wines-detail h1,
#wines-order h1,
.popup-window h1 {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;    
}

#wines-detail b,
#wines-detail strong,
.popup-window b,
.popup-window strong {
    font-weight: 600;    
}

/*  ----------  FORM ERRORS  ----------  */

.cms-form-errors {
    border: 1px solid #D2232A;
    padding: 10px;
    background-color: rgba(210,35,42,0.1);
    margin-bottom: 20px;
    color: #D2232A;
}

.one-by-third {
    width: 33%;
    float: left;
    text-align: center;
}
.one-by-third h3 {
    font-size: 28px;
    font-weight: normal;
    line-height: 42px;
    margin-bottom: 20px;
    text-transform: none;
}
.one-by-third img {
    max-width: 95%;
    height: auto;
}
.agroQuoteForm {
    padding-top: 30px;
}
.agroQuoteForm dt {
    width: 45%;
    text-align: right;
    float: left;
    padding-right: 10px;
    clear: both;
}
.agroQuoteForm dd {
    display: inline-block;
    float: left;
}
.agroQuoteForm dt,
.agroQuoteForm dd {
    padding: 5px;
}
.agroQuoteForm .measureBlock {
    display: inline-block;
    float: left;
    color: #555;
    height: 42px;
    line-height: 42px;
}
.agroQuoteForm legend {
    width: 100%;
    display: block;
    padding: 40px 0;
    font-size: 28px;
}
.agroQuoteForm label {
    color: #555;
}
.agroQuoteForm select {
    display: block;
    width: 422px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #c9cbcb;
    border-radius: 4px;
    -moz-box-shadow: inset 0 0 0 3px #edeff1;
    -webkit-box-shadow: inset 0 0 0 3px #edeff1;
    box-shadow: inset 0 0 0 3px #edeff1;
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    font-family: Cambria,Arial, Helvetica, sans-serif;
}
.agroQuoteForm input[type="text"] {
    width: 400px;
    height: 32px;
    border: 1px solid #c9cbcb;
    background-color: #fff;
    -moz-box-shadow: inset 0 0 0 3px #edeff1;
    -webkit-box-shadow: inset 0 0 0 3px #edeff1;
    box-shadow: inset 0 0 0 3px #edeff1;
    padding: 0 10px;
    font-family: Cambria,Arial, Helvetica, sans-serif;
    font-size: 14px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    float: left;
}
.agroQuoteForm input[type="submit"] {
    width: 155px;
    height: 41px;
    border: 1px solid #969592;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDE1NyA0MyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGxpbmVhckdyYWRpZW50IGlkPSJoYXQwIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjUwJSIgeTE9IjEwMCUiIHgyPSI1MCUiIHkyPSItMS40MjEwODU0NzE1MjAyZS0xNCUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjOTE4ZDg1IiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYzFiZmI3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxNTciIGhlaWdodD0iNDMiIGZpbGw9InVybCgjaGF0MCkiIC8+Cjwvc3ZnPg==);
    background-image: -moz-linear-gradient(bottom, #918d85 0%, #c1bfb7 100%);
    background-image: -o-linear-gradient(bottom, #918d85 0%, #c1bfb7 100%);
    background-image: -webkit-linear-gradient(bottom, #918d85 0%, #c1bfb7 100%);
    background-image: linear-gradient(bottom, #918d85 0%, #c1bfb7 100%);
    color: #4d4d4d;
    font-weight: bold;
    font-size: 18px;
}
.agroQuoteForm #yesNoSelect_1-element .errors ,
.agroQuoteForm #yesNoSelect_2-element .errors {
    display: block;
    width: 100%;
    float: left;
}
.agroQuoteForm #yesNoSelect_1-element label,
.agroQuoteForm #yesNoSelect_2-element label {
    float: left;
    height: 38px;
    margin-right: 10px;
}
.agroQuoteForm #yesNoSelect_1-element input,
.agroQuoteForm #yesNoSelect_2-element input {
    width: auto;
    float: left;
}
.agroQuoteForm #submit-element {
    width: 100%;
}
.agroQuoteForm ul.cms-form-errors {
    display: none;
}
#content .content-block .block-header .header-image .header-text .title.logisticsTitle {
    line-height: 81px;
    top: 410px;
}
#content .content-block .logisticsContent {
    font-size: 40px;
}
.errors {
    clear: both;
}
.errors li {
    color: #960F0F;
    font-size: 14px;
}
#captcha-element {
    width: 400px;
}
.quoteSuccess {
    margin: 50px 0;
}
.quoteSuccess h1 {
    margin-bottom: 20px;
}

#content .content-block .block-content.contacts-block h3 {
    font-size: 22px;
    line-height: 22px;
}
#content .content-block .block-content.contacts-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
#content .content-block .block-content.contacts-block p {
    font-size: 16px;
    margin-bottom: 15px;
}

#infographics {
    background: #eceef0;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 0;
    padding-bottom: 650px;
}
#infographics .block-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#infographics .graph-element {
    display: inline-block;
    margin: 10px;
}
#infographics .graph-element p {
    color: #6a6a6a;
    font-size: 15px;
    margin-top: 50px;
    border-top: 1px solid #6a6a6a;
    padding-top: 20px;
    line-height: 18px;
}
#content .content-block .munkatars1 .block-header .header-image .header-text .title {
    top: 415px;
    line-height: 81px;
}
#content .content-block .raktar1 .block-header .header-image .header-text .title {
    font-size: 62px;
    line-height: 71px;
    top: 415px;
}
.printedBlock {
    margin-bottom: 20px;
}
.printedBlock li a img {
    height: auto;
    margin: 0px 0 0 2px;
    max-width: 27px;
}
.printedBlock li {
    background: none repeat scroll 0 0 #DFDFDF;
    border: 1px solid #D1D1D1;
    display: inline-block;
    float: left;
    height: 32px;
    /* line-height: 24px; */
    margin: 0 10px 10px 0;
    padding-top: 6px;
    text-align: center;
    width: 36px;
}
.one-by-four {
    float: left;
    width: 23%;
    text-align: center;
    margin: 0 1%;
	line-height: 22px;

}
.one-by-four img {
    margin-bottom: 30px;
    max-width: 100%;
}
.one-by-four h3 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 30px;
    text-transform: none;
}
.one-by-four p {
    font-size: 14px;
    text-align: justify;
}

#content .content-block #agrar-kulkereskedelem .block-header .header-image .header-text h1.title {
    line-height: 80px;
    top: 440px;
}
#agrar-kulkereskedelem .subtitle,
#agrar-kulkereskedelem h1 {
    z-index: 10;
}
.floatingHand {
    background: url("../images/floating_hand.png") no-repeat;
    width: 522px;
    height: 627px;
    position: absolute;
    right: 0;
    bottom: -100px;
}
#svab img {
    max-width: 100%;
}
.cms-dialog.ui-dialog textarea.cke_source {
    font-family: 'Consolas', 'Courier New', Monospace;
    font-size: 14px;
}
#content .content-block #terkep .header-image {
    height: auto !important;
}
#terkep .header-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
#terkep .mapAnimation img {
    width: 20%;
}
#terkep img.arrow {
    position: absolute;
}
#terkep img.arrow1 {
    bottom: 50%;
    right: 34%;
    width: 12%;
}
#terkep img.arrow2 {
    bottom: 50%;
    right: 34%;
    width: 28%;
}
#terkep img.arrow3 {
    bottom: 50%;
    right: 34%;
}
#terkep img.arrow4 {
    bottom: 50%;
    right: 34%;
    width: 15%;
}
#terkep img.arrow5 {
    bottom: 49.4%;
    right: 34%;
    width: 8%;
    z-index: 1;
}
#terkep img.arrow6 {
    bottom: 49.4%;
    right: 34%;
    width: 19%;
    z-index: 0;
}
#terkep img.arrow7 {
    bottom: 49.4%;
    right: 33%;
    width: 24%;
}
#terkep img.arrow8 {
    top: 44%;
    right: 34%;
    width: 21%;
    transform-origin:100% 0%;
    -webkit-transform-origin-x: 100%;
    -webkit-transform-origin-y: 0%;
    -moz-transform-origin-x: 100%;
    -moz-transform-origin-y: 0%;
    -ms-transform-origin:100% 0%;
}
#terkep img.arrow9 {
    top: 44%;
    right: 34%;
    width: 31%;
    transform-origin:100% 0%;
    -webkit-transform-origin-x: 100%;
    -webkit-transform-origin-y: 0%;
    -moz-transform-origin-x: 100%;
    -moz-transform-origin-y: 0%;
    -ms-transform-origin:100% 0%;
}

#terkep img.arrow10 {
    top: 46%;
    left: 61.6%;
    width: 4%;
    transform-origin:100% 0%;
    -webkit-transform-origin-x: 100%;
    -webkit-transform-origin-y: 0%;
    -moz-transform-origin-x: 100%;
    -moz-transform-origin-y: 0%;
    -ms-transform-origin:100% 0%;
}

#terkep img.arrow11 {
    bottom: 48%;
    right: 34%;
    width: 7%;
    z-index: 2;
}
#terkep img.arrow12 {
    top: 46%;
    right: 32.7%;
    width: 4%;
    z-index: 2;
    transform-origin:50% 0%;
    -webkit-transform-origin-x: 50%;
    -webkit-transform-origin-y: 0%;
    -moz-transform-origin-x: 50%;
    -moz-transform-origin-y: 0%;
    -ms-transform-origin:50% 0%;
}
#terkep img.arrow13 {
    top: 44%;
    right: 30%;
    width: 6%;
    transform-origin: 0% 0%;
    -webkit-transform-origin-x: 0%;
    -webkit-transform-origin-y: 0%;
    -moz-transform-origin-x: 0%;
    -moz-transform-origin-y: 0%;
    -ms-transform-origin: 0% 0%;
}
#terkep img.arrow14 {
    top: 34%;
    right: 32.8%;
    width: 4%;
    z-index: 3;

    transform-origin: 50% 100%;
    -webkit-transform-origin-x: 50%;
    -webkit-transform-origin-y: 100%;
    -moz-transform-origin-x: 50%;
    -moz-transform-origin-y: 100%;
    -ms-transform-origin:50% 100%;
}
#terkep .mapAnimation .center {
    left: 60.9%;
    position: absolute;
    top: 37%;
    width: 8%;
    z-index: 100;
}
.mapAnimation .arrow {
    display: none;
}
.mapAnimation.active .arrow {
    display: block;
}
.mapAnimation .arrow {
    -webkit-animation: cssAnimation 1s 1 ease-in;
    -moz-animation: cssAnimation 1s 1 ease-in;
    -o-animation: cssAnimation 1s 1 ease-in;
    transform-origin:100% 100%;
    -webkit-transform-origin-x: 100%;
    -webkit-transform-origin-y: 100%;
    -moz-transform-origin-x: 100%;
    -moz-transform-origin-y: 100%;
    -ms-transform-origin:100% 100%;
}
@-webkit-keyframes cssAnimation {
    from {-webkit-transform: scale(0.1) translate(0px);}
    to {-webkit-transform: scale(1) translate(0px);}
}
@-moz-keyframes cssAnimation {
    from {-moz-transform: scale(0.1) translate(0px);}
    to {-moz-transform: scale(1) translate(0px);}
}
@-o-keyframes cssAnimation {
    from { -o-transform: scale(0.1) translate(0px);}
    to { -o-transform:  scale(1) translate(0px);}
}


/* PALYAZAT */
#palyazat{
    position: absolute;
    right: 0;
    top: 0;
    width: 160px;
}

#palyazat a{
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 70%;
    background: url('../images/logo-szechenyi.png') no-repeat top right;
    background-size: contain;
    cursor: pointer;
}

/* PALYAZAT MFF */
#palyazat-mff{
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
}

#palyazat-mff a{
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 30%;
    background: url('../images/logo-mff.jpg') no-repeat top right;
    background-size: contain;
    cursor: pointer;
}


@media (max-width: 1400px){
    #header{
        padding-top: 90px;
    }
    #header.fixed{
        padding-top: 0;
        margin-top: 0;
    }
    #header .inner{
        margin-left: auto;
    }
}

@media (max-width: 1300px){
    #header .inner{
        padding-right: 170px;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 985px){
    #header .inner{
        padding-right: 0px;
    }
}

@media (max-width: 479px){
    #palyazat{
        width: 110px;
    }
}

/*LIST*/
#content .block-content ul{
    list-style: none outside;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
#content .block-content li{
    position: relative;
    padding-bottom: 5px;
    margin: auto;
}
#content .block-content li:before{
    content: '';
    display: block;
    position: absolute;
    top: 11px;
    left: -10px;
    width: 6px;
    height: 6px;
    background-color: #509236;
    border-radius: 50%;
}

@media (max-width: 479px){
    #content .block-content li:before{
        top: 8px;
    }
}

/* 2023 DESIGN */
.content-block img{
    max-width: 100%;
    height: auto !important;
}
.content-block *{
    box-sizing: border-box;
}

.content-block .background-image{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    overflow: hidden;
    z-index: -1;
}

#szolgaltatasok{

}

#szolgaltatasok .background-image{
    background-image: url("../images/backgrounds/bg-szolgaltatasok.jpg");
    height: 440px;
}

#szolgaltatasok .background-image:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../images/header-text-gradient.png");
    background-repeat: repeat-x;
    background-position: left bottom;
}


#szolgaltatasok .szolgaltatasok-wrapper{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 110px 0;
}

#szolgaltatasok .szolgaltatasok-wrapper .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    min-width: 170px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
}

#szolgaltatasok .szolgaltatasok-wrapper .item:hover{
    opacity: 1;
}

#szolgaltatasok .szolgaltatasok-wrapper .item img{
    transition: all 300ms ease-in-out;
}

#szolgaltatasok .szolgaltatasok-wrapper .item:hover img{
    transform: scale(1.05);
}

#szolgaltatasok .szolgaltatasok-wrapper .item .title{
    color: #fff;
    font-size: 17px;
}


.content-block h3{
    margin-bottom: 30px;
    font-size: 24px;
}

#fizetes-menete{

}

#fizetes-menete .fizetes-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
}

#fizetes-menete .fizetes-wrapper .item{
    width: 33%;
    padding: 0 15px;
}

#fizetes-menete .fizetes-wrapper .item .title{
    font-size: 22px;
    margin-bottom: 30px;
}

#fizetes-menete .fizetes-wrapper .item p{
    margin-bottom: 0;
    text-align: left;
    font-size: 17px;
    line-height: 1.5;
}


#fizetes-menete .links-wrapper,
#helyszin .links-wrapper,
#elerhetosegek .links-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 45px;
}

#helyszin .links-wrapper,
#elerhetosegek .links-wrapper{
    justify-content: space-evenly;
}

#fizetes-menete .links-wrapper a{
    content: '';
    display: inline-block;
    width: 240px;
    height: 71px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 10px;
}

#fizetes-menete .links-wrapper a.appstore{
    background-image: url("../images/logos/logo-appstore.png");
}
#fizetes-menete .links-wrapper a.googleplay{
    background-image: url("../images/logos/logo-googleplay.png");
}

#fizetes-menete .links-wrapper a.appstore.de{
    background-image: url("/static/upload/apple-badge-DE.svg");
}
#fizetes-menete .links-wrapper a.appstore.en{
    background-image: url("/static/upload/apple-badge-ENG.svg");
}
#fizetes-menete .links-wrapper a.googleplay.de{
    background-image: url("/static/upload/google-play-badge-DE.svg");
}
#fizetes-menete .links-wrapper a.googleplay.en{
    background-image: url("/static/upload/google-play-badge-ENG.svg");
}

#helyszin .links-wrapper a,
#elerhetosegek .links-wrapper a{
    display: flex;
    align-items: center;
    font-weight: normal;
}

#helyszin .links-wrapper a img,
#elerhetosegek .links-wrapper a img{
    margin-right: 15px;
}

#helyszin .map-wrapper{
    margin: 60px 0;
}

#helyszin .map-wrapper iframe{
    width: 100%;
}


#elerhetosegek .elerhetosegek-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
}

#elerhetosegek .elerhetosegek-wrapper .item{
    width: 33%;
    padding: 0 15px;
}

#elerhetosegek .elerhetosegek-wrapper .item h4{
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 30px;
}

#elerhetosegek .elerhetosegek-wrapper .item p{
    margin-bottom: 0;
    text-align: center;
    font-size: 17px;
    line-height: 1.5;
}

#elerhetosegek .elerhetosegek-wrapper .item a{
    font-weight: normal;
}


#szallitmanyozas-szamok{
    display: flex;
    flex-wrap: wrap;

}

#szallitmanyozas-szamok .item{
    width: 33%;
    min-width: 220px;
    margin: 10px auto;
    padding: 0 15px;
    text-align: center;
}

#szallitmanyozas-szamok .item .number-wrapper{
    display: flex;
    flex-direction: column;
    padding: 35px 10px;
    font-family: 'Calibri';
    line-height: 1;
    border-top: 5px solid transparent;
    border-bottom: 2px solid #6A6A6A;
}

#szallitmanyozas-szamok .item .number-wrapper .number{
    font-size: 10vw;
}

#szallitmanyozas-szamok .item .number-wrapper .text{
    margin-top: -10px;
    font-size: 3vw;
    line-height: 1;
    font-weight: 500;
}

#szallitmanyozas-szamok .item p{
    margin: 30px 0;
    color: #6A6A6A;
    font-size: 20px;
}


#szallitmanyozas-szamok .item .number-wrapper.kilometer{border-top-color: #ADC23E; color: #ADC23E;}
#szallitmanyozas-szamok .item .number-wrapper.fuvar{border-top-color: #48CB80; color: #48CB80;}
#szallitmanyozas-szamok .item .number-wrapper.tonna{border-top-color: #48CBCA; color: #48CBCA;}