/**
 * 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);}
 *
 */
.evomoov-video__thumbnail {
  position: relative;
}
.evomoov-video__sample-controls {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.evomoov-video__play-btn {
  border: 0;
  background-color: transparent;
  cursor: pointer;
  width: 56px;
  height: 56px;
  content: " ";
  position: absolute;
  background-image: url(../images/global/play-button.png);
  background-repeat: no-repeat;
  background-position: center;
}
.evomoov-video__modal video {
  max-width: 90vw;
}
@media only screen and (min-width: 960px) {
  .evomoov-video__modal video {
    width: 60vw;
    margin: auto;
  }
}
.evomoov-video__modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (min-width: 960px) {
  .evomoov-video__modal-body {
    height: auto;
  }
}
.evomoov-video__modal-body .video-file {
  position: relative;
}
.evomoov-video__modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: none;
  font-size: 2rem;
  background-color: #fd5312;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.evomoov-video__modal-close-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.evomoov-video__modal-close-btn:hover {
  cursor: pointer;
}