/*!
Theme Name: Pledge ball
Theme URI: https://pledgeball.org/
Author: Pledgeball
Author URI: https://pledgeball.org/
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: pledge-ball
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.

Pledge ball is based on Underscores https://pledgeball.org/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/
:root {
    --primary-color: #ff6700;
    --secondary-color: #00faff;
    --site-pink: #ff99d1;
    --site-pink-dark: #C42C7F;
    --teal-green: #039DA0;
    --brown: #B44900;
    --font-family: "Montserrat", sans-serif;
    --light-pink: #ffebf6;
    --secondary-dark: #2c2a84;
}

.form-field__select>select>option,
.create-event-page form select>option {
    color: black;
}

/* New button css  */
.button-primary,
.button-secondary {
    position: relative;
    border-bottom: 0 !important;
    line-height: 1;
    display: inline-block;
}

.button--hover.button-primary .button--icon>svg {
    color: white;
}

.button-primary span.button,
.button-secondary span.button {
    margin: 0 !important;
}

.button-primary::before,
.button-secondary::before {
    content: "";
    width: 24px;
    height: 34px;
    position: absolute;
    left: -7px;
    bottom: -6px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 34'%3E%3Cpath d='M24 27.8723L7.01863 0V0.520398C6.79458 10.3879 5.56859 27.3307 0 34C0 34 9.02252 27.8723 21.8338 27.8723H24Z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 34'%3E%3Cpath d='M24 27.8723L7.01863 0V0.520398C6.79458 10.3879 5.56859 27.3307 0 34C0 34 9.02252 27.8723 21.8338 27.8723H24Z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    z-index: 1;
    transition: background-color ease 2s;
}

.button-primary::before,
.button-primary>span {
    background-color: var(--primary-color);
}

.button-secondary::before,
.button-secondary>span {
    background-color: var(--secondary-color);
}

.button-secondary svg,
a.button-secondary svg,
button.button-secondary svg,
.button-secondary>span {
    color: #393939;
}

.button--icon,
a.button--icon,
button.button--icon {
    padding-right: 48px
}

.button--hover.button-primary span,
.button--hover.button-secondary span {
    overflow: hidden;
    z-index: 1;
    transition: transform ease 0.8s;

}

.button--hover.button-primary span::after,
.button--hover.button-secondary span::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -100px;
    border-radius: 50%;
    top: 14px;
    z-index: -1;
    transition: transform ease 0.8s;
    transform: scale(1);
    transform-origin: left;
    pointer-events: none;
    /* visibility: hidden; */
}

.button--hover.button-primary span::after {
    background-color: var(--site-pink);
}

.button--hover.button-secondary span::after {
    background-color: var(--primary-color);
}

.button--hover.button-primary:hover .icon-arrow-right-svg,
.button--hover.button-secondary:hover .icon-arrow-right-svg {
    color: white;
}

.button--hover.button-primary:hover span::after,
.button--hover.button-secondary:hover span::after {
    /* visibility: visible; */
    transform: scale(5);
}

.button--hover.button-primary:hover::before {
    transition: background-color ease 0.1s;
    background-color: var(--site-pink);
}

.button--hover.button-secondary:hover::before {
    transition: background-color ease 0.1s;
    background-color: var(--primary-color);
}

/* New button hover CSS  */

.no-data {
    text-align: center;
    font-size: 14px;
    padding: 20px;
    color: #333;
    /* margin-top: 10px !important; */
}

.no-data:not(.dark) {
    color: white;
    background-color: rgba(44, 42, 132, 54%)
}

.hero--home {
    z-index: 0;
}

.card--horizontal .card__media.placeholder-img {
    border: 1px solid #eee;
}

.hero__aside {
    z-index: 0 !important;
}

.fallback-people-img {
    width: 100%;
}

.stats-wrap__item img {
    width: 44px;
    height: 44px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

@media screen and (min-width: 600px) {
    .stats-wrap__item img {
        width: 72px;
        height: 72px;
    }
}

/** Contact from css **/
span.wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 4px;
}

