html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

iframe {
  overflow: hidden;
  height: 100%;
  width: 100%;
  border: 0;
}

.sidebar {
  box-sizing: border-box;
  padding: 0;
  width: 200px;
  height: 100%;
  position: absolute;
  z-index: 20;
  top: 0;
  left: -200px;
  bottom: 0;
  background-color: #1b2c3e;
  color: #fff;
  overflow-y: scroll;
}

.sidebar.is-active {
  left: 0;
}

.logo {
  display: block;
  width: 140px;
  margin: 16px auto 13px;
}

.logo img {
  height: 37px;
  width: 140px;
  max-width: 100%;
}

.logo h1 {
  margin: 0;
}

h1, .h1 {
  font-size: 2em;
}

h2, .h2 {
  font-size: 1.5em;
}

h3, .h3 {
  font-size: 1.17em;
}

h4, .h4 {
  font-size: 1em;
}

h5, .h5 {
  font-size: 0.83em;
}

h6, .h6 {
  font-size: 0.67em;
}

.sidebar-button {
  width: 180px;
  height: 56px;
  background-color: #fff;
  color: #121212;
  font-size: 16px;
  position: absolute;
  z-index: 1000;
  top: 10px;
  left: 0;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  font-weight: 900;
  text-transform: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.sidebar-button:hover {
  cursor: pointer;
}

.sidebar-button.is-active {
  left: 200px;
}

/*
.sidebar-button:before {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: -24px;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  border-bottom-left-radius: 12px;
  border-width: 1px 1px 0px 0px;
  box-shadow: 0 12px 0 #fff;
}

.sidebar-button:after {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 24px;
  height: 24px;
  content: "";
  border-top-left-radius: 12px;
  border-width: 1px 1px 0px 0px;
  box-shadow: 0 -12px 0 #fff;
}
*/
.photo-nav {
  padding: 0 0 0 0;
  margin: 0;
}

.photo-nav li {
  list-style: none;
  margin: 0;
  width: 200px;
  height: 107px;
  overflow: hidden !important;
}

.photo-nav li.active {
  border-left: 6px solid #0071bb;
}

.photo-link {
  display: block;
  position: relative;
  text-align: center;
  color: white;
  background-color: black;
  transition: all 0.1s ease-in-out;
  color: #fff;
  width: 200px;
  height: 107px;
  overflow: hidden;
}

.photo-link img {
  opacity: 0.35;
  width: 100%;
  margin: 0;
}

.photo-link .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  line-height: 1.1;
  width: 70%;
  font-weight: 700;
  text-shadow: 1px 1px 3px #333;
}

.photo-link:hover, .photo-link:focus, .photo-link:active {
  transform: scale(1.1);
  cursor: pointer;
}

.photo-link:hover img, .photo-link:focus img, .photo-link:active img {
  opacity: 0.75;
}

.active img {
  opacity: 0.75;
}

.action {
  position: absolute;
  top: 0;
  right: 10px;
}

.button {
  position: relative;
  background: #fff;
  color: #121212;
  font-size: 14px;
  font-weight: 800;
  padding: 18px 30px 19px;
  margin-bottom: 15px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.gradient.button {
  background: linear-gradient(25deg, #0071bb 0, #238CEC 66%, #01B5FF 100%);
  color: #ffffff;
}

.gradient.button:hover {
  background: #fff;
  color: #0071bb;
}

.navy.button {
  background: #034c87;
  color: #ffffff;
}

.navy.button:hover {
  background: #fff;
  color: #0071bb;
}

.midnight.button {
  background: #1b2c3e;
  color: #ffffff;
}

.midnight.button:hover {
  background: #fff;
  color: #0071bb;
}

@media (max-width: 850px) {
  .sidebar {
    width: 200px;
    left: -200px;
  }

  .sidebar-button {
    top: 10px;
  }

  .sidebar-button.is-active {
    top: 10px;
    left: 200px;
  }

  .photo-nav li {
    width: 200px;
    height: 107px;
  }

  .photo-link {
    width: 200px;
    height: 107px;
  }

  .action {
    top: 10px;
    right: 0;
  }

  .button {
    display: block;
    padding: 14px 7px 14px 11px;
    border-top-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 0;
    margin-bottom: 2px;
    font-size: 12px;
  }
}