:root {
  --grey: #232d37;
  --background: #131314;
  --dark: #181818;
  --primary: #F39624;
  --opaque: rgba(255, 255, 255, 0.4);
}

@font-face {
  font-family: amazonember;
  src: url(../webfonts/AmazonEmber_W_Rg.woff);
}

@font-face {
  font-family: amazonemberlight;
  src: url(../webfonts/AmazonEmber_W_Lt.woff);
}

* {
  box-sizing: border-box;
}

html {
  height: 100vh;
  margin: 0;
  overflow-y: auto;
}

body {
  height: 100%;
  margin: 0;
  overflow-y: auto;
  font-family: sans-serif;
}

a:hover {
  cursor: pointer;
  color: var(--primary);
  text-decoration: none;
}

.app {
  position: relative;
  height: calc(100% - 52px);
  display: flex;
  overflow: hidden;
}

.column {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

.column.one {
  width: 75%;
  background: #0D0D0D;
}

.column.two {
  position: relative;
  width: 25%;
  height: 100%;
  min-width: 355px;
  background: var(--background);
  box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.video-container {
  width: 100%;
  margin: auto;
}

.video-container video {
  width: 100%;
}

.widget-container {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 7rem;
  padding: 0 1rem;
}

.timeline-widgets {
  height: 100%;
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  overflow-y: auto;
}

.main-header {
  background: #111B2B;
  display: flex;
}

.main-header .logo {
  width: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.main-header .logo img {
  height: 2rem;
}

.header-menu-group-left {
  margin-right: auto;
}

.header-menu-group-left,
.header-menu-group-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .header-menu-group {
  display: flex;
} */

.header-menu-group a {
  margin-left: 15px;
  margin-right: 15px;
  font-family: 'amazonember';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

@media only screen and (max-width: 722px) {
  .header-menu-group a {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.header-menu-group * button {
  padding: 4px 15px;
  background: #384150;
  border-radius: 5px;
  border: none;
  font-family: 'amazonember';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
}

.header-menu-group * .login-button {
  background: #F39624;
  color: #000000;
}

/* responsive */
@media all and (orientation: portrait) {
  .app {
    flex-direction: column;
  }
  .video-container {
    position: relative;
  }
  .column.one {
    width: 100%;
  }

  .widget-container {
    top: 3rem;
  }

  .column.two {
    width: 100%;
    min-width: auto;
  }
}
@media only screen and (min-width: 2800px) {
  .main-header {
    padding: 12px;
  }
  .main-header .logo {
    width: unset;
    padding: 20px; 
  }
  .logo svg {
    height: 80px;
    width: 80px;
  }
  .header-menu-group a {
    font-size: 48px;
    line-height: 48px;
  }
  .header-menu-group a img {
    height: 50px;
  }
  .header-menu-group * button {
    padding: 12px 15px;
    font-size: 40px;
  }
}
@media only screen and (min-width: 3800px) {
  .main-header {
    padding: 12px;
  }
  .main-header .logo {
    width: unset;
    padding: 20px; 
  }
  .logo svg {
    height: 80px;
    width: 80px;
  }
  .header-menu-group a {
    font-size: 48px;
    line-height: 48px;
  }
  .header-menu-group a img {
    height: 50px;
  }
  .header-menu-group * button {
    padding: 12px 15px;
    font-size: 40px;
  }
}