@font-face {
  font-family: 'DP';
  src: url("../fonts/DP-medium.woff") format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'DP';
  src: url("../fonts/DP-bold.woff") format('woff');
  font-weight: 700;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.view-360 {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  overflow: hidden;
  touch-action: none;
}

html.view-360 body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

body {
  font-family: 'DP', sans-serif;
  font-size: 16px;
}

html:not(.view-360) body {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  overflow: hidden;
  touch-action: none;
}

h1,
h2 {
  font-weight: 700;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  opacity: 1;
  transition: opacity .5s ease-in-out,
              z-index .5s ease-in-out;
  z-index: 999999;
}
.preloader.fade-out {
  opacity: 0;
  z-index: -1;
}
.preloader h1 {
  color: #242e61;
}
.preloader img {
  width: 50px;
  height: 50px;
}


.landscape-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}


/* Breadcrumbs */
.breadcrumbs-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  max-width: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs-wrapper::-webkit-scrollbar {
  display: none;
}
.breadcrumbs-wrapper::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 54px solid rgba(36, 46, 97, .8);
  border-right: 54px solid transparent;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  height: 54px;
  padding-left: 160px;
  padding-right: 8px;
  background: rgba(36, 46, 97, .8);
}
.breadcrumbs a::after {
  content: '>';
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs a,
.breadcrumbs span {
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
/* -- Breadcrumbs -- */


/* Menu */
.menu-open-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.menu-open-button-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-top: 100px solid #009fe3;
  border-right: 150px solid transparent;
  cursor: pointer;
}
.menu-open-button {
  position: absolute;
  width: 30px;
  margin: 22px 0 0 20px;
  border: 0;
  outline: none;
  background: none;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  cursor: pointer;
}
.menu-open-button span {
  display: block;
  margin: 7px 0;
  border-top: 2px solid #fff;
}

.menu-close-button-wrapper {
  height: 60px;
  position: relative;
}
.menu-close-button {
  display: none;
  position: absolute;
  top: 14px;
  left: 20px;
  height: 36px;
  width: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  outline: none;
}
.menu-close-button::before,
.menu-close-button::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 16px;
  width: 2px;
  background-color: #fff;
}
.menu-close-button::before {
  transform: rotate(45deg);
}
.menu-close-button::after {
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  height: 0;
  overflow: hidden;
  background-color: rgba(0, 159, 227, .9);
}
.menu > ul {
  padding-bottom: 60px;
}
.menu.active {
  height: 100%;
  overflow: visible;
}
.menu li {
  list-style: none;
}
.menu ul {
  width: 100%;
  max-width: 300px;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu ul::-webkit-scrollbar {
  display: none;
}
.menu a {
  display: flex;
  align-items: center;
  padding: 7px 15px 7px 20px;
  border-top: 2px solid #fff;
  color: #fff;
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
}
.menu a::before {
  content: '';
  display: block;
  flex-shrink: 0;
  box-sizing: border-box;
  height: 36px;
  width: 36px;
  margin-right: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.menu a:hover {
  background-color: #242e61;
}
.menu ul ul.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  padding-top: 0;
  height: 0;
  background-color: rgba(36, 46, 97, .9);
  z-index: 3;
}

@media all and (min-width: 1025px) {
  .menu li:hover ul {
    height: 100%;
    padding-top: 60px;
  }
}

@media all and (max-width: 1024px) {
  .menu-close-button {
    display: block;
  }
  .menu ul ul.submenu.active {
    height: 100%;
    padding-top: 60px;
  }
}
/* -- Menu -- */


/* Video */
#frameVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#smartVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#smartVideo video {
  object-fit: fill;
  outline: none !important;
}
.vjs-poster {
  background-size: cover;
}
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}
.video-js .vjs-control-bar {
  z-index: 1;
}

#smartVideo .vjs-fullscreen-control,
#smartVideo .vjs-picture-in-picture-control,
#smartVideo .vjs-remaining-time {
  display: none !important;
}

body.ipad #smartVideo video {
  object-fit: contain;
}
body.ipad .vjs-poster {
  background-size: contain;
}

/* Display none controls when video playing */
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: none !important;
}
/* -- Video -- */


