/* Fonts */

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Medium.eot');
    src: url('../fonts/Syne-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Syne-Medium.woff2') format('woff2'),
        url('../fonts/Syne-Medium.woff') format('woff'),
        url('../fonts/Syne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Bold.eot');
    src: url('../fonts/Syne-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Syne-Bold.woff2') format('woff2'),
        url('../fonts/Syne-Bold.woff') format('woff'),
        url('../fonts/Syne-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-ExtraBold.eot');
    src: url('../fonts/Syne-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Syne-ExtraBold.woff2') format('woff2'),
        url('../fonts/Syne-ExtraBold.woff') format('woff'),
        url('../fonts/Syne-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-SemiBold.eot');
    src: url('../fonts/Syne-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Syne-SemiBold.woff2') format('woff2'),
        url('../fonts/Syne-SemiBold.woff') format('woff'),
        url('../fonts/Syne-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Regular.eot');
    src: url('../fonts/Syne-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Syne-Regular.woff2') format('woff2'),
        url('../fonts/Syne-Regular.woff') format('woff'),
        url('../fonts/Syne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* End Fonts */

:root {
  --body-font: 'Syne', sans-serif;
  --green:#198754;
  --red: #d51417;
  --darkred: #D51417;
  --white:#FFF;
  --blue: #0E2C82;
  --lightblue:#3a3dff;
  --body-color:#191919;
  --body-font-size:22px;
  --body-line-height:26.4px;
  --font-regular:400;
  --body-border:1px solid rgba(0, 0, 0, 0.1);
  --gap-5:5px;
  --gap-10:10px;
  --gap-20:20px;
  --gap:30px;
  --radius-5:5px;
  --radius-10:10px;
  --radius-15: 15px;
  --radius-20:20px;
  --radius-50:50px;
  --full-width:100%;
  --lightred: #FFCCCD;
  --process-section-padding:50px;
  --grey:#F4F4F4;
  --customgrey: #b1b2b3;
  --darkgrey:#717171;
  --box-shadow:0px 0px 12px rgba(0, 0, 0, 0.2);
}
p:empty{
  display: none !important;
}
/* Default Css */
/*body{
  margin:0px;
  font-weight:var(--font-regular);
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  color: var(--body-color);

}
p:empty{
  display: none;
}
h1,h2,h3,h4,h5,h6{
    color: var(--body-color);
}
h1{
    font-size: 40px;
    line-height: 48px;
}
h2{
    font-size: 32px;
    line-height: 38.4px;
}
h3{
    font-size: 28px;
    line-height: 34px;
}
h4{
    font-size: 24px;
    line-height: 30px;
}
h5{
    font-size: 20px;
    line-height: 24px;
}
h6{
    font-size: 18px;
    line-height: 24px;
    text-transform: unset;
}
.small, small {
    font-size: .775em;
    line-height: normal;
}*/
.bgred{
  background-color: var(--red) !important;
  transition: 0.5s;
}
.bggreen{
    background-color: var(--green) !important;
    transition: 0.5s;
  }
.mainTitle{
    font-size: 40px;
    line-height: 48px;
}
.title{
    font-size: 32px;
    line-height: 38.4px;
}
.booking-main{
    width: 100%;
}
.hover-text-white:hover, .box.active, .tabbing .active, .teamMember .active{
    color: var(--white) !important;
}

.hover-bgblue:hover, .tabbing .active{
    background-color: var(--blue) !important;
}
.hover-bglight:hover, .InfoTab .item.active{
    background-color: var(--lightred);
}
.hover-bgred:hover, .hover-bgred.active, .teamMember .active{
    background-color: var(--red) !important;
}

.text-blue{
    color: var(--blue);
}
.text-lightblue{
    color: var(--lightblue);
}
.text-red{
    color: var(--red);
}
.text-grey{
    color: var(--grey);
}
.text-customgrey{
    color: var(--customgrey);
}
.bgdarkred{
  background-color: var(--darkred);
}
.bgblue{
    background-color: var(--blue);
    transition: 0.5s;
}
/* Success message */
.success {
    color: green;
}

/* Error message */
.error {
    color: red;
}

.bglightred{
    background-color: var(--lightred);
}
.gap{
    gap: var(--gap);
}
.gap-5{
    gap: var(--gap-5) !important;
}
.gap-10{
    gap: var(--gap-10);
}
.gap-20{
    gap: var(--gap-20);
}
.border{
    border: var(--body-border);
}
.rounded-5{
  border-radius: var(--radius-5) !important;
}
.rounded-10{
  border-radius: var(--radius-10) !important;
}
.rounded-15{
    border-radius: var(--radius-15) !important;
}
.rounded-20{
  border-radius: var(--radius-20) !important;
}
.rounded-50{
    border-radius: var(--radius-50) !important;
}
.border-red{
    border-color: var(--red) !important;
}
.hover-border-red:hover{
    border-color: var(--red) !important;
}
.border-blue{
    border-color:var(--blue) !important;
}
.border-grey{
    border-color: var(--grey) !important;
}
.border-darkgrey{
    border-color: var(--darkgrey) !important;
}
.full-width{
    width: var(--full-width) !important;
    margin: auto;
}
.focus-none:focus,
.focus-none:focus-visible{
    outline: none;
  box-shadow: none;
}
.bgcustomgrey{
    background-color: var(--customgrey);
}
.bggrey{
    background-color: var(--grey);
}
.darkgrey{
    color: var(--darkgrey);
}
.bgdarkgrey{
    background-color: var(--darkgrey);
}
.table>:not(caption)>*>*{
    padding: 15px 30px;
}
/* End Default */
.process-section-padding{
   padding: var(--process-section-padding);
   margin-bottom: 30px;
   background-color: white;
}
.booking-main input[type=checkbox]:after, .booking-main input[type=checkbox]:before{
    content: unset !important;
}
.booking-main .form-check-input {
    border: 2px solid var(--darkgrey);
}
.booking-main .form-check-input:focus{
    box-shadow: unset;
    outline: unset;
}
.registerPage{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:30px;
}
.box-shadow{
    box-shadow: var(--box-shadow);
}

.bgblue:hover{
    letter-spacing: 1.5px;
    box-shadow: 0 0 0 2px white, 0 0 0 3px var(--blue), 0 0 0 2px white inset, 0 0 0 5px var(--blue), 7.5px 7.5px 0 2.5px white !important;
}
.hover-none:hover{
    letter-spacing: unset !important;
    box-shadow: unset !important;
}
.bgred:hover{
    box-shadow: 0 0 0 2px white, 0 0 0 3px var(--red), 0 0 0 2px white inset, 0 0 0 5px var(--red), 7.5px 7.5px 0 2.5px white !important;
}
.no-hover:hover{
    box-shadow: none !important;
    letter-spacing: unset !important;
}
.registerPage .boxes{
  border:var(--body-border);
  padding: 23px 27px;
  transition: 0.5s;
}
.registerPage .boxes:hover,
.registerPage .boxes.selected{
    box-shadow: -10px -10px 0px var(--red);
    cursor: pointer;
}
.registerPage .boxes .icon{
  padding: 8px;
  border-radius: 7px;
}
.redButton{
    padding: 10px 20px;
    border:none;
    border-radius: 5px;
}
.uniSize{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.uniSize .size:hover, .uniSize .size.selected{
    background-color: var(--red);
    color: var(--white);
}
.division {
    background-color: var(--white);
    padding: 30px 20px;
    border-bottom: var(--body-border);
}
.division.selected, .division:hover {
    background-color: var(--grey);
}
.division .divName h5{
    margin-bottom: 5px !important;
}
.selected .selectedBgRed{
    background-color: var(--red);
}
.form-check-input:checked{
    background-color: var(--red);
    border-color: var(--red);
}
.process-section-padding form input, .process-section-padding form select,
.modal form input, .model form select,
#step_prePay input, .login .form-control {
    height: 55px;
}
.btn-close{
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 16px;
    color: #191919;
    opacity: 1;
}
.table .action{
    z-index: 2;
    position: absolute;
    top: 50px;
    left: 30px;
    min-width: 150px;
}
.table .action a{
    margin-bottom: 0.25rem;
}
.invalid-feedback.success{
    color: green;
}


/* Login Form */
.booking-main{
    padding: 220px 0px 50px 0px;
}

/* .booking-main a {
    color: var(--blue) !important;
} */

.login{
    padding: 50px 0px;
}
.userDashboard{
    padding: 230px 0px !important;
    margin: auto;
}
.login .loginForm, .login .reset_password{
    padding: 35px;
    max-width: 600px;
    margin:auto;
    background-color: white;
}
button{
    box-shadow: unset !important;
}
.login .forgetPassword {
    z-index: 99;
    width: 600px;
    margin: auto;
    background: white;
    display: none;
}
table,table td, table th{
    border: unset !important;
}
/* End Login Form */
.custom_loader{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgba(0,0,0,0.2);
}
.card-icons {
    font-size: 1.5rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

#login_message a{
    display: none;
}

#login_message strong{
    font-weight: normal;
}

