/* responsive */
html.ufev-show,
html.ufev-show body {
  overflow: hidden;
}
.ufev {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9999999999999;
}
.ufev.show {
  display: block !important;
}
.ufev-container {
  position: fixed;
  display: flex;
  width: 80%;
  height: 90%;
  top: 5%;
  left: 10%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.ufev-container > * {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  box-sizing: border-box;
}
.ufev-container .ufev-panel {
  width: 300px;
  height: 100%;
  border-right: 1px solid #ccc;
  display: block;
}
.ufev-container .ufev-header {
  height: 140px;
}
.ufev-container .ufev-header-logo {
  height: 70px;
  width: 160px;
  margin: 8px auto;
  text-align: center;
  overflow: hidden;
}
.ufev-container .ufev-header-logo > img {
  width: auto;
  max-width: 100%;
  max-height: 70px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.ufev-container .ufev-header-cta {
  display: block;
  font-size: 18px;
  line-height: 30px;
  text-decoration: none;
  padding: 8px;
  width: 85%;
  margin: 8px auto;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ufev-container .ufev-header-cta:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.ufev-container .ufev-item-list {
  height: calc(100% - 140px);
  overflow: auto;
}
.ufev-container .ufev-item-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.ufev-container .ufev-item-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.ufev-container .ufev-item-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
.ufev-container .ufev-item-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.ufev-container .ufev-item {
  height: 75px;
  display: flex;
  cursor: pointer;
  font-weight: 400;
  color: #555;
}
.ufev-container .ufev-item:hover {
  background: #eee;
}
.ufev-container .ufev-item.open {
  background: #f9f9f9;
}
.ufev-container .ufev-item.viewed {
  color: #aaa;
}
.ufev-container .ufev-item-service {
  min-width: 40px;
  height: 40px;
  margin: 20px 8px;
  display: flex;
  background-image: url('https://content.cdntwrk.com/img/hubs/sprite-2x.png');
  background-size: 434px;
}
.ufev-container .ufev-item-service-blogpost {
  background-position: -385px -305px;
}
.ufev-container .ufev-item-service-uberflip {
  background-position: -385px -5px;
}
.ufev-container .ufev-item-service-slideshare {
  background-position: -385px -587px;
}
.ufev-container .ufev-item-service-twitter {
  background-position: -385px -55px;
}
.ufev-container .ufev-item-service-instagram {
  background-position: -385px -505px;
}
.ufev-container .ufev-item-service-wistiar {
  background-position: -385px -753px;
}
.ufev-container .ufev-item-service-vidyard {
  background-position: -385px -753px;
}
.ufev-container .ufev-item-service-britecove {
  background-position: -385px -753px;
}
.ufev-container .ufev-item-service-youtube {
  background-position: -385px -753px;
}
.ufev-container .ufev-item-service-vimeo {
  background-position: -385px -753px;
}
.ufev-container .ufev-item-title {
  width: 220px;
  display: block;
  padding: 20px 10px 20px 0;
  font-size: 16px;
  overflow: hidden;
}
.ufev-container .ufev-item-title > span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.ufev-container .ufev-iframe-wrapper {
  width: 100%;
  height: 100%;
  box-shadow: -9px 0px 27px rgba(0, 0, 0, 0.1);
}
.ufev-container .ufev-iframe-wrapper > iframe {
  margin-right: -6px;
  background-color: #fff;
  background-image: url('spinner.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.ufev-close {
  position: fixed;
  top: 0;
  right: 0;
  width: 40px;
  height: 42px;
  text-align: center;
  line-height: 40px;
  background: #000000;
  font-size: 27px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.ufev-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.ufev-next {
  position: fixed;
  bottom: 40px;
  right: 0;
  z-index: 1;
  height: 60px;
  width: 180px;
  background: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.ufev-next .ufev-next-arrow {
  font-size: 21px;
  line-height: 27px;
  padding: 16px;
  font-weight: 700;
  color: #555;
}
.ufev-next .ufev-next-arrow > span {
  display: block;
  position: absolute;
  top: 22px;
  right: 16px;
  width: 16px;
  height: 16px;
  background-image: url('https://content.cdntwrk.com/img/hubs/sprite-2x.png');
  background-size: 434px;
  background-position: -16px 0;
  transform: scale(1.3);
  opacity: 0.7;
}
.ufev-next .ufev-next-img {
  height: 168px;
  text-align: center;
  overflow: hidden;
  display: none;
}
.ufev-next .ufev-next-img > img {
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.ufev-next .ufev-next-title {
  padding: 16px 16px;
  font-size: 21px;
  line-height: 24px;
  font-weight: 400;
  display: none;
}
.ufev-next .ufev-next-desc {
  padding: 0 16px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 300;
  display: none;
}
.ufev-next.expand {
  bottom: 0;
  height: 400px;
  width: 300px;
}
.ufev-next.expand > * {
  display: block;
}
.ufev-next.press {
  background: #f9f9f9;
}
.ufev-next.press > .ufev-next-arrow {
  opacity: 0.4;
}
@media (max-width: 1100px) {
  .ufev-container {
    width: 94%;
    left: 3%;
  }
  .ufev-container .ufev-panel {
    width: 26%;
  }
  .ufev-container .ufev-item-title {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .ufev-container .ufev-item-title {
    font-size: 13px;
  }
}
@media (max-width: 700px) {
  .ufev-container {
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
  }
  .ufev-container .ufev-panel {
    display: none;
  }
  .ufev-next {
    width: 130px;
  }
}
/*# sourceMappingURL=uf-reco-embed-viewer.css.map */