@font-face {
  font-family: 'Digital7Italic';
  src: url('../css/fonts/digital_7-italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/*

.tour-counter-box {
  position: relative;
  z-index: 1050;
  display: inline-block;
  width: auto;
  max-width: 100%;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  background-color: #0000006e;
  top: 20px;
  left: 10px;
}
*/

.tour-counter-box {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 40px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  background-color: #0000006e;
}

.tour-counter-box.is-ready {
  opacity: 1;
  visibility: visible;
}

.tour-counter-logo-wrap {
  width: 62px;
  flex: 0 0 62px;
}

.tour-counter-logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.tour-counter-title {
  margin-top: 2px;
  line-height: 1.1;
  font-weight: lighter;
  color: #fff;
  font-style: italic;

}

.tour-counter-box .container-fluid {
  width: auto;
}

.tour-counter-box .row {
  flex-wrap: nowrap;
  width: auto;
  margin-right: 0;
  margin-left: 0;
}

.tour-countdown {
  display: flex;
  align-items: flex-start;
  margin-top: 8px;
  flex-wrap: nowrap;
}

.tour-countdown-item {
  margin-right: 14px;
  text-align: center;
}

.tour-countdown-item:last-child {
  margin-right: 0;
}

.tour-countdown-label {
  margin-bottom: 3px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #d8cf46;
}

.tour-countdown-value {
  font-family: 'Digital7Italic', monospace;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  color: #fff;
  white-space: nowrap;
  min-width: 2ch;
  min-height: 2rem;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

@media only screen and (min-width: 641px) and (max-width: 960px),
only screen and (min-device-width: 641px) and (max-device-width: 960px) and (orientation: portrait) {
  .tour-counter-box {
    top: 16px;
    left: 16px;
    width: auto;
    max-width: calc(100% - 32px);
  }

  .tour-counter-logo-wrap {
    width: 56px;
    flex: 0 0 56px;
  }

  .tour-counter-title {
    font-size: 1rem;
  }

  .tour-countdown-value {
    font-size: 1.8rem;
    min-height: 1.8rem;
  }
}

@media only screen and (max-width: 640px),
only screen and (max-device-width: 640px) {
  .tour-counter-box {
    position: relative;
    top: 50px;
    left: auto;
    transform: none;
    display: table;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .tour-counter-logo-wrap {
    width: 52px;
    flex: 0 0 52px;
  }

  .tour-counter-title {
    font-size: 0.95rem;
  }

  .tour-countdown-item {
    margin-right: 10px;
  }

  .tour-countdown-label {
    font-size: 9px;
  }

  .tour-countdown-value {
    font-size: 1.55rem;
    min-height: 1.55rem;
  }

  .adjust-tour {
    margin-top: -30px;
  }

}