.html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.body {
    background-color: #282828;
    display: flex;
    flex-direction: column;
    font-family: lato, sans-serif;
    margin: 10px;
    min-height: 100vh;
}

.container {
    flex: 1;
    padding-bottom: 12em;
}

.header-content {
    display: flex;
    height: 40px;
    line-height: 35px;
    justify-content: space-between;

    @media screen and(min-width:768px) {
        height: 55px;
        line-height: 55px;
    }
}

.header-pro {
    display: flex;
    align-items: center;
}

.header-items {
    display: flex;
    background-color: darkslategrey;
    justify-content: space-evenly;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    border-radius: 10px;

    @media screen and(min-width:768px) {
        height: 55px;
        line-height: 55px;
    }
}

.header-logo,
.header-social,
.header-livescores,
.header-predictions,
.header-stats {
    color: beige;
    text-decoration: none;
    font-size: 15px;

    @media screen and(min-width:768px) {
        font-size: 20px;
    }
}

.header-items a.active {
    color: yellow;
    font-weight: bold;
}

.leagues-titlebox {
    padding-left: 15px;
    display: flex;
    align-items: center;
    color: beige;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    background-color: rgb(13, 84, 100, 59%);
    margin-bottom: 5px;
    border-radius: 10px;
}

.league-visible {
    border-right: 3px solid #282828
}

.flag-icon {
    width: 15px;
    margin-right: 10px;
    border-radius: 10px;
}

.arrow-wrapper {
    position: absolute;
    right: 25px;
}

.arrow {
    border-style: solid;
    border-width: 2px 2px 0 0;
    height: 8px;
    width: 8px;
    transform: rotate(-225deg);
}

.hidden-content {
    display: none;
}

.league-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.league-team {
    height: 100px;
    display: flex;
    position: absolute;
    justify-content: center;
    left: 0;
    right: 0;
}

.social {
    display: flex;
    justify-content: space-evenly;
}

.social-row {
    display: flex;
    padding-top: 5px;
}

.social-row-minus {
    display: flex;
    padding-top: 5px;
    padding-left: 15px;
}

.facebook,
.instagram,
.youtube,
.tiktok,
.twitter {
    width: auto;
    height: auto;
    margin-right: 13px;
}

.threads {
    width: auto;
    height: auto;
}

.team-info-container {
    border-radius: 3px;
    margin: 10px auto;
    max-width: 250px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    color: black;
    font-size: 18px;
    margin-bottom: 5px;
    width: 200px;
    display: flex;
    justify-content: center;
    background-color: antiquewhite;
    border-radius: 5px 5px 0 0;
}

.stats-link {
    color: beige;
    padding-left: 10px;
    text-decoration: none;
}

.team-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
    background-color: antiquewhite;
    border-radius: 0 0 5px 5px;
}

.team-badge {
    width: auto;
    height: 110px;
    border-bottom: 5px solid #282828;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.twittclass {
    display: flex;
    border-top: 5px solid #282828;
}

.css-1dbjc4n.r-38sf4c.r-qklmqi.r-1cbz2o1 {
    display: none !important
}

.fas {
    align-items: center;
    margin-right: 5px;
    color: beige;
}

.icon-globe {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotateY(0deg)
    }

    to {
        transform: rotateY(360deg)
    }
}

.footer {
    margin-top: auto;
    border-top: 1px solid #666666;
    padding: 0.5em 0;
}

.footer-logo {
    text-decoration: none;
    color: beige;
    display: block;
    text-align: center;
    margin-bottom: 1em;
}

.footer-text {
    color: #a7a7a7;
    font-size: 13px;
    text-align: center;
}

.site-description {
    font-size: 10px;
}

.contact {
    text-decoration: underline;
    color: #a7a7a7;
}

.contact:hover {
    color: beige;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2em;
}

.footer-social-link {
    text-decoration: none;
    color: inherit;
    margin: 0 10px;
}

.footer-social-link i {
    font-size: 1.5em;
}

@media screen and(max-width:768px) {
    .footer-social {
        padding: 0 20px;
    }
}

@media screen and(max-width:576px) {
    .footer-social {
        padding: 0 10px;
    }
}

.cprgt {
    color: #a7a7a7;
    font-size: 13px;
    text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Columns Layout */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* allows wrapping on small screens */
  margin-bottom: 20px;
}

.footer-column {
  flex: 1 1 200px; /* min width for each column */
  margin: 10px;
}

/* Remove list dots */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 5px 0;
}

.stats-title {
  color: beige;
  font-size: 18px;
}