/*!
Theme Name: versusfootball
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dcwatch
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

versusfootball is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@font-face {
  font-family: "Euclid Circular Bold";
  src: url('fonts/Euclid-Circular-B-Bold.ttf');
}
@import url('https://fonts.googleapis.com/css?family=Proxima+Nova');
@font-face {
  font-family: "Euclid Circular Medium";
  src: url('fonts/Euclid-Circula- B-Medium.ttf');
}

@font-face {
  font-family: "Euclid Circular Regular";
  src: url('fonts/Euclid-Circular-B-Regular.ttf');
}

@font-face {
  font-family: "Euclid Circular SemiBold";
  src: url('fonts/Euclid-Circular-B-SemiBold.ttf');
}

:root {
  --primary-color: #C1A35B;
  --bg-color: #202020;
  --secondary-color: #141414;
  --font-family-bold: "Euclid Circular Bold";
  --font-family-regular: "Euclid Circular Regular";
  --font-family-medium: "Euclid Circular Medium";
  --font-family-semibold: "Euclid Circular SemiBold";
  --font-color-secondary: #ffffff;
  --font-color-other: #000000;
  --font-color: #565656;
}

body {
  font-family: var(--font-family-regular);
  color: var(--font-color-other);
}

a.campaign-list-item_cta-btn {
    color: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-bold);
}

a {
  text-decoration: none;
}

.container-fluid {
  padding: 0 30px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ffff;
  transition: all 0.5s;
  z-index: 997;
  height: 105px;
  border-bottom: 1px solid var(--primary-color);
}

#header .logo img {
  max-height: 73px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  color: var(--font-color-secondary);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before,
.navbar ul .current_page_item a:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active a,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--primary-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #106eea;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
	display: none !important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 35px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  background-color: var(--secondary-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 0;
  font-size: 15px;
  color: var(--font-color-secondary);
}

.navbar-mobile > ul > li {
  padding: 0 0 20px 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: visible;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--font-color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #106eea;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Page Content
--------------------------------------------------------------*/
.main-content {
  margin-top: 105px;
}

.page-content {
  padding: 20px 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: var(--secondary-color);
  padding-bottom: 15px;
}

.page-content h5 {
  font-size: 18px;
}

.page-content p,
.page-content span,
.page-content li {
  color: var(--font-color-content);
  font-size: 18px;
}

.bg-color-sec {
  background-color: #EBEDF0;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.page-button {
  padding-bottom: 10px;
}

.page-button a {
  color: #000;
  background-color: #C1A35B;
  padding: 10px 35px;
  border-radius: 20px;
}

.page-content h2 {
  font-size: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--secondary-color);
}

.page-content h4 {
  font-size: 20px;
  color: var(--secondary-color);
  padding-top: 15px;
  margin: 0;
}

.page-content h3 {
  font-size: 32px;
  color: var(--secondary-color);
  padding-top: 15px;
  margin: 0;
}

.page-content p, .page-content li, .page-content span, .page-content a {
  font-family: var(--font-family-medium);
  font-size: 16px;
  color: var(--font-color);
}

.center-img {
  text-align: center;
  margin-bottom: 30px;
}

.center-img img, .right-img img, .aligncenter.size-full  {
	border-radius: 20px;
}

.right-img {
  text-align: right;
  margin-bottom: 30px;
}

.content-number-circle ol {
  list-style-type: none;
  counter-reset: list-counter;
  position: relative;
  padding: 0;
}

