 body {
  font-family: Arial, sans-serif;
}

/* modal titles + subtitles */

.modal-title, .modal-subtitle{
  text-align: center;
  color: #333;
  margin: 50px auto 0 auto;
} 

.modal-subtitle {
  margin: 15px auto;
  color: #aaa;
}

/* modal panel + button */

#modal-panel {
  max-width: 350px;
  margin: 50px auto 0 auto;
  background: #ddd;
  text-align: center;
}

.button {
  font-size: 16px;
  padding: 10px 15px;
  background-color: #28A3C9;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.button:hover {
  background: #31BED0;
  color: black;
  box-shadow: 0 1px 3px #31BED0;
}

.button:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.2s;
  visibility: hidden;
  opacity: 0;
}

.overlay.blue {
    background: rgba(0,0,0, 0.4);
}

.overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  position: relative;
  margin: 75px auto;
  padding: 20px;
  background:none;
  border:none;
  max-width: 700px;
  box-shadow:none;
}

.popup h2 {
  text-align: center;
  margin-top: 0;
}

/* pop-up close button 'x' */

.popup .close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 50px;
    opacity: 0.8;
    transition: all 200ms;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
	padding: 1px 5px;
    border-radius: 20px;
    color: #fff;
    background-color: #333;
}

.popup .close:hover {
  opacity: 1;
}

.popup .content {
  max-height: 400px;
  overflow: initial;
  text-align: center;
}

.embedded-video {
  width: 560px;
  max-width: 100%;
  height: 315px;
  max-height: auto;
}

/* video button */

.video-button {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  background: white;
  border-radius: 100%;
  background-image: url(https://www.serafinoboots.com/app/themes/serafino/assets/images/play2.png);
}
