:root {
    --background: #FFF;
    --foreground: #000;
    --textColor: #464646;
    --textColorVariant: #e5e5e5;
    --primary: #15B168;
    --primary10: #15B1681F;
    --secondary: #208456;
    --tertiary: #FDEC2E;
    --quartenary: #7F7BF8;
    --green: #36f129;
    --onPrimary: #0C0C0C;
    --onSecondary: #121212;
    --onTertiary: #1d1f21;
    --onQuartenary: #161618;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

/*HIDE SPINNER IN NUMBER INPUT FIELD*/
input[type=number] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="file"] {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
}

textarea:focus, input:focus {
    outline: none;
}

input, button {
    font-family: 'Poppins', sans-serif;
    border: none;
}

button:hover, img:hover, a:hover {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

img {
    outline: none;
    border: none;
}

/*!HEADER*/
header {
    padding: 15px 50px;
    border-bottom: 1px solid var(--textColorVariant);
}

header .image-button {
    margin: 0 15px;
}

header h1 {
    margin-left: 10px;
    font-family: "New Amsterdam", sans-serif;
}

/*nav a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 14px;
    margin: 0 10px;
    transition: all .3s ease-in;
}

nav a:hover {
    text-decoration: underline;
}*/

/*!FOOTER*/
footer {
    padding: 15px 0 0 0;
}

footer a {
    color: var(--foreground);
    font-weight: 500;
    margin-top: 5px;
}

footer img {
    margin-top: 5px;
}

/*! COMMON FLEX CONFIGS*/
.flexwrap {
    flex-wrap: wrap;
}

.flexrow {
    display: flex;
    flex-direction: row;
}

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.horizontalcenter {
    justify-content: center;
}

.verticalcenter {
    align-items: center;
}

.vhcenter {
    justify-content: center;
    align-items: center;
}

.spacebetween {
    justify-content: space-between;
    width: 100%;
}

.frspvc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.frvc {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flexstart {
    align-self: flex-start;
}

.flexend {
    justify-content: flex-end;
}

.circular {
    border-radius: 50%;
    padding: 5px;
}

.dynamic {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.dynamic2 {
    display: flex;
    flex-wrap: wrap;
}

.singleline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

/**/
.colour-TextS {
    color: var(--secondary);
}

.colour-TextT {
    color: var(--tertiary);
}

/*!FONT SIZES*/
.smallest-font {
    font-size: 0.6rem;
}

.small-font {
    font-size: 0.8rem;
}

.medium-font {
    font-size: 1rem;
}

.large-font {
    font-size: 1.2rem;
}

.larger-font {
    font-size: 2rem;
}

.largest-font {
    font-size: 5rem;
}

.bold {
    font-weight: 700;
}

.gray-font {
    color: var(--textColor);
}

/*! GROUPS*/
.colour-bar {
    background-color: var(--secondary);
    padding: 10px 50px;
    color: whitesmoke;
}

.colour-bar a {
    margin-left: 10px;
    font-size: 13px;
}

.colour-bar a:hover {
    color: var(--background);
}

/*!BLOCKS*/
.block {
    padding: 50px;
}

.block-variant {
    padding: 50px;
    background-color: var(--foreground);
    color: var(--textColorVariant);
}

.block-variant a {
    color: var(--background);
}

/*!INDEX GROUP*/
.index-group {
    padding: 50px;
    width: 100%;
}

.index-inner-group {
    width: 300px;
}

.index-inner-group .pill-button {
    margin: 24px 0;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: white;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/*!CONTACT US*/
.contactus {
    background-color: var(--primary10);
    color: var(--textColor);
    padding: 100px;
}

.contactus .card-flat {
    width: 40%;
}

.contactus input, .contactus textarea, .auth-admin input {
    border-radius: 12px;
    border: 1px solid var(--textColor);
    padding: 16px;
    margin: 10px 2px;

}

.contactus input, .contactus textarea {
    width: 50%;
}

.contactus textarea, .contactus button, .auth-admin input, .auth-admin button {
    width: 100%;
}

.contactus button {
    border-radius: 24px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--background);
    padding: 10px 0;
    margin: 20px 0;
}

.contactus button:hover {
    background-color: var(--background);
    color: var(--primary);
}

.contactus .contactus-classes {
    margin-top: 40px;
}

.contactus .contactus-classes div {
    width: 33.3%;
    margin-right: 10px;
}

.contactus a {
    font-weight: 700;
    color: var(--foreground);
}

.contactus a:hover {
    color: var(--primary);
}

/*!CARD FLAT*/
.card-flat {
    background-color: var(--background);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.card-gray {
    background-color: var(--textColorVariant);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

/*!FAQ*/
.faq {
    padding: 50px;
}

.faq .h1 {
    margin-top: 10px;
    font-size: 9vh;
    line-height: 10vh;
}

.faqs li {
    list-style: none;
    border: 1px solid var(--primary);
    color: var(--foreground);
}

.faqs li .answer {
    display: none;
}

.symbol {
    font-size: 24px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 8px;
}

.faqs li .plus {
    color: var(--primary);
}

.faqs li .minus {
    color: var(--background);
    display: none;
}

.faqs li:hover {
    background-color: var(--primary);
    color: var(--background);
    cursor: pointer;
    -webkit-transition: background-color 300ms linear, color 150ms linear;
    -ms-transition: background-color 300ms linear, color 150ms linear;
    transition: background-color 300ms linear, color 150ms linear;
}

.faqs li:hover .answer {
    display: block;
}

.faqs li:hover .plus {
    display: none;
    transform: rotate(45deg);
}

.faqs li:hover .minus {
    display: flex;
}

.filled-span {
    color: var(--primary);
    font-weight: 700;
}

.outlined-span {
    text-shadow:
            3px 3px 0 var(--primary),
            -1px -1px 0 var(--primary),
            1px -1px 0 var(--primary),
            -1px 1px 0 var(--primary),
            1px 1px 0 var(--primary);
    color: white;
    font-weight: 700;
}



/*!BUTTONS*/
.image-button {
    background-color: var(--secondary);
    color: var(--foreground);
    padding: 10px;
    border-radius: 50%;
    margin: 0 2px;
    height: 46px;
    width: 46px;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
}

.image-button .sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-button .sign span {
    width: 100%;
    height: 100%;
    transition-duration: .3s;
}

.image-button .text {
    position: absolute;
    right: 0;
    width: 0;
    opacity: 0;
    font-size: 1em;
    font-weight: 500;
    transition-duration: .3s;
}

.image-button:hover {
    cursor: pointer;
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.image-button:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}

.image-button:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding: 0 10px;
}

.image-button:active {
    transform: translate(2px ,2px);
}

.slot-summary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    margin: 2px;
    padding: 2px 5px;
    border-radius: 8px;
}

.icon-button {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EEE;
    border-radius: 50%;
    cursor: pointer;
    transition-duration: .3s;
    border: none;
    margin: 0 1px;
}

.icon-button label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button input {
    width: 44px;
    height: 44px;
}

.icon-button .icon {
    font-size: 20px;
}

.icon-button:hover {
    background-color: var(--secondary);
}

.icon-button:hover .icon {
    animation: bellRing 0.9s both;
}

/* bell ringing animation keyframes*/
@keyframes bellRing {
    0%,
    100% {
        transform-origin: top;
    }

    15% {
        transform: rotateZ(10deg);
    }

    30% {
        transform: rotateZ(-10deg);
    }

    45% {
        transform: rotateZ(5deg);
    }

    60% {
        transform: rotateZ(-5deg);
    }

    75% {
        transform: rotateZ(2deg);
    }
}

.icon-button:active {
    transform: scale(0.8);
}

.text-button {
    background-color: transparent;
    color: var(--foreground);
    padding: 10px;
    margin: 0 2px;
}

.text-button:hover {
    color: var(--secondary);
}

.pill-button {
    background-color: var(--foreground);
    color: var(--background);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0 2px;
}

.pill-button:hover {
    background-color: var(--secondary);
    transition: 0.5s ease;
    cursor: pointer;
}

.morphism-button {
    font-family: monospace;
    font-size: 1.2rem;
    color: #FAFAFA;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #FAFAFA;
    background: #252525;
    box-shadow: 3px 3px #fafafa;
    cursor: pointer;
    margin: 15px 0;
}

.morphism-button:active {
    box-shadow: none;
    transform: translate(3px, 3px);
}

/*!HOME*/
.home {
    padding: 100px;
    border-bottom: 1px solid var(--textColorVariant);
    height: calc(100vh - 77px);
}

.home h1 {
    margin: 30px 0;
    font-size: 15vh;
}

.home a {
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

.home p {
    color: var(--textColor);
}

.half {
    width: 50%;
}

.blob1 {
    background-color: var(--secondary);
    height: 33%;
    width: 100%;
    border-radius: 45%;
}

.blob2 {
    background-color: var(--tertiary);
    height: 67%;
    width: 100%;
    border-radius: 45%;
}

.blob2 img {
    margin-top: 30%;
}

.blob1 h2, .blob4 h2 {
    font-size: 9vh;
    overflow-y: clip;
}

.blob3 {
    background-color: var(--quartenary);
    height: 100%;
    width: 100%;
    border-radius: 45% 45% 20% 20%;
}

.blob4 {
    background-color: var(--textColorVariant);
    height: 45%;
    width: 100%;
    border-radius: 45%;
    margin-top: -45%;
}

.intro p {
    margin-top: 10px;
    margin-bottom: 25px;
}

/*!PARTNERS*/
.partners {
    padding: 10px 100px;
    border-bottom: 1px solid var(--textColorVariant);
}

.partners ul {
    overflow: hidden;
}

.partners ul li span {
    font-size: 4vw;
    font-family: "Barrio", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--textColor);
}

/*!FEATURES*/
.features {
    padding: 15px 100px;
}

.features ul {
    padding: 50px 0;
}

.block-colour {
    background: linear-gradient(120deg, #d21404 0%, #F1592A 100%);
    padding: 20px;
    transition: all 0.5s ease;
    border-radius: 12px 12px 0 0;
    color: white;
}

.coloured-card {
    background: linear-gradient(120deg, #d21404 0%, #F1592A 100%);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.5s ease;
    color: white;
}

.coloured-card span {
    font-size: 48px;
}

.coloured-card h3 {
    margin: 10px 0;
}

.pointer:hover {
    cursor: pointer;
    color: var(--primary);
}

/*!BLOG*/
.card-article {
    background-color: var(--background);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.max-lines {
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 3.3em;
    line-height: 1.1em;
}

.one-line {
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 1.1em;
    line-height: 1.1em;
}


.topLeft {
    margin-top: 4px;
    margin-left: 5px;
}

.columnStart {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

.tag {
    align-content: flex-start;
    margin-top: 4px;
}

.viewer {
    padding-left: 20%;
    padding-right: 20%;
    transition: all 0.3s;
    color: var(--textColor);
    min-height: calc(100vh - 70px);
}

.viewer a {
    color: var(--primary);
}

.viewer a:hover {
    color: var(--secondary);
}

/*!ADMIN*/
.content-admin {
    height: calc(100vh - 77px);
    overflow: hidden;
}

.content-admin nav {
    width: 180px;
    height: 100%;
    border-right: 1px solid var(--textColorVariant);
    overflow-y: auto;
}

.content-admin nav li {
    padding: 10px;
    border-radius: 24px;
    color: var(--textColor);
    margin: 1px;
}

.content-admin nav li:hover {
    color: var(--secondary);
    background-color: var(--primary10);
    cursor: pointer;
    transition: ease 0.3s;
}

.content-admin nav li.active {
    color: var(--background);
    background-color: var(--secondary);
}

.content-admin nav .material-symbols-rounded {
    margin-right: 10px;
}

.admin {
    width: calc(100% - 180px);
    height: 100%;
}

.index-admin {
    width: 100%;
}

/*ADMIN AUTH*/
.auth-admin {
    background-color: var(--primary10);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-admin .pill-button {
    margin-top: 5px;
}

.content-group {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

/*!SNACKBAR*/
/*snackbar*/
#snackbar {
    visibility: hidden;
    min-width: 250px;
    max-width: 40vw;
    background-color: var(--quartenary);
    color: var(--background);
    text-align: center;
    border-radius: 24px;
    padding: 16px;
    position: fixed;
    z-index: 7;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/*!TABLES*/
table {
    height: calc(100% - 8px);
    width: calc(100% - 8px);
    border-collapse: collapse;
    display: inline-table;
    margin: 5px;
}

thead, tbody {
    display: flex;
    flex-direction: column;
}

thead {
    background-color: var(--secondary);
}

tbody tr:nth-child(even) {
    background-color: var(--primary10);
    color: var(--primary);
}

tr {
    display: flex;
    flex-direction: row;
    width: 100%;
}

th, td {
    display: block;
    text-align: left;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

td {
    color: var(--textColor);
    border-bottom: 1px solid var(--textColorVariant);
    padding: 5px;
}

th {
    padding: 10px 5px;
}

tr:hover {
    cursor: pointer;
    border-bottom-color: var(--tertiary);
}

.bookings-table th, .bookings-table td {
    width: calc(100% / 9);
}

.finance-table {
    width: 80%;
}

.finance-table th, .finance-table td {
    width: calc(100% / 8);
}

.checkout-button {
    width: 100%;
    align-self: flex-start;
}

/*COLORS*/
.successful {
    background-color: #22c55e;
    color: white;
}

.failed {
    background-color: #ff4d4d;
    color: white;
}

.pending {
    background-color: #f0ad4e;
    color: white;
}

/*!INPUTS*/
/*!RADIO INPUTS*/
.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0.5rem;
    background-color: #EEE;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    padding: 0.25rem;
    font-size: 14px;
    margin: 2px;
}

.radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    padding: .5rem 0;
    color: rgba(51, 65, 85, 1);
    transition: all .15s ease-in-out;
}

.radio-inputs .radio input:checked + .name {
    background-color: #fff;
    font-weight: 600;
}

/*!FILTER INPUTS*/
.filter-inputs {
    display: flex;
    line-height: 30px;
    align-items: center;
    position: relative;
}

.filter-inputs input {
    width: 180px;
    height: 45px;
    line-height: 30px;
    padding: 5px 10px;
    border: 2px solid transparent;
    border-radius: 32px;
    outline: none;
    background-color: #EEE;
    color: #0d0c22;
    transition: .5s ease;
    margin: 0 2px;
}

.filter-inputs input::placeholder {
    color: #94a3b8;
}

.filter-inputs input:focus, input:hover {
    outline: none;
    border-color: var(--secondary);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(248, 129, 129, 0.3);
}

/*!FILTER INPUTS*/
.outlined-inputs {
    display: flex;
    line-height: 30px;
    align-items: center;
    position: relative;
}

.outlined-inputs input {
    width: 180px;
    height: 45px;
    line-height: 30px;
    padding: 5px;
    border: 1px solid var(--textColorVariant);
    border-radius: 10px;
    outline: none;
    color: #0d0c22;
    transition: .5s ease;
    margin: 0 2px;
}

.outlined-inputs input::placeholder, .tournament-settings input::placeholder, .tournament-input::placeholder {
    color: #94a3b8;
}

.outlined-inputs input:focus, input:hover, .tournament-settings input:focus, .tournament-settings input:hover, .tournament-input:focus, .tournament-input:hover {
    outline: none;
    border-color: var(--secondary);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(248, 129, 129, 0.3);
}

.outlined-icon-button {
    border-radius: 25px;
    border: 1px solid var(--textColorVariant);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    flex-direction: row;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}

.outlined-icon-button img {
    margin-right: 10px;
}

.line-text {
    position: relative;
    margin-top: 30px;
    margin-bottom: 50px;
}

.line-text span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background);
    padding: 0 10px;
}

/*!CHARTS*/
.charts {
    width: 100%;
    height: 350px;
    margin: 10px 0;
}

.canvas {
    width: 100%;
    height: 334px;
    padding: 4px 0;
}

/*!BOOKINGS*/
.booking {
    height: calc(100vh - 77px);
    width: 100vw;
    background-color: var(--textColorVariant);
}

.booking-group {
    display: flex;
    flex-direction: column;
    margin: 10px;
    align-items: center;
}

.pill-span {
    padding: 2px 4px;
    border-radius: 4px;
}

.booking .filter-inputs, .booking .pill-button {
    width: 250px;
    margin: 5px 0;
}

.booking .coloured-card {
    margin: 5px;
}

.cart-item {
    margin-top: 5px;
    color: var(--textColor);
}

/*MAIN AUTHENTICATION*/
.auth-group {
    width: 80%;
    height: 100%;
    padding: 100px 200px;
}

.auth-inner-group {
    width: 40%;
}

.auth-inner-group .outlined-inputs, .outlined-inputs input {
    width: 100%;
}

.input-title {
    font-weight: bold;
    margin-left: 8px;
}

.auth-inner-group .pill-button {
    width: 100%;
    margin: 20px 0;
}

/*PROFILE IMAGE PICKER*/
.logo {
    position: relative;
    border: 1px solid var(--textColorVariant);
    border-radius: 50%;
    display: flex;
    align-self: center;
}

.photo {
    position: relative;
    border: 1px solid var(--textColorVariant);
    display: flex;
    align-self: center;
}

/*!LOCATIONS*/
.locations-table th, .locations-table td {
    width: 10%;
}

.locations-table th:nth-child(3), .locations-table td:nth-child(3) {
    width: 9%;
}

.locations-table th:nth-child(6), .locations-table td:nth-child(6), .locations-table th:nth-child(5), .locations-table td:nth-child(5) {
    width: 7%;
}

.locations-table th:nth-child(8), .locations-table td:nth-child(8), .locations-table th:nth-child(9), .locations-table td:nth-child(9), .locations-table th:nth-child(7), .locations-table td:nth-child(7) {
    width: 19%;
}

.locations-content .filter-inputs span {
    font-size: 0.5rem;
    margin-bottom: -24px;
    z-index: 2;
}

.fixtures-table th, .fixtures-table td {
    width: 11%;
}

.fixtures-table th:nth-child(8), .fixtures-table td:nth-child(8),
.fixtures-table th:nth-child(9), .fixtures-table td:nth-child(9) ,
.fixtures-table th:nth-child(10), .fixtures-table td:nth-child(10) ,
.fixtures-table th:nth-child(11), .fixtures-table td:nth-child(11) {
    width: 5.75%;
}

.tournament-table th, .tournament-table td {
    width: 7.78%;
}

.tournament-table th:nth-child(3), .tournament-table td:nth-child(3),
.tournament-table th:nth-child(4), .tournament-table td:nth-child(4){
    width: 15%;
}

/*!LIVE*/
.score {
    font-family: "Nova Square", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10rem;
    width: 166px;
    text-align: center;
}

.live-block {
    background-color: var(--textColor);
    width: 12px;
    height: 40px;
}

.left-block {
    margin-left: 20%;
}

.right-block {
    margin-left: calc(60% - 24px);
}

.bordered-block {
    border: 15px solid var(--textColor);
    padding: 10px;
    border-radius: 8px;
}

.line-dash {
    border: 10px dashed var(--textColor);
    width: 0;
    height: 100%;
}

.live-list {
    width: 80%;
    height: 100%;
    overflow-y: scroll;
}

.live-list ul {

}

.game-event {
    width: 20%;
    border-left: 1px solid var(--textColorVariant);
}

/*!BLOG*/
.blog-list, .support-list {
    width: 20%;
    padding: 5px;
    background-color: var(--textColorVariant);
    height: calc(100vh - 77px);
    overflow-y: scroll;
}

.blog-editor {
    width: 80%;
    padding: 5px;
}

.blog-editor ul li {
    border-radius: 4px;
    margin-top: 10px;
}

.blog-editor ul li:hover {
    color: #ffffff;
    background-color: var(--secondary);
}

.blog-editor input, .typing-box {
    width: 100%;
    line-height: 30px;
    padding: 5px 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    background-color: #EEE;
    color: #0d0c22;
    transition: .5s ease;
    margin: 5px 2px;
}

.typing-box {
    height: calc(100vh - 330px);
    margin-bottom: 10px;
    overflow-y: scroll;
}

.support-editor {
    width: 40%;
}

.support-chat {
    padding: 5px 0;
}

.support-chat, .support-editor textarea {
    flex-grow: 1;
}

.support-chat li {
    cursor: pointer;
}

/*!CHAT BOX*/
.chat-box {
    border: 1px solid var(--textColorVariant);
    border-radius: 8px;
}

.chat-box textarea {
    border: none;
    padding: 10px;
    font-size: 12px;
    resize: none;
}

.message-send {
    background-color: #7F7BF8;
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 1;
    display: flex;
    max-width: 50%;
    min-width: 25%;
    margin-top: 5px;
    align-self: end;
}

.message-receive {
    background-color: black;
    color: #F8F8F8;
    padding: 10px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    flex-shrink: 1;
    display: flex;
    align-self: start;
    max-width: 50%;
    min-width: 25%;
    margin-top: 5px;
}

.message-date {
    font-size: 0.6rem;
    text-align: right;
}

.right {
    display: flex;
    justify-content: flex-end;
}

/* From Uiverse.io by abrahamcalsin */
.dot-spinner {
    --uib-size: 1.7rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}


/*!CALENDAR*/
.calendar {
    width: 50%;
    overflow-y: scroll;
}

.schedule {
    width: 50%;
    overflow-y: auto;
}

.calendar-div {
    width: 100%;
    height: 100%;
}

.calendar, .schedule {
    padding: 20px 10px 10px 10px;
}

.calendar-item {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    position: relative;
    flex: 0 0 14.286%;
    margin: 5px;
    max-width: calc(14.286% - 10px);
}

.selected-date {
    font-size: 12px;
}

.month-top-view-span {
    font-size: 3vh;
    font-weight: bolder;
    margin: 0 16px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    margin: 5px 2px;
    border: 1px solid var(--textColorVariant);
    border-radius: 10px;
    padding: 5px;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 12;
    max-height: 117px;
    overflow-y: auto;
    border: 1px solid var(--primary);
    border-radius: 3px;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px;
    cursor: pointer;
    transition: all 0.5s;
    font-size: 12px;
    font-weight: 400;
}

.custom-option:hover {
    cursor: pointer;
    background-color: var(--textColorVariant);
    color: var(--secondary);
}

.custom-option.selected {
    color: #fff;
    background-color: var(--secondary);
}

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.arrow {
    margin-left: 20px;
}

.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}

.arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: var(--textColor);
}

.arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: var(--textColor);
}

.open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}

.open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}

/*!TOURNAMENTS*/
.tournament-body {
    height: calc(100vh - 77px);
    width: 100vw;
}

.tournaments {
    padding: 2px;
    height: 100%;
    width: 100%;
}

.tournaments button {
    margin-top: 24px;
}

.tournaments, .tournament-body {
    overflow-y: hidden;
}

.tournament-view {
    overflow-y: auto;
    padding: 20px;
    width: 60%;
    border-right: 1px solid var(--textColorVariant);
}

.tournament-save {
    width: 20%;
    padding: 20px;
    overflow-y: scroll;
}

.tournament-save h4 {
    margin-top: 20px;
}

.tournament-teams {
    width: 100%;
    max-height: 20vh;
}

.tournament-teams li {
    border-bottom: 1px solid var(--textColorVariant);
}

.tournament-teams span {
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    padding: 4px;
    margin-right: 16px;
}

.tournament-settings {
    border-right: 1px solid var(--textColorVariant);
    overflow-y: auto;
    padding: 20px;
    width: 20%;
}

.section-title {
    margin-left: 12px;
}

.tournament-settings input, .tournament-input, .tournament-settings textarea {
    width: 100%;
    padding: 5px 8px;
    border: 1px solid var(--textColorVariant);
    border-radius: 10px;
    outline: none;
    color: #0d0c22;
    transition: .5s ease;
    margin: 5px 2px;
}

.tournament-settings button {
    width: 100%;
}

.visualizer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.grouping-column {
    flex-grow: 1;
    padding: 20px;
}

.team-verse {
    padding: 5px 10px;
    font-size: 14px;
    color: white;
}

.verse-group {
    display: flex;
    flex-direction: row;
    background-color: var(--secondary);
    margin: 20px 0;
    border-radius: 8px;
}

.team-names {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.team-names hr {
    height: 1px;
    background-color: white;
    margin-right: 10px;
    border: none;
}

.teams-view {
    overflow-y: auto;
    padding: 20px;
    width: 80%;
    border-right: 1px solid var(--textColorVariant);
}

.game-round {
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--secondary);
    height: 30px;
    width: 30px;
    aspect-ratio: 1 / 1;
}

.logo {
    position: relative;
    max-width: 130px;
    aspect-ratio: 1 / 1;
}

.logo img, .team-logo {
    border-radius: 50%;
}

.team-logo {
    height: 48px;
    width: 48px;
    aspect-ratio: 1 / 1;
    margin-right: 10px;
}

.team-hr {
    height: 1px;
    background-color: var(--textColorVariant);
    margin: 5px 12px;
}

.league-table th, .league-table td {
    width: 10%;
}

.league-table th:nth-child(2), .league-table td:nth-child(2) {
    width: 30%;
}

.title-bar {
    background-color: var(--primary10);
    border-radius: 8px;
    padding: 4px 8px;
    margin-left: 8px;
    border: 1px solid var(--primary);
    font-size: 12px;
    color: var(--secondary);
    align-self: flex-start;
}

.material-symbols-rounded {
    cursor: pointer;
}

/*!CHECKBOX*/
.cyberpunk-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 5px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.cyberpunk-checkbox:before {
    content: "";
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox:checked:before {
    transform: translate(-50%, -50%) scale(1);
}

.cyberpunk-checkbox-label {
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.legal {
    padding: 24px 16%;
}

.live-item img {
    border-radius: 50%;
}

.live-item h3 {
    margin-top: 12px;
}

.finance-content .card-flat {
    margin: 2px 4px;
}

.blog-item span {
    width: 20%;
    overflow-x: hidden;
}

/*!ALERTS*/
.alerts-list {
    width: 80%;padding: 20px;
}

.alerts-list ul {
    padding: 5px;
}

.notification-card {
    list-style: none;
    padding: 0;
    margin: 10px;
}

.notification-card li {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.notification-body {
    color: #555;
    margin-bottom: 10px;
}

.notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9em;
    color: #777;
}

.notification-date {
    flex-grow: 1;
}

.notification-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.8em;
}

.notification-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-status.pending {
    background-color: #fff3cd;
    color: #85640a;
    border: 1px solid #ffeeba;
}

.dashboard-email {
    max-width: calc(100% - 24px);
    overflow-x: hidden;
}

.booking-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.sidebar {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.main-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.counter-button {
    background-color: transparent;
    padding: 4px;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    margin: 0 10px;
}

.counter-button:hover {
    background-color: var(--primary);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Explicitly set 5 columns */
    gap: 6px; /* Reduced gap */
    margin-top: 6px; /* Slightly reduced top margin */
}

.slot-item {
    padding: 12px; /* Reduced padding */
    border-radius: 0.3rem; /* Slightly reduced border radius */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
    font-size: 0.9rem; /* Optional: reduce font size for smaller items */
}

.slot-item:hover {
    border-color: var(--primary-light);
}

.slot-item.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slot-item.booked {
    background-color: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
}

.summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-light);
}

/*!MEDIA QUERIES*/
/*LAYOUT SIZES*/
@media screen and (min-width: 1px) {
    .three-objects, .one-objects, .six-objects, .partners li, .features li, .article-item, .product-item, .cart-item, .price-item, .live-item, .blog-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 5px;
    }
    .seven-objects {
        flex: 1 0 33.333%;
        max-width: calc(50% - 20px);
        margin: 10px;
    }
    .faqs li {
        padding: 20px;
        margin: 5px;
        width: 100%;
    }
    .faqs h2 {
        font-size: 0.7vh;
        overflow-y: clip;
    }
    .topbottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .charts {
        display: flex;
        flex-direction: column;
        height: 1050px;
    }
    .chart {
        width: 100%;
        height: 350px;
        margin: 5px;
    }
    .booking-body nav, .booking-body .image-button {
        display: none;
    }
    .booking-body .main-content, .booking-body .sidebar, .dashboard-side, .dashboard-center {
        width: 100%;
        max-width: 100%;
    }
    .date-scroller, .slot-grid {
        max-height: 50vh;
    }
    .dashboard-container {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 640px) {
    .partners li, .features li, .article-item, .product-item, .price-item, .live-item {
        flex: 0 0 50%;
        margin: 10px;
        max-width: calc(50% - 20px);
    }
    .six-objects {
        flex: 1 0 33.333%;
        max-width: calc(50% - 20px);
        margin: 10px;
    }
    .faqs h2 {
        font-size: 1.5vh;
        overflow-y: clip;
    }
    .booking-body nav, .booking-body .image-button {
        display: flex;
    }
}

@media screen and (min-width: 960px) {
    .faqs li, .partners li, .features li, .article-item, .product-item, .price-item {
        flex: 1 0 33.333%;
        max-width: calc(33.333% - 20px);
        margin: 10px;
    }
    .six-objects, .seven-objects {
        flex: 1 0 25%;
        max-width: calc(25% - 10px);
        margin: 5px;
    }
    .three-objects {
        flex: 1 0 50%;
        max-width: calc(50% - 10px);
        margin: 5px;
    }
    .faqs h2 {
        font-size: 2vh;
        overflow-y: clip;
    }
    .topbottom {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .date-scroller, .slot-grid {
        max-height: 100%;
    }
}

@media screen  and (min-width: 1280px){
    .faqs h2 {
        font-size: 3vh;
        overflow-y: clip;
    }
    .six-objects {
        flex: 1 0 16.667%;
        max-width: calc(16.667% - 10px);
        margin: 5px;
    }
    .features li, .article-item, .price-item {
        flex: 1 0 20%;
        max-width: calc(20% - 20px);
        margin: 10px;
    }
    .article-item, .live-item {
        flex: 1 0 25%;
        max-width: calc(25% - 10px);
        margin: 5px;
    }
    .three-objects, .live-item {
        flex: 1 0 33.3%;
        max-width: calc(33.3% - 10px);
        margin: 5px;
    }
    .seven-objects {
        flex: 1 0 14.287%;
        max-width: calc(14.287% - 10px);
        margin: 5px;
    }
    .charts {
        display: flex;
        flex-direction: row;
        height: 350px;
    }
    .chart {
        width: 33.3%;
        height: 100%;
        margin: 5px;
    }
    .main-content {
        max-width: 100%;
    }
    .dashboard-container {
        display: flex;
        flex-direction: row;
    }
    .dashboard-center {
        width: 50%;
        max-width: 50%;
    }
    .dashboard-side {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .date-scroller {
        gap: 12px;
    }

    .date-item {
        min-width: 70px;
        padding: 12px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.date-scroller {
    display: flex;

    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 6px;
    scrollbar-width: thin;
}

.date-scroller::-webkit-scrollbar {
    height: 6px;
}

.date-scroller::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 3px;
}

.date-scroller::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}

.date-item {
    padding: 6px;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
}

.date-item:hover {
    border-color: var(--primary-light);
}

.date-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.date-item .day {
    font-size: 0.75rem;
    opacity: 0.7;
}

.date-item .date {
    font-weight: 600;
    margin: 12px 0;
}

.pill {
    padding: 6px 12px;
    border-radius: 24px;
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.pill:hover {
    background-color: var(--primary-dark);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Explicitly set 5 columns */
    gap: 6px; /* Reduced gap */
    margin-top: 6px; /* Slightly reduced top margin */
}

.slot-item {
    padding: 12px; /* Reduced padding */
    border-radius: 0.3rem; /* Slightly reduced border radius */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
    font-size: 0.9rem; /* Optional: reduce font size for smaller items */
}

.slot-item:hover {
    border-color: var(--primary-light);
}

.slot-item.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slot-item.booked {
    background-color: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
}

.summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-light);
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.alert {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    max-width: 350px;
    width: 90%;
    text-align: center;
}

.alert-success {
    background-color: #e6ffe6;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert-error {
    background-color: #ffe6e6;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.alert-summary-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    margin-bottom: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 8px 0;
}

.alert-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.alert-pill-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.alert-pill-button.secondary-button {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.alert-pill-button:hover {
    opacity: 0.9;
}