button.wpcf7-form-control[disabled],
input.wpcf7-form-control[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

span.wpcf7-list-item-label a {
    color: white;
}

span.wpcf7-list-item-label {
    color: white;
}

.clubs_edit_event_btn_form {

    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
}

.form-field__checkboxes input[type=checkbox] {
    top: 0 !important;
}

span.wpcf7-spinner {
    margin-right: 0;
    margin-left: 10px;
}

.club_image {
    border: 1px solid #000;
    border-radius: 12px !important;
    width: 100%;
    height: 250px;
    display: flex !important;
    /* enable flexbox */
    justify-content: center;
    /* horizontal centering */
    align-items: center;
    /* vertical centering */
    overflow: hidden !important;
    /* optional: crop if image overflows */
}

.club_image img {
    max-width: 100%;
    max-height: 100%;
    /* prevents image from overflowing container */
    border-radius: 12px;
    /* optional: rounded corners on image too */
}

.edit-listing {
    padding: 10px;
}

.form-message.err_msg {
    font-size: 20px;
    color: #ff6700;
}

.error {
    color: #ff6700;
}

.pt-0 {
    padding-top: 0 !important;
}

.allow_text {
    color: #fff;
}

/*----------------- header css ---------------------*/

.navigation-primary__item:hover .navigation-primary__multinav {
    display: block;
}

@media(min-width: 1100px) {
    .mobile-float-btn {
        display: none !important;
    }

    .menu-icon {
        width: 22px;
        height: 22px;
        float: left;
        stroke: #fff;
        margin-right: 5px;
        filter: invert(1);
    }

    .navigation-primary__items>.menu-item-has-children>a:after {
        content: "";
        width: 22px;
        height: 18px;
        background-image: url(../../themes/pledge-ball/img/chevron-down.svg);
        display: inline-block;
        margin-left: 6px;
    }

    .navigation-primary__items>.menu-item-has-children:hover>a:after {
        background-image: url(../../themes/pledge-ball/img/chevron-up.svg);
    }

    .navigation-primary__item:not(.multinav-grid-layout) a {
        padding: 8px 0px;
        margin: 0 12px;
    }
}

.Tennis {
    width: 100% !important;
}

.media-figure .alignleft {
    float: left;
}

.media-figure .alignright {
    float: right;
}

.media-figure .aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5em;
}

.highlight .typebase ul li::marker {
    color: black;
}

#resource-post-wrapper .no-data {
    font-size: 16px;
}

img.club-image {
    max-width: 50% !important;
}

.pledge-complete-page.section--ribbon {
    background-position: top center;
}

.pledge-complete-page~.pledge-table-states-wrapper {
    display: flex;
    flex-direction: column-reverse;
}

.pledge-complete-page .pledge-table-states-wrapper>.section--ribbon {
    background: transparent;
}


/* Container Style */
.social-share-buttons {
    display: flex;
    justify-content: center;
    /* Center the buttons horizontally */
    margin-top: 20px;
    /* Add space above the button container */
    gap: 15px;
    /* Space between each button */
}

/* Individual Button Styles */
.social-share-buttons a {
    padding: 10px 15px;
    /* Button padding */
    text-decoration: none;
    /* Remove underline from the links */
    border-radius: 5px;
    /* Rounded corners for the buttons */
    font-weight: bold;
    /* Bold text for better visibility */
    transition: background-color 0.3s;
    /* Smooth background color transition for hover effect */
}

/* Color and Hover Styles for Each Social Network */
.social-share-buttons a[href*="facebook.com"] {
    background-color: #3b5998;
    color: white;
}

.social-share-buttons a[href*="facebook.com"]:hover {
    background-color: #2d4373;
}

.social-share-buttons a[href*="twitter.com"] {
    background-color: #1DA1F2;
    color: white;
}

.social-share-buttons a[href*="twitter.com"]:hover {
    background-color: #0c85d0;
}

.social-share-buttons a[href*="linkedin.com"] {
    background-color: #0077B5;
    color: white;
}

.social-share-buttons a[href*="linkedin.com"]:hover {
    background-color: #005582;
}

.social-share-buttons a[href*="pinterest.com"] {
    background-color: #BD081C;
    color: white;
}

.social-share-buttons a[href*="pinterest.com"]:hover {
    background-color: #8d0615;
}

/* Footer  */
.footer__logos a {
    display: inline-block;
}

.footer__meta p+p {
    margin-bottom: 0 !important;
}

.leaguetable {
    min-height: 660px;
}

.menu-image {
    width: 22px;
    height: 22px;
    float: left;
    stroke: #fff;
    margin-right: 0;
    padding-right: 0 !important;
    filter: invert(1);
}

@media (min-width: 1100px) {
    .hide-desktop {
        display: none;
    }
}

.page-numbers {
    font-size: 1.8rem;
    display: inline-block;
    color: #161542;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 8px;
}

span.page-numbers.current {
    font-weight: 800;
}

a.prev.page-numbers {
    text-align: center;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    display: block;
    border: 1px solid #161542;
    background-color: rgba(0, 0, 0, 0);
    color: #161542;
}

