/* Custom CSS for Chris */

/* Images for icons at top */

.imgicon {
    max-height: 40px;
}

/* Images for icons on contact page */

.contactimgicon {
    max-height: 20px;
	grid-row: 1;
	border-right: solid 1px;
	padding-right: 12px;
	color: #257CF5;
}

/* Zoom for affiliations */

.zoom {
    transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.2);
}

.zoomsection {
    overflow-x: visible;
}

/* Coloured background strip */

.colorback {
    padding: 30px 0px;
    background-color: #257CF5;
}

.colorback p, .colorback a, .colorback li {
    color: #fff;
}

.colorback h1 {
    color: #fff;
}

.colorback .heading {
    color: #fff;
	border-bottom: 1px solid #fff;
}

/* Image background strip, put image at 40% opacity */

.imageback {
  padding: 30px 0px;
  background-color: #6d135d;
  background-image: url("../img/background-image1.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.imageback p, .imageback a, .imageback li {
  color: #fff;
}
.imageback h1 {
  color: #fff;
}
.imageback .heading {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* Mobihide and Mobishow */

.mobishow {
  display: none!important;
}

.mobihide {
  display: grid!important;
}

@media (max-width: 600px) {
     .mobishow {
      display: grid!important
      }
     .mobihide {
      display: none!important;
      }
}

/* 1px shadow all around text */

.shadowslide {
text-shadow: -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000;
}

/* Button */
/* HTML <a href="https://book.heygoldie.com/Beauty-for-Yeux" target="_blank"><button class="chameleon">Book Now</button></a> */

.chameleon {

  background-color: #FCE278;
  border: none;
  color: black;
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.3s;

  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05), 
              0 2px 2px rgba(0,0,0,0.05), 
              0 4px 4px rgba(0,0,0,0.05), 
              0 8px 8px rgba(0,0,0,0.05),
              0 16px 16px rgba(0,0,0,0.05);

}


.chameleon:hover {
  background-color: #000;
  color: white; 
  cursor: pointer;
}

/* List with different styling for first and last child, gradient border lines */

.portcullis > :first-child {
	border: 2px solid #E58DA2;
	border-bottom: #E58DA2;
	border-image-slice: 1;
	border-width: 0px 0px 2px 0px;
	border-image-source: linear-gradient(to left, #fff, #E58DA2);
	padding-bottom: 5px!important;
	padding-top: 0px!important;
}

.portcullis li {
	border: 2px solid #E58DA2;
	border-bottom: #E58DA2;
	border-image-slice: 1;
	border-width: 2px 0px;
	border-image-source: linear-gradient(to left, #fff, #E58DA2);
	padding-bottom: 5px;
	padding-top: 5px;
}

.portcullis > :last-child {
	border-bottom: none!important;
	padding-top: 5px!important;
	padding-bottom: 0px!important;
}

/* Remove List Extra Padding */

.gatehouse {
  	margin-block-start: 0px;
  	margin-block-end: 0px;
}

/* Alcove Box section  */

/* HTML
<section class="alcove">
    <div class="workspace">
      <div class="element a5" >
        <div class="element  " >
          <p>My practice is based in Winslow, Buckinghamshire, but thanks to the wonders of virtual meetings, we can work from wherever you are. </p>
        </div>
        <div class="element" >
          <p><b>Want to know more? I don’t blame you.</b></p>
        </div>
        <div class="element">
          <p><b>Book a free Chemistry Call to get the ball rolling. </b></p>
        </div>
        <p><a href="contact.php">
          <button class="btnnew">Book a Chemistry Call</button>
          </a></p>
      </div>
    </div>
  </section>
*/

.alcove {
	background-color: #222;
	padding: 30px 0px;
}

.alcove .workspace {
	background-color: #fff;
	padding: 20px 0;
    border: 0.2rem solid #3dbbff;
}

.alcove .workspace .element {
	text-align: center;
	justify-self: center;
}

/* Bullet Point Image Make 15px */
/*
.pawlist {
  list-style-image: url("../img/pawsmall.png");
}
*/

/* HR with image in middle */
/*
hr { 
    background: url("../img/flower.png") no-repeat top center;
    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
}
hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #1D59A3;
    height: 2px;
    top: 22px;
}
hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
    margin-left: 70px;
}
hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
    margin-right: 70px;
}
*/