/*
 * STUDIOWEB THEME
 * Author: Gustavo Silva
 * Email: ghustavosm@gmail.com
 */

/* GLOBAL */
body {
    position: relative;
	font-family: 'Open Sans', sans-serif;
	background: #ededed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

/* LINKS */
a,
a:hover {
	color: #333;
}

/* WORDPRESS */
body.admin-bar .navbar-fixed-top {
	top: 32px;
}

/* COLORS */
.bg-color-white {
	background-color: #fff !important;
	color: #333;
}
.bg-color-black {
	background-color: #000 !important;
	color: #fff;
}

/* TITLES
------------------------- */


/* TEXT
------------------------- */
p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
    line-height: 18px;
    color: #333;
}
p.large {
    font-size: 18px
}
.text-faded {
    color: rgba(255,255,255,.7);
}
.text-normal {
    font-style: normal !important;
}
.text-muted {
    color: #777
}
.text-primary {
    color: #363636
}
.text-shadow {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

/* VIDEOS */
.embed-container { 
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* IMAGES */
.bg-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.bg-cover-top {
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.image-container {
	overflow: hidden;
}
.img-center {
    margin: 0 auto
}

/* SEPARATORS
------------------------- */
hr {
    border-color: #f5f5f5;
    border-width: 2px;
}
hr.style-1 {
    border-color: #f5f5f5;
    border-width: 1px;
}
hr.style-2 {
    max-width: 50px;
    border-color: #f05f40;
    border-width: 3px;
}
hr.light {
    border-color: #fff;
}

/* ANIMATIONS
------------------------- */
@keyframes slide-down {
	50% {
		transform: translateY(15px);
	}
}
@keyframes slide-up {
	50% {
		transform: translateY(-15px);
	}
}
@keyframes slide-right {
	50% {
		transform: translateX(15px);
	}
}
@keyframes slide-left {
	50% {
		transform: translateX(-15px);
	}
}
.loop-move-up {
	animation: slide-up 1s ease-in-out infinite;
}
.loop-move-down {
	animation: slide-down 1s ease-in-out infinite;
}
.loop-move-right {
	animation: slide-right 1s ease-in-out infinite;
}
.loop-move-left {
	animation: slide-left 1s ease-in-out infinite;
}

/* ALIGN */
.center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.center-x {
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
}
.center-x-no-translate {
    position: absolute;
    left: 50%;
}
.center-y {
	/*calc(50vh)*/
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
}
.center-y-no-translate {
    position: absolute;
    top: 50%;
}
.clear {
	clear: both;
}

/* ROWS */
.equal {
  display: flex;
  flex-wrap: wrap;
}  
.equal > div[class*='col-'] {  
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .equal2, .equal2 > div[class*='col-'] {  
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex:1 0 auto;
  }
}

/* COLS */
.no-gutter > [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}

/* TRANSITIONS */
.no-transition {
	transition: all 0.01s;
}
.transition {
    transition: all .3s;
}
.scale-hover {
    transition: all 1s ease-out;
}
*:hover > .scale-hover {
    transform: scale(1.2,1.2);    
}

/* PADDINGS */
.padding-0,
.no-padding {
    padding: 0 !important;
}
.padding-left-0
.no-padding-left {
    padding-left: 0 !important;
}
.padding-left-5 {
    padding-left: 5px !important;
}
.padding-left-7 {
    padding-left: 7px !important;
}
.padding-left-10 {
    padding-left: 10px !important;
}
.padding-left-15 {
    padding-left: 15px !important;
}
.padding-left-20 {
    padding-left: 20px !important;
}
.padding-left-25 {
    padding-left: 25px !important;
}
.padding-left-30 {
    padding-left: 30px !important;
}
.padding-top-0,
.no-padding-top {
    padding-top: 0 !important;
}
.padding-top-5 {
    padding-top: 5px !important;
}
.padding-top-7 {
    padding-top: 7px !important;
}
.padding-top-10 {
    padding-top: 10px !important;
}
.padding-top-15 {
    padding-top: 15px !important;
}
.padding-top-20 {
    padding-top: 20px !important;
}
.padding-top-25 {
    padding-top: 25px !important;
}
.padding-top-30 {
    padding-top: 30px !important;
}
.padding-right-0,
.no-padding-right {
    padding-right: 0 !important;
}
.padding-right-5 {
    padding-right: 5px !important;
}
.padding-right-7 {
    padding-right: 7px !important;
}
.padding-right-10 {
    padding-right: 10px !important;
}
.padding-right-15 {
    padding-right: 15px !important;
}
.padding-right-20 {
    padding-right: 20px !important;
}
.padding-right-25 {
    padding-right: 25px !important;
}
.padding-right-30 {
    padding-right: 30px !important;
}
.padding-bottom-0,
.no-padding-bottom {
    padding-bottom: 0 !important;
}
.padding-bottom-5 {
    padding-bottom: 5px !important;
}
.padding-bottom-7 {
    padding-bottom: 7px !important;
}
.padding-bottom-10 {
    padding-bottom: 10px !important;
}
.padding-bottom-15 {
    padding-bottom: 15px !important;
}
.padding-bottom-20 {
    padding-bottom: 20px !important;
}
.padding-bottom-25 {
    padding-bottom: 25px !important;
}
.padding-bottom-30 {
    padding-bottom: 30px !important;
}

/* MARGINS */
.margin-0,
.no-margin {
    margin: 0 !important;
}
.margin-left-0,
.no-margin-left {
    margin-left: 0 !important;
}
.margin-left-5 {
    margin-left: 5px !important;
}
.margin-left-7 {
    margin-left: 7px !important;
}
.margin-left-10 {
    margin-left: 10px !important;
}
.margin-left-15 {
    margin-left: 15px !important;
}
.margin-left-20 {
    margin-left: 20px !important;
}
.margin-left-25 {
    margin-left: 25px !important;
}
.margin-left-30 {
    margin-left: 30px !important;
}
.margin-top-0,
.no-margin-top {
    margin-top: 0 !important;
}
.margin-top-5 {
    margin-top: 5px !important;
}
.margin-top-7 {
    margin-top: 7px !important;
}
.margin-top-10 {
    margin-top: 10px !important;
}
.margin-top-15 {
    margin-top: 15px !important;
}
.margin-top-20 {
    margin-top: 20px !important;
}
.margin-top-25 {
    margin-top: 25px !important;
}
.margin-top-30 {
    margin-top: 30px !important;
}
.margin-right-0,
.no-margin-right {
    margin-right: 0 !important;
}
.margin-right-5 {
    margin-right: 5px !important;
}
.margin-right-7 {
    margin-right: 7px !important;
}
.margin-right-10 {
    margin-right: 10px !important;
}
.margin-right-15 {
    margin-right: 15px !important;
}
.margin-right-20 {
    margin-right: 20px !important;
}
.margin-right-25 {
    margin-right: 25px !important;
}
.margin-right-30 {
    margin-right: 30px !important;
}
.margin-bottom-0,
.no-margin-bottom {
    margin-bottom: 0px !important;
}
.margin-bottom-5 {
    margin-bottom: 5px !important;
}
.margin-bottom-7 {
    margin-bottom: 7px !important;
}
.margin-bottom-10 {
    margin-bottom: 10px !important;
}
.margin-bottom-15 {
    margin-bottom: 15px !important;
}
.margin-bottom-20 {
    margin-bottom: 20px !important;
}
.margin-bottom-25 {
    margin-bottom: 25px !important;
}
.margin-bottom-30 {
    margin-bottom: 30px !important;
}

/* BORDER RADIUS */
.rounded {
	border-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 4px);
}
.rounded-top {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 4px 4px 0 0);
}
.rounded-bottom {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 0 0 4px 4px);
}
.rounded-left {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 4px 0 0 4px);
}
.rounded-right {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 0 4px 4px 0);
}
.rounded-top-left {
	border-top-left-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 4px 0 0 0);
}
.rounded-top-right {
	border-top-right-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 0 4px 0 0);
}
.rounded-bottom-left {
	border-bottom-left-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 0 0 4px 0);
}
.rounded-bottom-right {
	border-bottom-right-radius: 4px;
	-webkit-clip-path: inset(0 0 0 0 round 0 0 0 4px);
}

