div.vertical-stretch {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0;
}

div.main {
  flex: 1;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

div.vertical-space {
  height: 30px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
}

/* Only for xl size */
@media (min-width: 1200px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content h3:first-child {
  margin-top: 0 !important;
}

.page-content ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-content p {
  margin-top: 0;
  margin-bottom: 1rem;
  /* text-align: left; */
}


.blog-post h1 {
  /* font-size: 2.5rem; */
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-post h2 {
  /* font-size: 2rem; */
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-post h3 {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.blog-post p {
  line-height: 2;
  /* margin-bottom: 0.5rem; */
  margin-bottom: 0;
}

.cc-notification {
  position: fixed;
  z-index: 12;
  bottom: 0;
  width: 100%;
  background-color: #00394f !important;
  translate: 0 0px;
}

.cc-notification.cc-hide {
  animation: cc-slide-anim 0.8s ease-in-out 0s forwards;
}

.cc-container {
  margin: 20px;
}

.cc-message {
  margin-right: 210px;
  color: white;
}

.cc-actions {
  position: absolute;
  right: 20px;
  top: 13px;
  width: 200px;
}

.cc-accept {
  width: 200px;
}

.cc-extend-footer {
  height: 64px;
}

@media (max-width: 1020px) {
  .cc-message {
    width: 436px;
  }

  .cc-actions {
    top: 27px;
  }
}

@keyframes cc-slide-anim {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(64px);
  }
}

.cd-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  /* animation-timing-function: linear; */
  animation-timing-function: ease-in-out;
}

.cd-hero-slide.active {
  /* this is the visible slide */
  transform: translateX(0);
}

.cd-hero-slide.move-left {
  /* slide hidden on the left */
  transform: translateX(-100%);
}

.cd-hero-slide.move-right {
  /* slide hidden on the left */
  transform: translateX(100%);
}

.cd-hero-slide.anim {
  /* this is the visible slide */
  transition: transform 0.5s;
}

.cd-hero-slide.no-anim {
  transition: transform 0s;
}


.row-alternative {
  background-color: #f2fafc;
}

/* Must be the last style, after loading is done */
html { visibility: visible; opacity: 1; }