:root {
  --defaultColor: #02645B;
  --defaultColorLight: #b02323;
  --defaultColorDark: #02645B;
  --defaultColorDark2: #02645B;
}

body {
  color: #2b0113;
  font-size: 14px;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 0;
  max-width: 500px;
}

a {
  color: #2b0113;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input {
  padding: 6px 10px;
  margin: 10px 0;
  border: 1px solid gray;
}

button {
  padding: 6px 10px;
  background-color: #039486;
  border: 1px solid #039486;
  border-radius: 2px;
  color: #fff;
}

div.main {
  border: 1px solid #d7d7d7;
  line-height: 26px;
}

div.header {
  background-color: var(--defaultColor);
  padding: 10px;
}

div.footer {
  padding: 10px;
  background-color: var(--defaultColor);
  color: #fff;
  text-align: center;
}

div.footer a {
  color: #fff;
}

h1.heading {
  background-color: var(--defaultColorLight);
  color: #f7ffdb;
  text-align: center;
  margin: 0;
  padding: 4px;
  font-size: 20px;
}

div.header_alt {
  padding: 5px 5px 5px 5px;
}

div.header_alt a {
  font-weight: bold;
}

section.games-section div.league_name {
  background-color: var(--defaultColor);
  padding-left: 10px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #fff;
}

section.games-section div:not(.league_name):nth-of-type(odd) {
  background-color: #f3f3f3;
}

section.games-section div:not(.league_name) {
  border-bottom: 1px solid #e2e2e2;
}

section.games-section span.game_time {
  padding-left: 5px;
  color: #525252;
}



section.games-section span.game-time-live {
  padding-left: 5px;
  color: #A80000;
}

section.games-section span.game-time-finished {
  padding-left: 5px;
  color: green;
}

section.games-section span.game-time-ht {
  padding-left: 5px;
  color: #b100c2;
}

section.games-section .blink {
  color: #fff;
  animation: blink 800ms step-end infinite;
}

@keyframes blink {
  50% {
    color: red;
  }
}

span.yellow-card {
  background-color: yellow;
  color: #000;
  padding: 1px 2px 0px 2px;
  font-weight: bold;
  font-size: 10px;
  margin-left: 3px;
  border: 1px solid #c1c100;
}

span.red-card {
  background-color: red;
  color: #fff;
  padding: 1px 2px 0px 2px;
  font-weight: bold;
  font-size: 10px;
  margin-left: 3px;
  border: 1px solid #960000;
}

section.game-info-section h2 {
  font-size: 22px;
}

section.game-info-section img.game_info_team {
  width: 100px;
}

section.game-info-section .score {
  color: red;
  font-size: 24px;
  font-weight: bold;
}

section.game-info-section a.game_info_tab {
  background-color: var(--defaultColor);
  color: #fff;
  display: block;
  width: 100%;
  padding: 3px 0;
}

section.game-info-section table.game_info_stats {
  width: 100%;
}

section.game-info-section table.game_info_stats td {
  width: 33%;
  text-align: center;
}

section.game-info-section .subTitle {
  border-left: 3px solid rgb(110, 110, 255);
  padding-left: 10px;
  color: rgb(48, 48, 48);
}

section.game-info-section .h2hCount span {
  font-weight: bold;
}

section.game-info-section .h2hCount .win {
  color: green;
}

section.game-info-section .h2hCount .draw {
  color: gray;
}

section.game-info-section .h2hCount .loss {
  color: red;
}

div.vipAlert {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  border: 3px dotted orange;
  margin: 20px;
  padding: 10px 0;
}

div.vipAlert .note {
  font-size: 14px;
}

ul.playerList {
  list-style-type: none;
  margin: 10px;
  padding: 0;
}

ul.playerList li {
  margin-bottom: 20px;
}

ul.playerList li div.element {
  display: inline-block;
  width: 30px;
  text-align: center;
}

ul.playerList li div.element.name {
  padding-left: 8px;
  width: unset;
  text-align: left;
}

ul.playerList img {
  width: 30px;
}

div.sectionContent {
  padding: 10px;
}

a.menu {
  float: right;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

section.menuSection {
  line-height: 30px;
  padding: 20px 0;
}

section.menuSection div:nth-child(odd) {
  background-color: #F1F1F1;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  padding: 3px 0 3px 8px;
}

section.menuSection div:nth-child(even) {
  background-color: #FAFAFA;
  padding: 3px 0 3px 8px;
}

div.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px;
  margin: 5px 0;
}

