/* #####################################################################################################
   This stylesheet describes standard components, which stay the same when scaling (colors, looks etc)
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
/*
@import this file directly into your existing Less files to use these mixins
*/
/* Set everything to box-sizing model: Border-box */

* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.notification-banner {
  position: sticky;
  left: 0;
  top: 102px;
  z-index: 109;
  padding: 4px 0 5px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background: #23b628;
  color: white;
}
@media only screen and (min-width: 768px) {
  .notification-banner {
    top: 115px;
  }
}
@media only screen and (min-width: 1024px) {
  .notification-banner {
    top: 44px;
    z-index: 98;
    padding: 8px 0 10px;
  }
}
.notification-banner a {
  color: white;
  text-decoration: underline;
}
.toTopBttn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  backdrop-filter: blur(3px);
  background: white;
  padding: 12px 8px;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
@media only screen and (min-width: 768px) {
  .toTopBttn {
    bottom: 20px;
    right: 20px;
  }
}
.toTopBttn:hover {
  text-decoration: none;
}
.toTopBttn span {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.toTopBttn:before {
  content: "";
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-bottom: 6px solid #f69a0b;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.toTopBttn.active {
  opacity: 1;
  pointer-events: auto;
}
.kiyohBlock {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .kiyohBlock {
    display: inline-block;
    position: absolute;
    right: 250px;
    top: 17px;
  }
}
.kiyohBlock .ratingStars {
  height: 64px;
}
.kiyohBlock .ratingStars .scoreNum {
  width: 64px;
  height: 64px;
  display: inline-block;
  vertical-align: top;
}
.kiyohBlock .ratingStars .scoreNum .score {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.kiyohBlock .ratingStars .scoreNum .score .base {
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
  margin-top: -2px;
  color: black;
}
.kiyohBlock .ratingStars .scoreNum .score .decimal {
  font-size: 14px;
  font-weight: bold;
  margin-top: -5px;
  margin-left: -3px;
  display: inline-block;
  vertical-align: top;
  color: black;
}
.kiyohBlock .ratingStars .text {
  width: 128px;
  height: 64px;
  padding: 5px 10px;
  display: inline-block;
  vertical-align: top;
}
.kiyohBlock .ratingStars .text .countTxt,
.kiyohBlock .ratingStars .text img {
  clear: left;
  display: block;
  line-height: 18px;
  white-space: nowrap;
  color: #505050;
}
.uspWrapperMobile {
  background: #f69a0b;
  width: 100%;
  height: 45px;
}
.uspWrapperMobile ul li {
  height: 45px;
  line-height: 45px;
  display: none;
  float: none;
}
.uspWrapperMobile ul li.active {
  display: block;
}
.uspWrapperMobile ul li:before {
  display: none;
}
.uspWrapperMobile ul li .storeOpeningStatus {
  display: inline-block;
}
.uspWrapperMobile ul li .storeOpeningStatus p {
  margin: 0;
  height: 45px;
  line-height: 45px;
}
.uspWrapper {
  background: #f69a0b;
  width: 100%;
}
.usps {
  color: black;
}
.uspWrapper .usps {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  height: 40px;
  color: white;
}
@media only screen and (min-width: 1024px) {
  .uspWrapper .usps {
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}
.usps.usps--list {
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .usps {
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}
.usps a {
  color: black;
}
.uspWrapper .usps a {
  color: white;
}
.usps li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  vertical-align: middle;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.uspWrapper .usps li {
  text-align: center;
  display: none;
  -webkit-animation: slideIn 500ms ease-in-out;
  -moz-animation: slideIn 500ms ease-in-out;
  -ms-animation: slideIn 500ms ease-in-out;
  -o-animation: slideIn 500ms ease-in-out;
  animation: slideIn 500ms ease-in-out;
}
@media only screen and (min-width: 1024px) {
  .uspWrapper .usps li {
    display: block;
  }
}
.usps li.active {
  display: block;
}
.usps li:before {
  content: "\f046";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: "100px";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: "50px";
  height: "50px";
  line-height: "50px";
  margin-right: 10px;
  position: relative;
}
.ui-datepicker-prev:before {
  position: relative;
  top: 3px;
  left: 5px;
  content: '\f100';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
.ui-datepicker-next:before {
  position: relative;
  top: 3px;
  left: 5px;
  content: '\f101';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: auto;
  height: auto;
  line-height: auto;
}
.ui-state-hover {
  border: none !important;
  right: 0 !important;
  top: inherit !important;
}
@media only screen and (max-width: 1023px) {
  html,
  body {
    margin: 0;
    -webkit-overflow-scrolling: touch;
  }
  html {
    overflow: auto;
  }
}
.printBtn {
  color: #f69a0b;
  text-decoration: underline;
}
/*+++ Default styles and classes +++*/

.searchContainer {
  position: relative;
}
.searchContainer.hasSubmitButton:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7.5px;
  margin: auto;
  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 15px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 15px;
  height: 15px;
  line-height: 15px;
}
@media only screen and (min-width: 768px) {
  .searchContainer.hasSubmitButton:after {
    content: "\f054";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 15px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}
.searchContainer input[type="search"] {
  padding-left: 30px;
}
hr {
  border: 0 none;
  border-bottom: 1px solid #afafaf;
  height: 1px;
  margin: 20px 0;
}
dl {
  line-height: 24px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}
.container:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  *zoom: 1;
}
@media only screen and (min-width: 1024px) {
  .container {
    padding: 0 15px;
  }
}
.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
.uppercase {
  text-transform: uppercase;
}
img.portrait,
img.landscape {
  max-width: 100%;
  max-height: 100%;
}
img:not(.banner__image).portrait,
img:not(.banner__image).landscape {
  width: auto;
  height: auto;
}
.clear {
  clear: both;
  height: 0;
  width: 0;
}
.clearAfter:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  *zoom: 1;
}
.emptyText {
  padding: 20px;
  text-align: center;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .horizontal-scroll {
    overflow-x: auto;
    max-width: 100%;
  }
  .horizontal-scroll td,
  .horizontal-scroll th {
    min-width: 120px;
  }
}
.hidden,
#content .hidden {
  display: none !important;
}
body.contentPage #content img,
body.detailPage #content img {
  max-width: 100%;
  height: auto;
}
.centerImg {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  height: inherit;
  line-height: 100%;
  width: inherit;
}
.centerImg:hover {
  text-decoration: none;
}
.centerImg span {
  display: none;
}
.verticalAlign img {
  max-width: 93%;
  display: inline-block;
  vertical-align: middle;
}
.verticalAlign:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  margin-left: -1px;
  height: 100%;
}
.loadingIcon {
  background: transparent url(https://www.onlineparketshop.nl//images/default/loader.gif) no-repeat center center;
}
.errorTxt {
  color: #e6575a;
  padding: 5px 5px 5px 25px;
  background: #ffdedd url(https://www.onlineparketshop.nl//images/default/message.error.png) no-repeat 5px center;
  background-size: 17px;
  border: 1px solid #e6575a;
  display: block;
  margin: 0 0 1.5%;
}
.blockBg {
  background-color: white;
}
.address {
  border: 1px solid #afafaf;
  padding: 10px 10px 10px 40px;
  margin: 0;
  position: relative;
  display: block;
  color: black;
  overflow: hidden;
}
.address + .address {
  margin-top: 15px;
}
.address .selectAddress {
  display: none;
}
.address .title,
.address .businessHours caption {
  font-weight: bold;
}
.address:hover {
  text-decoration: none;
  color: black;
  border: 1px solid #969696;
}
.address img {
  height: 51px;
  float: right;
  margin-right: 10px;
}
.address:before,
.address.active:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 10px;
  margin: auto;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.address:before {
  width: 14px;
  height: 14px;
  border: 1px solid #afafaf;
}
.address:not(.active):hover:before {
  border-color: #f69a0b;
}
.address.active:after {
  width: 8px;
  height: 8px;
  background: #f69a0b;
  left: 14px;
}
.address.active,
.address.checkedAddress {
  border: 1px solid #969696;
  background-color: #f7f7f7;
}
.address.active .businessHours,
.address.checkedAddress .businessHours {
  display: block;
}
.address .businessHours {
  margin-top: 15px;
  display: none;
}
.address .businessHours caption {
  text-align: left;
}
#overlayBlack {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  content: "";
}
#breadcrumbs {
  font-weight: normal;
  font-size: 12px;
  line-height: 30px;
  margin: 15px 0 0;
  width: 100%;
  color: lightblue;
}
#breadcrumbs a {
  color: #1cd7de;
}
#breadcrumbs a:hover {
  color: black;
}
@media only screen and (min-width: 1024px) {
  #detailNav {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
  }
  #detailNav a {
    color: black;
  }
  #detailNav a:hover {
    text-decoration: underline;
  }
}
/* Table en panel stijling */

