html,body,div,span,applet,object,iframe,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,label,legend,p,blockquote,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}body{line-height:1;color:black;background:white;}:focus{outline:0;}table{border-collapse:collapse;border-spacing:0;}caption,th,td{text-align:left;font-weight:normal;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul{list-style:none;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}blockquote:before,blockquote:after,q:before,q:after{content:"";}blockquote,q{quotes:"" "";}abbr,acronym{border:0;}

* { box-sizing: border-box; }

body {

  font-size: 16px;
  line-height: 19px;
  font-family: "open-sans",sans-serif;
  background-color: #F1F1F1;

}

.responsive-container {

  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0 auto;
  overflow: hidden;
  background-color: #fff;

}

header {

  position: fixed;
  width: 100%;
  max-width: 1400px;
  background-color: #fff;
  height: 124px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-image: url("../images/nav-background.png?v=4");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  z-index: 9000;
  transition: background-image 0.2s ease;

}

header nav {

  display: block;

}

header nav ul {

  float: right;
  margin-right: 22%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(78% - 350px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#feedback {

  z-index: 9000;
  position: fixed;
  right: 0;
  top: 50%;
  margin-top: -169px;
  -webkit-appearance: none;
  display: block;
  width: 54px;
  padding: 0;
  height: 138px;
  border: none;
  background-color: transparent;
  background-image: url("../images/feedback.png");
  background-size: 54px 138px;
  background-position: 5px 0;

  background-repeat: no-repeat;
  transition: 0.2s ease;

}

#feedback:hover {

  background-position: 0 0;
  cursor: pointer;


}

#feedbackContainer {

  display: block;
  width: 450px;
  position: fixed;
  top: 50%;
  height: 400px;
  margin-top: -200px;
  transform: translate3d(450px,0,0);
  background-color: #ffffff;
  border-radius: 10px 0 0 10px;
  right: 0;
  z-index: 9100;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: 0.3s ease;

}

#feedbackContainer.anon-user {

  height: 500px;

}

#feedbackContainer.active {

  visibility: visible;
  opacity: 1;
  transform: none;

}

#feedbackClose {

  position: absolute;
  left: -54px;
  top: 50%;
  margin: -69px 0 0 0;
  padding: 0;
  -webkit-appearance: none;
  display: block;
  width: 54px;
  height: 138px;
  border: none;
  background-color: transparent;
  background-image: url("../images/feedback-close.png");
  background-size: 54px 138px;
  background-position: 5px 0;

  background-repeat: no-repeat;
  transition: 0.2s ease;

}

#mobileMenuToggle { display: none; }

header nav ul li {

  position: relative;
  padding-bottom: 40px;

}

header nav ul li a {

  font-family: "acumin-pro-condensed",sans-serif;
  text-decoration: none;
  color: #F39213;
  margin: 46px 0 0 0;
  display: block;
  font-size: 20px;

}



header nav ul li.memberportal-link a, header nav ul li.search-link a {

    color: #00527A;

}

header nav ul li.search-link a {

  padding-left: 28px;

}

header nav ul li.search-link a svg {

  position: absolute;
  transform: translate(-28px,0px);

}

#search-bar {

  width: 100%;
    max-width: 1400px;

  position: fixed;
  margin: 0 0 0 0;
  height: 100px;
  background: #F39213;
  z-index: 8500;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  opacity: 0;
  transition: 0.3s ease;

}

#search-bar.active {

  opacity: 1;
  margin-top: 124px;

}

#search-bar input[type="text"] {

  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-size: 20px;
  font-family: "open-sans", sans-serif;
  font-weight: lighter;
  text-align: center;
  color: #ffffff;
  height: 100px;

  width: 100%;

}

#search-bar input[type="submit"] {

  display: none;

}



#search-bar input[type="text"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255,255,255,0.8);
}
#search-bar input[type="text"]::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255,255,255,0.8);
}
#search-bar input[type="text"]:-ms-input-placeholder { /* IE 10+ */
  color: rgba(255,255,255,0.8);
}
#search-bar input[type="text"]:-moz-placeholder { /* Firefox 18- */
  color: rgba(255,255,255,0.8);
}


