* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color:#fff;
}
fot* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  background:#1366b4;
  overflow-x: hidden;
}
body img {
  width: 100%;
  width: auto;
  max-width: 100%;
}

/* header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#003266;
  padding: 0 15px;
  height: 100px;
  color:#fff;
}.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.main-header + main,
.main-header + div {
  margin-top: 100px;
}.header .logo {
  margin-left: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 26px;
}
.header .logo .text-logo {
  font-size: 30px;
  font-weight: bolder;
  text-transform: uppercase;
  line-height: 1;
}

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.btns .btn {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 30px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 8px;
}

.btns a.reg {
  border:none;
  background:linear-gradient(103.42deg, #0e96f8 6.06%, #1366b4 77.61%);
  color:#f3f3f3;
  margin-right: 20px;
}
.btns .reg:hover {
  background:linear-gradient(103.42deg, #0e96f8 6.06%, #1366b4 77.61%);
}
.btns a.sign-up {
  border:1px solid #ef5d03;
  background:transparent;
  color:#f3f3f3;
}
.btns .sign-up:hover {
  background:#ef5d03;
}

@media screen and (min-width: 768px) {
  .btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }

  .btn span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }

  .btn:hover span {
    padding-right: 25px;
  }

  .btn:hover span:after {
    opacity: 1;
    right: 0;
  }
}


.toolbar_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  height: 60px;
}

.hamburger-navigation {
  position: absolute;
  top: 0;
  margin-top: 60px;
  left: 0;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  background:#003266;
}

.hamburger-navigation>li {
  margin: 0 1rem;
  overflow: hidden;
}

.hamburger-navigation>li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.nav-button-wrapper {
  display: flex;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#nav-toggle {
  display: none;
}

.nav-button, .nav-button::before, .nav-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.nav-button::before {
  content: "";
  margin-top: 8px;
}

.nav-button::after {
  content: "";
  margin-top: 8px;
}

#nav-toggle:checked+.nav-button-wrapper .nav-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#nav-toggle:checked+.nav-button-wrapper .nav-button {
  background: rgba(255, 255, 255, 0);
}

#nav-toggle:checked+.nav-button-wrapper .nav-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (min-width: 100px) {
  .nav-button-wrapper {
      display: flex;
  }

  .hamburger-navigation {
      z-index: 99999;
      position: absolute;
      top: 0;
      margin-top: 60px;
      left: 0;
      flex-direction: column;
      width: 100%;
      justify-content: center;
      align-items: center;
  }

  #nav-toggle~.hamburger-navigation li {
      height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #nav-toggle:checked~.hamburger-navigation li {
      display: flex;
      align-items: center;
      height: 2em;
      padding: 0.2em;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hamburger-navigation>li {
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: inherit;
  }

  .hamburger-navigation>li:not(:last-child) {
      border-bottom: 1px solid #444;
  }
}

@media (max-width: 575px) {
  /* .btns a.sign-up {
      display: none;
  } */
  .btns a.reg {
      margin-right: 0;
  }
}

/* banner */

.banner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.banner-wrap {
  text-align: center;
  padding: 25px 15px 0;
}

.banner-wrap span {
  position: absolute;
  width: 300px;
  height: 100px;
  z-index: 999;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 36px;
  color: #90B8F8;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 50%;
  margin-left: -150px;
  margin-top: 80px;
  border-radius: 10px;
  background:#003266;
  opacity: .9;
  line-height: 1.1;
}

@media (max-width: 500px) {
  .banner-wrap img {
      width: 100%;
      max-width: 100%;
      height: auto;
  }
}

/* mirror */

.zerkalo-block {
  width: 400px;
  margin: 40px auto;
}

.zerkalo-block .top-part_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px 15px 0 0;
  background:#003266;
  padding: 6px 15px;
  filter: drop-shadow(0px 0px 1px black);
}

.zerkalo-block .krug-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px 0;
}

.zerkalo-block .circle {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #90B8F8;
  border-radius: 50%;
  margin: 0 3px;
  line-height: 8px;
}

