﻿#page-blocks-container {
  clear: both;
}
#page-blocks-container .highlight-error {
  background-color: #E74C3C;
}
#page-blocks-container .page-block {
  border: 1px solid transparent;
  overflow: hidden;
  padding-bottom: 15px;
}
.styled-select {
  clear: both;
  /* Added this because of a styling issue on the dashboard for the location selector (when viewed on mobile) */
  color: #5D646C;
  position: relative;
}
.styled-select .value {
  background-color: #fff;
  border: 1px solid #ccc;
  display: block;
  padding: 8px 50px 8px 12px;
}
.styled-select .fa {
  position: absolute;
  right: 12px;
  top: 10px;
}
.styled-select select {
  cursor: pointer;
  left: 0;
  margin: 0;
  outline: 0;
  opacity: 0;
  padding: 9px 5px;
  /* Changed this to fix style issue for the locations select on the dashboard */
  position: absolute;
  top: 0;
  width: 100%;
}
.imageBlock-scrollIcon {
  animation: scrollAnimate 2s infinite;
  -webkit-animation: scrollAnimate 2s infinite;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  height: 24px;
  left: 50%;
  margin-left: -12px;
  position: absolute;
  bottom: 60px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 24px;
  z-index: 100;
}
@-webkit-keyframes scrollAnimate {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes scrollAnimate {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}