/* CORNER */
.corner {
    background: url(../images/corner.png) no-repeat top left;
    height: 20px;
    position: absolute;
    width: 20px;
    z-index: 99;
}
.topleft {
    left: 0;
    top: 0;
}
.topright {
    right: 0;
    top: 0;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}
.bottomright {
    bottom: 0;
    right: 0;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.bottomleft {
    bottom: 0;
    left: 0;
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

/* CONTROLS
-------------------------*/
/*.controls,
.bx-controls-direction {
	display: table;
    position: relative;	
    top: auto;	
	margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 30px;

}
.controls .prevBtn,
.bx-controls-direction .bx-prev,
.controls .nextBtn,
.bx-controls-direction .bx-next {
	display: inline-block;
	position: relative;
    width: 32px;
    height: 32px;
    margin: 0 4px;    
	background: rgba(0,0,0,0.1);
	border-radius: 100%;    
    cursor: pointer;
	transition: all .3s;
}

.controls > a:before,
.bx-controls-direction > a:before {
    font-family: FontAwesome;
	font-size: 20px;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 32px;
	padding-right: 32px;
    color: #fff;
}

.controls > a,
.bx-controls-direction > a {
	transition: all .3s;
	overflow: hidden;
}

.controls > a:hover,
.sw-carousel-controls > a:hover,
.bx-controls-direction > a:hover {
	background-color: #fecb16 !important;
	text-decoration: none;
}

.prevBtn:before,
.bx-prev:before {
    content: "\f104";
	padding-left: 12px;
}
.nextBtn:before,
.bx-next:before {
    content: "\f105";
	padding-left: 14px;
}*/

/* FORMS */
form .alert-success,
form .alert-warning {
	display: table !important;
    width: 100% !important;
}
.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
.btn-file input[readonly] {
  background-color: white !important;
  cursor: text !important;
}
.form-group input,
.form-group select {
    height: 44px;
    margin-bottom: 10px;
}
.form-group select {
	padding: 28px;
}
.form-group .dark::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #666;
}
.form-group .dark:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #666;
   opacity: 1;
}
.form-group .dark::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #666;
   opacity: 1;
}
.form-group .dark:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #666;
}
.form-group .dark:placeholder-shown { /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #666;
}