.url-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #353941;
  border-radius: 3px;
  padding: 6px 50px;
  width: 100%;
  margin: 0 25px;
}

.url-section span {
  display: inline-block;
  width: 100px;
  color: #b3b6ba;
  font-size: 13px;
  line-height: 13px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zerkalo-block .bottom-part {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-top: #e2e6e7;
  background:#003266;
  min-height: 200px;
}

.zerkalo-block .bottom-part img {
  margin-top: 10px;
}

.bottom-part .link {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 6px;
  background: #0034ab;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.zerkalo-block .bottom-part p {
  margin: 10px 0;
  font-size: 14px;
  color: #90B8F8;
}

.zerkalo-block .bottom-part ul li::marker {
  content: 'âž•';

}

@media (max-width: 450px) {
  .zerkalo-block {
      width: calc(100% - 30px);
      margin: 40px 15px;
  }
  .zerkalo-block .bottom-part {
      text-align: center;
      padding: 0 15px;
  }
  .url-section {
      padding: 6px 30px;
      margin: 0 15px;
  }
  .zerkalo-block .bottom-part p {
      line-height: 1.3;
  }
}

/* content */

article {
  width: 1280px;
  margin: 0 auto;
  padding: 40px 15px;
  background: #1366b4;
}

/* grid media queries */

@media (min-width: 576px) {
  article {
      width: 540px;
  }
}

@media (min-width: 768px) {
  article {
      width: 720px;
  }
}

@media (min-width: 992px) {
  article {
      width: 960px;
  }
}

@media (min-width: 1200px) {
  article {
      width: 1140px;
  }
}

@media (max-width: 575px) {
  article {
      width: 100%;
  }
}

/* typography */

h1 {
  font-size: 28px;
  text-align: center;
  color: inherit;
}
h2 {
  font-size: 26px;
  color: inherit;
}
h3 {
  font-size: 24px;
  color: inherit;
}

p {
  font-size: 16px;
  line-height: 24px;
  color: inherit;
  margin: 15px 0;
  text-align: justify;
  padding: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding-left: 50px;
  margin: 20px 0;
}

ul li {
  position: relative;
  line-height: 24px;
  color: inherit;
}

ul li::before {
  content: "♣";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 2px;
  left: -25px;
  color: #001f9c;
}
ol {
  color: white;
}
.wrapper {
  min-height: 100vh;
}
.date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin: 10px 0;
}
.date img {
  max-width: 30px;
}
.date .updated {
  display: flex;
  flex-direction: column;
}
.date time {
  font-weight: 600;
}
.mostbettable {
  overflow-x: scroll;
  width: 100%;
}

.content table td,
th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  color: #000000;
}

.content table tr:nth-child(even) {
  background-color: #f2f2f2;
}


.content table tr:hover {
  background-color: #ddd;
}

.content table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #1366b4;
  color: #000000;
  text-align: center;
}
.content blockquote {
  background: #002f5e;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 25px;
  position: relative;
}

.content blockquote * {
  margin: 0;
}

.content blockquote::before {
  content: '';
  background: url(/quote-left.svg) no-repeat;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 5px;
}

.content blockquote::after {
  content: '';
  background: url(/quote-right.svg) no-repeat;
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

/* footer */

.main-footer {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 100px;
}
.main-footer .footer-text {
  text-align: center;
  font-size: 14px;
  padding: 15px 0;
}

/* Mobile */

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 24px;
  }
  .btns {
    display: flex;
  }
  .header .logo {
    min-width: 20%;
  }
  .content {
    padding: 0 15px;
  }
  ul {
    padding-left: 40px;
  }
  .btns .btn {
    font-size: 16px;
  }
  .img-block .flex {
    display: block;
  }
  .img-block .flex:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .img-block .flex .img {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }

  .btn span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }

  .btn:hover span {
    padding-right: 25px;
  }

  .btn:hover span:after {
    opacity: 1;
    right: 0;
  }
}