/* Footer controls */
.controls {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 280px;
  padding-right: 9px;
  background-color: rgba(36, 46, 97, .8);
}
.controls::before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  width: 0;
  height: 0;
  border-bottom: 70px solid rgba(36, 46, 97, .8);
  border-left: 70px solid transparent;
}
.controls::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  height: 0;
  width: 42px;
  border-bottom: 70px solid rgba(0,159,227,.8);
  border-left: 55px solid transparent;
  border-right: 0 solid transparent;
  z-index: -1;
}
.control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px 5px 10px;
  cursor: pointer;
  text-decoration: none !important;
  background: none;
  border: 0;
  outline: 0;
}
.control-button img {
  height: 35px;
  width: auto;
}
.control-button:last-child {
  margin-left: 12px;
}
/* -- Footer controls -- */


/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
  background: #fff;
  z-index: 10;
}
.modal.active {
  display: block;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: #009fe3;
  border: 0;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  z-index: 1;
}
.modal-close::before,
.modal-close::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
.modal .modal-single-image {
  max-width: 1400px;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#linksModal,
#linksModal a {
  color: #242e61;
}
#linksModal h2 {
  width: 100%;
  color: #53585b;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#linksModal ol {
  counter-reset: item;
  list-style-type: none;
  padding-bottom: 10px;
}
#linksModal ol li {
  margin-bottom: 10px;
  list-style: none;
}
#linksModal ol li a {
  display: flex;
  align-items: center;
  background: #009fe3;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}
#linksModal ol li a:hover {
  background: #0089c3;
}
#linksModal ol li a::before {
  flex-shrink: 0;
  /* content: counter(item) '.'; */
  counter-increment: item;
  margin-right: 4px;
}

.modal-container {
  position: relative;
  width: 100%;
  height: calc(100% - 50px);
  margin-right: auto;
  margin-left: auto;
}
.modal-container::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
}
.modal-row {
  display: flex;
  height: 100%;
  width: 100%;
  margin-left: -15px;
  margin-right: -15px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-row::-webkit-scrollbar {
  display: none;
}
.modal-column {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.modal-column-header {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  background: #003399;
  padding: 10px 0;
  border-radius: 5px;
}

#warningModal {
  background: rgba(37,71,139,.95);
}
/* #warningModal.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
} */
#warningModal .modal-close {
  border: 2px solid #fff;
  background: rgba(37,71,139,.95);
}
#warningModal .modal-close::before,
#warningModal .modal-close::after {
  height: 28px;
}
.warning-modal-content {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  padding: 50px 50px 0 50px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.warning-modal-content::-webkit-scrollbar {
  display: none;
}
.warning-modal-content img {
  object-fit: contain;
  height: fit-content;
  width: 70px;
  margin-right: 20px;
}
.warning-modal-content-text p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}
/* -- Modal -- */


/* iPhone safe-area fix */
@supports(padding:max(0px)) {
  body {
    padding-left: min(0vmin, env(safe-area-inset-left));
    padding-right: min(0vmin, env(safe-area-inset-right));
  }
}
/* -- iPhone safe-area fix -- */


/* Force rotate site to landscape */
@media screen and (orientation: portrait) {
  html.view-360,
  html:not(.view-360) body {
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    width: calc(var(--vh, 1vh) * 100);
    height: 100vw;
    height: calc(var(--vw, 1vw) * 100);
    position: absolute;
    top: 100%;
    left: 0;
  }
  .preloader {
    width: 100vh;
    width: calc(var(--vh, 1vh) * 100);
    height: 100vw;
    height: calc(var(--vw, 1vw) * 100);
  }
}
/* -- Force rotate site to landscape -- */


/* 360viewer */
#Claria360 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.popup {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  width: 45%;
  height: 45%;
  background-color: rgba(0, 159, 227, .9);
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  z-index: 1;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 130px;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.popup-close span {
  position: absolute;
  color: #fff;
  white-space: nowrap;
  right: 40px;
  top: calc(50% - 8px);
}
.popup-close::before,
.popup-close::after {
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 17px;
  height: 20px;
  width: 3px;
  background-color: #fff;
}
.popup-close::before {
  transform: rotate(45deg);
}
.popup-close::after {
  transform: rotate(-45deg);
}
@media all and (max-width: 991px) {
  .popup {
    font-size: 18px;
    line-height: 24px;
  }
}
/* -- 360viewer -- */


/* Simple page content */
.page-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 100px;
}
.page-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.page-content-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
}
.page-content {
  position: relative;
  width: 100%;
  height: 100%;
  color: #242e61;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 30px;
  padding-bottom: 75px;
}
.page-content::-webkit-scrollbar {
  display: none;
}
.page-content h1 {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
}