/* SCROLL TOP */
.scroll-top {
    z-index: 1049;
    position: fixed;
    right: 2%;
    bottom: 2%;
    width: 50px;
    height: 50px;
}

.scroll-top .btn {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 20px;
    line-height: 28px;
}

.scroll-top .btn:focus {
    outline: 0;
}



/* FANCYBOX */
.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* THEME HEADER */

@media (min-width: 992px) {

}
.theme-header .theme-nav .col-sm-5,
.theme-header .theme-nav .col-md-5{
	padding: 0;
}
.theme-header .theme-nav .col-sm-2,
.theme-header .theme-nav .col-md-2{
	position: relative;
	padding: 0;
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}




.marketing-grid {
    text-align: center;
}

/* BANNER TOP */
.section-banner-top {
	padding: 7px 0;
}









/****/
.banner-triplex {
}
.banner-triplex .banner {
}
.banner-triplex .banner img {
	margin: 0 auto;
}

/****/
.banner-duplex {
}
.banner-duplex .banner {
}
.banner-duplex .banner img {
	margin: 0 auto;
}


/***/
.next-match {
	background-color: #fff;
	padding-top: 30px;
}
.next-match header h2 {
	background-color: #fff;
}
.next-match .table.info {
}
.next-match .table.info tr:first-child td {	
	border: 0;
}
.next-match .championship {
	font-size: 22px;
	line-height: 25px;
	text-transform: uppercase;
	letter-spacing: -1px;
}
.next-match .match {
	font-size: 48px;
	font-weight: 600;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: -4px;
}
.next-match .match .versus {
	font-size: 34px;
}
.next-match .date {
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	letter-spacing: -1px;
}
.next-match .illustration {
	position: relative;
}
.next-match .home {
	position: absolute;
	top: 25px;
	left: 80px;
	z-index: 1;
}
.next-match .visitor {
	position: absolute;
	top: 25px;
	right: 80px;
	z-index: 1;
}
.next-match .shadow {
	position: absolute;
	top: 145px;
	width: 60px;
	height: 10px;
    background-color: #000;    
    border-radius: 50%;
    box-shadow: 0 0 40px 20px #000;
    z-index: 0;
}
.next-match .shadow-home {
	left: 113px;
}
.next-match .shadow-visitor {
	right: 113px;
}
.next-match .field {
	margin: 110px auto 0;
}
.next-match .tables {
}
.next-match .tables .table-top-left {
	float: left;
	width: 55%;
	height: 36px;
	padding: 8px;
	background-color: #1c1c1c;
	font-size: 13px;
	color: #fff;
}
.next-match .tables .table-top-right {
	float: left;
	width: 45%;
	height: 30px;
	margin-top: 6px;
	padding: 5px 8px;
	background-color: #3e3e3e;
	font-size: 13px;
	color: #fff;
} 
.next-match .tables .classification {
	font-size: 11px;
}
@media (min-width: 768px) {
	.next-match .illustration {
		margin-bottom: 15px;
	}
	.next-match .home {
		top: -85px;
		left: 165px;
	}
	.next-match .visitor {
		top: -85px;
		right: 165px;
	}
	.next-match .shadow-home {
		left: 200px;
		top: 25px;
	}
	.next-match .shadow-visitor {
		right: 200px;
		top: 25px;
	}
}
@media (min-width: 992px) {
	.next-match .illustration {
		margin-bottom: 0;
	}
	.next-match .home {
		top: 25px;
		left: 80px;
	}
	.next-match .visitor {
		top: 25px;
		right: 80px;
	}
	.next-match .shadow-home {
		left: 113px;
		top: 145px;
	}
	.next-match .shadow-visitor {
		right: 113px;
		top: 145px;
	}
	.next-match .tables .table-top-left {
		height: 33px;
		font-size: 12px;
	}
	.next-match .tables .table-top-right {
		height: 27px;
		font-size: 12px;
	} 
	.next-match .tables .classification {
		font-size: 9px;
	}
}
@media (min-width: 1200px) {
	.next-match .tables .table-top-left {
		font-size: 13px;
	}
	.next-match .tables .table-top-right {
		font-size: 13px;
	} 
	.next-match .tables .classification {
		font-size: 11px;
	}
}

