@import url('https://fonts.googleapis.com/css?family=Barlow:100,300,400,600&display=swap');

/*
########## Initial Style Settings ##########
*/
* {
  font-family: 'Barlow', sans-serif;
  box-sizing: border-box;
}

input[type="button"] {
  outline: none;
}

input[type="button"]::-moz-focus-inner {
  border: 0;
}

body {
  margin: 0;
  padding: 100px 0px 0px 0px;
  background: #ecf0f1;
  color: rgba(52, 73, 94, .8);
}

body.no-header {
  padding-top: 175px;
}

h1, h1style {
  font-size: 65px;
  padding: 65px;
  text-align: center;
  margin: 0;
  width: 100%;
  display: block;
  font-weight: 600;
}

h1::after {
  content: "";
  display: block;
  width: 400px;
  height: 2px;
  background: rgba(52, 73, 94, .8);
  margin: 0 auto;
  position: relative;
  top: 15px;
}

.special-title {
  font-size: 37px;
  text-align: left;
  padding-bottom: 35px;
}

hr {
  background: rgba(52, 73, 94, .2);
  height: 1px;
  border: 0;
  width: 100%;
  margin: 75px 0px;
}

/*
########## Menu ##########
*/
.top-bar {
  height: 100px;
  background: #ecf0f1;
  border-bottom: 3px solid #34495e;
  z-index: 1000;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.scrolled .top-bar {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
}

@media screen and (min-width: 961px) {
  .scrolled .top-bar {
    animation: fromtop .4s;
    height: 100px;
  }
}

@keyframes fromtop {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

.logo {
  height: 200px;
  width: 11.111111%;
  background-position: center;
  background-size: 79%;
  background-repeat: no-repeat;
  transition: all .3s ease-in-out;
}

.scrolled .logo {
  height: 140px;
  background-size: 50%;
}

.top-bar-inner {
  display: flex;
  max-height: 100px;
}

.menu-item a {
  color: rgba(52, 73, 94, .8);
  text-decoration: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.menu-item {
  width: 11.111111%;
  text-align: center;
  line-height: 100px;
  font-size: 19px;
  height: 100px;
}

.menu-item a span {
  position: relative;
}

.menu-item a span::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(52, 73, 94, .8);
  position: absolute;
  bottom: -5px;
  left: 0;
  transform: scale(0);
  transition: all .3s ease-in-out;
}

.menu-item a:hover span::after {
  transform: scale(1);
}

/*
########## Header Image ##########
*/
.headerimage {
  height: auto;
  max-height: calc(100vh - 100px);
  width: 100%;
  max-width: 100%;
}

/*
########## Text Block ##########
*/
.text-block {
  text-align: center;
  padding: 50px 0px 25px 0px;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

.text-block-title {
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.text-block-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
}

.text-block-title::after {
  content: "";
  width: 75%;
  background: #2980b9;
  height: 1px;
  position: absolute;
  left: 12.5%;
  bottom: -8px;
  margin: 0 auto;
  border-radius: 50%;
}

/*
########## News Swiper ##########
*/
div#sidebar {
  position: fixed;
  right: 0;
  top: calc(50% - 130px);
  z-index: 1000;
  color: #ecf0f1;
}

.sidebar-item {
  padding: 20px;
  font-size: 20px;
  margin-top: 5px;
  background: #2980b9;
  text-align: center;
  transition: all .3s ease-in-out;
}

.sidebar-item:hover {
  border-radius: 50%;
}

.scene {
  width: 100%;
  height: 100%;
  -webkit-perspective: 600;
  perspective: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  position: fixed;
  top: 0;
  background: #34495e;
  left: 0;
  border-radius: 0;
  transition: all .3s ease-in-out;
  opacity: 1;
  visibility: visible;
}

body.loader-inactive .scene {
  opacity: 0;
  visibility: hidden;
}

/*body.loader-active {
  overflow: hidden;
}
*/
.scene svg {
  width: 240px;
  height: 240px;
}

.dc-logo {
  position: fixed;
  right: 10px;
  bottom: 10px;
}

.dc-logo:hover svg {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: arrow-spin 2.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: arrow-spin 2.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

.dc-logo:hover:hover:before {
  content: '\2764';
  padding: 6px;
  font: 10px/1 Monaco, sans-serif;
  font-size: 10px;
  color: #2980b9;
  text-transform: uppercase;
  position: absolute;
  left: -70px;
  top: -30px;
  white-space: nowrap;
  z-index: 20px;
  box-shadow: 0px 0px 4px #222;
  background: rgba(0, 0, 0, 0.4);
}

.dc-logo:hover:hover:after {
  content: 'Digital Craft';
  padding: 6px;
  font: 10px/1 Monaco, sans-serif;
  font-size: 10px;
  color: #6E6F71;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: -30px;
  white-space: nowrap;
  z-index: 20px;
  box-shadow: 0px 0px 4px #222;
  background: rgba(0, 0, 0, 0.4);
  background-image: none;
}

@-webkit-keyframes arrow-spin {
  50% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes arrow-spin {
  50% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/*
########## Last Games ##########
*/
.last-games {
  padding: 50px 0px;
}

.last-games-block-outer {
  display: flex;
  flex-wrap: wrap;
}

.last-game-block {
  width: 49%;
  margin-bottom: 25px;
}

.last-game-block:nth-child(even) {
  margin-left: 1%;
}

.last-game-block:nth-child(odd) {
  margin-right: 1%;
}

.last-game-block {
  width: 49%;
  margin-bottom: 25px;
  padding: 25px;
  background: #f5f6fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.last-game-title {
  text-align: center;
}

.last-game-block .middle-part {
  display: flex;
  font-size: 21px;
  padding: 25px 0px;
}

.last-game-block .middle-part .team-name {
  width: 40%;
  line-height: 53px;
  font-size: 24px;
}

.last-game-block .middle-part .team-score {
  width: 10%;
  text-align: center;
  font-size: 45px;
  position: relative;
}

.right-team.team-name {
  text-align: right;
}

.more-button-outer {
  text-align: center;
}

.more-button-outer a.more-button {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(52, 73, 94, .4);
  padding: 5px 30px;
  font-size: 19px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.left-team-score.team-score::after {
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(52, 73, 94, .4);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

a.all-games i {
  padding-left: 7px;
  font-size: 16px;
}

a.all-games {
  background: #f5f6fa;
  color: inherit;
  text-decoration: none;
  text-align: right;
  padding: 10px 25px;
  font-size: 19px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.all-games-outer {
  text-align: right;
}

a.all-games.hover-button::after {
  left: -15px;
}

/*
########## Button Hover Style ##########
*/
.hover-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.hover-button:hover span, .hover-button:hover i {
  color: #f5f6fa;
}

.hover-button:after {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  height: 490%;
  width: 140%;
  background: rgba(52, 73, 94, .65);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.hover-button:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.hover-button span, .hover-button i {
  position: relative;
  z-index: 1;
  transition: all .5s ease-in-out;
  color: rgba(52, 73, 94, .65);
}

/*
########## News Overview ##########
*/
.latest-news .news-item {
  display: flex;
  background: #f5f6fa;
  position: relative;
}

.latest-news .left-side, .latest-news .right-side {
  width: 50%;
  height: 350px;
}

.latest-news .news-item .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.latest-news .news-item .text-box {
  padding: 35px;
  position: relative;
  height: 100%;
}

.latest-news .news-item .title {
  font-size: 30px;
  padding-bottom: 40px;
}

.latest-news .news-item .text {
  font-size: 18px;
}

.latest-news .news-item a.read-more {
  position: absolute;
  bottom: 35px;
  right: 35px;
  text-decoration: none;
  color: rgba(52, 73, 94, .8);
  font-size: 20px;
  padding: 10px 25px;
}

.latest-news .news-item a.read-more i {
  font-size: 16px;
  padding-left: 10px;
}

.latest-news .right-side .text-box::after, .latest-news .left-side .text-box::after {
  content: "";
  position: absolute;
  top: 160px;
  width: 30px;
  height: 30px;
  background: #f5f6fa;
  transform: rotate(45deg);
}

.latest-news .left-side .text-box::after {
  right: -15px;
}

.latest-news .right-side .text-box::after {
  left: -15px;
}

.latest-news {
  padding-bottom: 50px;
}

.latest-news .news-item::before {
  content: "";
  width: calc(((100vw - 100%) / 2) - 10px);
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  z-index: 10;
  background: #f5f6fa;
}

.latest-news .news-item:nth-child(even)::before {
  right: calc(((100vw - 100%) / 2) * -1 + 10px);
}

.latest-news .news-item:nth-child(odd)::before {
  left: calc(((100vw - 100%) / 2) * -1 + 10px);
}

a.read-more.hover-button::after {
  left: -2px;
}

/*
########## Post Detail ##########
*/
.post_detail .image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.post-detail-inner {
  text-align: center;
  background: #f5f6fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 30px;
}

.post_detail .title::after {
  content: "";
  width: 50%;
  background: #2980b9;
  position: absolute;
  bottom: -10px;
  left: 25%;
  height: 1px;
}

.post_detail .title {
  text-align: center;
  font-size: 40px;
  font-weight: 300;
  line-height: 45px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.post_detail .content {
  text-align: left;
  padding-top: 30px;
  font-size: 20px;
  line-height: 27px;
}

.post_detail .information {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.next-prev-posts .not-active {
  display: none;
}

.next-prev-posts .right-side {
  text-align: right;
}

.next-prev-posts .left-side {
  text-align: left;
}

.next-prev-posts .left-side, .next-prev-posts .right-side {
  width: 50%;
}

.next-prev-posts {
  display: flex;
  padding-top: 35px;
}

.next-prev-posts a.prev-post, .next-prev-posts a.next-post {
  color: inherit;
  text-decoration: none;
  font-size: 18px;
  padding: 15px 30px;
  background: #f5f6fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.next-prev-posts a.prev-post i {
  padding-right: 5px;
}

.next-prev-posts a.next-post i {
  padding-left: 5px;
}

/*
########## Player Card ##########
*/
.player-card {
  display: flex;
  width: 49%;
  background: #f5f6fa;
  margin-bottom: 2%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.player-card:nth-child(even) {
  margin-left: 1%;
}

.player-card:nth-child(odd) {
  margin-right: 1%;
}

.player-card .left-side {
  width: 40%;
}

.player-card .right-side {
  width: 60%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  background: #f5f6fa;
  padding-left: 90px;
  padding-top: 10px;
  height: 250px;
  position: relative;
}

.player-cards-wrapper {
  display: flex;
  padding: 25px 0px;
  flex-wrap: wrap;
}

.player-card .left-side .image {
  height: 250px;
  width: 150%;
}

.player-card .player-name {
  font-size: 26px;
  margin-bottom: 35px;
  text-align: center;
  margin-top: 5px;
}

.player-card .right-side .player-stat span {
  display: block;
  font-size: 18px;
}

.player-card .right-side .bot {
  margin: 5px 0px 15px 10px;
  display: block;
}

.player-card .right-side a.more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #34495e;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
}

.player-card .right-side a.more i {
  display: inline-block;
  font-size: 15px;
  margin: 0px 5px;
}

.player-stat {
  margin-bottom: 9px;
  display: flex;
  flex-wrap: wrap;
}

.player-stat span:nth-child(2) {
  width: 53%;
}

.player-stat span {
  width: 47%;
}

/*
########## Player Profile ##########
*/
.player-profile .player-name {
  font-size: 37px;
  margin-bottom: 20px;
}

.player-profile .player .player-inner {
  display: flex;
}

.player-profile .player-image, .player-profile .player-info {
  width: 48%;
}

.player-profile .player-image {
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 2%;
}

.player-profile .player-info {
  margin-left: 2%;
  background: #ecf0f1;
  padding: 25px 20px;
  border: 1px solid rgba(52, 73, 94, .5);
  max-height: 350px;
  display: grid;
}

.player-profile {
  background: #f5f6fa;
  padding: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.player-info-item span:nth-child(2) {
  width: 40%;
}

.player-info-item span {
  width: 60%;
  font-size: 18px;
}

.player-info-item {
  display: flex;
  line-height: 50px;
}

.player-extra-text {
  font-size: 18px;
  margin: 15px 0px;
}

.table-items-wrapper:hover {
  background: #ecf0f1;
}

.table-items-wrapper {
  display: flex;
  transition: all .2s ease-in-out;
  color: #34495e;
  text-decoration: none;
}

.table-top-bar {
  text-align: center;
  background: #ecf0f1;
}

.table-items-wrapper .table-item {
  padding: 15px 0px;
  width: 16.66666%;
  text-align: center;
}

.last-games-table .last-games-text {
  font-size: 35px;
  font-weight: 100;
  padding: 25px 0px;
  text-align: center;
}

/*
########## News List ##########
*/
.news-list-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.news-post {
  display: flex;
  margin-bottom: 2%;
  width: 49%;
  background: #f5f6fa;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.news-post:nth-child(odd) {
  margin-right: 1%;
}

.news-post:nth-child(even) {
  margin-left: 1%;
}

.news-post .right-side {
  width: 60%;
  padding: 5px 20px;
  font-weight: 300;
  position: relative;
}

.news-post .left-side {
  width: 40%;
}

.news-post .left-side .image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
}

.news-post .right-side .title {
  font-size: 25px;
  margin: 5px 0px 10px 0px;
}

.news-post .right-side .text {
  font-size: 18px;
}

.news-post .right-side a.detail-link i {
  padding-left: 15px;
  font-size: 14px;
}

.news-post .right-side a.detail-link {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 18px;
}

a.prev-page {
  float: left;
}

a.next-page {
  float: right;
}

a.next-page, a.prev-page {
  text-decoration: none;
  color: #34495e;
  font-size: 20px;
  font-weight: 300;
  padding: 10px 25px;
}

a.prev-page i, a.next-page i {
  position: relative;
  top: 1px;
  padding: 0px 7px;
  font-size: 17px;
}

a.next-page::after {
  left: 10px;
}

a.prev-page::after {
  left: 20px;
}

/*
########## Footer ##########
*/
.top-footer {
  padding: 0px 15px 50px;
}

.top-footer-wrapper {
  display: flex;
}

.footer-infos, .footer-contact {
  width: 50%;
}

.footer-infos span {
  display: block;
  padding: 8px 0px;
  font-size: 20px;
}

.footer-contact span:nth-child(1) input {
  width: 49%;
}

.footer-contact span:nth-child(1) input:nth-child(1) {
  margin-right: calc(1% - 2px);
}

.footer-contact span:nth-child(1) input:nth-child(2) {
  margin-left: calc(1% - 2px);
}

.footer-contact input {
  background: transparent;
  border: 1px solid rgba(52, 73, 94, .8);
  padding: 10px;
}

.footer-contact textarea {
  max-width: calc(100% - 1px);
  min-width: calc(100% - 1px);
  background: transparent;
  border: 1px solid rgba(52, 73, 94, .8);
  min-height: 90px;
  max-height: 90px;
  padding: 10px;
}

.footer-contact span:nth-child(1) {
  margin-bottom: 20px;
  display: block;
}

.footer-title {
  text-align: center;
  font-size: 40px;
  padding: 40px 0px;
}

input.submit-button {
  float: right;
  margin-top: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.bottom-footer {
  display: flex;
  padding: 30px 10px 10px;
  font-size: 16px;
  position: relative;
}

.bottom-footer .left, .bottom-footer .middle, .bottom-footer .right {
  width: 33.3333333%;
}

.bottom-footer .middle {
  text-align: center;
}

.bottom-footer .middle a {
  color: rgba(52, 73, 94, .8);
  text-decoration: none;
  display: inline-block;
  padding-right: 20px;
}

.bottom-footer .right {
  text-align: right;
}

.bottom-footer::before {
  content: "";
  height: 1px;
  width: calc(100% - 20px);
  position: absolute;
  top: 15px;
  background: rgba(52, 73, 94, .6);
  left: 10px;
}

/*
########## Schedule ##########
*/
.schedule-item {
  margin-bottom: 25px;
  background: #f5f6fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.schedule-item .schedule-month {
  background: rgba(52, 73, 94, .65);
  color: #ecf0f1;
  padding: 15px;
  font-size: 20px;
}

.schedule-game-info {
  padding: 25px 20px;
  font-size: 17px;
  display: inline-block;
  width: 100%;
  position: relative;
}

.schedule-game-info .left-side, .schedule-game-info .right-side {
  display: flex;
  height: 20px;
}

.schedule-game-info .left-side .vs {
  padding: 0px 25px;
}

.schedule-game-info .left-side {
  float: left;
}

.schedule-game-info .right-side {
  float: right;
}

.schedule-game-info .right-side .slash {
  padding: 0px 10px;
}

.schedule-game-info::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  margin: 0 auto;
  left: 20px;
  top: 0;
  background: rgba(52, 73, 94, .25);
}

.schedule-game-info:nth-child(2)::before {
  content: none;
}

/*
########## Games List ##########
*/
.games-list-month {
  background: rgba(52, 73, 94, .65);
  color: #ecf0f1;
  padding: 15px;
  font-size: 20px;
}

.games-list-game-item {
  display: flex;
  padding: 25px 20px;
  font-size: 17px;
  width: 100%;
  position: relative;
}

.games-list-game-item .left-side, .games-list-game-item .right-side {
  width: 33.33333%;
  line-height: 40px;
}

.games-list-game-item .left-side-inner {
  display: flex;
}

.games-list-game-item .right-side {
  text-align: right;
}

.games-list-game-item .team1-score.team-score::after {
  content: "";
  width: 1px;
  height: 90%;
  position: absolute;
  right: 0;
  top: 5%;
  background: rgba(52, 73, 94, .45);
}

.games-list-game-item .team-score {
  padding: 0px 10px;
  position: relative;
}

.games-list .more-info {
  text-align: right;
  width: 33.333333%;
}

.games-list .more-info a.more-info-button {
  color: #ecf0f1;
  text-decoration: none;
  padding: 10px 25px;
  display: inline-block;
  position: relative;
  background: rgba(52, 73, 94, .65);
  font-size: 17px;
  margin-right: 20px;
}

.games-list .more-info a.more-info-button i {
  padding-left: 8px;
  font-size: 14px;
}

.games-list-item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin-bottom: 35px;
}

.games-list-game-item::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  margin: 0 auto;
  left: 20px;
  top: 0;
  background: rgba(52, 73, 94, .25);
}

.games-list-game-item:nth-child(2)::before {
  display: none;
}

/*
########## Achievements ##########
*/
.team-achievements {
  display: flex;
}

.team-achievements-box {
  width: 23%;
  margin: 0px 1%;
  background: #f5f6fa;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.team-achievements-box .amount {
  font-size: 65px;
  margin-bottom: 15px;
}

.team-achievements-box .text {
  font-size: 25px;
}

.team-achievements-box .icon {
  font-size: 26px;
  margin-bottom: 15px;
}

.swiper-container.achievements {
  width: 100%;
  height: 155px;
}

.swiper-container.achievements .swiper-slide {
  background: #f5f6fa;
  height: 150px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin: 1px;
  display: flex;
  transition: all .3s ease-in-out;
}

.swiper-container.achievements .swiper-slide.swiper-slide-next {
  background: rgba(52, 73, 94, .65);
  color: #f5f6fa;
}

.swiper-container.achievements .swiper-slide .image {
  width: 35%;
  height: calc(100% - 10px);
  background-size: cover;
  background-position: center;
  margin-top: 5px;
  margin-left: 5px;
}

.swiper-container.achievements .swiper-slide .name {
  line-height: 150px;
  font-size: 22px;
  margin-left: 15px;
}

.swiper-button-prev::after, .swiper-button-next::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 45px;
}

.swiper-button-next, .swiper-button-prev {
  background: none !important;
}

.swiper-button-prev::after {
  content: "\f0d9";
  color: #f5f6fa;
  margin-left: 10px;
}

.swiper-button-next::after {
  color: rgba(52, 73, 94, .65);
  margin-left: 15px;
  content: "\f0da";
}

.player-achievements {
  background: #f5f6fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.player-achievements-outer {
  position: relative;
}

.player-achievements.active {
  transition: all .4s ease-in-out;
  opacity: 1;
  visibility: visible;
  margin-top: 25px;
}

.player-achievements .placings {
  margin-bottom: 15px;
}

.player-achievements .placings .placings-text {
  width: 100%;
  text-align: center;
  font-size: 20px;
  padding: 18px;
  position: relative;
}

.player-achievements .placings .placings-text::before {
  content: "";
  display: block;
  background: rgba(52, 73, 94, .3);
  height: 1px;
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 5%;
}

.player-achievements .placings .placings-text:nth-child(3)::after {
  display: none;
}

.player-achievements-list {
  display: flex;
}

.player-achievements-detailed {
  width: 33.33333%;
  padding: 10px;
  position: relative;
}

.player-achievements-detailed span {
  display: block;
  padding: 10px;
}

.player-achievements-detailed::after {
  content: "";
  display: block;
  background: rgba(52, 73, 94, .3);
  height: 94%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 3%;
}

.player-achievements-detailed:nth-child(3)::after {
  display: none;
}

.player-achievements-detailed span i {
  margin-right: 6px;
  color: rgba(52, 73, 94, .5);
}

/*
########## Games Detail ##########
*/
.games-detail {
  background: #f5f6fa;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.games-detail-inner {
  display: flex;
}

.games-detail .team-1, .games-detail .team-2 {
  width: 48%;
  margin: 1%;
}

.games-detail .team-name, .total-team-stats-text {
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.player-stats-box .player-name {
  font-size: 22px;
  padding: 10px;
  text-align: center;
}

.stats-box .stats-text-line, .stats-box .stat-line, .stats-box .total-stat-line {
  display: flex;
}

.stats-box .stats-text-line .text, .stats-box .stat-line .stat, .stats-box .total-stat-line .stat {
  width: 16.666666%;
  text-align: center;
  padding: 10px;
  position: relative;
}

.player-stats-box {
  margin: 25px 0px 35px 0px;
}

.stats-box .stats-text-line .text::before, .stats-box .stat-line .stat::before, .stats-box .total-stat-line .stat::before, .stats-box .stat-line .average::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  height: 1px;
  width: 60%;
  display: block;
  background: rgba(52, 73, 94, .35);
}

.stats-box .stats-text-line .text::after, .stats-box .stat-line .stat::after, .stats-box .total-stat-line .stat::after, .stats-box .stat-line .average::after {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  display: block;
  background: rgba(52, 73, 94, .35);
}

.stats-box .stats-text-line .text:nth-last-child(1)::after, .stats-box .stat-line .stat:nth-last-child(1)::after, .stats-box .total-stat-line .stat:nth-last-child(1)::after {
  display: none;
}

.total-stat-line {
  margin-top: 25px;
}

.stats-box .stat-line .average {
  width: 66.666666%;
  padding: 10px;
  position: relative;
  padding-left: 30px;
}

.stats-box .stat-line .average::before {
  width: 90%;
  left: 5%;
}

.games-detail .team-score .empty-field {
  width: 83.333333%;
}

.games-detail .team-score .score {
  width: 16.666666%;
}

.games-detail .team-score .score, .team-score .empty-field {
  font-size: 22px;
  padding: 10px;
  text-align: center;
}

.games-detail .team-score, .team-score-outer {
  display: flex;
  position: relative;
}

.games-detail .team-score {
  width: 48%;
  margin: 1%;
}

.final-score-text {
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.final-score {
  padding-top: 25px;
}

.score-team-1.team-score::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(52, 73, 94, .55);
  display: block;
}
