/*Layouts css goes here*/
.wp-block-image img {
 height: auto; 
}
.special-rate {
 font-size: 1.4em; 
}

.arrow-link {
 display: flex;
  align-items: center;

}
.arrow-link:after  {
 content:"›";
  color: #345779;
  padding: 5px;
  border-radius: 100px;
  background: white;
  line-height: .5em;
  height: 25px;
  width: 25px;
  margin-left: 10px;
  text-align: center;
}
.product-header .button-secondary {
  color: #345779;
}
.product-header .button-secondary:hover {
 color: white; 
}
.wp-block-search__button {
 color: white; 
}

/*Accordion indicators*/
.panel-title a{
    position: relative;
    left: 1.25em;
}

.panel-title a::before {
    content: " ";
    border-top:  3px solid #999;
    border-right:  3px solid #999;
    display: inline-block;
    width: .75em;
    height: .75em;
    position: absolute;
    left: -1.5em;
    top: 1px;
    transform: rotate(135deg);
    transition: .25s;
}

.panel-title a.collapsed::before {
    transform: rotate(45deg);
    top: 3px;
}

.object-left {
 object-position: left; 
}


ul.list-with-icons {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: -15px;
	margin-right: -15px;
}
.list-with-icons>li {
	display: flex; 
	flex-basis: calc(50% - 30px);
	background: #efefef;
	border-radius: 15px;
	margin: 15px;
	padding: 20px;
  max-width: calc(50% - 30px); /* ie11 border-box fix */
}

.list-with-icons.three-list>li {
 	flex-basis: calc(33% - 30px); 
  max-width: calc(33% - 30px);
}

.list-with-icons.three-list>li img {
 max-width: 100%;
  height: auto;
}

.list-with-icons>li>img {
  width: 20%;
  object-fit: contain;
  margin-right: 15px;
  object-position: top;
  height: 100px;
}
_:-ms-fullscreen, :root .list-with-icons>li>img { height: 70px; } /* ie hack for icons */
.list-with-icons .list-content {
 width:80%; 
}

/* gallery images */

.gallery-item {
 padding-right: 20px;
  text-align: left;
}
.gallery-item img {
 width: 100%;
  height: auto;
}
.gallery-caption {
 background: #eee;
  padding: 10px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  ul.list-with-icons {
    display: block;
  }
  .list-with-icons>li {
   display: block; 
    max-width: 100%;
  }
  .list-with-icons>li>img {
    height: auto;
  }
  .list-with-icons .list-content {
   width:100%; 
  }
  .list-with-icons.three-list>li {
    flex-basis: calc(100%); 
  max-width: calc(100%);
  }
}