footer {

  width: 100%;
  padding: 80px 80px 80px 80px;
  background-color: #00527A;
  overflow: hidden;
  position: relative;

}

header nav ul li:hover ul {

  display: block;

}

header nav ul li ul {

  top: 75px;
  left: -90px;
  padding: 10px 0 10px 0;
  display: none;
  position: absolute;
  background: #fff;
  width: 250px;

  border-top: 2px solid #F39213;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);

}

header nav ul li ul li a {

  font-size: 18px;
  margin: 10px 0 10px 0;
  font-weight: 200;

}

header nav ul li ul li {

  float: left;
  clear: both;
  width: 100%;
  text-align: center;
  padding: 0;

}

.sitemap {

  float: left;
  width: 50%;
}

.sitemap h4 {

  font-size: 40px;
  color: #fff;
  font-weight: 600;
  font-family: "acumin-pro-condensed",sans-serif;
  line-height: 35px;
  margin: 0 0 40px 0;

}

.sitemap-column {

  float: left;
  width: 50%;

}

.sitemap-column a {

  float: left;
  width: 100%;
  clear: both;
  color: #7AA4B9;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  font-family: "acumin-pro-condensed",sans-serif;
  display: block;
  margin: 5px 0 5px 0;
}

.sitemap-column a.highlight {

  font-weight: 600;
  color: #fff;

}

.sitemap-column a + a.highlight {

  margin-top: 20px;

}

.sitemap-column a.highlight + a.highlight {

  margin-top: 5px;

}

.footer-info {

  float: left;
  width: 50%;
  border-radius: 6px;
  background-color: #fff;
  height: 390px;
  padding-right: 20px;
  overflow: hidden;

}

  .footer-info blockquote {

    font-size: 13px;
    color: #979799;
    line-height: 120%;

  }

.footer-kaart {

  float: left;
  margin-right: 40px;
  display: block;
  width: 50%;
  background-image: url("../images/kaart.png");
  background-position: center center;
  background-size: cover;
  height: 100%;

}

.footer-info h4 {

  color: #F39213;
  font-weight: 500;
  font-size: 20px;
  margin: 40px 0 0 0;

}

.footer-info p {

  color: #2D3A3E;
  margin: 20px 0 20px 0;

}

.footer-info p strong {

  font-weight: 700;

}

.footer-info a {

color: #F39213;
font-weight: 700;

}

.bottom-hero {

  margin-top: -65px;
  min-height: 200px;
  width: 100%;
  background-image: url("../images/bottom-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0px;
  padding: 150px 0 150px 0;

}


.language-select {

  position: absolute;
  top: 0;
  right: 0;
  width: 15.5%;
  height: 124px;
  padding: 44px 0 0 0;
  text-align: center;


}

.language-select span, .language-select span a {


  color: #fff;
  font-family: "acumin-pro-condensed",sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;

}

.language-select span a.active {

  font-weight: 600;
  text-decoration: underline;

}

.main-logo {

  width: 271px;
  height: 55px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/COIN_logo.png");
  background-repeat: no-repeat;
  background-size: 271px 55px;
  margin: 30px 0 0 40px;

}

#home-hero {

  margin-top: 124px;
  width: 100%;
  height: 580px;
  background-color: #7D7D7D;
  background-image: url("../images/home-hero.jpg?v=2");
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  position: relative;
  padding-right: 120px;

}

.standard-hero {

  margin-top: 124px;
  width: 100%;
  height: 580px;
  background-color: #7D7D7D;
  background-image: url("../images/home-hero.jpg?v=2");
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  position: relative;

}

.main-content.collapsed-hero, body.type-standard .main-content {

  margin-top: -264px;

}

.search-result {

  padding: 30px 30px 10px 30px;
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #979799;
  margin: 0 0 30px 0;
  text-decoration: none;

}

.search-result p {

  margin: 0;

}

.rich-text .search-result-memberportal {

  display: inline-block;
  padding: 30px;
  background-color: #F39213;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;

}

