
/* menu */
.topmenu {
   width:255px;
   position: fixed;
   z-index: 100;
   padding-top:35px;
   padding-right:35px;
   top:0;
   bottom: 50px;
   background:#fff;


}
.topmenu__scroller {
   position: relative;
   height: 100%;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}
.topmenu__logo,
.topmenu__icons,
.topmenu__menu {
   margin-left:35px;
}
.topmenu__logo__svg {
   width:82px;
   height:98px;

}
.topmenu__icons {
   margin-top:30px;
   margin-bottom: 20px;
}
.topmenu__icons__item {
   display: inline-block;
   padding:5px 10px 5px 0;
   vertical-align: middle;
}
.topmenu__icons__item--alert {
   display: none;
}
.topmenu__icons__item--hamburger {
   border-right:1px solid #b9b9b9;
}
.topmenu__icons__item--search {
   padding-left:10px;
}

.topmenu__tier1__item {
   display: block;
   position: relative;
   padding-bottom: 15px;
}
.topmenu__tier1__item--current .topmenu__tier2 {
   padding-left:10px;

}
.topmenu__tier1__label {
   color:#555555;
   font-size: 12px;
   font-family: ProximaNova-Bold;
   letter-spacing: 1.8px;
   text-transform: uppercase;
   line-height: 1.2;

}
.topmenu__tier1__item--current .topmenu__tier2__label,
.topmenu__tier1__item--current .topmenu__tier1__label {
   color:#ee2e30;
}


.topmenu__tier2__item {
   padding-top:6px;
}
.topmenu__tier2__item--current {

}
.topmenu__tier2__label {
   font-family: ProximaNova-Regular;
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: 1.8px;
   line-height: 1.3;

}
.topmenu__tier2__item--current .topmenu__tier2__label,
.topmenu__tier2__item--active .topmenu__tier2__label {
   font-family: ProximaNova-Semibold;
}
.topmenu__tier2--hidden {
   display: none;
}
/* end menu */

/* overlay*/
.overlay {
   position: fixed;
   bottom:0;
   top:0;
   width:100%;
   overflow: hidden;
   z-index: 300;
   transition: transform 0.3s ease;
   left:0;
   height: 100vh;
}
.overlay--hidden {
   z-index: -1;
   pointer-events: none;
   visibility: hidden;
   -webkit-transform: translateY(100%);
   -ms-transform: translateY(100%);
   -moz-transform: translateY(100%);
   transform: translateY(100%);

}
.overlay__shadow {
   background:rgba(0,0,0,0.75);
   position: fixed;
   left:0;
   top:0;
   bottom:0;
   z-index: -1;
   width:100%;
}
.overlay__close {
   color:#e8312d;
   position: absolute;
   top: 30px;
   right: 35px;
   transition: all 0.5s ease;
   cursor: pointer;
   outline:0;
   z-index: 1;
   width:32px;
   height: 32px;
}
.overlay__close img {
   width:32px;
   height: 32px;
}
.overlay__iframe {
   width:100%;
   height:100vh;
   height:calc(100vh - 330px);
   overflow-y:auto;
   overflow-x:hidden;
   -webkit-overflow-scrolling: touch;
}

.overlay__close i{
   font-size: 25px;
}
.overlay__content {
   position:relative;
   width:100%;
}
.overlay__inner {
   width: 100%;
   padding:100px 0;
   height:100%;
   height:calc(100% -100px);
   overflow-x:hidden;
   overflow-y:auto;
   -webkit-overflow-scrolling: touch;
}
.overlay__width {
   width:1200px;
   margin:0 auto;
   background:#fff;
   padding:90px 120px;
   position: relative;

}
.overlay__content--old {
   display:none;
}

/* end overlay */
/* search */

.search-module {
   position: fixed;
   z-index: 200;
   top:0;
   bottom: 0;
   left:0;
   width:100%;
   background:rgba(255,255,255,0.95);
   transition: opacity 0.5s ease;
}
.search-module--hidden {
   opacity: 0;
   pointer-events: none;
   z-index: -1;
}
.search-module__content {
   width:100%;
   margin-left:auto;
   margin-right:auto;
   padding:100px 40px;
   position: relative;
   background:#fff;
   border-bottom: 1px solid #ccc;

}
.searchopen {
   font-size: 20px;
   color:#777;

}
.search-module__close {
   font-size: 24px;
   color: #e8312d;
   position: absolute;
   right: 0;
   top:105px;
   width:32px;
   height:32px;

}
.search-module__close img {
   width:32px;
   height:32px;
}