table {
  width: 100%;
  border-collapse: collapse;
}
table thead th {
  font-weight: 700;
}
table.borders tr {
  border-top: 1px solid #afafaf;
}
table.borders tr:first-child {
  border: 0 none;
}
table tr th {
  padding: 0 5px 0 0;
  line-height: 20px;
}
table tr td {
  padding: 0;
  line-height: 20px;
}
table tr td + td {
  padding-left: 5px;
}
table.high tr th,
table.high tr td {
  padding: 5px;
  line-height: 30px;
}
table.striped thead tr {
  background: #f7f7f7;
}
table.striped tbody tr:nth-child(odd) {
  background: white;
}
table.striped tbody tr:nth-child(even) {
  background: #f7f7f7;
}
/* Documentlists */

.documentList .documentListItem {
  line-height: 24px;
}
.documentList .documentListItem.docx a:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/document-icons.sprite.png) -10px -140px no-repeat;
}
html.svg .documentList .documentListItem.docx a:before {
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/word.svg) no-repeat center center;
  background-size: 16px 16px;
}
.documentList .documentListItem.pdf a:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/document-icons.sprite.png) -10px -62px no-repeat;
}
html.svg .documentList .documentListItem.pdf a:before {
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/pdf.svg) no-repeat center center;
}
.documentList .documentListItem.xlsx a:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/document-icons.sprite.png) -10px -10px no-repeat;
}
html.svg .documentList .documentListItem.xlsx a:before {
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/excel.svg) no-repeat center center;
}
.documentList .documentListItem.gif a:before,
.documentList .documentListItem.jpg a:before,
.documentList .documentListItem.png a:before,
.documentList .documentListItem.jpeg a:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/document-icons.sprite.png) -10px -36px no-repeat;
}
html.svg .documentList .documentListItem.gif a:before,
html.svg .documentList .documentListItem.jpg a:before,
html.svg .documentList .documentListItem.png a:before,
html.svg .documentList .documentListItem.jpeg a:before {
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/image.svg) no-repeat center center;
}
.documentList .documentListItem.pptx a:before {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/document-icons.sprite.png) -10px -88px no-repeat;
}
html.svg .documentList .documentListItem.pptx a:before {
  background: url(https://www.onlineparketshop.nl//images/modules/documentIcons/powerpoint.svg) no-repeat center center;
}
.documentList .documentListItem > a {
  padding-left: 35px;
  position: relative;
}
.documentList .documentListItem > a:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 2px;
  width: 16px !important;
  height: 15px !important;
}
.documentList .documentListItem:nth-child(odd) {
  background: #bcbcbc;
}
.documentList .documentListItem .documentListFileSize {
  float: right;
  padding-right: 10px;
}
/* normal panel styling */