.standard-hero h2 {

	color: #fff;
	font-size: 70px;
	font-family: "acumin-pro-condensed",sans-serif;
	font-weight: 600;
	bottom: 390px;
	left: 80px;
	position: absolute;
	line-height: 50px;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}

#home-hero h2 {

  overflow: hidden;
  display: block;
  position: relative;
  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 80px;
  line-height: 76px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 130px 0 0 78px;
  width: 100%;
  height: auto;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);

}

#home-hero a {

  font-family: "acumin-pro-condensed",sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 38px;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
  margin: 10px 0 0 84px;
  display: inline-block;


}

.main-content {

  overflow: hidden;
  margin: -116px 0 0 0;
  position: relative;
  z-index: 8000;

}


.main-content article {

  background-color: #fff;
  float: left;
  width: 60%;
  position: relative;

}

.main-content aside {

  margin-top: 65px;
  background-color: #00527A;
  width: 40%;
  min-height: 400px;
  display: block;
  float: left;
  position: relative;

}

.rich-text p, .rich-text ul, .rich-text ol {

  font-family: "open-sans",sans-serif;
  font-size: 16px;
  color: #2D3A3E;
  letter-spacing: 0;
  line-height: 26px;
  margin: 5px 0 20px 0;

}

.rich-text ul, .rich-text ol {

	list-style: disc;
	padding-left: 30px;

}

.rich-text h1 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 40px;
  line-height: 33px;
  color: #F39213;
  text-transform: uppercase;
  margin: 40px 0 20px 0;
  font-weight: 600;

}

.rich-text h2 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 30px;
  line-height: 25px;
  font-weight: 600;
  color: #F39213;
  text-transform: uppercase;
  margin: 40px 0 20px 0;

}

.rich-text h3 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 25px;
  color: #2D3A3E;
  text-transform: uppercase;
  margin: 40px 0 20px 0;

}

.rich-text h4 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 22px;
  color: #2D3A3E;
  margin: 40px 0 20px 0;

}

.rich-text h5 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 17px;
  color: #2D3A3E;
  margin: 40px 0 10px 0;

}


.rich-text h6 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #2D3A3E;
  text-transform: uppercase;
  margin: 40px 0 10px 0;

}

.rich-text a {

	color: #F39213;

}

.rich-text img {

  display: block;
  margin: 30px 0 30px 0;
  height: auto;
  max-width: 100%;

}


article.padded-content {

  padding: 80px 80px 60px 80px;

}

article.padded-content h1:first-child { margin-top: 0; }
article.padded-content h2:first-child { margin-top: 0; }
article.padded-content h3:first-child { margin-top: 0; }
article.padded-content h4:first-child { margin-top: 0; }
article.padded-content h5:first-child { margin-top: 0; }
article.padded-content h6:first-child { margin-top: 0; }

.rich-text p strong, .rich-text p em, .rich-text p b {

  font-weight: 700;

}

.rich-text p a {

  color: #F39213;
  font-weight: 700;

}

.coin-diensten-sidebar {

  list-style: none;
  padding: 40px 0 20px 40px;
  margin: 0;

}

.coin-diensten-sidebar li {


  padding: 20px 0 20px 0;
  overflow: hidden;

}

.coin-diensten-sidebar li a {

  color: #fff;
  text-transform: uppercase;
  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;

}

.coin-diensten-sidebar li a:hover {

  opacity: 0.9;

}

.coin-diensten-sidebar li .image-icon {

  margin: -16px 20px 0 0;
  display: block;
  float: left;

}

.sidebar-product {

  width: 100%;
  float: left;
  clear: both;
  padding: 40px 0 0px 40px;
}

.sidebar-product:last-of-type {

  padding-bottom: 40px;

}

.sidebar-product .image-icon {

  margin: -15px 0 0 0px;
  float: left;
  display: block;
  width: 80px;
  height: auto;

}

.sidebar-product .image-icon img {

  display: block;
  width: 55px;
  height: auto;

}