.search__button {
   display: inline-block;
   border:0;
   background: none;
   padding:0;
   margin:0;
}



.search__input {
   width:300px;
   float:left;
   margin-right: 10px;
}
.search__input .inputor {
   width:100%;
}

.searchresults__result {
   margin-bottom: 40px;
}
.searchresults__head {
   font-size: 45px;
   font-family: Rockwell-Bold;
   color:#14284d;
   margin-bottom: 20px;
}
.searchresults__title {
   font-size: 16px;
   font-family: ProximaNova-Semibold;
   line-height: 1.2;
   margin-bottom: 5px;
   color:#14284d;
}
.searchresults__body {
   font-family: ProximaNova-Regular;
   font-size: 14px;
   line-height: 1.4;
}
.searchresults__thumbnail {
   min-width: 1px;
   min-height: 1px;
}
.searchresults__thumbnail img {
   width: 100%;
}
.searchresults .pagination {
   text-align: right;
}
.searchresults .pagination h2 {
   font-size: 24px;
   font-family: Rockwell-Bold;
   margin-bottom: 10px;
}
.searchresults .page-numbers {
   font-family: Rockwell-Bold;
   font-size: 21px;
   display: inline-block;
   padding:3px;
   color:#14284d;
}
.searchresults .page-numbers.current {
   color:#e8312d;
}
.searchresults__noresults {
   color:#e8312d;
   font-size: 16px;
   margin-bottom: 20px;
}

/* end search*/

/* hamburger menu*/

.hamburger-menu {
   width:30px;
   height:25px;
   display: inline-block;
   vertical-align: middle;
   outline:0;
   transition: all 0.5s ease;
   position: relative;

}


.hamburger-menu__bg {
   outline: 0;
   transition: all 0.5s ease;
}
.navTrigger {
   width: 25px;
   height: 20px;
   margin: auto;
   position: absolute;
   left: 0;
   right: 0;
   top: 2px;
   bottom: 0;
}
.navTrigger i {
   background-color: #231f20;
   content: '';
   display: block;
   width: 100%;
   height: 3px;
}

.navTrigger i:nth-child(1) {
   -webkit-animation: outT 0.8s backwards;
   animation: outT 0.8s backwards;
   -webkit-animation-direction: reverse;
   animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
   margin: 3px 0;
   -webkit-animation: outM 0.8s backwards;
   animation: outM 0.8s backwards;
   -webkit-animation-direction: reverse;
   animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
   -webkit-animation: outBtm 0.8s backwards;
   animation: outBtm 0.8s backwards;
   -webkit-animation-direction: reverse;
   animation-direction: reverse;
}
.hamburger-menu--active .navTrigger i:nth-child(1) {
   -webkit-animation: inT 0.8s forwards;
   animation: inT 0.8s forwards;
}
.hamburger-menu--active .navTrigger i:nth-child(2) {
   -webkit-animation: inM 0.8s forwards;
   animation: inM 0.8s forwards;
}
.hamburger-menu--active .navTrigger i:nth-child(3) {
   -webkit-animation: inBtm 0.8s forwards;
   animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM {
   50% {
      -webkit-transform: rotate(0deg);
   }
   100% {
      -webkit-transform: rotate(45deg);
   }
}
@keyframes inM {
   50% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(45deg);
   }
}
@-webkit-keyframes outM {
   50% {
      -webkit-transform: rotate(0deg);
   }
   100% {
      -webkit-transform: rotate(45deg);
   }
}
@keyframes outM {
   50% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(45deg);
   }
}
@-webkit-keyframes inT {
   0% {
      -webkit-transform: translateY(0px) rotate(0deg);
   }
   50% {
      -webkit-transform: translateY(6px) rotate(0deg);
   }
   100% {
      -webkit-transform: translateY(6px) rotate(135deg);
   }
}
@keyframes inT {
   0% {
      transform: translateY(0px) rotate(0deg);
   }
   50% {
      transform: translateY(6px) rotate(0deg);
   }
   100% {
      transform: translateY(6px) rotate(135deg);
   }
}
@-webkit-keyframes outT {
   0% {
      -webkit-transform: translateY(0px) rotate(0deg);
   }
   50% {
      -webkit-transform: translateY(6px) rotate(0deg);
   }
   100% {
      -webkit-transform: translateY(6px) rotate(135deg);
   }
}
@keyframes outT {
   0% {
      transform: translateY(0px) rotate(0deg);
   }
   50% {
      transform: translateY(6px) rotate(0deg);
   }
   100% {
      transform: translateY(6px) rotate(135deg);
   }
}
@-webkit-keyframes inBtm {
   0% {
      -webkit-transform: translateY(0px) rotate(0deg);
   }
   50% {
      -webkit-transform: translateY(-6px) rotate(0deg);
   }
   100% {
      -webkit-transform: translateY(-6px) rotate(135deg);
   }
}
@keyframes inBtm {
   0% {
      transform: translateY(0px) rotate(0deg);
   }
   50% {
      transform: translateY(-6px) rotate(0deg);
   }
   100% {
      transform: translateY(-6px) rotate(135deg);
   }
}
@-webkit-keyframes outBtm {
   0% {
      -webkit-transform: translateY(0px) rotate(0deg);
   }
   50% {
      -webkit-transform: translateY(-6px) rotate(0deg);
   }
   100% {
      -webkit-transform: translateY(-6px) rotate(135deg);
   }
}
@keyframes outBtm {
   0% {
      transform: translateY(0px) rotate(0deg);
   }
   50% {
      transform: translateY(-6px) rotate(0deg);
   }
   100% {
      transform: translateY(-6px) rotate(135deg);
   }
}