@media all and (max-width: 991px) {
  .page-wrapper {
    padding: 0 20px;
  }
  .page-content {
    padding-top: 20px;
  }
  .page-content h1 {
    font-size: 26px;
    text-align: right;
    margin-bottom: 35px;
  }
}
/* -- Simple page content -- */


/* Accordion */
.accordion-item {
  margin-bottom: 15px;
}
.accordion-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  outline: 0;
  font-size: 20px;
  font-weight: 700;
  color: #242e61;
  cursor: pointer;
}
.accordion-item-title::before {
  content: '+';
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #009fe3;
  color: #fff;
  font-family: 'DP', sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  margin-right: 10px;
  overflow: hidden;
}
.accordion-item-title.active::before {
  content: '−';
}
.accordion-item-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out
}
.accordion-item-content {
  padding-top: 5px;
  padding-left: 40px;
}
/* -- Accordion -- */


/* Preview (Intro) */
.preview-logo {
  height: 70px;
  object-fit: contain;
}
.preview-text {
  width: 100%;
  margin-top: 50px;
  color: #858e93;
  font-size: 20px;
  text-align: center;
}
.preview-title {
  width: 100%;
  margin: 50px 0;
  text-align: center;
  color: #009fda;
  font-size: 40px;
}
.preview-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 40px;
}
.preview-buttons button {
  width: 50%;
  color: #094282;
  background: #fff;
  border-width: 2px 3px;
  border-style: solid;
  border-color: #009fe3;
  border-radius: 0;
  outline: 0;
  transform: skew(40deg);
  font-family: 'DP', sans-serif;
  font-size: 24px;
  padding: 20px 0;
  cursor: pointer;
  transition: color .2s ease-in-out;
}
.preview-buttons button:last-child {
  border-left: 0;
}
.preview-buttons button div {
  transform: skew(-40deg);
}
.preview-buttons button:hover {
  color: #009fda;
}
.preview-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.preview-links a {
  font-size: 16px;
  color: #969696;
  text-decoration: none;
  margin: 10px;
}
.preview-links a:hover {
  text-decoration: underline;
}

@media all and (min-width: 1200px) {
  .preview-text {
    margin-top: 100px;
  }
}

@media all and (max-width: 991px) {
  .preview-content {
    padding: 30px 20px;
  }
  .preview-logo {
    height: 40px;
  }
  .preview-text {
    margin-top: 30px;
    font-size: 13px;
  }
  .preview-title {
    margin: 15px 0;
    font-size: 20px;
  }
  .preview-buttons {
    padding: 0 20px;
  }
  .preview-buttons button {
    font-size: 14px;
    padding: 12px 0;
  }
  .preview-links {
    margin-top: 20px;
  }
  .preview-links a {
    font-size: 13px;
  }
}
/* -- Preview (Intro) -- */


/* Video links */
.video-link {
  display: none;
  position: absolute;
}
.warning-link {
  border: 0;
  background: none;
  bottom: 0%;
  left: 0;
  width: 14%;
  height: 20%;
  cursor: pointer;
}
/* -- Video links -- */


/* Splash */
.splash-page {
  background: #fff url(../img/myclaria-preview-bg.jpg) no-repeat;
  background-size: cover;
  padding: 0 50px;
}
.splash-page .page-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.splash-page .preview-logo {
  margin-bottom: 50px;
}
.splash-top-text {
  width: 100%;
  color: #858e93;
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
}
.splash-content {
  padding: 0 50px;
}
.splash-text {
  display: block;
  width: 100%;
  margin: 50px 0;
}
.splash-text p {
  font-size: 22px;
  color: #003399;
  text-align: center;
  margin-bottom: 10px;
}
.splash-page .accordion-item-title {
  font-size: 22px;
  font-weight: 500;
  color: #009fda;
  text-transform: uppercase;
}
.splash-page .accordion-item-content {
  display: flex;
  font-size: 18px;
  line-height: 1.4;
  padding-left: 35px;
  color: #003399;
}
.splash-page .accordion-item-content-icon {
  height: 45px;
  margin-right: 10px;
}
.privacy-policy-link {
  display: block;
  margin-top: 40px;
  color: #969696;
  text-align: center;
  text-decoration: none;
}

@media all and (min-width: 1200px) {
  .splash-page .preview-logo {
    margin-bottom: 100px;
  }
}

