﻿
/* #region GENERAL SETTINGS ============================================================= */

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Nunito+Sans:400,700&subset=latin-ext');
/*
font-family: 'Nunito Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
*/

html, body
{
	background: white;
    color: #7d7d80;
	font-size: 18px;
	font-family: 'Nunito Sans', sans-serif;
}

*
{
	margin: 0;
	padding: 0;
    border: none;
    outline: none;

    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
    -moz-box-sizing: border-box;    /* Firefox 1 - 28 */
    box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

*:focus
{
    outline: none;
}

input, textarea, select
{
    font-family: 'Nunito Sans', sans-serif;
}

a
{
	text-decoration: none;
}

a:hover
{
	text-decoration: none;
}

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

.clear 
{
	width: 100%;
	height: 0px;
	display: block;
	overflow: hidden;
	clear: both;
}

.clear hr
{
	display: none;
}

.floatleft
{
	float: left;
}

.floatright
{
	float: right;
}

.hidden
{
	display: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    opacity: 1;
    color: #7d7d80;
}
::-moz-placeholder { /* Firefox 19+ */
    opacity: 1;
    color: #7d7d80;
}
:-ms-input-placeholder { /* IE 10+ */
    opacity: 1;
    color: #7d7d80;
}
:-moz-placeholder { /* Firefox 18- */
    opacity: 1;
    color: #7d7d80;
}

/* disable text selection */
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}

/* #endregion */

/* #region LAYOUT ======================================================================= */

#page
{
    width: 1860px;
    margin: 30px auto;
    position: relative;
    background: #f9f9f9;
    border-bottom: 1px solid #e8e8e8;
}

#page:before,
#page:after
{
    content: "";

    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    background: #e8e8e8;
}
#page:before
{
    left: 0;
}
#page:after
{
    right: 0;
}

@media screen and (max-width: 1890px)
{
    #page
    {
        width: auto;
        margin: 0px;
    }
}

.center
{
    margin: 0 86px;
    position: relative;
}
.center.white
{
    background: white;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

@media screen and (max-width: 1570px)
{
    .center
    {
        margin: 0 50px;
    }
}

@media screen and (max-width: 700px)
{
    .center
    {
        margin: 0;
    }

    .center.white
    {
        border: none;
    }
}

.centerContent
{
    width: 1220px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 1490px)
{
    .centerContent
    {
        width: auto;
        margin: 0 60px;
    }
}

@media screen and (max-width: 700px)
{
    .centerContent
    {
        margin: 0 40px;
    }
}

.leftSide
{
    width: 49.18%;
    margin-right: 1.64%;
    float: left;
}

.rightSide
{
    width: 49.18%;
    float: left;
}

.leftSide.reverse,
.rightSide.reverse
{
    float: right;
}

@media screen and (max-width: 1350px)
{
    .leftSide
    {
        width: 48.5%;
        margin-right: 3%;
    }

    .rightSide
    {
        width: 48.5%;
    }
}

@media screen and (max-width: 1050px)
{
    .leftSide
    {
        width: 100%;
        margin-right: 0;
        margin-bottom: 80px;
    }

    .rightSide
    {
        width: 100%;
    }
}

/* #endregion */

/* #region MOBILE MENU ICON ============================================================= */

.c-hamburger
{
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
}

.c-hamburger:focus
{
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 15px;
    left: 0px;
    right: 0px;
    height: 5px;
    background: #f1e6e7;

    /*-webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;*/
}

.c-hamburger span::before,
.c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f1e6e7;
    content: "";

    /*-webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition: background 0.5s ease;*/
}

.c-hamburger:hover span,
.c-hamburger:hover span::before,
.c-hamburger:hover span::after,
.c-hamburger.is-active span,
.c-hamburger.is-active span::before,
.c-hamburger.is-active span::after
{
    background: white;
}

.c-hamburger span::before {
  top: -10px;
}

.c-hamburger span::after {
  bottom: -10px;
}

.c-hamburger--htx {
  background: transparent;
}

.c-hamburger--htx span {
  
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  background: transparent;
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s;
}

/* #endregion */

/* #region HEADER ======================================================================= */

header
{
    width: 100%;
    height: 155px;
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 600;

    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    transition: height 0.5s ease;
}
header.fixed
{
    position: fixed;
    top: 0;
}
header.small
{
    height: 100px;
}

