/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
.paragraph--type--bandeau-video .play-btn {
  cursor: pointer;
  width: 56px;
  height: 56px;
  content: " ";
  position: absolute;
  background-image: url("../images/global/play-button.png");
  background-repeat: no-repeat;
  background-position: center;
}
.paragraph--type--bandeau-video .image-play-button-container {
  position: relative;
  display: inline-block;
  line-height: 0;
  /* Remove extra spacing below image */
}
@media only screen and (max-width: 959px) {
  .paragraph--type--bandeau-video .image-play-button-container {
    width: 100%;
    padding: 0 2rem;
  }
}
.paragraph--type--bandeau-video .image-play-button-container:hover {
  cursor: pointer;
}
.paragraph--type--bandeau-video .image-play-button-container img {
  display: block;
  width: 100%;
  height: auto;
}
.paragraph--type--bandeau-video .image-play-button-container .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
}
.paragraph--type--bandeau-video .bandeau-video img {
  border-radius: 4rem 4rem 15.5rem 4rem;
}
@media only screen and (max-width: 959px) {
  .paragraph--type--bandeau-video .bandeau-video img {
    border-radius: 0.8rem 0.8rem 10.1rem 0.8rem;
  }
}

.paragraph--type--bandeau-video--modal .uk-close {
  color: #333333;
}
.paragraph--type--bandeau-video--modal .uk-modal-dialog {
  width: unset;
}
.paragraph--type--bandeau-video--modal .uk-modal-dialog .modal-container {
  width: 1327px;
}
@media only screen and (max-width: 1200px) {
  .paragraph--type--bandeau-video--modal .uk-modal-dialog .modal-container {
    width: 100%;
  }
}
.paragraph--type--bandeau-video--modal .uk-modal-dialog .modal-container video {
  width: 100%;
}