div.alert-success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 10px;
  margin: 5px 0;
}

.chatSection a {
  color: #0369d6;
}

.chatSection a.button {
  color: #fff;
  padding: 2px 10px;
  font-size: 14px;
  background-color: #5483c6;
}

.chatSection img {
  width: 60px;
}

.chatSection div.aboutMe {
  padding: 10px 10px 0 10px;
}

.chatSection .breadcrumbs {
  padding: 10px;
}

.blogSection {
  padding: 10px;
}

.blogSection a {
  color: #0369d6;
}

.blogSection a.button {
  color: #fff;
  padding: 2px 10px;
  font-size: 14px;
  background-color: #5483c6;
}

.blogSection img {
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}

.blogSection img.viewImage {
  width: 200px;
}

.blogSection table {
  border-spacing: 0;
}

.blogSection tr.title a {
  font-weight: bold;
}

.blogSection tr.title td {
  padding-top: 15px;
}

.blogSection tr.info td {
  border-bottom: 1px solid #e9e9e9;
  vertical-align: top;
  padding-bottom: 15px;
}

.blogSection span.count {
  font-weight: bold;
}

.blogSection span.date {
  color: gray;
}

.forumSection {
  padding: 10px;
}

.forumSection a {
  color: #0369d6;
}

.forumSection a.button {
  color: #fff;
  padding: 2px 10px;
  font-size: 14px;
  background-color: #5483c6;
}

.forumSection img {
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}

.forumSection img.viewImage {
  width: 200px;
}

.forumSection table {
  border-spacing: 0;
}

.forumSection tr.title a {
  font-weight: bold;
}

.forumSection tr.title td {
  padding-top: 15px;
}

.forumSection tr.info td {
  border-bottom: 1px solid #e9e9e9;
  vertical-align: top;
  padding-bottom: 15px;
}

.forumSection span.count {
  font-weight: bold;
}

.forumSection span.date {
  color: gray;
}

div.container {
  padding: 10px;
}

section.my-admin {
  margin-left: 255px;
}

section.my-admin div.content {
  margin-top: 130px;
  margin-bottom: 130px;
}

section.my-admin .breadcrumb {
  background-color: #fff !important;
  margin-bottom: 0;
  box-shadow: 0 2px 2px 0 rgba(60, 75, 100, 0.14), 0 3px 1px -2px rgba(60, 75, 100, 0.12), 0 1px 5px 0 rgba(60, 75, 100, 0.2);
}

section.my-admin .breadcrumb-item {
  color: #8a93a2 !important;
  font-size: 14px !important;
  font-weight: 300;
}

section.my-admin .breadcrumb-item.active {
  color: #8a93a2 !important;
}

section.my-admin section.admin-header-top {
  position: fixed;
  top: 0;
  left: 0;
  margin-left: 255px;
  width: 100%;
  z-index: 10;
  font-weight: 300;
  color: rgba(0, 0, 21, 0.5);
  background-color: #fff;
  font-size: 14px;
}

section.my-admin section.admin-header-top i {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 10px;
  color: #9f9f9f;
  cursor: pointer;
}

section.my-admin section.admin-header-top div.top-links {
  padding: 20px;
  border-bottom: 1px solid #d6d9de;
}

section.my-admin section.admin-left-sidebar {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  background-color: #3d4c66;
  color: #fff;
  width: 255px;
  height: 100%;
  font-size: 14px;
  overflow: hidden;
}

section.my-admin section.admin-left-sidebar div.title {
  background-color: rgba(0, 0, 30, 0.2);
  text-align: center;
  font-weight: bold;
  padding: 20px;
}

section.my-admin section.admin-left-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

section.my-admin section.admin-left-sidebar ul li a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 15px 25px;
}

section.my-admin section.admin-left-sidebar ul li a:hover {
  color: #fff !important;
  text-decoration: none;
  background-color: #321fdb;
}

section.my-admin section.admin-left-sidebar ul li i {
  margin-right: 15px;
  font-size: 16px;
}

section.my-admin section.admin-left-sidebar:hover {
  overflow-y: scroll;
}

section.my-admin h1.page-title {
  font-size: 22px;
  font-family: "Bree Serif", sans-serif;
  font-weight: 400;
  margin: 20px 10px;
}

textarea {
  padding: 10px;
}

div.pagination a {
  color: #0369d6;
}

@media screen and (max-width: 767px) {
  div.main {
    border: 0;
  }
}