/* User Dashboard */
.page-template-user-dashboard{
    background-color: white;
}
.userDashboard .topmenu{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.userDashboard .topmenu .box{
    min-width: 150px;
    padding: 30px 16px;
}
.userDashboard section{
    padding: 0px;
}
.upcoming_gamesSection .games{
    border-radius: 100px;
    padding: 15px 35px;
}
.upcoming_gamesSection .games .info{
    width: calc(100% - 30px);
}
.custom_dashboard_table th, .custom_dashboard_table td{
    font-weight: normal;
    padding: 12px 30px;
}
.custom_dashboard_table td{
    padding: 25px 30px;
}
.custom_dashboard_table tr{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.custom_dashboard_table tr:last-child{
    border-bottom: 0px;
}
.custom_dashboard_table tr:first-child{
    border:none;
}
.roster{
    border-radius: 100px;
    padding: 3px 15px 3px 10px;
}

.roasterImage{
    height: 50px !important;
    width: 50px !important;
    object-fit: cover;
}

.tournament_division .info, .teamList .info, .schedule .info, .standings .info,
.profileSettings .info, .InfoTab .info, .myPayments .info, #AddCard .info{
    padding: 25px 20px;
}
.tournament_division .division{
    background-color: unset;
    border:unset;
    padding:unset;
    grid-template-columns: 1fr 1fr;
}
.schedule .custom_dashboard_table th, .schedule .custom_dashboard_table td{
    padding: 15px 20px;
}
.tableWithBorder, .tableWithBorder th, .tableWithBorder td{
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-collapse: collapse;
    border-radius: 10px;
}
.tableWithBorder th, .tableWithBorder td{
    font-weight: normal;
    padding: 12px 20px;
}
.standingsTable {
    grid-template-columns: 1fr 1fr;
}
.file-input {
  display: none;
}
.profileSettings form#profile{
    margin-top: -65px;
}
/* Style the custom button */
/*.custom-file-input {
  background-color: #FFE7E7;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 107px;
  height: 79px;
  line-height: 79px;
}*/
.myPayments .listItem{
    min-height: 110px;
}
.myPayments .selected svg path{
    fill: var(--red);
}
.pffaTournamenListing{
    max-width: 100%;
    margin-top: 25px;
}
.pffaTournamenListing .tournament-thumbnail .Location{
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 13px 17px;
    min-width: 100px;
}
.pffaTournamenListing .title{
    font-size: 40px;
    letter-spacing: 0;
    line-height: 40px;
    font-weight: bold;
    margin: 8px 0 17px 0px !important;
}
.pffaTournamenListing .buttons a{
    display: inline-block;
    margin-left: 20px;
    border: 2px solid;
    padding: 13px 15px !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.6px !important;

}
.pffaTournamenListing .freeAgent{
    font-size: 14px;

}
.pffaTournamenListing .teamRegisterNumber{
    font-size: 22px;
    padding: 4px 6px !important;
    min-width: 35px;
    text-align: center;
}
.pffaTournamenListing .buttons a:hover:first-child{
    background-color: white !important;
    color: var(--red) !important;
    box-shadow: none !important;
}
.pffaTournamenListing .buttons a:hover:first-child path{
    fill: var(--red);
}
.pffaTournamenListing .buttons .lastButton:hover path{
    fill: var(--white) !important;
}
.pffaTournamenListing .buttons a span{
    margin-left: 5px;
}
/*.pffaTournamenListing .calender_icon {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}*/
.pffaTournamenListing .teamRegister{
    max-width: 100px;
}
.pffaTournamenListing .date, .lh-normal{
    line-height: normal;
}
.pffaTournamenListing .tournament-thumbnail, .pffaTournamenListing .tournament-thumbnail p{
    height:100%;
}
.pffaTournamenListing .tournament-thumbnail img{
    width:100%;height: 100%;object-fit: cover;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}