a.next.page-numbers {
    text-align: center;
    transition: all .3s ease-in-out;
    border-radius: 5px;
    display: block;
    border: 1px solid #161542;
    background-color: rgba(0, 0, 0, 0);
    color: #161542;
}

a.next.page-numbers svg {
    height: 40px;
    width: 40px;
}

a.prev.page-numbers svg {
    height: 40px;
    width: 40px;
}

.btn-msg {
    padding: 5px;
}

.partner__content:after {
    background-image: url(/img/button-corner-blue.svg);
}

.navigation-primary__item--pledge>a:after {
    width: 24px !important;
    height: 34px !important;
    background-image: url(../../themes/pledge-ball/img/button-corner.svg) !important;
    margin-left: 0 !important;
}

.navigation-primary__item--pledge>a:hover:after,
.navigation-primary__item--pledge:hover>a:after {
    background-image: url(../../themes/pledge-ball/img/button-corner-blue-50.svg) !important;
}

p.italic-font {
    font-size: 12px;
    font-style: italic;
}


.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}

.footer_sozo_logo {
    position: absolute;
    right: 0;
    bottom: 0;
}

.header.scrolled .navigation-secondary img {
    filter: invert(0);
}


#leaguetable .pagination__range .form-field__select select {
    padding: 0 10px !important;
}

.navigation-primary__item--pledge a {
    font-weight: 400 !important;
}

.filter__form .form-field__select select {
    line-height: 30px;
}

.tile .tile__content {
    position: relative;
}

img.tile__bg-image {
    width: 100%;
}


.tile-4 .tile__content {
    background-color: #00faff !important;
}

.tile-4:after {
    filter: brightness(0) saturate(100%) invert(86%) sepia(40%) saturate(4118%) hue-rotate(130deg) brightness(100%) contrast(109%);
}

.tabs-about__label:after {
    content: "";
    width: 30px;
    height: 30px;
    right: 0;
    z-index: 1;
    transition: ease 0.3s;
    background-size: contain;
    background-position: center;
    mask: url("data:image/svg+xml;utf8,<svg width='18' height='32' viewBox='0 0 18 32' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M16.4141 0.707031L1.41406 15.707L16.4141 30.707' stroke='currentColor' stroke-width='2'/> </svg>") no-repeat center;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg width='18' height='32' viewBox='0 0 18 32' fill='none' xmlns='http://www.w3.org/2000/svg'> <path d='M16.4141 0.707031L1.41406 15.707L16.4141 30.707' stroke='currentColor' stroke-width='2'/> </svg>") no-repeat center;
    mask-size: contain;
}

.label_1 .tabs-about__label {
    color: var(--site-pink-dark);
}

.label_2 .tabs-about__label {
    color: var(--teal-green);
}

.label_3 .tabs-about__label {
    color: var(--brown);
}

.label_1 .tabs-about__label:after {
    background-color: var(--site-pink-dark);
}

.label_2 .tabs-about__label:after {
    background-color: var(--teal-green);
}

.label_3 .tabs-about__label:after {
    background-color: var(--brown);
}

.review-slider .quote__quote {
    font-family: var(--font-family);
    text-transform: none;
}

.about-tab-wrapper .section__inner {
    padding: 0;
}

.pledge-list__heading {
    background-color: var(--site-pink) !important;
}

.grid-sidebar__main .pledge-nav .button--tertiary {
    letter-spacing: 0 !important;
}

#resource-listing .listing-item:hover {
    background-color: var(--light-pink);
}

.hero--simple .hero__heading,
.hero--heading .hero__heading {
    margin-bottom: 24px;
}

.page-id-567 .hero--heading .row {
    height: auto;
}

.page-id-567 .pledge-table-states-wrapper .section__inner {
    padding-top: 0;
}

.about-tab-wrapper .section__inner.py-0 {
    padding: 0;
}

.card--pledge-total svg {
    left: auto !important;
}

.card--pledge-total svg {
    left: auto !important;
}

.hero__heading--small {
    margin-bottom: 20px;
}

.hero__leaders {
    z-index: 1 !important;
}

.hero--about .hero__promo {
    font-size: 1.8rem;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 0;
    margin-bottom: 20px;
    line-height: 1;
}

.filter {
    position: static !important;
}

.team-section picture.card__media img {
    width: 100%;
    object-fit: cover;
}

/* Responsive CSS */
.pledge-nav {
    align-items: center;
}

.split-slider-block {
    overflow: hidden;
}

.partner-card:after {
    background-image: url(../../themes/pledge-ball/img/button-corner-blue-light.svg) !important;
}


