#cboxOverlay {
  display: none !important;
}

#colorbox {
  display: none !important;
}

#pd-embed-slider {
  visibility: hidden;
}

.spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  border: 4px solid #e1e1e1;
  border-bottom: 4px solid #e41b65;
  border-top: 4px solid #3d3d3d;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.spinner.for-content {
  position: initial;
  left: initial;
  top: initial;
  margin-left: 0;
  margin-top: 0;
  margin: 0 auto;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform:rotate(360deg);
  }
}