/****/
.next-matches {
	background-color: #fff;
	/*padding-bottom: 40px;*/
}
.next-matches header h4 {
	background-color: #fff;
}
.next-matches .box {
	display: table;
	margin: 0 auto;
}
.next-matches .shield {
	position: relative;
	float: left;
	width: 65px;
	height: 72px;
	z-index: 0;
}
.next-matches .shield.right {
	margin-left: -25px;
}
.next-matches .vs {
	position: relative;
	float: left;
	margin-top: 17px;
	margin-left: -25px;
	z-index: 1;
}
.next-matches .date {
	font-size: 18px;
	font-weight: 600;
	margin-top: 10px;
	letter-spacing: -1px;
}




.videos-section {
	
}
.videos-section .video {
	position: relative;
	width: 100%;
	height: 200px;
	margin-bottom: 15px;
	display: block;
	background-color: #000;
	overflow: hidden;
}
.videos-section .video figure {
	width: 100%;
	height: 100%;
}
.videos-section .video figure:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(60%,transparent),to(rgba(0,0,0,.6)));
    background-image: -webkit-linear-gradient(top,transparent 60%,rgba(0,0,0,.6));
    background-image: linear-gradient(180deg,transparent 60%,rgba(0,0,0,.6));
    background-color: transparent;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-top-radius: 4px;
}
.videos-section .video:hover figure {
	opacity: 0.8;
}
.videos-section .video .icon {
	width: 65px;
    height: 79px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url(../images/theme/play.svg);
    background-size: cover;
    opacity: .8;
    filter: alpha(opacity=80);
    z-index: 99;
}
.videos-section .video .caption {
	padding: 15px;
	position: absolute;
	bottom: 0;
}
.videos-section .video .caption .hat {
	margin-bottom: 3px;
	text-transform: uppercase;
	font-weight: 500;
	color: rgba(255,255,255,0.8);
}
.videos-section .video .caption .title {
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	color: #fff;
}
.videos-section .video .info {
	margin-top: 15px;
	color: #a1a1a1;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	line-height: 20px;
}
.videos-section .video .info ul {	
}
.videos-section .video .info ul li {	
}
.videos-section .video .info ul li div {
	font-size: 20px;
	float: left;
	margin-right: 5px;
	color: #777;
}