@media screen and (min-width: 500px) {
    .review-slider .quote--image {
        grid-template-columns: 1.2fr 2fr;
    }
}

@media screen and (min-width: 750px) {
    .news-button.button-primary::before {
        bottom: 3px;
    }
}

@media screen and (min-width: 900px) {
    .team-section picture.card__media img {
        height: 320px;
    }

    .contact-page {
        background-position: center 200px;
    }

    .contact-page h2.hero__subheading {
        font-size: 5.8rem !important;
    }

    .contact-page .hero__heading--small {
        margin-bottom: 1rem;
    }

    .tabs-about__label:after {
        top: 40px;
        position: absolute;
        left: 0;
        margin: 0 auto;
    }

    .tabs-about input:checked+label h2.tabs-about__label:after {
        transform: rotate(180deg) translateY(-3px);
    }

    .tabs-about__content {
        padding-left: 80px !important;
    }

    .tabs-about__label {
        display: flex !important;
        width: 80px !important;
        align-items: center;
        line-height: 1;
    }

    .tabs-about input+label {
        padding-right: 60px;
    }

    .tabs-about .label_2 {
        left: calc(100% - 160px) !important;
    }

    .tabs-about .label_3 {
        left: calc(100% - 80px) !important;
    }

    .tabs-about #tab_2:checked+.label_2 {
        left: 80px !important;
    }

    .tabs-about #tab_3:checked+.label_3 {
        left: 160px !important;
    }

    .tabs-about .label_2:has(+ #tab_3:checked) {
        left: 80px !important;
    }

    .hero--home .hero__caption {
        max-width: 900px;
    }

    .hero--home .hero__heading {
        font-size: 8rem !important;
        letter-spacing: 3px !important;
    }

    .hero__subheading {
        font-size: 6.6rem !important;
        margin-top: 0 !important;
    }

    .logo-gallery:not(.logo-gallery--animated) {
        margin-bottom: 0;
    }

    .logo-gallery.logo-gallery--animated {
        margin-bottom: 90px;
    }

    .navigation-primary__item.current-menu-parent li.current-menu-item>a {
        color: var(--primary-color);
    }

    /* menu hover css */
    .menu-item svg.menu-item-underline {
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 14px;
        pointer-events: none;
    }

    .menu-item path {
        fill: none;
        stroke: #00faff;
        stroke-width: 3;
        stroke-linecap: round;

        /* sketch draw animation */
        stroke-dasharray: 260;
        stroke-dashoffset: 260;
        transition: stroke-dashoffset 0.45s ease-in-out;
    }

    .menu-item:hover path,
    .menu-item.current-menu-ancestor path {
        stroke-dashoffset: 0;
    }

    .navigation-primary__items>.navigation-primary__item>a {
        border-bottom: none !important;
    }

    .navigation-primary__item:not(.multinav-grid-layout):hover,
    .navigation-primary__item:focus,
    .navigation-primary__item:active,
    .navigation-primary__item--active>a,
    .navigation-primary__item.current-page-ancestor>a,
    .navigation-primary__item.current-menu-ancestor>a,
    .navigation-primary__item.current-menu-item>a,
    .navigation-primary__item.current_page_item>a,
    .navigation-primary__item a:hover,
    .navigation-primary__item a:focus,
    .navigation-primary__item a:active {
        background-color: transparent !important;
    }

    .navigation-primary__multinav .navigation-primary__item a {
        border-bottom: 0 !important;
    }

    .navigation-primary__multinav .navigation-primary__item a:hover {
        color: var(--primary-color);
    }

    /*.navigation-primary__multinav:before {
        content: "";
        position: absolute;
        left: 39%;
        top: -24px;
        border-width: 12px;
        border-color: transparent transparent var(--secondary-dark);
        border-style: solid;
    }
    .navigation-primary__multinav {
        border-radius: 14px;
    }*/
    /* menu hover css End */
}