.sidebar-product a {

  color: #fff;
text-transform: uppercase;
font-family: "acumin-pro-condensed", sans-serif;
font-size: 26px;
font-weight: 600;
line-height: 22px;
display: inline-block;
margin: 15px 0 0 0;
text-decoration: none;

}

.sidebar-product a:hover {

  opacity: 0.8;

}

.sidebar-text {

  padding: 40px;

}

.sidebar-text h1 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 40px;
  line-height: 33px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 40px 0 20px 0;
  font-weight: 600;

}

.sidebar-text h2 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 30px;
  line-height: 25px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 40px 0 20px 0;

}

.sidebar-text h3 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 40px 0 20px 0;

}

.sidebar-text h4 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  color: #FFFFFF;
  margin: 40px 0 20px 0;

}

.sidebar-text h5 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 17px;
  color: #FFFFFF;
  margin: 40px 0 10px 0;

}


.sidebar-text h6 {

  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 40px 0 10px 0;

}

.sidebar-text p {

  font-size: 14px;
  color: #fff;
  margin: 20px 0 20px 0;

}

.sidebar-text > *:first-child { margin-top: 0; }
.sidebar-text > *:last-child { margin-bottom: 0; }



.sidebar-text a {

  color: #ffffff;

}

.sub-content {

  overflow: hidden;
  display: block;
  position: relative;
  margin: 120px 0 0 0;

}


.sub-content aside {

  float: left;
  width: 40%;
  min-height: 270px;
  display: block;
  position: relative;
  background-color: RGBA(243, 146, 19, 0.9);
  margin-top: 65px;

}


.sub-content article {

  float: left;
  width: 60%;
  min-height: 525px;
  display: block;
  position: relative;
  background-color: rgba(255,255,255,0.98);

}

.main-content article.full-width {

  width: 100%;

}

.shortcuts {

  width: 100%;
  overflow: hidden;

}

.shortcuts a {

  padding: 40px 0 40px 40px;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-family: "acumin-pro-condensed",sans-serif;
  font-size: 28px;
  line-height: 25px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  background-image: url("../icons/shortcuts-arrow.png");
  background-position: right center;
  background-repeat: no-repeat;

}

.shortcuts a span {

  font-weight: 300;
  font-size: 24px;
  color: RGBA(250, 217, 174, 1.00);

}


table {

  width: 100%;
  margin: 30px 0 30px 0;

}

table tr:nth-of-type(even) {

  background-color: #F3F3F3;

}

table tr td {

  padding: 10px 14px 10px 14px;
  vertical-align: top;

}

table tr td p:first-of-type { margin-top: 0; }
table tr td p:last-of-type { margin-bottom: 0; }

table tr td:last-of-type {

  text-align: right;
  border-right: 2px solid #F3F3F3;

}

