.image .placeholder {
  background-color: #363636;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  height: 100%;
  width: 100%;
}

.image.is-128x128 .placeholder .title {
  font-size: 2rem;
  color: #fff;
}

.image.is-96x96 .placeholder .title {
  font-size: 2rem;
  color: #fff;
}

.image.is-64x64 .placeholder .title {
  font-size: 1.5rem;
  color: #fff;
}

.image.is-48x48 .placeholder .title {
  font-size: 1rem;
  color: #fff;
}

.image.is-32x32 .placeholder .title {
  font-size: .75rem;
  color: #fff;
}

.image.is-24x24 .placeholder .title {
  font-size: .5rem;
  font-weight: 700;
  color: #fff;
}

.p6-tablet {
}

@media screen and (min-width: 768px) {
    .p6-tablet {
        padding: 3rem !important;
    }
}

.notification a:not(.button):not(.dropdown-item)  {
  text-decoration: none;
}

.notification a:not(.button):not(.dropdown-item):hover  {
  text-decoration: underline;
}

.image.is-centered {
  margin: 0 auto;
}

.has-shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.is-fullheight {
  height: 100% !important;
}

.can-float {
  transition: box-shadow 0.3s ease-in-out;
}

.can-float:hover {
  box-shadow: 0 0.5em 1em -0.125em rgba(10,10,10,.1), 0 0 0 1px rgba(10,10,10,.02);
}

.box.is-hoverable {
  box-shadow: none;
  transition: box-shadow 100ms linear;
}

.box.is-hoverable:hover {
  cursor: pointer;
  box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%);
}

.padded-column {
    padding-left: 3rem;
    padding-right: 3rem;
}

.padded-column.has-border-right {
    border-right: 1px solid #eeeeee;
}

.input.is-light, .textarea.is-light {
    background-color: #f5f5f5;
    border-color: transparent;
    color: rgba(0,0,0,.7);
    box-shadow: none;
}

.is-flat {
    border: 0;
    box-shadow: none;
}

@media screen and (max-width: 768px) {
    .padded-column {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

        .padded-column.has-border-right {
            border-right: none !important;
        }
}

.navbar.is-transparent {
  background-color: transparent;
  background-image: none;
}

.video-container {
    height: auto;
    width: 100%;
    position: relative;
}

.video-mask {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
}

.video-container video {
  background-image: url();
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

.is-underlined {
  text-decoration: underline;
}

.title.is-0 {
  font-size: 5rem;
}

/* Margin tops negative */

.mt-n1 {
  margin-top: -1rem !important;
}

.mt-n3 {
  margin-top: -3rem !important;
}

.mt-n4 {
  margin-top: -4rem !important;
}

.mt-n5 {
  margin-top: -5rem !important;
}

.mt-n6 {
  margin-top: -6rem !important;
}

/* Lazy loading of images */

.lazy {
    transition: opacity 1s linear;
    opacity: 0;
  }
  
  .lazy--placeholder {
    filter: blur(50px);
    transform: scale(1);
    opacity: 1;
  }
  
  .lazy--loaded {
    opacity: 1;
  }

.modal-background {
  background-color: rgba(10, 10, 10, 1);
}