@media (max-width: 499px) {
    .grid-4up.with-leader .grid__col img {
        width: 100%;
    }

    .grid-4up.with-leader .card__content {
        text-align: center;
    }

    .grid-4up.with-leader .card__heading {
        margin-bottom: 0;
    }

    .logo-gallery.logo-gallery--animated {
        margin-bottom: 90px;
    }

    .navigation-primary__item.current-menu-parent li.current-menu-item>a {
        color: var(--primary-color);
    }

    .footer__logos {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .footer__logos a img {
        max-width: 140px !important;
        height: 70px !important;
        display: block;
        margin: 0 auto;
    }

    .promo-panel-section {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 12px 20px !important;
    }

    .footer__meta.max-meter {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .footer_sozo_logo {
        position: static !important;
    }

    .review-slider-section .section__subsubheading .button {
        margin: 10px 0 0 10px;
    }

    .review-slider.carousel {
        padding-bottom: 20px !important;
    }

    .review-slider .quote__quote {
        font-size: 1.8rem;
        line-height: 1.6;
        padding: 20px 14px 0px 14px;
        background-size: 90px;
    }

    .review-slider .quote--image {
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .review-slider .quote__citation {
        padding-left: 14px;
        margin-bottom: 0;
    }

    .review-slider .quote__media {
        padding: 0 14px;
    }

    .review-slider .carousel__item {
        opacity: 0;
    }

    .review-slider .carousel__item.is-selected {
        opacity: 1;
    }

    .typeXXXXL,
    .typebase h1 {
        font-size: 2.8rem !important;
    }

    .panel__heading {
        font-size: 2.5rem !important;
    }

    .hero__scroll {
        bottom: 0 !important;
        right: 15px !important;
    }

    .hero--home .row {
        min-height: 55vh !important;
    }

    /* .hero--home .hero__heading {
        font-size: 4.5rem !important;
        line-height: 1.1;
    }
    .hero__subheading {
        font-size: 3.4rem !important;
    } */
}

@media screen and (max-width: 750px) {
    .latest__grid {
        padding: 0 12px 16px;
        overflow: hidden;
    }
}

@media (max-width: 899px) {
    h2.tabs-about__label {
        padding: 24px 22px 16px 22px;
        font-size: 3rem;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    h2.tabs-about__label:after {
        transform: rotate(-90deg);
        width: 15px;
        left: -5px;
        position: relative;
    }

    .tabs-about input:checked+label h2.tabs-about__label:after {
        transform: rotate(90deg);
    }

    .tabs-about__content__grid .tabs-about__media {
        position: relative;
    }

    .tabs-about__content__grid .tabs-about__media:before {
        content: "";
        display: block;
        padding-top: 100%;
        background-size: cover;
        background-position: center;
    }

    .tabs-about {
        display: flex;
        flex-direction: column;
    }

}

@media (max-width: 1099px) {
    .partner-card {
        flex-direction: column;
    }

    .footer .mobile-float-btn {
        position: fixed;
        bottom: 16px;
        right: 16px;
        z-index: 9999;
        font-size: 1.4rem;
        line-height: 36px;
        padding: 6px 16px 2px;
    }

    .footer .mobile-float-btn:before {
        right: -7px;
        left: auto;
        transform: rotate3d(0, 1, 0, 180deg);
        bottom: -5px;
    }
}


/* button.button.button-primary.btn {margin: 10px;}  */
/* .card { flex:1; background:#fff; border:1px solid #ccc; padding:15px; text-align:center; } 
.card p { font-size:24px; font-weight:bold; } */
.report-table-wrap {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    overflow-x: auto;
    margin-top: 15px;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.report-table thead {
    background: #f6f7f7;
}

.report-table th,
.report-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.report-table th {
    font-weight: 600;
    color: #1d2327;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.report-table tbody tr:hover {
    background-color: #f9fafb;
}

.report-table tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* Empty state */
.report-table td.empty {
    text-align: center;
    padding: 25px;
    color: #666;
    font-style: italic;
}

#report-message {
    margin: 10px 0;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
}

#report-message.error {
    background: #ffe6e6;
    color: #a00;
    border: 1px solid #f5c2c2;
}

#report-message.success {
    background: #e6f7ee;
    color: #0a6b3b;
    border: 1px solid #bde5d1;
}

.protected-message {
    color: #fff;
    font-size: 14px;
    padding: 10px;
    width: 50%;
}

.powered-by-greenfootball {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    transform: translateY(69%);
}

.powered-by-greenfootball span {
    color: white;
    font-style: italic;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin: 0 10px 0px 0;
    opacity: 0.9;
}

.powered-by-greenfootball .logo {
    border: 0;
}

.powered-by-greenfootball .logo>img {
    max-width: 150px;
    height: auto
}

.pledge-table-states-wrapper.inside-iframe .section__inner {
    padding-top: 0px;
}

@media (max-width: 479px) {
    .powered-by-greenfootball {
        text-align: right;
        flex-direction: column;
        transform: translateY(62%);
    }

    .powered-by-greenfootball .logo>img {
        max-width: 130px;
        margin-top: 5px;
    }
}
.no-data-link{
    color:#fff;
}