.panel {
  width: 100%;
  padding: 0 0 5%;
  margin: 0 0 5%;
  border-bottom: 1px solid #afafaf;
}
.panel table {
  width: 100%;
}
.panel.noBorder {
  border: 0 none;
}
.singlePanel {
  width: 100%;
  border: 0 none;
  float: none;
  padding: 0;
}
.panel.noMargin {
  margin: 0;
  padding: 0;
  border: 0 none;
}
/* panel exceptions */

.noMargin,
.business,
.full .business,
.full .noMargin {
  margin: 0 0 5%;
  padding: 0;
}
.noPadding,
.full .noPadding {
  padding: 0;
}
.noBorder,
.full .noBorder {
  border: 0 none;
}
/* ==========================================================================
   Tablet styles
   ========================================================================== */

@media only screen and (min-width: 768px) {
  /* normal panel styling */
  
  .panel {
    width: 50%;
    padding: 0 2% 0 0;
    margin: 0;
    float: left;
    border-bottom: 0 none;
    border-right: 1px solid #afafaf;
  }
  .panel table {
    width: 100%;
  }
  .panel.noMargin {
    margin: 0;
    padding: 0 0 0 1.9%;
    border: 0 none;
  }
  .adressPanels {
    width: 50%;
    float: left;
  }
  .adressPanels .panel {
    width: 98%;
  }
  .noMargin,
  .business,
  .full .business,
  .full .noMargin {
    border-left: 1px solid #afafaf;
    border-right: 0 none;
    margin: 0 0 0 -1px;
    padding: 0 0 0 1.9%;
  }
}
::selection {
  background: #505050;
  /* Safari */
  color: white;
}
::-moz-selection {
  background: #505050;
  /* Firefox */
  color: white;
}
/* ==========================================================================
   Default / Mobile styles
   ========================================================================== */

html,
body,
body > form {
  background-color: white;
  position: relative;
  min-height: 100%;
}
/* Standaard kolommen */

#cols {
  min-height: 200px;
  z-index: 100;
  position: relative;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  #cols {
    margin: 15px auto;
  }
}
#content {
  position: relative;
  padding: 0;
  z-index: 90;
  min-height: 300px;
}
.full #cols #sidecol {
  display: none;
}
.full #cols #content {
  float: none;
  border: 0 none;
}
#sidecol {
  /*display: none;*/
  clear: both;
}
@media only screen and (max-width: 767px) {
  #content a.back {
    display: none;
  }
}
/* ==========================================================================
   Tablet styles
   ========================================================================== */