table tr td:first-of-type { border-left: 2px solid #F3F3F3; } 

table tr:first-of-type td:last-of-type { border-right: 0; }
table tr:first-of-type td:first-of-type { border-left: 0; }

table tr:last-of-type td { border-bottom: 2px solid #F3F3F3; }



.faq-container {

  overflow: hidden;
  display: block;
  margin: 30px 0 20px 0;

}

.faq-container .faq-item {

  border: 1px solid #F39213;
  border-bottom: none;
  padding: 25px 50px 27px 25px;

  background-image: url("../icons/faq-arrow.png?v=2");
  background-position: right center;
  background-repeat: no-repeat;

}

.faq-container .faq-item:last-of-type {

  border-bottom: 1px solid #F39213;

}



.faq-container .faq-item .faq-question {

  color: #F39213;
  font-size: 16px;
  font-weight: 100;
  font-family: "open-sans",sans-serif;
  line-height: 20px;

}


.faq-container .faq-item .faq-answer {

  display: none;
  font-family: "open-sans",sans-serif;
  font-size: 16px;
  color: #2D3A3E;
  letter-spacing: 0;
  line-height: 26px;
  margin: 20px 0 0 0;

}

.faq-answer p:last-child {

  margin-bottom: 0;

}

.faq-container .faq-item.active {

  background-image: url("../icons/faq-arrow-expanded.png?v=2");

}

.faq-container .faq-item:hover:not(.active) {

  background-color: rgba(243, 146, 19, 0.1);
  cursor: pointer;

}


.faq-container .faq-item.active .faq-answer {

  display: block;

}



table.no-borders tr td { border: none; }
table.no-borders tr td:first-of-type { padding-left: 0; }
table.no-borders tr td:last-of-type { padding-right: 0; }

.contact-form {



}


.contact-form fieldset {


}


.contact-form fieldset.half {

  float: left;
  width: 50%;

}

.contact-form fieldset.half:nth-of-type(odd) {

  padding-right: 10px;

}

.contact-form fieldset.half:nth-of-type(even) {

  padding-left: 10px;

}

.contact-form fieldset.full {

  float: left;
  width: 100%;
  clear: both;

}

textarea {

  width: 100%;
  min-height: 190px;
  padding: 20px;
  font-family: "open-sans",sans-serif;
  border: 1px solid #D8D8D8;
  -webkit-appearance: none;
  border-radius: 10px;

}

textarea.expanded {

min-height: 270px;

}

.contact-form input[type="text"] {

  width: 100%;
  padding: 20px;
  font-family: "open-sans",sans-serif;
  border: 1px solid #D8D8D8;
  margin-bottom: 20px;
  -webkit-appearance: none;
  border-radius: 10px;  

}

.contact-form input[type="submit"] {

  width: 100%;
  background: #F39213;
  color: #ffffff;
  font-family: "open-sans",sans-serif;
  font-size: 15px;  
  border: none;
  -webkit-appearance: none;
  padding: 14px 0 14px 0;
  margin: 15px 0 0 0;
  text-align: center;
  border-radius: 10px;

}

.recaptcha-container {

  text-align: center;
  padding: 12px 0 0px 0;

}

.g-recaptcha {

  display: inline-block;

}

.contact-form input.required-alert, .contact-form textarea.required-alert {

  border-color: #b42b3b;
  background-color: #ebc8c4;
  color: #b42b3b;

}


.contact-form .required-alert::-webkit-input-placeholder { 
    color:    #b42b3b;
}
.contact-form .required-alert:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #b42b3b;
   opacity:  1;
}
.contact-form .required-alert::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #b42b3b;
   opacity:  1;
}
.contact-form .required-alert:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #b42b3b;
}
.contact-form .required-alert::-ms-input-placeholder { /* Microsoft Edge */
   color:    #b42b3b;
}



.notification-container {

  position: fixed;
  width: 100%;
  z-index: 8000;
  top: 124px;
  padding: 0px;
  left: 0;

}

.notification {

  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0 auto;
  padding: 40px;
  text-align: center;

}

.notification.green {

  background: #d5e6d3;
  color: #426b3f;
  font-weight: 500;

}


