@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
:root {
  --primary-color: #007AF3;
}

body {
  background: #F2F2F2 !important;
  margin: 0;
  font-family: 'Poppins';
  position: relative;
}

.navbar-rgb {
  background: white;
  padding: 1em;
}

.navbar-rgb .logo {
  text-decoration: none;
  font-weight: 200;
  color: black;
  font-size: 1.2em;
}

.navbar-rgb .logo span {
  color: var(--primary-color);
  font-weight: 700;
}

.navbar-rgb nav {
  display: none;
}

.navbar-rgb .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar-rgb .mobile-menu {
  cursor: pointer;
}

a {
  color: #444444;
}

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

section {
  padding: 5em 2em;
}

.hero {
  text-align: center;
}

.left-col .subhead {
  text-transform: uppercase;
  font-weight: bold;
  color: gray;
  letter-spacing: .3em;
}

.left-col h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: .2em;
  font-weight: 300;
}

.left-col .primary-cta {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: .6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  font-weight: bold;
  display: inline-block;
}

.left-col .watch-video-cta {
  display: block;
  margin-top: 1em;
}

.left-col .watch-video-cta img {
  margin-right: .5em;
}

.hero-img {
  width: 70%;
  margin-top: 3em;
}


section.features-section {
  background: #20272E;
  color: white;
}

ul.features-list {
  margin: 0;
  padding-left: .1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}

ul.features-list li {
  font-size: 1.1em;
  margin-bottom: 1em;
  margin-left: 2em;
  position: relative;
}

ul.features-list li:before {
  content: '';
  left: -2em;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/bullet.svg");
  background-size: contain;
  margin-right: .5em;
}

.features-section img {
  display: none;
}

.testimonials-section {
  background: #006BD6;
  color: white;
}

.testimonials-section li {
  background: #006BD6;
  text-align: center;
  padding: 2em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}

.testimonials-section li img {
  width: 5em;
  height: 5em;
  border: 5px solid #006BD6;
  border-radius: 50%;
  margin-top: -4.5em;
}

h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: #20272E;
  height: 100vh;
  padding: 1em;
}

nav ul.primary-nav {
  margin-top: 5em;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: .5em;
  font-size: 1.3em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar-rgb .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .navbar-rgb nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar-rgb nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-rgb nav a {
    color: black;
    font-size: 1em;
    padding: .1em 1em;
  }
  .navbar-rgb nav ul.primary-nav {
    margin: 0;
  }
  .navbar-rgb nav li.current a {
    font-weight: bold;
  }
  .navbar-rgb nav li.go-premium-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -.2em;
  }
  .navbar-rgb nav li.go-premium-cta a:hover {
    background: var(--primary-color);
    color: white;
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 10em 4em;
  }
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  .hero .container .left-col {
    margin: 3em 3em 0 5em;
  }
  .hero .container .left-col h1 {
    font-size: 3em;
    width: 90%;
  }
  .hero-img {
    width: 50%;
    margin-right: 8em;
  }
  .hero-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .primary-cta {
    margin-right: 1em;
  }
  ul.features-list {
    display: block;
    margin-left: 5em;
  }
  ul.features-list li {
    font-size: 1.4em;
  }
  ul.features-list li:before {
    width: 30px;
    height: 30px;
  }
  .features-section {
    position: relative;
  }
  .features-section img {
    display: block;
    position: absolute;
    right: 0;
    width: 350px;
    bottom: -2em;
  }
  .testimonials-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .testimonials-section ul li {
    margin: 0 1em;
  }
  .contact-section {
    position: relative;
  }
  .contact-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
  }
  .contact-right iframe {
    height: 100%;
  }
}

