header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: var(--zHeader);
  padding: 0 40px;
}

.navbar .cta-button {
  white-space: nowrap;
}

@media screen and (max-width: 600px) {
  header {
    padding: 0 24px;
  }
}

.navbar {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
}

.navbar-left {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1400px) {
  .navbar-left {
    display: none;
  }

  .navbar-left.opened {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: var(--zModal);
  }

  .navbar-left.opened .locale-switch {
    margin-left: 0;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  padding-right: 40px;
  text-decoration: none;
  color: inherit;
  line-height: var(--navbar-height);
}

.navbar-item {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: inherit;
  height: var(--navbar-height);
  transition: all 0.2s linear;
}

@media screen and (max-width: 600px) {
  .navbar-item {
    font-size: 10px;
    line-height: 16px;
  }

  .navbar-left .navbar-item {
    font-size: 16px;
  }

  .navbar-logo {
    padding-right: 0;
  }

  .navbar-logo img {
    width: 125px;
  }

  .navbar .cta-button {
    padding: 4px 10px !important;
    height: 24px !important;
  }
}

.navbar-item.locale-switch {
  margin-left: 100px;
}

.navbar-spacer {
  flex: 1 1 0;
}

a.navbar-item:hover {
  color: #8032ff;
}

@media screen and (max-width: 1260px) {
}

.locale-select {
  z-index: var(--zPopover);
  font-weight: 500;
  font-size: 16px;
  line-height: 48px;
}

.locale-select-field > img:first-child {
  margin-right: 8px;
}

.locale-select-field > img:last-child {
  margin-left: 16px;
}

.locale-select-field {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.locale-select-options-list {
  border-radius: 4px;
}

.locale-select-option {
  background: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  cursor: pointer;
}

.locale-select-option:hover {
  background: rgba(230, 230, 230, 1);
}

.navbar .cta-button {
  padding: 10px 20px;
  height: 44px;
  margin-left: 10px;
  cursor: pointer;
}

.navbar .signup {
  background-color: #d24128;
  transition: all 0.2s linear;
  border-radius: 2px;
}

.navbar .signup:hover {
  background: #8032ff;
  color: #fff !important;
}

.playnow {
  border-radius: 4px;
  transition: 0.2s all;
  color: #fff;
  border: 1px solid #fff;
  background-color: #000;
}
.playnow:hover,
.playnow:active {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
}

.playnow img {
  transition: 0.2s all;
  margin-left: 18px;
  transform: rotate(0deg);
}
.playnow:hover img,
.playnow:active img {
  filter: invert(1);
}
.playnow img.opened {
  transform: rotate(180deg);
}

.playnow-select-popover {
  margin-top: 4px;
}

.playnow-select-options-list {
  border-radius: 4px;
}

.playnow-select-option {
  background: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
}
.playnow-select-option img {
  margin-right: 10px;
  margin-bottom: -3px;
}
.playnow-select-option .menu-option-icons {
  display: inline-block;
  margin-right: 10px;
}
.playnow-select-option .menu-option-icons img {
  margin-right: 0px;
}
.playnow-select-option .menu-option-icons img:not(:last-child) {
  margin-right: 4px;
}
.playnow-select-option .android-icon {
  filter: invert(100%);
  width: 16.67px;
  height: 20px;
}

.navbar .menu-button {
  width: 28px;
  position: relative;
  height: 20px;
  margin-left: 20px;
  display: none;
  transition: all 0.3s linear;
  cursor: pointer;
}

.navbar .menu-button.opened {
  transform: rotate(45deg);
}

@media screen and (max-width: 1400px) {
  .navbar .menu-button {
    display: block;
  }
}

.navbar .menu-button span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.3s linear;
}

.navbar .menu-button span:nth-child(1) {
  top: 0;
  transition-delay: 0.3s;
}

.navbar .menu-button span:nth-child(2),
.navbar .menu-button span:nth-child(3) {
  top: 9px;
}

.navbar .menu-button span:nth-child(3) {
  opacity: 0;
}

.navbar .menu-button span:nth-child(4) {
  top: 18px;
  transition-delay: 0.3s;
}

.menu-button.opened span:nth-child(1),
.menu-button.opened span:nth-child(4) {
  opacity: 0;
  transition: none;
}

.menu-button span:nth-child(2),
.menu-button span:nth-child(3) {
  top: 9px;
}

.menu-button.opened span:nth-child(3) {
  opacity: 1;
  transform: rotate(90deg);
}

.menu-button.opened span:nth-child(1),
.menu-button.opened span:nth-child(4) {
  opacity: 0;
  transition: none;
}