@media screen and (max-width: 1300px) { .language-select { width: 12%; } header nav ul { width: calc(82% - 350px); margin-right: 18%; } }
@media screen and (max-width: 1240px) {

  header { background-image: none; }

  .language-select { width: auto; padding-right: 40px; padding-top: 46px; }
  .language-select span, .language-select span a { color: #00527A; }

  header nav ul {

    margin-right: 12%;
    width: calc(78% - 180px);

  }

  header nav ul li a {

    font-size: 18px;

  }

  .main-logo {

    width: 200px;
    background-size: 100% auto;
    background-position: center left;

  }


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



}

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

  #feedback, #feedbackContainer {

    display: none;

  }

  header nav ul { display: none; }

  header nav.open ul { display: block; }

  header nav ul {

    padding: 20px 0 20px 0;
    width: 100%;
    border-top: 1px dashed #00527A;
    margin: 0;

  }

  header nav ul li {

    width: 100%;
    margin: 0;
    padding: 0;

  }

  header nav ul li a {

    margin: 0;
    padding: 10px 0 10px 0;
    text-align: center;

  }

  header nav.open ul li ul {

    display: none;

  }

  header { height: auto; min-height: 70px; }


  .main-logo {

    width: 160px;
    height: 50px;
    background-size: 160px auto;
    margin: 7px 0 0 20px;

  }

  .language-select {

    float: right;
    width: 90px;
    height: auto;
    padding: 23px 0px 0 0;
    text-align: center;
    right: 75px;

  }

  #home-hero {

    height: auto;
    margin-top: 70px;
    padding: 10vw 7px 10vw 10vw;

  }

  #home-hero h2 {

    font-size: 10vw;
    line-height: 10vw;
    margin: 0px;

  }

  #home-hero a { font-size: 8vw; margin: 10px 0 0 0; line-height: 9vw; }

  .main-content, .sub-content {

  margin: 0 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;

  }

  .main-content article, .sub-content article {

    width: 100%;
    order: 1;
    float: none;
    min-height: 0 !important;

  }

  .main-content aside, .sub-content aside {

    min-height: 0 !important;
    width: 100%;
    order: 2;
    float: none;
    margin-top: 0;

  }

  article.padded-content {

    padding: 40px 40px 30px 40px;

  }

  .bottom-hero {

    margin: 0;
    padding: 0;

  }

  footer {

    padding: 40px;

  }



  .coin-diensten-sidebar {

    padding: 40px;
text-align: center;
  }

  .coin-diensten-sidebar li a {

    font-size: 6vw;

  }

  .coin-diensten-sidebar .image-icon {

    width: 100%;
    text-align: center;
    padding-bottom: 10px;

  }

  .coin-diensten-sidebar .image-icon img {

    display: inline-block;

  }

  .sitemap {

    width: 100%;

  }

  .sitemap-column a {

    font-size: 17px;
    margin: 2px 0 2px 0;

  }

  .footer-info {

    width: 100%;
    margin: 40px 0 0 0;
    height: auto;
    padding-bottom: 20px;


  }

  .footer-kaart {

    width: 100%;
    height: 200px;
    margin: 0 0 40px 0;

  }

  .footer-info h4, .footer-info p { margin-top: 20px; margin-left: 40px; margin-right: 20px; }



  .standard-hero {

    margin: 70px 0 0 0;
    height: 180px;

  }

  body.type-standard .main-content {

    margin: 0;

  }

  #mobileMenuToggle {

    display: block;

  }

  #mobileMenuToggle span:nth-child(1) {
    top: 0px;
  }

  #mobileMenuToggle span:nth-child(2),#mobileMenuToggle span:nth-child(3) {
    top: 18px;
  }

  #mobileMenuToggle span:nth-child(4) {
    top: 36px;
  }

  #mobileMenuToggle.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  #mobileMenuToggle.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #mobileMenuToggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #mobileMenuToggle.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }


#mobileMenuToggle {
  width: 60px;
  height: 45px;

  position: relative;

  float: right;
  margin: 12px 12px 0 0;

  -webkit-transform: rotate(0deg) scale(0.75);
  -moz-transform: rotate(0deg) scale(0.75);
  -o-transform: rotate(0deg) scale(0.75);
  transform: rotate(0deg) scale(0.75);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#mobileMenuToggle span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #F39213;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.sitemap-column {

  width: 100%;
  margin-bottom: 20px;

}

.footer-info blockquote {

  padding: 0 40px 20px 40px;

}

.footer-info { padding-right: 0; margin-top: 10px; }

.sidebar-product a { font-size: 20px; }

.main-content.collapsed-hero, body.type-standard .main-content {

  margin-top: 0 !important;

}

.standard-hero h2 {

  bottom: 40px;
  left: 40px;
  font-size: 30px;

}

.rich-text h2, .sitemap h4 { line-height: 110%; }

#search-bar.active {

margin-top: 70px;

}

#search-bar input[type="text"] { font-size: 16px; }

}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
  
  .main-logo { background-image: url("../images/COIN_logo@2x.png"); }
  #feedback { background-image: url("../images/feedback@2x.png"); }
  #feedbackClose { background-image: url("../images/feedback-close@2x.png"); }


}