header .middle
{
    width: 1860px;
    height: 155px;
    margin: 0 auto;
    position: relative;
    background: rgba(0,0,0,0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8bwwAAjcBNBRvLA0AAAAASUVORK5CYII=);
    background-repeat: repeat-x;
    background-position: 0 bottom;
    background-size: 1px 1px;
    text-align: right;

    -webkit-transition: height 0.5s ease, background 0.5s ease;
    -moz-transition: height 0.5s ease, background 0.5s ease;
    -o-transition: height 0.5s ease, background 0.5s ease;
    transition: height 0.5s ease, background 0.5s ease;
}
header.small .middle
{
    height: 100px;
}
header.fixed .middle
{
    background-color: rgba(0,0,0,0.7);
}

header .mobileMenu
{
    display: inline-block;
    vertical-align: top;
}

header #mobileMenu
{
    display: none;
}

@media screen and (max-width: 1890px)
{
    header
    {
        top: 0;
    }

    header .middle
    {
        width: auto;
    }
}

/* MOBILE MENU INITIALIZATION */
@media screen and (max-width: 1270px) /* 1430px */
{
    header .mobileMenu
    {
        width: 100%;
        height: auto;
        padding: 30px;
        display: none;
        position: absolute;
        left: 0;
        top: 155px;
        background: rgba(0,0,0,0.5);
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8bwwAAjcBNBRvLA0AAAAASUVORK5CYII=);
        background-repeat: repeat-x;
        background-position: 0 bottom;
        background-size: 1px 1px;
        text-align: center;

        -webkit-transition: top 0.5s ease;
        -moz-transition: top 0.5s ease;
        -o-transition: top 0.5s ease;
        transition: top 0.5s ease;
    }
    header.withMenu .mobileMenu
    {
        display: block;
    }
    header.small .mobileMenu
    {
        top: 100px;
    }
    header.fixed .mobileMenu
    {
        background-color: rgba(0,0,0,0.7);
    }

    header #mobileMenu
    {
        position: absolute;
        right: 80px;
        top: 63px;
        display: block;

        -webkit-transition: top 0.5s ease;
        -moz-transition: top 0.5s ease;
        -o-transition: top 0.5s ease;
        transition: top 0.5s ease;
    }
    header.small #mobileMenu
    {
        top: 35px;
    }
}

/*****************************************/

header a.logo
{
    width: 320px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background: white url(/wp-content/uploads/2025/02/mosslogo.png) no-repeat center center;
    background-size: 118px auto;
    text-decoration: none;

    -webkit-transition: height 0.5s ease, background 0.5s ease;
    -moz-transition: height 0.5s ease, background 0.5s ease;
    -o-transition: height 0.5s ease, background 0.5s ease;
    transition: height 0.5s ease, background 0.5s ease;
}

header a.logo:hover
{
    text-decoration: none;
}

header a.logo strong
{
    display: none;
}

@media screen and (max-width: 700px)
{
    header a.logo
    {
        width: 250px;
    }
}

/*****************************************/

