body {
  background: #fbfbfd;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato";
}
.header-wrapper {
  width: 1170px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.header-navbar {
  width: 100%;
  display: flex;
  background: white;
  background-repeat: repeat-x;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 5px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 5px rgba(0, 0, 0, 0.075);
  justify-content: space-between;
}
.caret {
  border-top-color: #777777;
  border-bottom-color: #777777;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: 0 dotted;
  border-left: 4px solid transparent;
}
.navbar-logo-and-menu {
  display: flex;
  align-items: center;
}
.main-menu-dropdown-toggle {
  padding: 15px 12px;
}
.navbar-logo {
  margin: 5px 15px;
  width: 150px;
  height: 40px;
}
.navbar-logo-and-menu img {
  width: 100%;
  height: 100%;
}
.main-menu-list {
  display: inline-block;
  position: relative;
}
.main-menu-list:hover .dropdown-main-menu {
  display: block;
}

.main-menu-user li {
  list-style: none;
}
.header-navbar ul {
  margin-bottom: 0;
}
.main-menu-list a {
  color: #777777;
}
.main-menu-list .main-menu-dropdown-toggle {
  text-decoration: none;
}
.main-menu-dropdown-toggle {
  display: block;
}
.main-menu-dropdown-toggle:hover {
  background: #e7e7e7;
  color: #585858;
}
.main-menu-user {
  display: flex;
  align-items: center;
}
.dropdown-main-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 220px;
  font-size: 14px;
  list-style: none;
  background-color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(50, 50, 71, 0.08),
    0px 4px 8px rgba(50, 50, 71, 0.06);
  border-radius: 0px 0px 16px 16px;
  padding: 0;
  border: none;
  overflow: hidden;
}
.dropdown-main-menu li {
  padding: 16px;
  border-bottom: 1px solid rgba(228, 228, 228, 0.6);
}
.dropdown-main-menu li > a {
  text-decoration: none;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
  padding: 3px 10px;
}
.dropdown-main-menu li:hover {
  background: #e2e2e2;
}
.divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.btn-games {
  background: #76d51f;
  border-radius: 8px;
  padding: 7px 15px 7px 15px;
}
.btn-games:hover {
  background: #92bd37;
  color: white;
}
.header-btn-games a {
  color: white;
}
.btn-refresh {
  background: #fcb54d;
  border-radius: 8px;
  padding: 7px 15px 7px 15px;
  cursor: pointer;
}
.btn-refresh:hover {
  background: #cbb518;
  color: white;
}
.header-btn-refresh a {
  color: white !important;
}

@media (max-width: 468px) {
  .navbar-logo {
    width: 60px;
    height: 55px;
    margin-bottom: 35px;
  }
  .main-menu-user {
    position: absolute;
    right: 12px;
    top: 10px;
  }
  .navbar-logo-and-menu {
    flex-wrap: wrap;
  }
  .header-navbar ul {
    margin-top: 30px;
  }
  .dropdown-main-menu {
    top: 10%;
  }
}
.timer__items {
  padding-right: 145px;
}
.timer__item {
  position: relative;
  min-width: 60px;
  padding: 10px 11px 26px 11px;
  text-align: center;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #fbfbfd;
  background: #D74D63;
  border-radius: 16px;
}
.timer__item:not(:last-child) {
  margin-right: 12px;
}
.timer__item:first-child {
  margin-right: 24px;
}
.timer__item::before {
  content: attr(data-title);
  display: block;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.timer__item:not(:first-child, :last-child)::after {
  content: ":";
  position: absolute;
  right: -10px;
  top: 10px;
  color: #D74D63;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
}
