/*------------------------------------*\
    VARS
\*------------------------------------*/
/*------------------------------------*\
    MAIN
\*------------------------------------*/
body, html {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #4A4A4A; }

body.fixedBody {
  overflow: hidden; }

a, a:hover {
  color: #B88B00; }

ul, ul li {
  margin: 0;
  padding: 0; }

ol li a,
ol li a:hover {
  text-decoration: none; }

ul.display-posts-listing li {
  list-style: none;
  position: relative;
  margin-left: 25px; }

ul.display-posts-listing li:before {
  content: '\f061';
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: -25px;
  color: #B88B00; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

h1 {
  font-family: NotesEsaBold, 'Fira Sans', Tahoma, Arial;
  font-size: 30px;
  color: #002266; }

h2 {
  font-family: NotesEsaBold, 'Fira Sans', Tahoma, Arial;
  font-size: 22px;
  color: #002266; }

h3, h4, h5, h6 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  color: #B88B00; }

h1.skewBg {
  background-color: #002266;
  color: #ffffff;
  margin: 0 auto;
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  transform: skewX(-30deg);
  margin-bottom: 30px;
  margin-top: 30px; }

h1.skewBg span {
  display: inline-block;
  transform: skewX(30deg); }

.subTitle {
  color: #002266;
  font-size: 24px;
  text-align: center; }

.small {
  font-size: 14px;
  color: #002266; }

.extraSmall {
  font-size: 12px;
  color: #4A4A4A; }

/* buttons */
:focus {
  outline: 0; }

btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none; }

/**/
.btn-ecss-primary,
a.btn-ecss-primary {
  background-color: #B88B00;
  color: #ffffff;
  height: 45px;
  border: none;
  border-radius: 4px;
  padding: .5rem .75rem; }

.btn-ecss-primary:hover,
a.btn-ecss-primary:hover {
  color: #ffffff;
  background: #AB8100; }

.btn-ecss-primary:disabled,
a.btn-ecss-primary:disabled {
  background-color: #d8bd7a;
  color: #ffffff; }

/**/
.btn-ecss-secondary,
a.btn-ecss-secondary {
  background-color: #ffffff;
  color: #002266;
  height: 45px;
  border: 2px solid #002266;
  border-radius: 25px; }

.btn-ecss-secondary:hover,
a.btn-ecss-secondary:hover {
  background-color: #E7EAEC; }

.btn-ecss-secondary:disabled,
a.btn-ecss-secondary:disabled {
  background-color: #ffffff; }

/**/
.btn-ecss-secondary-white,
a.btn-ecss-secondary-white {
  background-color: transparent;
  color: #ffffff;
  height: 45px;
  border: 2px solid #ffffff;
  border-radius: 25px; }

.btn-ecss-secondary-white:hover,
a.btn-ecss-secondary-white:hover {
  background-color: #000000;
  border: 2px solid #000000; }

.btn-ecss-secondary-white:disabled,
a.btn-ecss-secondary-white:disabled {
  background-color: transparent;
  color: #ffffff; }

/**/
.btn-ecss-naked,
a.btn-ecss-naked {
  background-color: transparent;
  color: #ffffff;
  height: 45px;
  border: 2px solid transparent;
  border-radius: 25px; }

.btn-ecss-naked:hover,
a.btn-ecss-naked:hover {
  color: #ffffff; }

/**/
.btn-ecss-arrow,
a.btn-ecss-arrow {
  color: #B88B00;
  text-align: left; }

.btn-ecss-arrow:before,
a.btn-ecss-arrow:before {
  content: '\f061';
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin-right: 10px; }

.arrow-left:before,
a.arrow-left:before {
  content: '\f060'; }

.btn-ecss-arrow:hover,
a.btn-ecss-arrow:hover {
  color: #AB8100; }

.btn-ecss-no-margin,
a.btn-ecss-no-margin {
  padding-left: 0;
  padding-right: 0; }

/**/
a.btn-ecss-pagination {
  color: #B88B00; }

/**/
.btn-ecss-dropdown {
  position: relative;
  background-color: #F2F4F7;
  width: 100%;
  text-align: left;
  font-size: 18px;
  color: #4A4A4A;
  border-radius: 4px;
  box-shadow: 0 2px 0px 0px #002266;
  transition: all 0.4s linear 0s; }

.btn-ecss-dropdown:after {
  content: '\f107';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 15px; }

.btn-ecss-dropdown:hover {
  background-color: #e2e7ed;
  transition: all 0.4s linear 0s; }

.btn-ecss-dropdown.focus, .btn-ecss-dropdown:focus {
  background-color: #e2e7ed;
  box-shadow: 0 2px 0px 0px #002266; }

/*Create ripple effec*/
.ripple,
a.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0); }

.ripple:after,
a.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s; }

.ripple:active:after,
a.ripple:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s; }

/*------------------------------------*\
    MENU
\*------------------------------------*/
.mainNav {
  padding: 0;
  margin: 0;
  border: 0; }

.mainNav a {
  font-size: 16px;
  display: block;
  line-height: 1em;
  text-decoration: none;
  color: #002266;
  padding: 5px 18px;
  text-transform: capitalize; }

.mainNav ul, .mainNav li {
  list-style: none;
  margin: 0;
  padding: 0; }

.mainNav ul {
  position: relative;
  z-index: 597; }

.mainNav ul li {
  float: left;
  min-height: 1px;
  vertical-align: middle; }

.mainNav ul li.hover,
.mainNav ul li:hover {
  position: relative;
  z-index: 599;
  cursor: default; }

.mainNav ul ul {
  display: none;
  position: absolute;
  margin-top: 0;
  top: 100%;
  bottom: 0;
  left: 0;
  z-index: 598;
  min-width: 225px;
  width: 100%;
  background-color: #FFCC33; }

.mainNav ul ul li {
  float: none; }

.mainNav ul ul ul {
  top: 0;
  left: auto;
  right: -99.5%; }

.mainNav ul li:hover > ul {
  display: block; }

/**/
.mainNav > ul {
  *display: inline-block; }

.mainNav:after,
.mainNav ul:after {
  content: '';
  display: block;
  clear: both; }

.mainNav ul li:hover > a,
.mainNav ul li.current_page_item > a {
  color: #ffffff;
  background-color: #B88B00; }

.mainNav ul ul a {
  background-color: #FFCC33;
  color: #002266;
  border-top: 0 none;
  padding: 10px 20px;
  /*   text-transform: lowercase; */ }

.mainNav ul ul ul {
  border-top: 0 none; }

.mainNav ul ul li {
  position: relative; }

.mainNav > ul > li > a {
  line-height: 30px; }

.mainNav ul ul li:last-child > a {
  padding-right: 20px; }

.mainNav ul ul li:hover > a {
  background-color: #B88B00;
  color: #ffffff; }

/*------------------------------------*\
    MOBILE MENU
\*------------------------------------*/
#menuBackdrop {
  display: none;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 99; }

#mobileMenuWrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  background-color: #ffffff;
  overflow-y: auto; }

#mobileMenuWrapper .mobileMenu {
  width: 318px; }

#mobileMenuWrapper .menuHeader {
  background: linear-gradient(90deg, #013C85 0%, #001744 100%);
  border-bottom: 10px solid #FFCC33;
  text-align: center;
  padding: 15px 30px;
  position: relative; }

#mobileMenuWrapper .menuHeader .mobileMenuClose {
  background: transparent;
  border: none;
  position: absolute;
  right: 30px;
  color: #ffffff;
  font-size: 25px;
  top: 30px; }

#mobileMenuWrapper .menuHeader img {
  width: 130px;
  margin-bottom: 15px; }

#mobileMenuWrapper .menuContent {
  background-color: #F2F4F7; }

#mobileMenuWrapper .menuContent ul li a {
  color: #002266;
  border-bottom: 1px solid #002266;
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18px; }

#mobileMenuWrapper .menuContent ul.sub-menu li a {
  font-size: 16px;
  padding-left: 45px; }

#mobileMenuWrapper .menuFooter {
  background-color: #F2F4F7;
  text-align: center;
  padding: 30px; }

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.wrapper {
  position: relative; }

main {
  position: relative;
  overflow: hidden; }

/* header */
.loggedinHeader {
  background-color: #001744;
  color: #ffffff;
  font-size: 12px;
  text-align: right;
  padding: 5px 0; }

.loggedinHeader a {
  text-decoration: none; }

.headerWrapper {
  position: relative;
  z-index: 99; }

.upperHeader {
  background: linear-gradient(90deg, #013C85 0%, #001744 100%);
  color: #ffffff;
  padding: 30px 0; }

.lowerHeader {
  background-color: #FFCC33; }

.logoWrapper img.ecss-logo-desktop {
  width: 100%; }

.logoWrapper img.ecss-logo-mobile {
  display: none;
  height: 45px; }

.siteSearch {
  border-bottom: 2px solid #ffffff;
  margin-top: 5px;
  position: relative; }

.siteSearch input {
  background-color: transparent;
  border: none;
  color: #ffffff;
  padding: 5px 10px;
  font-weight: 300;
  width: calc(100% - 55px);
  border-radius: 4px; }

.siteSearch input::placeholder {
  color: #ffffff;
  opacity: 1; }

.siteSearch button {
  background: transparent;
  border: none;
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  line-height: 35px; }

.toggleWrapper {
  text-align: right; }

.signInButton {
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 60px;
  color: #ffffff;
  padding: 5px 15px;
  margin-top: 4px;
  display: inline-block; }

.signInButton img {
  width: 35px;
  height: auto; }

.signInButton i {
  display: inline-block; }

.signInButton span {
  font-weight: 300;
  display: inline-block; }

#mobileMenuWrapper .signInButton {
  color: #002266;
  border: 1px solid #002266; }

.toggleWrapper .menuToggleButton {
  display: none;
  background: transparent;
  border: none;
  border-radius: 60px;
  color: #ffffff;
  padding: 5px 15px;
  margin-top: 4px;
  margin-left: 15px;
  font-weight: 300; }

/* footer */
.footerWrapper {
  background-color: #002266;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  overflow: hidden; }

.footerWrapper .footer {
  padding-bottom: 60px; }

.upperFooter {
  padding: 90px 0 30px 0;
  position: relative;
  z-index: 5; }

.upperFooter .footerInfo {
  font-size: 14px;
  line-height: 24px; }

.upperFooter .footerInfo img {
  width: 150px;
  height: auto; }

.upperFooter .footerInfo span {
  display: block;
  margin-top: 15px; }

.upperFooter .footerContact {
  font-size: 18px;
  line-height: 28px; }

.upperFooter .footerContact h2 {
  margin-bottom: 15px;
  color: #ffffff; }

.upperFooter .footerMenu {
  font-size: 18px; }

.upperFooter .footerMenu h2 {
  margin-bottom: 15px;
  color: #ffffff; }

.upperFooter .footerMenu ul {
  list-style: none;
  margin-bottom: 30px; }

.upperFooter .footerMenu ul:last-child {
  margin: 0; }

.upperFooter .footerMenu ul li {
  padding-left: 20px;
  position: relative; }

.upperFooter .footerMenu ul li a {
  color: #ffffff;
  text-decoration: none; }

.upperFooter .footerMenu ul li:before {
  content: '\f061';
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 1px;
  transition: all ease 0.4s; }

.upperFooter .footerMenu ul li:hover:before {
  transform: translateX(-5px);
  transition: all ease 0.4s; }

.lowerFooter {
  padding: 15px 60px;
  background-color: rgba(255, 255, 255, 0.1);
  clip-path: polygon(30px 0%, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  z-index: 10; }

/* background circles */
.upperCircle {
  width: 600px;
  height: 600px;
  position: absolute;
  top: 145px;
  right: 0;
  background-image: url("../img/circles.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: -10; }

.lowerCircle {
  width: 600px;
  height: 1200px;
  position: absolute;
  bottom: 100px;
  left: 0;
  background-image: url("../img/circles.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  z-index: -10; }

.footerCircle {
  width: 600px;
  height: 1200px;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/circles-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  z-index: 1; }

.upperColor {
  height: 500px;
  background-color: #F2F4F7;
  position: absolute;
  top: 145px;
  z-index: -20;
  width: 100%; }

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.frontPageImage {
  width: 1000px;
  height: 1000px;
  position: relative;
  right: -500px;
  top: -600px; }

.frontPageImage div {
  width: 1000px;
  height: 1000px;
  border-radius: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important; }

/* frontpage */
.frontpageMainContent {
  padding: 150px 0 90px 0;
  background-color: #F2F4F7; }

.frontpageMainContent .text {
  font-size: 24px;
  line-height: 48px;
  color: #002266; }

.frontpageMainContent .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  border-radius: 100%; }

/* STANDARDS */
.frontpageStandards {
  margin-top: 90px;
  margin-bottom: 120px;
  position: relative;
  z-index: 999; }

.frontpageStandards .singleCard {
  background-color: #F2F4F7;
  border-top: 10px solid #002266;
  border-radius: 4px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  padding: 15px;
  position: relative;
  margin-bottom: 30px;
  transition: all linear 0.4s; }

.frontpageStandards .singleCard:after {
  content: '\f061';
  font-family: "Font Awesome 5 Pro";
  color: #B88B00;
  right: 15px;
  bottom: 15px;
  position: absolute;
  transition: all ease 0.4s; }

.frontpageStandards .singleCard:hover:after {
  transform: translateX(-5px);
  transition: all ease 0.4s; }

.frontpageStandards .singleCard:hover {
  background-color: #e2e7ed;
  cursor: pointer;
  transform: translateY(-2px);
  transition: all ease 0.4s; }

.frontpageStandards .singleCard:active {
  transform: translateY(0px);
  transition: all ease 0.2s; }

.frontpageStandards .singleCard a {
  text-decoration: none; }

.frontpageStandards .singleCard .date {
  height: 21px;
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #4A4A4A; }

.frontpageStandards .singleCard .title {
  display: block;
  color: #002266;
  margin-bottom: 5px; }

.frontpageStandards .singleCard .standard {
  display: block;
  height: 36px; }

/* UPCOMING EVENTS & NEWS */
.frontpageNews {
  margin: 120px 0; }

.frontpageNews h1 {
  margin-bottom: 30px; }

.singleEventCard {
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1), 0 -4px 0px 0px #002266;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 4px;
  transition: all ease 0.4s; }

.singleEventCard:hover {
  background-color: #F2F4F7;
  box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.1), 0 -4px 0px 0px #002266;
  cursor: pointer;
  transform: translateY(-2px);
  transition: all ease 0.4s; }

.singleEventCard a {
  color: #4A4A4A;
  text-decoration: none; }

.singleEventCard .meta {
  font-size: 14px;
  line-height: 17px;
  display: block;
  margin-bottom: 10px; }

.singleEventCard .meta .date {
  background-color: #E7EAEC;
  padding: 4px 10px;
  margin-left: 7px;
  margin-right: 15px;
  transform: skewX(-30deg);
  display: inline-block; }

.singleEventCard .meta .date > span {
  display: inline-block;
  transform: skewX(30deg); }

.singleEventCard .meta .type {
  margin-right: 15px; }

.singleEventCard .title {
  font-size: 22px;
  line-height: 27px;
  display: block; }

.singleEventCard .description {
  font-size: 18px;
  line-height: 24px;
  display: block; }

.singleEventCard .description a {
  display: none; }

.singleNews .text {
  font-size: 18px;
  line-height: 28px; }

.singleNews .text a {
  display: none; }

.singleNews .image img {
  width: 100%;
  height: auto; }

/* REVIEWS */
.frontpageReviews {
  margin: 120px 0; }

ul.reviewList {
  padding: 0;
  margin: 0; }

ul.reviewList li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px; }

ul.reviewList li:before {
  color: #002266;
  content: '\f061';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
  top: 5px;
  transition: all ease 0.4s; }

ul.reviewList li:hover:before {
  transform: translateX(-5px);
  transition: all ease 0.4s;
  color: #B88B00; }

ul.reviewList li a {
  color: #002266;
  font-family: NotesEsaBold;
  font-size: 22px;
  border-bottom: 2px solid #002266;
  text-decoration: none; }

ul.reviewList li:hover a {
  color: #B88B00;
  border-bottom: 2px solid #B88B00;
  transition: all ease 0.4s; }

/* GLOSSARY APPS */
.glossaryApp {
  margin: 120px 0; }

.glossaryApp .glossaryImage {
  position: relative;
  z-index: 99;
  padding: 0;
  padding-top: 60px;
  margin-bottom: -360px; }

.glossaryApp .glossaryImage .image img {
  width: 100%;
  height: auto; }

.glossaryApp .glossaryContent {
  background-color: #F2F4F7;
  padding: 60px 15px; }

.glossaryApp .glossaryContent .links .singleLink {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 15px; }

.glossaryApp .glossaryContent .links .linkImage {
  float: left;
  width: 56px; }

.glossaryApp .glossaryContent .links .linkText {
  float: left;
  width: calc(100% - 56px);
  padding-left: 15px; }

.glossaryApp .glossaryContent .links .linkText span {
  font-size: 14px; }

/*------------------------------------*\
    BASIC PAGE
\*------------------------------------*/
main.basicPage {
  padding-top: 60px; }

.breadcrumbNav {
  padding: 10px 15px;
  margin-bottom: 15px; }

.breadcrumbNav span {
  color: #B88B00;
  font-weight: 500; }

.breadcrumbNav span.noLink,
.breadcrumbNav span a,
.breadcrumbNav span a span {
  color: #B88B00;
  font-weight: 300;
  text-decoration: none; }

.breadcrumbNav span a:hover {
  border-bottom: 1px solid #B88B00; }

.breadcrumbNav i {
  color: #B88B00;
  margin: 0 7px;
  font-size: 14px;
  position: relative;
  top: -1px; }

.sidebar,
.mainContent {
  margin-bottom: 60px; }

.sidebarMenu {
  background-color: #F2F4F7;
  padding: 15px;
  position: relative;
  border-radius: 8px; }

.sidebarMenu .menuTitle {
  font-weight: 500;
  color: #002266;
  margin-bottom: 10px; }

.sidebarMenu .menuTitle:before {
  content: '';
  height: 30px;
  width: 3px;
  background-color: #002266;
  position: absolute;
  left: 0; }

.sidebarMenu ul {
  list-style: none;
  margin-left: 15px; }

.sidebarMenu ul li {
  margin-bottom: 10px; }

.sidebarMenu ul li:last-child {
  margin-bottom: 0; }

.sidebarMenu ul li a:link,
.sidebarMenu ul li a:visited {
  color: #002266;
  text-decoration: none;
  font-size: 18px;
  line-height: 24px; }

.basicPage .mainContent h1 {
  margin-bottom: 20px; }

.basicPage .mainContent ul,
.basicPost .mainContent ul,
.basicPage .mainContent ol,
.basicPost .mainContent ol {
  padding-left: 20px; }

/*------------------------------------*\
    SEARCH RESULT PAGE
\*------------------------------------*/
.searchResultPage .pageTitle h1 {
  margin-bottom: 20px; }

/*------------------------------------*\
    USER REGISTRATION PAGE
\*------------------------------------*/
.page-template-template-user-administration header,
.page-template-template-user-administration footer {
  display: none; }

.userAdminPage .leftBlock {
  padding-top: 30px;
  height: 100vh;
  background-image: url("../img/img-signin-screen.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  border-right: 15px solid #FFCC33; }

.userAdminPage .rightBlock {
  padding-top: 30px;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: auto; }

.userAdminPage .leftBlock .blockHeader {
  color: #ffffff; }

.userAdminPage .leftBlock .blockHeader a {
  color: #ffffff; }

.userAdminPage .leftBlock .blockHeader img {
  height: 40px;
  width: auto; }

.userAdminPage .leftBlock .blockHeader span {
  height: 45px;
  line-height: 45px;
  border-left: 2px solid #ffffff;
  padding-left: 15px;
  display: inline-block; }

.userAdminPage .leftBlock .blockHeader a {
  font-size: 12px;
  line-height: 25px; }

.userAdminPage .rightBlock .blockHeader {
  text-align: right;
  height: 46px; }

.userAdminPage .rightBlock .blockHeader span {
  height: 45px;
  line-height: 45px;
  font-size: 12px;
  display: inline-block; }

.userAdminPage .rightBlock .blockContent {
  padding-top: 90px;
  padding-bottom: 30px; }

/* login */
/*------------------------------------*\
    BASIC POST
\*------------------------------------*/
main.basicPost {
  padding: 60px 0; }

.basicPost .postDate {
  font-size: 14px;
  color: #4A4A4A; }

.basicPost .postTitle {
  margin-bottom: 30px; }

.basicPost .postContent {
  padding: 45px 60px 60px 60px;
  background-color: #ffffff;
  border-top: 3px solid #002664;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom: 3px solid #F2F4F7;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; }

.basicPost .postContent .contentHeader {
  height: 90px;
  text-align: right; }

.basicPost .postContent .contentHeader button {
  margin-top: 21px; }

/*------------------------------------*\
    EVENT POST
\*------------------------------------*/
.eventTable {
  font-size: 14px;
  color: #4A4A4A; }

.eventTable td, .eventTable th {
  padding: 5px; }

/*------------------------------------*\
    MODALS
\*------------------------------------*/
#signInModal .modal-header,
#signInModal .modal-footer {
  border: none;
  padding: 0;
  display: unset; }

#signInModal .modal-header .close {
  color: #002266;
  margin: 0;
  opacity: 1; }

#signInModal .modal-title {
  text-align: center; }

#signInModal .modal-body {
  padding-top: 0; }

.loginGlossary,
.loginTeams {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 30px 15px; }

.loginGlossary > span,
.loginTeams > span {
  display: block;
  margin-bottom: 30px; }

.loginGlossary {
  border-right: 1px solid #F2F4F7; }

/*------------------------------------*\
    FIELDS
\*------------------------------------*/
.tml-field-wrap {
  margin-bottom: 1rem;
  position: relative; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

.tml-field-wrap input[type="text"],
.tml-field-wrap input[type="email"],
.tml-field-wrap input[type="password"],
.tml-field-wrap select {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; }

input[type="text"],
input[type="email"],
input[type="password"] {
  background-color: #F2F4F7;
  box-shadow: 0 2px 0px 0px #002266;
  border: none;
  height: 43px;
  outline: none; }

.input-animate label {
  visibility: hidden;
  height: 20px;
  margin: 0;
  font-size: 12px; }

.input-animate label.show {
  visibility: visible; }

.input-animate input:focus::-webkit-input-placeholder {
  color: transparent; }

.input-animate input:focus:-moz-placeholder {
  color: transparent; }

/* FF 4-18 */
.input-animate input:focus::-moz-placeholder {
  color: transparent; }

/* FF 19+ */
.input-animate input:focus:-ms-input-placeholder {
  color: transparent; }

/* IE 10+ */
input[type="checkbox"] {
  -webkit-appearance: none;
  background-color: #F2F4F7;
  padding: 15px;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  top: 8px; }

input[type="checkbox"]:checked:after {
  font-family: "Font Awesome 5 Pro";
  content: '\f00c';
  font-size: 21px;
  position: absolute;
  top: 0px;
  left: 4px;
  color: #B88B00; }

select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  box-shadow: 0 2px 0px 0px #E7EAEC;
  background-color: #F2F4F7;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

.selectArrow {
  font-family: "Font Awesome 5 Pro";
  content: '\f078';
  font-size: 21px;
  position: absolute;
  top: 43px;
  right: 10px;
  color: #B88B00; }

input.tml-button,
button.tml-button {
  background-color: #B88B00;
  color: #ffffff;
  height: 45px;
  border: none;
  border-radius: 4px;
  padding: .5rem .75rem; }

input.tml-button:hover,
button.tml-button:hover {
  color: #ffffff;
  background: #AB8100; }

ul.tml-links {
  list-style: none; }

.indicator-hint {
  font-size: 12px; }

.tml-lostpassword .tml-user_login-wrap {
  margin-bottom: 5px; }

.tml-lostpassword .tml-submit-wrap {
  margin-top: 15px; }

.anr_captcha_field_div {
  margin-bottom: 15px; }

/*------------------------------------*\
    FONTS
\*------------------------------------*/
@font-face {
  font-family: 'NotesEsaBold';
  font-style: normal;
  src: url("../fonts/esa/NotesEsaBold.ttf"); }
@font-face {
  font-family: 'NotesEsaRegular';
  font-style: normal;
  src: url("../fonts/esa/NotesEsaReg.ttf"); }
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width: 992px) {
  .lowerHeader {
    display: none; }

  .upperHeader {
    border-bottom: 10px solid #FFCC33; }

  .searchWrapper {
    display: none; }

  .toggleWrapper .signInButton {
    border: none; }

  .toggleWrapper .menuToggleButton {
    display: inline-block; }

  .frontPageImage {
    width: 750px;
    height: 750px; }

  .upperCircle {
    top: 115px; } }
@media only screen and (max-width: 768px) {
  .upperHeader {
    padding: 15px 0; }

  .logoWrapper img.ecss-logo-desktop {
    display: none; }

  .logoWrapper img.ecss-logo-mobile {
    display: block; }

  .frontpageMainContent {
    padding: 60px 0 30px 0;
    position: relative;
    z-index: 10; }

  .frontpageMainContent .text {
    font-size: 18px;
    line-height: 28px; }

  .frontPageImage {
    display: none;
    width: 500px;
    height: 500px;
    top: 200px;
    right: -200px; }

  .frontpageNews {
    margin: 60px 0; }

  .frontpageStandards {
    margin-top: 0;
    margin-bottom: 60px; }

  .frontpageReviews {
    margin: 60px 0; }

  .frontpageGlossary {
    margin: 60px 0; }

  .glossaryApp .glossaryImage {
    margin-bottom: 0; }

  .glossaryApp .glossaryContent {
    padding: 30px 15px; }

  .frontpageGlossary .container {
    padding: 0 30px; }

  .frontpageGlossary .glossaryImage {
    padding-top: 0;
    margin-bottom: 0; }

  .frontpageGlossary .glossaryContent {
    padding: 30px 15px; }

  .upperCircle {
    top: 85px; }

  main.basicPost {
    padding: 0; }

  .glossarySearch .subTitle {
    font-size: 18px;
    line-height: 28px; } }
@media only screen and (max-width: 575px) {
  .frontpageStandards .singleCard {
    margin-bottom: 10px; }

  ul.reviewList li {
    margin-bottom: 15px; }

  ul.reviewList li a {
    font-size: 18px;
    line-height: 22px; }

  .frontpageNews .newsWrapper {
    margin-top: 60px; }

  .glossaryApp {
    margin-bottom: 0;
    margin-top: 60px; }

  .glossaryApp .glossaryImage {
    padding: 0; }

  .loginGlossary {
    border: none; }

  .userAdminPage .leftBlock {
    height: 105px; }

  .userAdminPage .rightBlock .blockHeader {
    display: none; }

  .userAdminPage .rightBlock .blockContent {
    padding-top: 0; }

  h1.skewBg {
    background-color: transparent;
    color: #002266;
    padding: 0; }

  .upperFooter {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 60px; } }
@media only screen and (max-width: 480px) {
  .basicPost .postContent {
    padding: 0 30px 60px 30px; } }
@media only screen and (max-width: 380px) {
  .toggleWrapper .signInButton {
    padding-left: 0; }

  .toggleWrapper .menuToggleButton {
    margin-left: 0;
    padding-right: 0; } }
/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }

/*# sourceMappingURL=main.css.map */