@media only screen and (min-width: 768px) {
  #overlayBlack {
    display: none;
  }
  #cols {
    z-index: 90;
    position: relative;
    min-height: 400px;
  }
  #cols #content {
    min-height: 600px;
  }
  .ConfigList {
    overflow: hidden;
  }
  #usp {
    overflow: auto;
  }
  #usp li {
    width: auto;
    line-height: 40px;
    height: 40px;
    float: left;
  }
}
/* ==========================================================================
   Desktop styles
   ========================================================================== */

@media only screen and (min-width: 1024px) {
  #usp {
    font-size: 12px;
    overflow: hidden;
  }
  #usp > li {
    float: left;
    margin-right: 0%;
    margin-bottom: 0%;
    width: 33.333333333%;
  }
  .lt-ie9 #usp > li {
    /*IE 8*/
    width: 33.333333333%;
  }
  #usp > li:nth-of-type(n) {
    /*reset if function is called more then once*/
    margin-right: 0%;
  }
  #usp > li:nth-of-type(3n) {
    margin-right: 0;
  }
  #cols {
    width: auto;
    float: none;
    clear: both;
  }
  .socialWrap .newsletterWrap {
    width: 79%;
  }
  .socialWrap .newsletterWrap .newsletterContainer .newsletterTitle {
    font-size: 20px;
  }
  .socialWrap .newsletterWrap .newsletterContainer .newsletterWrapper .row {
    width: 300px;
  }
  .socialWrap .newsletterWrap .newsletterContainer .newsletterWrapper .row input {
    width: 300px;
  }
  .socialWrap .socialIconsWrap {
    width: 19%;
  }
  .socialWrap .socialIconsWrap ul {
    text-align: right;
  }
  #sidecol {
    display: block;
    float: left;
    max-width: 26.828125%;
    margin-bottom: 50px;
  }
  #sidecol #localNav,
  #sidecol #archiveNav {
    background: none;
    padding: 0;
    margin-bottom: 15px;
  }
  #sidecol #localNav ul li a:hover,
  #sidecol #archiveNav ul li a:hover,
  #sidecol #localNav ul li.active > a,
  #sidecol #archiveNav ul li.active > a {
    color: #f69a0b;
  }
  #sidecol #localNav ul li a,
  #sidecol #archiveNav ul li a {
    color: black;
    display: block;
  }
  #sidecol #localNav .ul-1 .li-1 > a,
  #sidecol #archiveNav .ul-1 .li-1 > a {
    line-height: 20px;
    padding: 5px 0;
  }
  #sidecol #localNav .ul-2,
  #sidecol #archiveNav .ul-2 {
    margin: 0 0 10px 15px;
  }
  #sidecol .h3 {
    padding: 0 0 3%;
    margin: 0 0 3%;
  }
  #sidecol ul {
    margin: 0;
    padding-right: 15px;
    list-style: none;
  }
  #content {
    margin: 0;
    width: 72%;
    float: right;
    padding: 3px 0 30px;
  }
  .full #cols #content {
    width: auto;
    margin: 0;
  }
  .full #sidecol {
    display: none;
  }
  .full #content {
    float: none;
  }
}
@media only screen and (min-width: 1280px) {
  .socialWrap .newsletterWrap {
    width: 69%;
  }
  .socialWrap .socialIconsWrap {
    width: 29%;
  }
  #usp li:first-child {
    text-align: left;
  }
  #usp li:first-child + li + li {
    text-align: right;
  }
}
/*---{ Triangulair arrow icon }---------------------------------------------------------*/

.arrow:after,
.arrow:before {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  top: 0;
  left: 0;
  position: absolute;
}
.arrow:after {
  border-width: 13px;
  top: 2px;
  left: 1px;
  border-bottom-color: white;
}
.arrow:before {
  border-width: 14px;
  border-bottom-color: #dddddd;
}
/*---{ maps styles }---------------------------------------------------------*/

#responsiveMaster .gm-style .gm-style-iw,
#responsiveMaster .gm-style .gm-style-iw a,
#responsiveMaster .gm-style .gm-style-iw span,
#responsiveMaster .gm-style .gm-style-iw label,
#responsiveMaster .gm-style .gm-style-iw div {
  font-weight: normal;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
}
.Reviews .header__main .kiyohBlock,
.Reviews #footer .kiyohBlock {
  display: none !important;
}
.Reviews #cols .kiyohBlock {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  display: inline-block !important;
}
#pageContainer {
  padding-top: 102px;
}
@media only screen and (min-width: 768px) {
  #pageContainer {
    padding-top: 115px;
  }
}
@media only screen and (min-width: 1024px) {
  #pageContainer {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .mobilePanel:not(.show) {
    display: none !important;
  }
}