.players-section {
}
.players-section .col-left {
	height: 418px;
	position: relative;
}
.players-section .col-center {
	height: 418px;
	position: relative;
}
.players-section .col-right {
	height: 418px;
	position: relative;
}
.players-section .shirt {
	color: #fff;
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: #333;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.players-section .shirt .number {
	padding-top: 70px;
	padding-bottom: 15px;
	line-height: 150px;
	font-size: 150px;
	font-weight: 700;
}
.players-section .shirt .name {
	letter-spacing: -1px;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
}
.players-section .shirt .position {
	padding-top: 10px;
	letter-spacing: -1px;
	font-size: 19px;
	font-weight: 500;
	text-transform: uppercase;
}
.players-section .photo {
	color: #fff;
	width: 100%;
	height: 100%;
	background-color: #333;
	display: block;
}
.players-section .info {
	color: #fff;
	padding: 25px 30px;
	width: 100%;
	height: 100%;
	background-color: #333;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.players-section .info table th {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 10px;
}
.players-section .info table td {
	line-height: 26px;
}
.players-section .info table td:first-child {
	width: 150px;
	font-weight: 600;
	text-transform: uppercase;
}
.players-section .players-slider .thumb {
	width: 130px;
	height: 106px;
}

@media (min-width: 768px) {
	.players-section .info table th {
		font-size: 24px;
	}
	.players-section .shirt .number {
		padding-top: 10px;
		padding-bottom: 0;
		font-size: 110px;
	}
	.players-section .shirt .name {
		font-size: 20px;
	}
	.players-section .info table td {
		font-size: 10px;
		line-height: 18px;
	}
	.players-section .info table td:first-child {
		width: 100px;
		font-weight: 500;
	}
}
@media (min-width: 992px) {
	.players-section .info table th {
		font-size: 30px;
	}
	.players-section .shirt .number {
		padding-top: 30px;
		font-size: 150px;
	}
	.players-section .shirt .name {
		font-size: 34px;
	}
	.players-section .info table td {
		font-size: 13px;
		line-height: 26px;
	}
	.players-section .info table td:first-child {
		width: 150px;
		font-weight: 600;
	}
}
@media (min-width: 1200px) {
	.players-section .shirt .number {
		padding-top: 70px;
	}
	.players-section .shirt .name {
		font-size: 36px;
	}
	.players-section .info table td {
		font-size: 14px;
	}
}

/* footer */

/* POST */
.content-section {
	margin-top: 30px;
	margin-bottom: 15px;
}
.content-section .left {
}
.content-section .post {
}
.content-section .post-title {
	font-size: 44px;
    font-weight: 600;
    letter-spacing: -2px;
    word-wrap: break-word;
}
.content-section .caption {
	padding-bottom: 15px;
	font-size: 18px;
    letter-spacing: -1px;
	color: #999;
	line-height: 24px;
    word-wrap: break-word;
}
.content-section .date {
	font-size: 12px;
	color: #666;
}
.content-section .text {
}
.content-section .text p {
    color: #555;
    line-height: 25px;
    margin-bottom: 24px;
    word-wrap: break-word;
}
.content-section .comments {
}
.content-section .post-before {
	border-top: 1px solid #ccc;
	padding-top: 16px;
	padding-bottom: 16px;
}