/* end hamgburger*/



/* utility */
.share {
   display: inline-block;
   margin-right: 10px;
}
a.share__icon {
   color:#777;
   display: inline-block;
   padding:0 5px;
}
a.share__icon:hover {
   color:#ee2e30;
   opacity: 1;
}
.utility {
   float:right;
}
.utility__tier1 {
   display: inline-block;
}
.utility__tier1__item {
   display: inline-block;
   position: relative;
   padding:10px 20px;
}
.utility .lang_sel_other:visited,
.utility .lang_sel_other,
.utility__tier1__label {
   font-size: 11px;
   color:#555;
   font-family: ProximaNova-Medium;
   text-transform: uppercase;
   letter-spacing: 1.8px;
   position: relative;
}
.lang_sel_list_horizontal a {
   transition: all 0.3s ease;
}
.lang_sel_list_horizontal a:hover {
   opacity: 0.65;
}
.utility__tier1__item--hasSub .utility__tier1__label {
   font-family: ProximaNova-Bold;
}
.has-alerts .utility__tier1__item a[data-post-id="235606"] .utility__tier1__label,
.has-alerts .utility__tier1__item a[data-post-id="29"] .utility__tier1__label,
.utility__tier1__item--current .utility__tier1__label{
   color:#ee2e30;
}
.utility__tier2 {
   position: absolute;
   position: absolute;
   width: 100%;
   background: #fff;
   z-index: 1;
   padding: 20px;
   margin-left: -20px;
}
.utility__tier2__item {
   margin-bottom: 10px;
}
.utility__tier2--hidden {
   display: none;
}
.utility__tier2__label {
   font-size: 11px;
   font-family: ProximaNova-Regular;
   line-height: 1.1;
   color:#ee2e30;
   text-transform: uppercase;
}
.utility__tier2__item--current .utility__tier2__label {
   font-family: ProximaNova-Bold;
}
.lang_sel_list_horizontal {
   display: inline-block;
}
.lang_sel_sel {
   display: none;
}
.has-alerts .utility__tier1__item a[data-post-id="235606"] .utility__tier1__label::before,
.has-alerts .utility__tier1__item a[data-post-id="29"] .utility__tier1__label::before {
   content:"";
   width: 10px;
   height: 10px;
   position: absolute;
   left: -14px;
   top: 3px;
   background: url('../img/icons/alerticon.svg') no-repeat;
   background-size: cover;
   display: inline-block;
}

.topmenu__alert--hidden {
   display: none;
}

.topmenu__alert__close {
   width: 24px;
   height: 24px;
   display: inline-block;
   float: right;
   margin-bottom: 20px;
   margin-top:-10px;
}
.topmenu__alert__close img {
   width: 100%;

}
/* end utility */