.pffaTournamenListing hr{
    margin:1rem 0px !important;
}
.form-control:focus{
    box-shadow: none;
}
.schedule .roundMatchesbottomInfo {
    border-bottom-left-radius: 13px !important;
    border-bottom-right-radius: 13px !important;
    margin-top: -7px;
}
.roundMatches i{
    width: 15px;
}
.singleFixedFooter{
    padding: 25px 20px;
    position: fixed;
    width: 100%;
    z-index: 999;
    bottom: 0;
    left: 0;
}
.singleFixedFooter a{
    padding: 15px 45px;
}
.DivisionList .title, .DivisionList .list{
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25em;
}
.DivisionList .list .number{
    border:2px solid var(--lightblue);
    color: var(--lightblue);
    width: 40px;
    height: 40px;
    max-width: 45px;
    line-height: 37px;
    font-weight: 400;
    text-align: center;
}

#step_payment_individual .form-check-input, #step_payment .form-check-input{
    width: 20px;
    height: 20px;
    margin-top: -2px;
}
.single-pffa_tournament .site-content{
    /* justify-content: center;
    gap: 0px; */
    display: block;
}
.thankyouPage .dashborardLink{
    width: fit-content !important;
}
.thankyouPage .card {
    margin: 220px 0px 70px 0px;

}