.content-section .sidebar {
}
.content-section .sidebar .sidebar-widget {
    margin-bottom: 30px;
}


.content-section .error-404 {
	margin-top: 20px;
}
.content-section .error-404 .img-alert {
	margin-top: 30px;
}
.content-section .error-404 .title {
	margin-bottom: 15px;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.1;
}
.content-section .error-404 .caption {
	width: 416px;
	color: #484848;
	font-size: 32px;
	line-height: 1.1;
}
.content-section .error-404 .code {
	color: #767676
}

/*****/
.content-section .content-players {
	margin-bottom: 20px;
}
.content-section .content-players table {
	
}
.content-section .content-players  table tr {
	
}
.content-section .content-players  table td {
	padding-right: 10px;
	padding-bottom: 5px;
}
.content-section .content-players h2 {
	margin-top: 10px;
}

/*****/
/****/
.archives {
	
}

.archives .info {
	margin-top: 15px;
}
.archives .info .item-container {
    color: #a1a1a1;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	line-height: 36px;
}
.archives .info .items {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 36px;
}
.archives .info .items .item {
    float: left;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}
.archives .info .items .item .item-icon {
	font-size: 20px;
	float: left;
	margin-right: 5px;
	color: #777;
    line-height: 36px;
}


/****/
.archives .player {
	margin-bottom: 15px;
}
.archives .player figure {
	position: relative;
	width: 100%;
	height: 260px;
}
.archives .player figure a {
	display: block;
	width: 100%;
	height: 100%;
}
.archives .player .title {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
}
@media (min-width: 768px) {
	.archives .player figure {
		height: 260px;
	}
}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {
	.archives .player figure {
		height: 260px;
	}
}

/*******/
.archives .matches {
}
.archives .matches .box {
	width: 100%;
	padding: 15px;
	background-color: #fff;
	text-align: center;
	border: 1px solid #ccc;
	line-height: 72px;
}
.archives .matches .shield {
	position: relative;
	width: 65px;
	height: 72px;
	z-index: 0;
}
.archives .matches .info {
	line-height: normal;
	color: #555;
	padding-bottom: 10px;
	font-size: 13px;
}
.archives .matches .name {
	width: 30%;
}
.archives .matches .image {
	width: 15%;
}
.archives .matches .score {
	width: 10%;
}



/* =Pagination
----------------------------------------------- */
ul.page-numbers {
	display: table;
	margin: 10px auto 15px;   
}
.page-numbers {
	font-size: 14px;
	padding: 0;   
}
.page-numbers li {
	display: inline-block;
	margin-left: 4px;
}
.page-numbers a,
.page-numbers .dots,
.page-numbers .next,
.page-numbers .prev,
.page-numbers .current {
	padding: 10px 15px;
	border: 1px solid #ccc;
	background-color: #fff;
	text-decoration: none; 
	color: #333;
	cursor: pointer;
}
.page-numbers .next,
.page-numbers .prev {
	display: inline-block;
	border-color: #ccc;
	background-color: #ccc;
	color: #333;
}
.page-numbers a:hover,
.page-numbers .current:hover {
	border-color: #ccc;
	background-color: #ccc;
	color: #333;
	text-decoration: none; 
}
.page-numbers .next:hover,
.page-numbers .prev:hover {
	background-color: #bbb;
}
.page-numbers .current {
	border-color: #aaa;
	font-weight: bold;
}









/* Pure CSS Post Tags */



.section-services {
	padding: 30px 0;
	background-color: #f5f5f5;
}
.section-services .section-heading {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
}
.section-services .section-heading h2 {
	float: none;
	color: #3e3e3e;
}
.section-services .icons {
}
.section-services .icons .icon-container {
	text-align: center;
	margin-bottom: 30px;
}
.section-services .icons .icon {
	font-size: 40px;
	margin-bottom: 10px;
}
.section-services .icons .icon .fa {
	border: 4px solid #0095e0;
	line-height: 95px;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	-webkit-clip-path: inset(0 0 0 0 round 100%);
	color: #0095e0;
}
.section-services .icons .title {
	text-transform: uppercase;
	font-weight: 600;
}