/* footer */
.footer {
   background:#14284d;
   position: relative;
   z-index: 200;
}
.footer__wrapper {
   padding: 30px 90px;
}
.footer__menu {
   float: right;
}
.footer__menu__tier1__item {
   display: inline-block;
   padding:0 10px;
}
.footer__menu__tier2--hidden {
   display: none;
}
.footer .lang_sel_other:visited,
.footer .lang_sel_other,
.footer__menu__tier1__label {
   font-size: 9px;
   font-family: ProximaNova-Medium;
   color:#fff;
   letter-spacing: 2px;
   text-transform: uppercase;
}
.footer__sitemap {
   float:left;
   font-size: 10px;
   text-transform: uppercase;
   font-family: ProximaNova-Bold;
   color:#ffffff;
}
.footer__sitemap i {
   margin-left:5px;
   font-size: 14px;
   vertical-align: middle;
}
.footer__bottom {
   border-top:1px solid rgba(255,255,255,0.5);
   padding-top:20px;
   margin-top:20px;
}
.footer__bottom__links {
   display: inline-block;
}
.footer__bottom__link {
   margin-right:30px;
}
.footer__bottom__link,
.footer__copyright {
   color:#ffffff;
   font-size: 11px;
   font-family: ProximaNova-Regular;
}
.footer__copyright {
   display: inline-block;
   float:right;
}
/* end footer */

.ajax-container {
   position: relative;
}
.topmenu__scrollpos {
   width:50px;
   height:50px;
   position: absolute;
   margin-top:10px;
   margin-left:80px;
}
.topmenu__scroll {
   width:50px;
   height:50px;
   display: block;
   transition: background 0.5s ease,  transform 0.5s ease;
   position: absolute;
   top:0;
   left:0;
   border-radius: 50%;
   background:#fff;
   border:1px solid #14284d;
   -webkit-transform: rotate(180deg);
   transform: rotate(180deg);
   text-align: center;
   padding-top:6px;
}
.topmenu__scroll::after {
   content:"";
   width:25px;
   height:33px;

   background:url('../img/icons/scrollArrow.svg') no-repeat;
   background-size: cover;
   display: inline-block;
}
.topmenu__scroll:hover {
   background:#14284d;
}
.topmenu__scroll--up {
   -webkit-transform: rotate(0deg);
   transform: rotate(0deg);
}

.topmenu__scroll--hidden {
   display: none;
}

.breadcrumb__container {
   display: inline-block;
   padding-bottom: 5px;
   margin-bottom: 5px;
   border-bottom: 1px solid #999999;
   color:#999;
   text-transform: uppercase;
}
.breadcrumb__home,
.breadcrumb__parent {
   font-size: 12px;
   color:#999999;
   font-family: ProximaNova-Regular;
}
.breadcrumb__current {
   color:#ee2e30;
   font-size: 12px;
   font-family: ProximaNova-Bold;
}
.breadcrumb__separtor {
   display: inline-block;
   margin:0 5px;
}
.cookie-notice {
   width:100%;
   position: fixed;
   z-index: 300;
   bottom: 0;
   background: #f6f0e6;
   background: rgba(242,233,219, .95);
   padding:10px 20px 20px;
   text-align: center;
}
.cookie-notice__text {
   display: inline-block;
   text-align: right;
   padding-right: 40px;
   font-size: 16px;
   font-family: ProximaNova-Regular;
   line-height: 1.4;
   vertical-align: middle;
   margin-top:10px;
}
.cookie-notice__btn {
   display: inline-block;
   vertical-align: middle;
   margin-top:10px;
}
.cookie-notice--hidden {
   display: none;
}
.button--cookie .button__label {
   font-family: ProximaNova-Bold;
   margin-right: 0;
}
.button--cookie {
   padding: 10px 30px 12px;
}
.cookie-notice + .footer {
   padding-bottom: 100px;
}
.cookie-notice--hidden + .footer {
   padding-bottom: 0px;
}
.cookie-notice p a {
   color: #14284d;
   text-decoration: underline;
   transition: all 0.3s ease;
}
.cookie-notice p a:hover {
   opacity: 0.65;
}
.cookie-table.table td {
   line-height: 1.4;
}
.cookie-table.table td:nth-child(2) {
   font-family: ProximaNova-Regular;
   width:40%;

}