@media only screen and (min-width: 1450px) {
  .features-section:before {
    content: '';
    position: absolute;
    width: 10%;
    height: 20em;
    background: var(--primary-color);
    left: 0;
    top: -4em;
  }
  .features-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 20em;
    background: url("../images/dots.svg") no-repeat;
    left: 4.5em;
    top: 2em;
  }
}
/*RGB */
.hero span{
   color: var(--primary-color);
   font-size: inherit;
   font-weight: 700;
}
.features-section h1{
    color: #77b7f5;
    font-size: 2em;
    font-family: 'Poppins';
    font-weight: 500;

} 
.features-section h2{
  color: var(--bs-orange);
  font-size: 2em;
}
.features-list {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.features-list li{
font-size: 1.5rem;
}
.footer-section{
  background: #006BD6;
  width: 100%;
  bottom: 0;
  position: absolute;
  padding: 0 !important;
  height: 40px;
}
.rgbimg {
  height: 50px;
  width: 50px;
  border-radius: 5px;
}
.rgb-center {
  text-align: center;
}
.qr-section {
  text-align: center;
}

.qr-section h1{
  font-size: 3em;
}

.qr-section .prod{
    border: 5px solid var(--primary-color);
    border-radius: 39px;
    width: 25%;
}
.qr-img{
  padding-top: 2.5em;
}

 .subhead {
  text-transform: uppercase;
  font-weight: bold;
  color: gray;
  letter-spacing: .3em;
}

.dt .primary-cta {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: .6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  font-weight: bold;
  display: inline-block;
}

.player-bt{
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  margin-left: .5em;
  width: 22%;
}
.player-bt img{
  width: 4em;
  height: 4em;
  border-radius: 50%;

}
.fundo{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 1.5em;

}
.player-bt p{
  font-size: .8em;
  text-align: center;

}
.player img{
  width: 2em;
 border-radius: 50%;
 margin-right: .2em;
}
.players-board{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.ctn{
  display: flex;
  justify-content: space-between;
}

.player-item {
  display: flex;
  align-items: center;
  padding-top: 0.8em;
}

.player-item img{
  width: 2em;
  border-radius: 50%;
  margin-right: 1em;
}

.player-item .rating{
  font-size: .6em;
  margin-left: 1em;
}

div [data-visible="false"]{
  display: none;
}

div [data-visible="true"]{
  display: block;
}

.event-title{
  display: flex;
  justify-content: space-between;
}

.rating{
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.rating-average{
  height: 2em;
  font-size: 1.3em;
  line-height: 1.2em;
}


.dupla{
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;

  background-color: lightgray;
  padding-left: .5em;
  border-radius: 1em;

}
div.player {
  cursor: pointer;
}

div [data-selected="true"]{
  background-color: #8bb3db;
  border-radius: 2em;
}

.resultado{
  color: #F2F2F2;
  background-color: #20272E;
  border-radius: 0.5em;
  width: 2em;
  padding: 0.4em;
  font-size: 1.1em;
  font-weight: bold;


}

.jogo{
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: lightgray;
  padding-left: 0.5em;
  border-radius: 1em;
  padding: 0.6em;
  margin-bottom: 1em;
  min-height: 4.3em;
}

.jogo img{
 width: 2em;
 border-radius: 50%;
 margin-right: .2em;
}
.score{

  display: flex;
  /* width: 25%; */
  font-size: 1.6em;
  font-weight: bold;
  color: black;
  border-radius: 0.2em;
  text-align: center;
  /* max-height: 60px; */
  /* line-height: 1.8em; */
  /* margin-right: 0.1em; */
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;

}
.score input{

  padding: 0;
  font-size: 1em;
  max-width: 1em;
  text-align: center;
  background-color: black;
  color: white;
}
.equipe{
  display: flex;
  max-height: 2.2em;
  max-width: 38%;
  width: 38%;
}
.equipe .imgs{
  width: 2.2em;

}
.equipe img{
  width: 2em;
  height: 2em;
}
.score span{

    color: white;
    background: black;
    border-radius: 0.3em;
    padding: 0.2em;
}

.score_in{
  --bg-color: #4e4878;
  display: flex;
  /* width: 25%; */
  /* font-size: 1.6em; */
  font-weight: bold;
  color: black;
  /* border-radius: 0.2em; */
  text-align: center;
  /* max-height: 60px; */
  /* line-height: 1.8em; */
  /* margin-right: 0.1em; */
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;

}
.score_in input{

  padding: 0;
  /* font-size: 1em; */
  /* max-width: 1em; */
  text-align: center;
  /* background-color: #9f9d9d; */
  background-color: var(--bg-color);
  color: white;
  border-radius: 0;
  font-size: 1.3em;
  margin-top: 1px;
  margin-bottom: 1px;
  font-size: 2em;
  border-left: 0;
  border-right: 0;
}
.stp{

  display: flex;
  flex-direction: column;
  width: 30px;
  height: 30px;
  max-height: 30px;
  flex-wrap: nowrap;
  margin-left: 1px;
  justify-content: center;
}

.stp button{
  border: none;
 
  padding: 0;
  margin: 0;
  background-color: var(--bg-color);
  color: white;
}
.stp button #plus{
  border-radius: 0.5em 0.5em 0 0;
}
.stp button #minus{
  border-radius: 0 0 0.5em 0.5em;
}

.stp div{
  border: none;
 
  padding: 0;
  margin: 0;
  background-color: var(--bg-color);
  color: white;
  width: 100%;
}

.rgbK{
  padding: 0!important;
  margin: 0!important;

}
.rgbK label{
  display: none !important;
}


.equipe_in{
  display: flex;
  /* max-height: 2.2em; */
  max-width: 38%;
  width: 38%;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
}

.equipe_in .imgs{
  margin-top: 0.5em;
}
.equipe_in img{
  width: 2.4em;
  height: 2.4em;
}

.equipe_in p{
  margin: 0;
  font-size: 1.2em;
  line-height: 1.1em;
}

.stp span {
    font-size: 2em;
    font-weight: 400;
    color: white;
    background-color: var(--bg-color);
    margin-top: 1px;
    margin-bottom: 1px;
}
.grupo{
  background-color: #4e4878;
  color: white!important;
  border-radius: 0.5em;
  padding: 0.1em;
}

.t-resultados{
width: 100%;
}
.t-imgs{
  width: 2em;
  height: 2em;
  border-radius: 50%;
  margin-right: .2em;
}
.t-team{
  font-size: 0.8em;
}

.t-resultados tr:nth-child(even) {
  background-color: #f2f2f2;
}
.evento{
    background-color: #e9e0e0;
    padding: 0.5em;
    border-radius: 0.5em;
    width: 10em;
    display: flex;
    justify-content: space-around;
}
.nome-evento{
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
}
.data-evento{
  display: block;
  font-size: .9em;
}
.local-evento{
  display: block;
  text-transform: UPPERCASE;

}
.evento-bts{
    display: flex;
    justify-content: flex-end;
    gap: 0.4em;
}
.ev-hidden{
  display: none;
}
.new-event{
  text-align: center;
  margin-top: 1em;
}
#eventos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.player-name{
  display: block;
}