.content-number-circle ol li {
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.content-number-circle ol li:before {
  content: counter(list-counter) !important;
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  background-color: red;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
}

.content-number-circle ol li strong {
  font-size: 24px;
  color:var(--secondary-color);
  font-weight: 700;
  font-family: var(--font-family-primary);
}

.page-content table {
  width: 100%;
  margin-bottom: 20px;
}

.page-content table tr {
  border: 1px solid var(--font-color-secondary);
}

.page-content table tr td, .page-content table tr th {
  padding: 10px;
  border-right: 1px solid var(--font-color-secondary);
  vertical-align: middle;
  color: var(--font-color-secondary);
}

.page-content table ul {
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 35px 0 0;
  background-color: #1A1A1A;
  border-top: 1px solid #fff;
}

.footer-title h4 {
  font-size: 18px;
  font-family: var(--font-family-semibold);
	color: var(--primary-color);
	margin-bottom: 25px;
}

.footer-about p {
	color: var(--font-color-secondary);
	font-size: 18px;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  padding-bottom: 15px;
	list-style-type: none;
}

.footer-menu ul li a {
	color: var(--font-color-secondary);
  /*font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 18px;*/
	position: relative;
  padding-left: 25px;
  font-family: 'proxima-nova', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.footer-menu ul li a:before {
  content: "";
  background-image: url(images/arrow-right.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 4px;
}

.caertified-by p a {
  color: #fff !important;
}

.caertified-by p img {
  width: 150px;
}

.copyright {
  background-color: #1A1A1A;
  border-top: 1px solid #4A4A4A;
  padding-top: 20px;
  padding-bottom: 20px;
}

.copyright p {
  margin: 0;
  color: var(--primary-color);
  font-family: 'proxima-nova', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.copyright-content {
  text-align: center;
}



.navbar .menu-item.current-menu-item.current_page_item a {
    color: var(--primary-color);
}
.navbar .menu-item.menu-item-object-page a {
    color: #000;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.footer-menu ul.section-footer_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.footer-menu .section-footer_menu li a:before{
  display: none;
}
.section-content.section-best-online-casions {
    background: #14323C;
}
.section-best-online-casions .section-page-content h1 {
    color: #FFFFFF;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 35px;
}
.section-best-online-casions .section-page-content p {
    color: #FFFFFF;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.section-best-online-casions .section-page-content {
    padding: 40px 0;
}
.section-content .section-page-content {
    padding-left: 0px;
    padding-right: 0px;
}
.section-content.section-criteria-for-analyzing {
    background: #F7F7F7;
    padding: 80px 0px;
}
.section-content.section-criteria-for-analyzing h2 {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 32px;
    line-height: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}
.section-content.section-criteria-for-analyzing h2:first-child {
    margin-top: 0px;
}
.section-content.section-criteria-for-analyzing p,
.section-content.section-criteria-for-analyzing ul li {
  font-family: 'proxima-nova', sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.section-content.section-best-online-casinos {
  padding: 80px 0px;
}
.section-best-online-casinos td.table-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.section-best-online-casinos tbody a.table-link-title {
    color: #FE4600;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
}
.section-best-online-casinos .table-content .table-image img.image {
    height: 39px;
    /*width: 136px;*/
}
.section-best-online-casinos table.table {
    border: 1px solid #E3E3E3;
}
.section-best-online-casinos thead {
    background: #ECECEC;
}
.section-best-online-casinos tbody tr:nth-of-type(even) {
    background-color: #F7F7F7;
}
/*.section-best-online-casinos td.table-row {
    padding-top: 20px;
    padding-bottom: 20px;
}*/
.section-best-online-casinos .table th, .section-best-online-casinos .table td {
    padding: 20px 20px;
    border-bottom-width: 0;
}
.section-best-online-casinos td.table-row {
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 16px;
}
.section-best-online-casinos .section-page-content h2 {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 20px;
}
.section-criteria-for-analyzing .section-page-content h3 {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 24px;
    line-height: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}
.section-content.section-best-online-casinos-detailed {
    padding: 80px 0px;
}
.section-best-online-casinos-detailed .section-page-content h2 , 
.section-best-online-casinos-detailed .section-page-content h2  b{
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 20px;
}
.section-best-online-casinos-detailed .section-page-content p,
.section-best-online-casinos-detailed .section-page-content ul li {
  font-family: 'proxima-nova', sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.section-best-online-casinos-detailed .section-page-content .banner {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.section-best-online-casinos-detailed .section-page-content h4, .section-best-online-casinos-detailed .section-page-content h4 b {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.section-best-online-casinos-detailed .section-page-content .table-responsive table.table {
    border: 2px solid #ECECEC;
}
.section-best-online-casinos-detailed .section-page-content tbody tr:nth-of-type(even) {
    background: #F7F7F7;
}
.section-best-online-casinos-detailed .section-page-content .table th {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.section-best-online-casinos-detailed .section-page-content .table td {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.section-best-online-casinos-detailed .section-page-content h1, .section-best-online-casinos-detailed .section-page-content h1 b {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 45px;
    line-height: 100%;
    margin-bottom: 20px;
	color:#000;
}
.section-best-online-casinos-detailed .section-page-content h3, .section-best-online-casinos-detailed .section-page-content h3 b {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 24px;
    line-height: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.section-best-online-casinos-detailed .section-page-content  table {
    border: 2px solid #ECECEC;
}
.section-best-online-casinos-detailed .section-page-content td {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.section-best-online-casinos-detailed .section-page-content tbody tr:nth-of-type(even) {
    background: #F7F7F7;
    border-top: 2px solid #ECECEC;
    border-bottom: 2px solid #ECECEC;
}
.section-best-online-casinos-detailed .section-page-content tbody tr td {
    padding: 15px;
}
.section-best-online-casinos-detailed .section-page-content ul li a {
  color: #000;
}

h6.text-primary { 
  color: #000 !important;
}

@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1320px;
    }
}
@media (max-width: 1024px) {
  .section-best-online-casions .section-page-content h1 {
      font-size: 35px;
  }
  .section-best-online-casinos-detailed .section-page-content h1, 
  .section-best-online-casinos-detailed .section-page-content h1 b {
    font-size: 35px;
  }
}
@media screen and (max-width:991.98px) {

	.mobile-nav-toggle {
		color: #000;
	}

	.footer-about {
		margin-bottom: 80px;
	}

	.navbar-mobile ul {
		padding: 20px !important;
	}

	.navbar a, .navbar a:focus {
		display: inline-block;
	}

	.container-fluid {
		padding: 0 15px;
	}

	.fa-solid.mobile-nav-toggle.fa-xmark {
		right: 20px;
		top: 20px;
	}

	.site-complies, .css-usable {
		display: block;
	}

	.site-complies img, .css-usable p {
		margin-bottom: 15px;
	}

	.site-complies p, .css-usable p {
		margin-left: 0;
		margin-right: 0;
	}

	.css-usable {
		margin-top: 10px;
	}

	.footer-copyright {
		padding: 10px 0;
	}

	.content-number-circle ol li:before {
		top: 5px;
	}

	.page-content table {
		table-layout: unset;
	}

	.page-content .table-responsive {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
	}

	.page-content .table {
		width: 100%;
		min-width: 600px; /* Prevents table from shrinking too much */
	}

	.page-content .table-responsive::-webkit-scrollbar {
		height: 5px;
	}

	.page-content .table-responsive::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 5px;
	}

	.table-responsive {
		display: block;
		white-space: nowrap;
		margin-bottom: 20px;
	}

	.copyright-content {
		text-align: center;
	}
	
	#header {
		height: 92px;
	}
	
	#header .logo img {
		max-height: 60.3px;
	}
  .navbar.navbar-mobile .menu-item.menu-item-object-page a {
    color: #fff;
  }
  .section-best-online-casions .section-page-content {
    padding: 35px 20px;
  }
  .section-content.section-criteria-for-analyzing ,.section-content.section-best-online-casinos{
    background: #F7F7F7;
    padding: 80px 20px;
  }
  .section-content.section-best-online-casinos-detailed {
    padding: 80px 20px;
  }
  .section-content.section-best-online-casinos-detailed .banner .banner-image, 
  .section-content.section-best-online-casinos-detailed .logo-image-details img.image {
    width: 100%;
  }
  
}
@media screen and (max-width:768px) {
  .footer-menu ul.section-footer_menu {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
}
/*@media (max-width: 575px) {
  .main-content.section-best-online-casions {
    padding: 0px 20px;
  }
}*/
.section-content .container-fluid.custom-container {
    max-width: 1100px;
}