/*
 @Author: Renesis Technologies
 @URL: https://renesistech.com/
 This file contains the styling for the actual theme, this is the file you need to edit to change the look of the theme.
 
 This files contents are outlined below.
 01.	Theme Reset Style
 02.	Global Elements
 03.	Menu
 04.	Social
 05.	Article
 06.	Posts
 07.	Responsive
 08.	Widgets
 09.	Flexslider
 10.	Grid
*/
/* =============================================
			Theme Reset Style					
============================================= */
* {
  margin: 0px;
  padding: 0px;
}

*:after,
*:before {
 margin: 0;
 padding: 0;
}

body {
  color: #666;
  background: black;
  font: 400 14px/23px 'Poppins', Arial, Helvetica, sans-serif;
  height:100%;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: #0f0f0f;
  margin: 0 0 8px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  text-transform: capitalize;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #0f0f0f;
}

p a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

p a,
p a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 20px;
  line-height: 20px;
  letter-spacing: normal;
}

a {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

a:hover, a:focus, a:active {
  outline: none;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li{
  list-style-type: none;
}

figure {
  margin-bottom: 6px;
  position: relative;
}

img {
  height: auto;
  max-width: 100%;
}

strong {
  color: #414141;
}

iframe {
  width: 100%;
  float: left;
  border: none;
}

button {
  border: none;
}

textarea,
select,
.at-select select,
.form-control,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  color: #272727;
  outline: none;
  height: 36px;
  width: 100%;
  background: #183D4D;
  font-size: 14px;
  font-weight: 400;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 18px;
  padding: 16px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #183D4D;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  resize: none;
  height: 130px;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #fff;
}

/* WebKit, Blink, Edge */
textarea:-moz-placeholder ,
input:-moz-placeholder {
  color: #fff;
}

/* Mozilla Firefox 4 to 18 */
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #fff;
}

/* Mozilla Firefox 19+ */
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #fff;
}

/* Internet Explorer 10-11 */
input::-ms-input-placeholder {
  color: #fff;
}