.event-title {
  color: var(--primary-color);
}

.rating{
  display: none !important;
}
.footer-bts{
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  margin-left: 0.5em;
  
  justify-content: space-evenly;
}
.footer-bts img{
  width: 4em;
  height: 4em;
  border-radius: 50%;
}
.footer-bts-img{
  width: 4em;
  height: 4em;
  border-radius: 50%;
}


.player-classificacao{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  gap: 0.5em;
  align-items: center;

}

.player-classificacao img{
  width: 3em;
  height: 3em;
  border-radius: 50%;
  margin: 0.3em;
}


.player-classificacao p{

  margin: 0!important;
}

.dupla-classificacao{
  width: 100%;
  display: flex;
  background-color: lightgray;
  padding-left: 0.5em;
  border-radius: 1em;
  margin-bottom: 0.5em;

}
.img-titulo-estado{
  width: 1.5em;
  height: 1.5em;

  margin-right: 0.4em;
  vertical-align: middle;
}

.evento-fechdo {
  text-align: center;
  --tamanho-do-icon: 2em;
}
.evento-fechdo img {
  width: var(--tamanho-do-icon);
  height: var(--tamanho-do-icon);
}

.home-container{

  -webkit-box-shadow: 10px 10px 24px 3px rgba(36,36,36,0.52); 
  box-shadow: 10px 10px 24px 3px rgba(36,36,36,0.52);
  background-color: white;
  border-radius: 2em;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.home{
  display: flex;
  justify-content: center;

  border-radius: 2em;
  padding: 2em 2em;
}
.user-info{
  
  background: rgb(13,110,253);
  background: linear-gradient(180deg, rgba(13,110,253,1) 0%, rgba(211,211,211,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  color: navy;
}


.user-img {
  width: 30%;
  border-radius: 50%;
  border: 3px solid navy;
  aspect-ratio: 1/1;
  max-width: 20rem;
}

.hall-of-fame-title{
  color: navy;
  font-size: 2em;
  font-weight: bold;
    display: flex;
    align-items: flex-end;
    gap: 0.3em;
    margin: 0;
    padding: 0;
    line-height: .7em;
}
.hall-of-fame-title img{
  width: 1.5em;
  height: 1.5em;
  
}

.hall-of-fame .item {
  display: flex;

  justify-content: flex-start;
  justify-items: start;
  margin-top: 1.5em;
  align-items: center;
  gap: 1em;
  
}
.hall-of-fame .item img{
  width: 2.5em;
  height: 2.5em;
  
}
.hall-of-fame .item p{
  color: var(--primary-color);
font-weight: bold;
font-size: 1.2em;
margin-bottom: 0; 
}

.hall-of-fame .item ul{
  display: flex;
  gap: 1em;
  padding: 0;
}
.hall-of-fame .label{
  color: navy;
  font-weight: 100;
}
.hall-of-fame .value{
  color: navy;
  font-weight: bold;
}
.item-ribon 
{
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  margin-bottom: 1em;
}
.item-ribon p{
 margin: 0;
 padding: 0;
}
.item-ribon img{
  width: 2.5em;
  height: 2.5em;
}
@media only screen and (min-width: 768px) {
  .home-container{
    width: 80%;
     flex-direction: row;
  }

  .user-info{
    max-width: 25%;
  } 
}
/*# sourceMappingURL=main.css.map 


    display: grid;
    grid-template-columns: 2em 1fr;
    justify-content: space-between;
    justify-items: start;