header ul
{
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

header ul li
{
    display: inline-block;
    vertical-align: top;
}

/*****************************************/

header ul.menu
{
    padding: 68px 0 0 0;
    font-size: 14px;
    line-height: 29px;

    -webkit-transition: padding 0.5s ease;
    -moz-transition: padding 0.5s ease;
    -o-transition: padding 0.5s ease;
    transition: padding 0.5s ease;
}
header.small ul.menu
{
    padding-top: 40.5px;
}

header ul.menu li
{
    padding: 0 30px;
}

header ul.menu li a
{
    position: relative;
    display: inline-block;
    color: #f1e6e7;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: top;

    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

header ul.menu li a:after
{
    content: " ";

    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 87px;
    display: block;
    overflow: hidden;
    background: #ed1c24;
    opacity: 0;
    
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
header.small ul.menu li a:after
{
    top: 59px;
}

header ul.menu li a:hover:after
{
    opacity: 1;
}

header ul.menu li a:hover,
header ul.menu li a.active,
header ul.menu li.active a,
header ul.menu li.current-menu-item a,
header ul.menu li.current-ancesstor a
{
    color: white;
}

@media screen and (max-width: 1660px)
{
    header ul.menu li
    {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1580px)
{
    header ul.menu li
    {
        padding: 0 10px;
    }
}

/* MOBILE MENU INITIALIZATION */
@media screen and (max-width: 1270px) /* 1430px */
{
    header ul.menu,
    header.small ul.menu
    {
        padding: 10px 0 0 0;
    }

    header ul.menu li
    {
        padding: 10px 25px;
    }

    header ul.menu li a:after
    {
        display: none;
    }
}

@media screen and (max-width: 700px)
{

}

/*****************************************/

header ul.buttons
{
    padding: 47.5px 56px 0 40px;

    -webkit-transition: padding 0.5s ease;
    -moz-transition: padding 0.5s ease;
    -o-transition: padding 0.5s ease;
    transition: padding 0.5s ease;
}
header.small ul.buttons
{
    padding-top: 20px;
}

header ul.buttons li
{
    padding: 0 20px 0 0;
}

header ul.buttons li:last-of-type
{
    padding: 0;
}

header ul.buttons li a.btn
{

}

@media screen and (max-width: 1580px)
{
    header ul.buttons li a.btn
    {
        min-width: 130px;
    }
}

@media screen and (max-width: 1430px)
{
    header ul.buttons
    {
        padding-left: 10px;
        padding-right: 10px;
    }

    header ul.buttons li
    {
        padding-right: 10px;
    }
}

/* MOBILE MENU INITIALIZATION */
@media screen and (max-width: 1270px) /* 1430px */
{
    header ul.buttons,
    header.small ul.buttons
    {
        padding: 40px 0 0 0;
        display: block;
    }
}

/*****************************************/

header ul.lang
{
    width: 87px;
    height: 155px;
    padding: 68px 0 0 0;
    border-left: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    line-height: 29px;
    text-align: center;

    -webkit-transition: padding 0.5s ease, height 0.5s ease;
    -moz-transition: padding 0.5s ease, height 0.5s ease;
    -o-transition: padding 0.5s ease, height 0.5s ease;
    transition: padding 0.5s ease, height 0.5s ease;
}
header.small ul.lang
{
    height: 100px;
    padding-top: 40.5px;
}

header ul.lang li
{

}

header ul.lang li a
{
    color: #f1e6e7;
    font-weight: bold;
    text-transform: uppercase;

    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

header ul.lang li a:hover
{
    color: white;
}

/* center margin resize */
@media screen and (max-width: 1570px)
{
    header ul.lang
    {
        width: 51px;
    }
}

/* ------------------------------------------- */
/* permanently small header */
@media screen and (max-width: 700px)
{
    header,
    header .middle
    {
        height: 100px;
    }

    header a.logo
    {
        width: 250px;
        background-size: auto 60px;
    }

    header .mobileMenu
    {
        top: 100px;
    }
    
    header #mobileMenu
    {
        top: 35px;
    }

    header ul.buttons
    {
        padding-top: 20px;
    }

    header ul.lang
    {
        height: 100px;
        padding-top: 40.5px;
    }
}

/* #endregion */

/* #region FOOTER ======================================================================= */

footer
{

}

/* #region MENUS *************************/

footer .menus
{
    padding-top: 90px;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0px 9px 0px 0px rgba(0, 0, 0, 0.02);
}

footer .menus .halfClear
{
    display: none;
}

footer .menus .col
{
    height: 392px;
    padding: 0 135px 0 20px;
    position: relative;
    float: left;
}
footer .menus .col:after
{
    content: " ";

    width: 135px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mN8/h8AAtMB6KonQukAAAAASUVORK5CYII=);
    background-repeat: repeat-y;
    background-position: center 0;
    background-size: 1px 1px;
}
footer .menus .col1
{
    width: 290px;
    padding-left: 0;
}
footer .menus .col2
{
    width: 310px;
}
footer .menus .col3
{
    width: 465px;
}
footer .menus .col4
{
    width: 155px;
}
footer .menus .col4:after
{
    display: none;
}

footer .menus h5
{
    padding: 0 0 22px 0;
    color: #7d7d80;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer .menus ul
{
    padding: 0 0 40px 0;
    list-style: none;
}

footer .menus ul li
{
    padding: 0 0 22px 0;
    display: block;
    font-size: 16px;
    line-height: 18px;
}

footer .menus ul li a
{
    color: #231f20;
    font-weight: bold;
    text-decoration: none;
}

footer .menus ul li a:hover
{
    text-decoration: underline;
}

footer .menus address
{
    padding: 0 0 36px 0;
    font-size: 16px;
    line-height: 18px;
    font-style: normal;
}

footer .menus address strong
{
    color: #231f20;
}

footer .menus .contactInfo
{
    padding: 0 0 36px 0;
    color: #a0a0a1;
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

footer .menus .contactInfo strong
{
    color: #3e3e40;
    font-weight: bold;
}

footer .menus .contactInfo a
{
    color: #ed1c24;
    text-decoration: none;
}

footer .menus .contactInfo a:hover
{
    text-decoration: underline;
}

footer .menus .contactInfo span
{
    color: #3e3e40;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* #endregion */

/* #region COPYRIGHT *********************/

footer .copyright
{
    padding: 48px 0 36px 0;

    color: #7d7d80;
    font-size: 14px;
    line-height: 31px;
    vertical-align: top;
}

footer .copyright .col
{
    float: left;
}
footer .copyright .col.col1
{
    width: 620px;
}
footer .copyright .col.col2
{
    width: 465px;
}
footer .copyright .col.col3
{
    width: 135px;
}

footer .copyright a,
footer .copyright strong
{
    color: #231f20;
    font-weight: bold;
    text-decoration: none;
}

footer .copyright a:hover
{
    text-decoration: underline;
}

footer .copyright a.logo
{
    width: 48px;
    height: 31px;
    margin: 0 40px 0 0;
    display: inline-block;
    vertical-align: top;
    background: url(/wp-content/uploads/2025/02/mosslogo.png) no-repeat center center;
    background-size: contain;
}

footer .copyright a.logo:hover
{
    text-decoration: none;
}

/* #endregion */

@media screen and (max-width: 1500px)
{
    footer .menus .col
    {
        padding-right: 80px;
        padding-left: 0;
    }

    footer .menus .col:after
    {
        width: 80px;
        right: 20px;
    }

    footer .menus .col1
    {
        width: 24%;
    }
    footer .menus .col2
    {
        width: 25%;
    }
    footer .menus .col3
    {
        width: 38%;
    }
    footer .menus .col4
    {
        width: 13%;
    }

    footer .copyright .col.col1
    {
        width: 49%;
    }
    footer .copyright .col.col2
    {
        width: 38%;
    }
    footer .copyright .col.col3
    {
        width: 13%;
    }
}

@media screen and (max-width: 1220px)
{
    footer .menus .col
    {
        height: auto;
        padding: 0 0 40px 0;
        vertical-align: top;
    }

    footer .menus .col:after
    {
        display: none
    }

    footer .menus .col1,
    footer .menus .col2,
    footer .menus .col3,
    footer .menus .col4
    {
        width: 50%;
        text-align: center;
    }

    footer .menus .halfClear
    {
        display: block;
    }

    footer .copyright
    {
        line-height: 18px;
        text-align: center;
    }

    footer .copyright .col
    {
        float: none;
    }

    footer .copyright .col.col1
    {
        width: 100%;
    }

    footer .copyright .col.col2,
    footer .copyright .col.col3
    {
        width: auto;
        padding: 20px 20px 0 20px;
        display: inline-block;
    }

    footer .copyright a.logo
    {
        margin: 0 auto 10px auto;
        display: block;
    }
}

@media screen and (max-width: 950px)
{
    footer .menus .col1,
    footer .menus .col2,
    footer .menus .col3,
    footer .menus .col4
    {
        width: 100%;
    }
}

/* #endregion */

/* #region SELECT BOX IT ================================================================ */

/* SelectBoxIt container */
.selectboxit-container {
    max-width: 100%;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * { 
    font-size: 18px;
    text-decoration: none;

    /* Prevents text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    outline: none;
    white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
    width: 446px; /* Width of the dropdown button */
    max-width: 100%;
    cursor: pointer;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
    position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
    height: 60px; /* Height of the drop down */
    line-height: 60px; /* Vertically positions the drop down text */
    display: block;
}
.selectboxit-container .selectboxit-options a
{
    height: 40px;
    line-height: 40px;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
    outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    cursor: default;
}

/* Button Text */
.selectboxit-text {
    max-width: 80% !important;
    text-indent: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.selectboxit .selectboxit-option-icon-container {
    margin-left: 14px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
    max-height: 400px;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 100%;  /* Minimum Width of the dropdown list box options */
    *width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
    display: none;
    z-index: 9999999999999;
    text-align: left;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    border-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
    padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
    text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
    padding: 0;
    margin: 0;
    text-indent: 26px; /* Horizontal Positioning of the select box option text */

    margin: 0;
    list-style-type: none;
}
.selectboxit-option:before, .selectboxit-optgroup-header:before
{
    display: none !important;
}

/* The first Drop Down option */
.selectboxit-option-first {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

/* The last Drop Down option */
.selectboxit-option-last {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
    font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
    cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
    /* Positions the down arrow */
    width: 70px;
    position: absolute;
    right: 0;
    background: #ed1c24 url(images/select-arrow.png) no-repeat center center;
    background-size: 14px 8px;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
    /* Horizontally centers the down arrow */
    margin: 0 auto;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
    top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
    float: left;
    display: none !important;
}

.selectboxit-container .selectboxit-option-icon {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
    width: 18px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    height: 100%;
    background-position: center;
    float: left;
}

.selectboxit-rendering {
    display: inline-block !important;
    *display: inline !important;
    zoom: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
    background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
    background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
    color: #7d7d80;
    font-size: 18px;

    background: white;

    box-shadow: 0px 4px 0px 0px rgba(132, 132, 132, 0.25) inset;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    /*background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #cccccc;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-bottom-color: #b3b3b3;*/
}

.selectboxit-btn.selectboxit-open
{
    border-bottom: none;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
    color: #231f20;
}

.selectboxit-btn.selectboxit-enabled:hover .selectboxit-arrow-container,
.selectboxit-btn.selectboxit-enabled:focus .selectboxit-arrow-container,
.selectboxit-btn.selectboxit-enabled:active .selectboxit-arrow-container {
    /*background: url(images/select-arrow-active.png) no-repeat right center;*/
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
    /*color: #333333;*/
    text-decoration: none;
}

.selectboxit-default-arrow {
    display: none;
}

.selectboxit-list {
    background-color: #ffffff;
    /*border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);*/
}

.selectboxit-list .selectboxit-option-anchor {
    color: #231f20;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    
    background: #d8d8d8;
    color: #231f20;
    /*
    color: #ffffff;
    background-color: #0081c2;
    background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
    background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
    background-image: -o-linear-gradient(top, #0088cc, #0077b3);
    background-image: linear-gradient(to bottom, #0088cc, #0077b3);
    background-repeat: repeat-x;*/
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
    color: #231f20;
}

/* #endregion */

/* #region JQUERY UI TABS =============================================================== */

.ui-tabs
{
    width: 100%;
    padding: 0;
    display: block;
    background: rgba(255,255,255,0.6);
}

/*****************************************/

.ui-tabs ul.ui-tabs-nav
{
    margin: 0;
    display: inline-block;
    list-style: none;
    background: #f4f4f4;
    text-align: left;
    vertical-align: top;

    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

.ui-tabs ul.ui-tabs-nav li
{
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: bottom;
    
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

.ui-tabs ul.ui-tabs-nav li:before
{
    display: none;
}

.ui-tabs ul.ui-tabs-nav li a
{
    padding: 19px 20px 19px 20px;
    display: block;
    border: 1px solid #f4f4f4;
    border-bottom: none;
    color: #7d7d80;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

.ui-tabs ul.ui-tabs-nav li a:hover
{
    
}

.ui-tabs ul.ui-tabs-nav li a::after
{
    content: attr(title);
    height: 1px;
    display: block;
    overflow: hidden;
    visibility: hidden;
    color: transparent;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.ui-tabs ul.ui-tabs-nav li.ui-state-active a
{
    border: 1px solid #e8e8e8;
    border-bottom: none;
    background: white;
    color: #3e3e40;
    font-weight: bold;
}

/*****************************************/

.ui-tabs .ui-tabs-panel,
.tabPanel
{
    padding: 26px 40px;
    border: 1px solid #e8e8e8;
    background: white;
	position:relative;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* #endregion */


.filter-year{
	color: #7d7d80;
    font-size: 18px;
    font-family: 'Nunito Sans',sans-serif;
	border: 1px solid #7d7d80;
	display: inline-block;
}
.year-button{
	padding: 4px 8px;
	color: white;
	background: #ED1C24;
    font-size: 14px;
    font-family: 'Nunito Sans',sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-shadow: none;
    -webkit-transition: box-shadow .5s ease;
    -moz-transition: box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    transition: box-shadow .5s ease;
    vertical-align: top;
}
.yearSelect{
	margin-bottom: 20px;
}
.single-dep {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.single-dep:hover, .single-dep:focus, .single-dep:active {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}
.engla {
	background: #904951 url(https://www.mosslogistics.cz/wp-content/uploads/2018/11/all-around-europe-en.png) no-repeat center bottom!important;
}