/* Microsoft Edge */
input:focus,
.select select:focus,
.form-control:focus {
  color: #666;
  border-color: #666;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-group {
  width: 100%;
  float: left;
  margin: 0 0 24px;
}
.form-group .at-btn{
  line-height: 36px;
  font-size: 14px;
  width: 100%;
  margin: 16px 0 0;
}
label {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

form p {
  float: left;
  position: relative;
  width: 100%;
}

form p p span i {
  top: 13px;
  left: 16px;
  color: #474747;
  position: absolute;
}

option {
  padding: 5px 15px;
}

li {
  line-height: 28px;
  list-style: disc inside none;
}

ul ul {
  margin-left: 20px;
}

ol {
  float: none;
  list-style: decimal;
  padding-left: 15px;
}

ol li {
  list-style: decimal;
  width: 100%;
}

ol ol {
  margin-left: 20px;
}

/* =============================================
			Theme Custom Select					
============================================= */
.at-select {
  color: #666;
  float: left;
  width: 100%;
  position: relative;
  text-transform: uppercase;
}

.at-select:after {
  top: 0;
  right: 15px;
  z-index: 2;
  color: #666;
  display: block;
  content: '\e90c';
  line-height: 52px;
  position: absolute;
  text-align: center;
  font-size: inherit;
  pointer-events: none;
  font-family: 'icomoon';
}

.at-select select {
  z-index: 1;
  width: 100%;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.at-select select option {
  color: #666;
}

/* =============================================
		Theme Custom CheckBox Radio				
============================================= */
.at-radio,
.at-radio label,
.at-checkbox,
.at-checkbox label {
  margin: 0;
  width: 100%;
  float: left;
  position: relative;
}

.at-radio label,
.at-checkbox label {
  cursor: pointer;
  display: block;
  padding: 0 0 0 20px;
}

.at-radio input[type=radio],
.at-checkbox input[type=checkbox] {
  display: none;
}

.at-radio input[type=radio] + label:before,
.at-checkbox input[type=checkbox] + label:before {
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  content: '';
  position: absolute;
  font-family: 'FontAwesome';
}

.at-checkbox input[type=checkbox] + label:after {
  top: 8px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 0;
  background: #fff;
  display: none;
  content: '';
  position: absolute;
  font-family: 'FontAwesome';
}

.at-radio input[type=radio] + label:before {
  content: '';
}

.at-radio input[type=radio]:checked + label:before,
.at-checkbox input[type=checkbox]:checked + label:after {
  display: block;
}

/* =============================================
			Theme Global Elements				
============================================= */
.at-haslayout {
  width: 100%;
  float: left;
}

.at-sectionspace {
  padding: 100px 0;
}

.at-locationmap {
  width: 100%;
  float: left;
  height: 500px;
}

.at-btn-sm {
  padding: 0 20px;
  line-height: 30px;
}

.at-btn {
  color: #fff;
  padding: 0 50px;
  position: relative;
  text-align: center;
  background: #167198;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  vertical-align: middle;
  border: 1px solid #167198;
  text-transform: capitalize;
  font: 700 18px/58px 'Poppins', Arial, Helvetica, sans-serif;
}

.at-btn:hover {
  color: #fff;
}

.at-btn-lg {
  width: 100%;
}
.at-btncancel{
  background: #183D4D;
  border-color: #183D4D;
  color: #fff;
}
.at-btncancel:hover{
  color: #fff;
}
.at-formtheme {
  width: 100%; 
  float: left;
}

.at-formtheme fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
  position: relative;
}

.at-inputwithicon {
  width: 100%;
  float: left;
  position: relative;
}

.at-inputwithicon span {
  top: 0;
  right: 0;
  z-index: 2;
  width: 50px;
  height: 52px;
  cursor: pointer;
  line-height: 52px;
  position: absolute;
  text-align: center;
}

.at-inputwithicon input {
  z-index: 1;
  padding: 16px 50px 16px 16px;
  position: relative;
}

/*==========================================================================================
		For Mobile Nav use this code in Responsive.css desired Query
==========================================================================================*/
/*==============================================================
		                  Splash Screen start
==============================================================*/
.at-wrapper{
  overflow: hidden;
}
.at-maincontainer{
  max-width: 464px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: block;
}
.at-mobileview{
  width: 100%;
  float: left;
}
.at-loginresetscroll{
  min-height: 800px;
}
.at-loginscroll{
  min-height: 768px;
}
.at-splashscreen{
  width: 100%;
  float: left;
  height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 100px 50px;
  justify-content: space-between;
  background: url(../images/bgmain.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.at-logo{
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.at-logo span,
.at-logo span img{
  display: block;
}
.at-logo span img{
  display: block;
  height: auto;
}
.at-splashimg{
  width: auto;
  margin:20px 0;
  display: inline-block;
}
.at-splashimg img{
  width: 100%;
  display: block;
  height: auto;
}
.at-pagetitle{
  width: 100%;
}
.at-pagetitle h4{
  margin: 0;
  color: #fff;
  font-weight: 500;
}
/*==============================================================
		                  Splash Screen end
==============================================================*/
/*==============================================================
		                  Login/Signup Screen start
==============================================================*/

.at-btnholder{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.at-loginscreen{
  width: 100%;
  float: left;
}
.at-loginform{
  width: 100%;
  float: left;
  padding: 80px 0 0;
}
.at-oraccounts{
  width: 100%;
  float: left;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #fff;
  padding: 0 0 18px;
}
.at-loginwithaccounts{
  width: 100%;
  float: left;
  padding: 0 0 30px;
}
.at-loginwithaccounts ul{
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: space-around;
}
.at-loginwithaccounts ul li{
  list-style-type: none;
}
.at-loginsigupcheckbox{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.at-loginsigupcheckbox a{
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.at-flexcenter{
  display: flex;
  justify-content: center;
}
.at-flexcenter label{
  width: auto;
}
.at-signupcheckbox label a,
.at-signupcheckbox label{
  font-size: 11px;
  font-weight: 400;
  text-align: left;
}
.at-signupcheckbox label a{
  color: #00BBFF;
  text-decoration: underline;
}
.at-resetcontent{
  width: 100%;
  float: left;
  padding: 24px 15px 100px;
  background: #183D4D;
  border-radius: 10px;
}
.at-resetcontent h2{
  margin: 0 0 66px;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center; 
}
.at-resetcontent p{
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
/*==============================================================
		                  Login/Signup Screen End
==============================================================*/
/*==============================================================
		                  Home Screen Start
==============================================================*/
.at-homescreen{
  padding: 24px 15px;
  display: block;
}
.at-homescreenheader{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 10px;
}
.at-homescreenheader .at-logo{
  width: 88px;
}
.at-homefooter{
  width: 100%;
  float: left;
  background: #070C11;
  padding: 6px 0;
}
.at-nav{
  width: 100%;
  float: left;
}
.at-nav ul{
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.at-nav ul li{
  list-style-type: none;
}
.at-nav ul li a{
  display: block;
  padding: 12px;
  border-radius: 5px;
}
.at-nav ul li a.active{
  background: #167198;
}
.at-homebody{
  width: 100%;
  float: left;
  overflow: auto;
  height: calc(100vh - 190px);
}
.at-homebody::-webkit-scrollbar{
  display: none;
}
.at-noticontent{
  width: 100%;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.at-notifaction{
  width: 100%;
  float: left;
  background: #183D4D;
  border-radius: 10px;
  padding: 16px 20px 60px;
}
.at-titledate{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 0 20px;
}
.at-titledate h3{
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  padding: 0 50px 0 0;
}
.at-titledate span{
  color: #fff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.at-description{
  width: 100%;
  float: left;
}
.at-description p{
  margin: 0;
  color: #fff;
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  text-align: left;
}
.at-vipcontent{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.at-subscriptionbox{
  width: 100%;
  float: left;
  background: #183D4D;
  border-radius: 10px;
  padding: 16px;
}
.at-subscriptionbox h3{
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.at-subscriptionbox .at-btn{
  line-height: 37px;
  font-size: 13px;
  padding: 0 30px;
}
.at-subscriptionbox span{
  display: block;
  color: #fff;
  font-size: 10px;
  padding: 4px 0 0;
}
.at-subscriptiondetailsbox{
  width: 100%;
  float: left;
  background: #183D4D;
  border-radius: 10px;
  padding: 16px 16px 40px;
}
.at-boxtitle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 0 0 60px;
}
.at-boxtitle h3{
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.at-boxtitle h3:last-child{
  font-weight: 700;
}
.at-btnholdervtwo{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.at-btnholdervtwo .at-btn{
  line-height: 37px;
  font-size: 9px;
  padding: 0 8px;
}
.at-faqcontent{
  width: 100%;
  float: left;
}
.at-accordinholder{
  width: 100%;
  float: left;
}
.at-accordinholder .accordion{
  border: 0;
  background: none;
}
.at-accordinholder .accordion-item{
  border: 0;
  margin: 0 0 12px;
  background: #183D4D;
  border-radius: 10px;
  padding: 12px 8px;
}
.at-accordinholder .accordion-button{
  background: none;
  color: #fff;
  padding: 0;
  text-align: left;
  border: 0;
  font-size: 12px;
  line-height: 16px;
  box-shadow: none;
  font-weight: 700;
}
.at-accordinholder .accordion-button::after{
  background: url(../images/arrow-down.svg) no-repeat;
}
.at-accordinholder .accordion-body{
  padding: 20px 0 0;
}
.at-accordinholder .accordion-body p{
  margin: 0;
  color: #fff;
  text-align: left;
}
.at-thememodal{
  background: rgba(0, 0, 0, 0.7);
}
.at-thememodal .modal-dialog{
  max-width: 410px;
}
.at-thememodal .modal-content{
  background: none;
  text-align: center;
}
.at-thememodal .modal-content .at-description{
  padding: 10px 0 40px;
}
.at-thememodal .modal-content h3{
  font-size: 20px;
  line-height: 24px;
}
.at-thememodal .modal-content .at-description p{
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.at-contactcontent{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 110px;
}
.at-contactcontent > .at-description{
  padding: 20px 50px 0;
}
.at-contactcontent > .at-description p{
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}
.at-contactform{
  width: 100%;
  float: left;
  padding: 0 70px;
}
.at-contactform .form-group .at-btn{margin: 0;}
.at-contactpagefoot{
  width: 100%;
  padding: 0 30px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.at-contactpagefoot .at-description p{
  text-align: center;
}
.at-statscontent{
  width: 100%;
  float: left;
  padding: 20px 0 0;
}
.at-tabs{
  width: 100%;
  float: left;
}
.at-tabsnav{
  border: 0;
  display: flex;
  padding: 0 0 20px;
  margin: 0;
  list-style: none;
  justify-content: space-between;
}
.at-tabsnav .nav-item{
  width: 70px;
  list-style-type: none;
}
.at-tabsnav .nav-item .nav-link{
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 40px;
  border: 0;
  color: #fff;
  background: #183D4D;
  padding: 0;
  border-radius: 5px;
}
.at-tabsnav .nav-item .nav-link.active{
  background: #167198;
}
.at-statscardholder{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.at-statscard{
  width: 100%;
  float: left;
  padding: 8px 24px;
  border-radius: 5px;
  background: #183D4D;
}
.at-statsdate{
  width: 100%;
  float: left;
  padding: 0 0 10px;
}
.at-statsdate span{
  display: block;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.at-cardtwocol{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.at-cardcolone{
  width: 100%;
  float: left;
}
.at-cardcolone ul{
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.at-cardcolone ul li{
  width: 100%;
  list-style-type: none;
}
.at-cardcolone ul li span{
  display: flex;
  color: #fff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.at-cardcoltwo{
  width: 148px;
  float: left;
}
.at-cardstats{
  width: 148px;
  float: left;
  margin: 0 0 12px;
  background: #167198;
  border-radius: 5px;
}
.at-cardstats span{
  color: #fff;
  width: 100%;
  font-size: 20px;
  text-align: center;
  line-height: 34px;
  font-weight: 700;
}
.at-cardstats span .at-colorgreen{
  color: #00DB08;
}
.at-cardstats span .at-colorred{
  color: #f00;
}
.at-cardcoltwo .at-btn{
  line-height: 34px;
  font-size: 14px;
  padding: 0;
  width: 148px;
  text-align: center;
}
.pl-tabscontent{
  width: 100%;
  float: left;
  height: calc(100vh - 276px);
  overflow: auto;
}
.pl-tabscontent::-webkit-scrollbar{
  display: none;
}
.at-matchdetails{
  margin: 16px 0 0;
}
.at-matchdetails .at-boxtitle h3{
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.at-matchdetails .at-boxtitle h3:last-child{
  font-weight: 600;
}
.at-tipscontent{
  width: 100%;
  float: left;
  padding: 40px 0 0;
}
.at-tipscardholder{
  width: 100%;
  display: flex;
  gap: 80px;
  padding: 10px 0;
  flex-direction: column;
}
.at-tipscontent .pl-tabscontent{
  height: calc(100vh - 236px);
}
.at-tipscard{
  width: 100%;
  float: left;
  padding: 8px;
  border-radius: 10px;
  background: #183D4D;
}
.at-tipsstatus{
  width: 100%;
  float: left;
  margin: -18px 0 0;
}
.at-tipsstatus span{
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  padding: 0 12px;
  border-radius: 5px;
}
.at-tipsstatus span.at-bggreen{
  background: #00DB08;
}
.at-tipsstatus span.at-bgred{
  background: #f00;
}
.at-tipscountrydate{
  width: 100%;
  display: flex;
  padding: 0 0 10px;
  justify-content: space-between;
  align-items: center;
}
.at-tipsdate{
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
}
.at-tipscountry{
  display: flex;
  align-items: center;
}
.at-tipscountry span{
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  padding: 0 0 0 3px;
}
.at-tipsmatchteams{
  width: 100%;
  display: flex;
  padding: 0 0 20px;
  align-items: center;
  justify-content: space-around;
}
.at-teamlogo span{
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
}
.at-teamlogo figure{
  margin: 0;
  width: 100%;
  float: left;
} 
.at-tipsmatchteams h2{
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}
.at-tipsmatchteams h2 span{
  display: block;
  font-size: 10px;
  line-height: 12px;
}
.at-tipsover{
  width: 100%;
  float: left;
  background: #1B2D3E;
  border-radius: 5px;
}
.at-tipsover span{
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
}
.at-tipsover span.at-colorgreen{
  color: #00DB08;
}
.at-tipsover span.at-colorred{
  color: #f00;
}
.at-tipstabnav{
  background: #183D4D;
  border-radius: 5px;
}
.at-resetpasswordform{
  padding: 24px 0 0;
}
.at-resetpasswordform .form-group input{
  background: #167198;
}
.at-resetpasswordform .form-group .at-btn{
  margin: 0;
  width: auto;
}
/*==============================================================
		                  Home Screen End
==============================================================*/