@media all and (max-width: 991px) {
  .splash-page {
    padding: 0 20px;
  }
  .splash-page .page-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .splash-page .preview-logo {
    margin-bottom: 30px;
  }
  .splash-content {
    padding: 0 30px;
  }
  .splash-text {
    margin: 30px 0;
  }
  .splash-text p {
    font-size: 16px;
  }
  .splash-page .accordion-item-title {
    font-size: 16px;
  }
  .splash-page .accordion-item-content {
    font-size: 15px;
  }
  .splash-page .accordion-item-content-icon {
    height: 40px;
  }
}
/* -- Splash -- */


/* Privacy Policy page */
.go-back-link {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 20px;
  border-radius: 30px;
  background: #009fda;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}
.go-back-link::before {
  content: '';
  background: url(../img/left-chevron.svg) no-repeat;
  width: 10px;
  height: 10px;
  object-fit: contain;
  margin-right: 5px;
  filter: invert(1);
}
@media all and (max-width: 991px) {
  .go-back-link {
    top: 18px;
    left: 125px;
    padding: 10px;
    font-size: 12px;
  }
}


.text-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.text-wrapper p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.otnotice h2 {
  margin-bottom: .5rem;
}
.otnotice ul {
  padding-left: 20px;
}
/* -- Privacy Policy page -- */


/* Useful Numbers and Resources */
.links-item {
  display: flex;
}
.links-item-icon {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-top: 20px;
  margin-right: 15px;
}
.links-item-text {
  width: 100%;
  padding: 20px 0;
  color: #00468e;
  font-size: 24px;
  border-bottom: 1px solid #ccc;
}
.links-item-title {
  font-weight: 700;
  margin-bottom: 5px;
}
.links-item-link {
  color: #00468e;
  text-decoration: none;
}
.links-note {
  color: #00468e;
  margin-top: 25px;
  margin-left: 55px;
}

@media all and (max-width: 991px) {
  .links-item-icon {
    height: 28px;
    width: 28px;
    margin-top: 14px;
    margin-right: 10px;
  }
  .links-item-text {
    padding: 14px 0;
    font-size: 17px;
  }
  .links-item-title {
    margin-bottom: 0;
  }
  
  .links-note {
    color: #00468e;
    margin-top: 18px;
    margin-left: 38px;
    font-size: 13px;
  }
}
/* -- Useful Numbers and Resources -- */


/* Playlist */
.playlist {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 40%;
  z-index: 1;
  transform: translateX(calc(100% - 35px));
  transition: transform .4s ease-in-out;
}
.playlist.opened {
  transform: translateX(0);
}
.playlist-toggler {
  position: absolute;
  right: calc(100% - 35px);
  top: 50%;
  width: 35px;
  height: 60px;
  transform: translateY(-50%);
  font-size: 35px;
  background: #1a1a1a;
  border-radius: 10px 0 0 10px;
  border: none;
  outline: 0;
  cursor: pointer;
  color: #e1e1e1;
}
.playlist-toggler span {
  display: block;
  transition: transform .4s ease-in-out;
}
.playlist.opened .playlist-toggler span {
  transform: rotate(180deg);
}
.playlist-wrapper {
  width: calc(100% - 35px);
  height: 100%;
  margin-left: 35px;
  background: #1a1a1a;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.playlist-wrapper::-webkit-scrollbar {
  display: none;
}
.playlist-item {
  display: block;
  position: relative;
  margin-bottom: 5px;
}
.playlist-item-screenshot-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}
.playlist-item.current .playlist-item-screenshot-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0CC5D7;
}
.playlist-item.current .playlist-item-screenshot {
  opacity: .2;
}
.playlist-item-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.playlist-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}
.playlist-item-now-playing {
  padding: 13px;
}
.playlist-item-name-wrapper {
  position: absolute;
  bottom: 0;
  padding: 13px;
}
.playlist-item:not(.current) .playlist-item-name-wrapper {
  text-shadow: 1px 1px 2px #000, -1px 1px 2px #000, 1px -1px 2px #000, -1px -1px 2px #000;
}
.playlist-item-duration {
  display: inline-block;
  margin: 8px 0 0 10px;
  padding: 2px 5px 3px;
  background-color: rgba(26,26,26,.8);
}
.playlist-item-up-next {
  font-size: 14px;
}
/* -- Playlist -- */