:root {
  --black: #010101;
  --gold: rgba(132, 114, 72, 1);
  --gold-sccp: rgba(132, 114, 72, 1);
  --gold-sccp-03: rgba(132, 114, 72, 0.3);
  --gold-sccp-06: rgba(132, 114, 72, 0.6);
  --gold-sccp-09: rgba(132, 114, 72, 0.9);
  --gray-sccp: rgba(125, 124, 125, 1);
  --gray-sccp-03: rgba(125, 124, 125, 0.3);
  --gray-sccp-06: rgba(125, 124, 125, 0.6);
  --gray-sccp-09: rgba(125, 124, 125, 0.9);
  --red-sccp: rgba(250, 0, 25, 1);
  --red-sccp-03: rgba(250, 0, 25, 0.3);
  --red-sccp-06: rgba(250, 0, 25, 0.6);
  --red-sccp-09: rgba(250, 0, 25, 0.9);
  --form-control-color: rebeccapurple;
  --form-control-disabled: #959495;
  --size: 1140px;
}

.container {
  padding-left: 10px!important;
  padding-right: 10px!important;
}

#header {
  background-color: var(--black);
  padding: 1rem 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
  height: 130px;
}

#header .logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 13px!important;
}

#header .logos a {
  color: white;
}

#header .logos a:hover {
  color: var(--gold-sccp);
}

#header .logo-ft:hover {
  background-color: var(--gold-sccp);
}

#header .logo-twitterx {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/twitter-x.svg");
  mask-image: url("../img/twitter-x.svg");
  margin: 5px 10px 0;
}

#header .logo-twitterx:hover {
  background-color: var(--gold-sccp);
}

#header .logo-corinthianstv {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/corinthianstv.svg");
  mask-image: url("../img/corinthianstv.svg");
  margin: 5px 0px 0 0;
}

#header .logo-corinthianstv:hover {
  background-color: var(--gold-sccp);
}

#header .logo-usccp {
  width: 36px;
  height: 19px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/usccp.svg");
  mask-image: url("../img/usccp.svg");
  margin: 5px 0 0 3px;
}

#header .logo-usccp:hover {
  background-color: var(--gold-sccp);
}


#header .user {
  display: flex;
  font-size: .75rem;
  font-family: gotham;
  align-items: center;
  gap: .5rem;
}

.header-logo,
.header-container .logo {
  width: 90px;
}

.header-menu {
  display: none;
}

.header-container {
  margin: 0 0;
}

header .header-container .item .icon {
  margin-right: auto;
  font-size: 1.4rem;
}

header .header-container .item .icon span {
  font-size: .8em;
  margin-left: .5rem;
}

.item-menu {
  font-family: 'steelfish';
  margin: 0 auto;
  width: 100%;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .header-menu {
    display: flex;
    font-family: steelfish;
    align-items: center;
  }

  a#btn_nav {
    display: none;
  }

  .header-container {
    display: flex;
    align-items: center;
  }

  header .header-container .item .header-menu.public {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  header .header-container .item .header-menu.public a {
    font-size: 1.2em;
  }
}

.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-user {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.item.auth {
  width: 100%;
}

.item-login {
  font-family: 'steelfish';
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
}

.item-login .header-menu {
    display: flex;
}

.line {
  display: flex;
  height: 2rem;
  width: .1rem;
  background-color: var(--gold-sccp);
}

.menu-mobile {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: var(--gold-sccp);
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transform: translateX(100%);
}

.menu-mobile ul {
  padding: 40px;
  list-style: none;
  font-family: steelfish;
  font-size: 30px;
  line-height: 2em !important;
}

.menu-mobile ul.authenticate {
  line-height: 1.7em !important;
  font-size: 24px;
  text-transform: uppercase;
}

.menu-mobile i {
  position: absolute;
  right: 40px;
  top: 20px;
}

.show_mobile {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  transform: translateX(0);
}

.header-menu .menu-item {
  font-family: steelfish;
  color: rgba(237, 237, 237, 0.8);
  padding: 8px;
  background: transparent;
  border: 0;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}

.header-menu .menu-item:hover {
  color: white;
}

.submenu {
  background: #000;
  z-index: 10;
  top: 100%;
  left: -8px;
  margin-top: 9px;
  padding: 8px 0 !important;
  width: 160px;
  border: 1px solid rgba(132, 114, 72, .6);
  border-radius: 0 0 8px 8px;
  /* box-shadow: 0 0 22px -5px #847248; */
}

.submenu .submenu-item {
  display: block;
  font-family: gotham-medium;
  padding: 5.6px 16px;
  font-size: 10px;
  color: #ebeef4;
  text-transform: uppercase;
}

.submenu > hr.dropdown-divider {
  background: transparent;
  border-width: 0;
  border-top: 1px solid hsla(0,0%,87%,.2);
  height: 0;
  margin: 8px 0;
  opacity: 1;
  overflow: hidden;
}

.submenu > a:hover {
  background: #3a3a3a;
  color: #ebeef4;
}

/* .submenu.ingressos {
  background: #000;
  z-index: 97;
  left: -6px;
  border: 1px solid var(--gold-sccp);
  border-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  top: 0px;
  padding-top: 28px !important;
} */


#main {
  padding-top: 130px;
}

main#main.app-main {
  padding-top: calc(130px + 5rem);
  padding-bottom: 5rem;
}

.wrapper {
  background-color: var(--black);
  padding: 1rem;
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .wrapper {
    padding-top: 8rem;
  }
}

.wrapper-container {
  margin: 0 auto;
  max-width: var(--size);
}

.wrapper .title {
  font-size: 5.5vw;
  font-family: gotham-bold;
  font-style: italic;
  line-height: 1.2em;
  padding: 3rem 0;
  color: black;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px #fff,
    -1px 1px #fff,
    1px -1px #fff,
    -1px -1px #fff,
    1px 1px 20px #000;
  text-shadow: 1px 1px #fff,
    -1px 1px #fff,
    1px -1px #fff,
    -1px -1px #fff,
    1px 1px 20px #000;
}

@media (min-width: 768px) {
  .wrapper .title {
    font-size: 58px;
    line-height: 1em;
    padding: 5rem 0;
  }
}

.section {
  background-color: var(--black);
  padding: 1rem;
  padding-top: 8rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 11rem;
  }
}

.listSelection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .9rem;
  margin: 1.5rem 0;
}

.listSelection .item {
  padding: 1rem;
  width: 100%;
  background-color: var(--black);
  border: 1px solid #555;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .listSelection .item {
    padding: 2rem;
    display: grid;
    grid-template-columns: 10rem 1fr;
  }
}

.listSelection .item .images {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: 0 0 1rem;
}

@media (min-width: 768px) {
  .listSelection .item .images {
    justify-content: center;
  }
}

.listSelection .item .content {
  display: flex;
  flex-direction: column;
}

.listSelection .item .content .title {
  font-family: gotham-bold;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .listSelection .item .content {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 20rem;
  }
}

.listSelection .item .content small {
  padding-bottom: .4rem;
  display: block;
  opacity: .5;
  font-size: .9em;
}

.listSelection .item .content .chips {
  display: flex;
  flex-flow: row wrap;
  gap: .5rem;
  padding-bottom: 1.5rem;
}

.listSelection .item .content .chips .chip {
  border-radius: 30px;
  border: 1px solid #666;
  padding: .2rem .5rem;
}

.listSelectionCards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .listSelectionCards {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.listSelectionCards .item {
  padding: 1rem;
  width: 100%;
  background-color: var(--black);
  border: 1px solid #555;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .listSelectionCards .item {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 9rem;
  }
}

.listSelectionCards .item .images {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: 0 0 1rem;
}

@media (min-width: 768px) {
  .listSelectionCards .item .images {
    justify-content: center;
    text-align: center;
  }
}

.listSelectionCards .item .content {
  display: flex;
  flex-direction: column;
}

.listSelectionCards .item .content .title {
  font-family: gotham-bold;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding-bottom: .5rem;
}

.listSelectionCards .item .content p {
  display: flex;
  padding: 0;
  margin: 0;
  gap: .5rem;
}

.listSelectionCards .item .action {
  padding-top: 1rem;
  display: flex;
  align-items: flex-end;
}

.listSelectionCards .item .action a {
  width: 100%;
}

.listSelectionCards .ma {
  color: var(--gold);
}

@media (max-width: 768px) {
  .scrolling {
    overflow-x: auto;
  }
}


.bg-light {
  color: black;
}

.text-justify-inter {
  text-align: justify;
  text-justify: inter-word;
}

.font-steelfish {
  font-family: steelfish;
}

.font-gotham {
  font-family: gotham;
}

.font9 {
  font-size: 9px !important;
}

.font10 {
  font-size: 10px !important;
}

.font12 {
  font-size: 12px !important;
}

.font14 {
  font-size: 14px !important;
}

.font16 {
  font-size: 16px !important;
}

.font17 {
  font-size: 17px !important;
}

.font20 {
  font-size: 20px !important;
}

.font24 {
  font-size: 24px !important;
}

.font30 {
  font-size: 30px !important;
}

.font35 {
  font-size: 35px !important;
}

.font40 {
  font-size: 40px !important;
}

.font50 {
  font-size: 50px !important;
}

.font60 {
  font-size: 60px !important;
}

.font80 {
  font-size: 80px !important;
}

.font120 {
  font-size: 120px !important;
}

.text-gold {
  color: var(--gold-sccp) !important;
  text-shadow: 0px 0px 40px #847249 !important;
}

.text-gold-ns {
  color: var(--gold-sccp) !important;
}

.shadow-gold {
  box-shadow: 0 0 35px 3px #847249 !important;
}

#home-section-home {}

#home-section-sccpapp {
  background-image: url("../img/section5.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#cel-sccp-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  margin-top: 3rem;
  flex-grow: 1;
}
#cel-sccp-container img {
  max-width: 100%;
}

@media (min-width: 800px) {
  #cel-sccp-container {
    justify-content: flex-end;
    flex-grow: unset;
  }
}

#home-section-banner-app {
  display: flex;
  justify-content: center;
  background-color: black;
  margin-top: 3rem;
}

#home-section-jogos {
  background-image: url("../img/bg-games.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  background-color: black;
}

.container-games {
  padding: 0;
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 800px) {
    .container-games {
        height: 32rem;
        padding-bottom: 0rem;
    }

    .nav-games {
        position: absolute;
        top: 40px;
        left: 20px;
        z-index: 2;
    }
}

.nav-games input[type="radio"] {
  display: none;
}

.nav-games input[type="radio"]:checked+label {
  color: var(--gold-sccp);
}

.nav-games label {
  display: block;
  padding: 5px;
  font-size: 1.3em;
  color: var(--gold-sccp-06);
}

.nav-games label:hover {
  cursor: pointer;
}

.main-games {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  transition: all 0.8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  -webkit-transition: all 0.8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  -moz-transition: all 0.8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  -o-transition: all 0.8s cubic-bezier(0.54, 0.35, 0.29, 0.99);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  left: 10%;
}

.main-games article {
  display: none;
  text-align: center;
  font-size: 12px;
  line-height: 2em;
}

.main-games .active {
  display: block;
}

.main-games-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.main-games-content img {
  height: 75px;
}

.main-games-content img.picture-sport-club-corinthians-paulista {
  height: 82px;
}

.games-actions {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
}

.games-chips {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 5px 0 30px;
}

.games-chips a {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid #ccc;
}

@media (min-width: 800px) {
  .main-games-content {
    width: 100%;
    margin: 0 auto;
  }

  .main-games {
    position: absolute;
    margin: 0 0 0 0;
    width: 100%;
    left: 0;
  }
}


.title-home {
  font-size: 6vw;
  font-family: gotham-bold;
  font-style: italic;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-top: 3rem;
  color: black;
  text-shadow: 1px 1px #fff,
    -1px 1px #fff,
    1px -1px #fff,
    -1px -1px #fff,
    1px 1px 20px #000;
  text-shadow: 1px 1px #fff,
    -1px 1px #fff,
    1px -1px #fff,
    -1px -1px #fff,
    1px 1px 20px #000;
}

@media (min-width: 800px) {
  .title-home {
    font-size: 60px;
    line-height: 1em;
    padding-top: 5rem;
  }
}

.logo-ft {
  width: 60px;
  height: 15px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/mv.svg");
  mask-image: url("../img/mv.svg");
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

@media (min-width: 800px) {
  .logo-ft {
    width: 120px;
    height: 30px;
  }
}

/* Add this CSS in your stylesheet or within a <style> tag in the <head> section of your HTML */

.ribbon {
  position: fixed;
  top: 25px;
  right: -50px;
  background-color: #f1c40f;
  /* Background color for the ribbon */
  color: black;
  /* Text color */
  padding: 5px 50px;
  /* Adjust padding as needed */
  font-weight: bold;
  transform: rotate(45deg);
  /* Rotate the ribbon to make it look like a tape */
  z-index: 9999;
  /* Ensure it appears above other elements */
}

.ribbon-text {
  transform: rotate(-45deg);
  /* Counter-rotate the text */
}

.logo-ft:hover {
  background-color: var(--gold-sccp);
}

.logo-twitterx {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/twitter-x.svg");
  mask-image: url("../img/twitter-x.svg");
  margin: 5px 10px 0;
}

.logo-twitterx:hover {
  background-color: var(--gold-sccp);
}

.logo-corinthianstv {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/corinthianstv.svg");
  mask-image: url("../img/corinthianstv.svg");
  margin: 5px 0px 0 0;
}

.logo-corinthianstv:hover {
  background-color: var(--gold-sccp);
}

.logo-usccp {
  width: 36px;
  height: 19px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/usccp.svg");
  mask-image: url("../img/usccp.svg");
  margin: 5px 0 0 3px;
}

.logo-usccp:hover {
  background-color: var(--gold-sccp);
}

.alert-primary {
  color: white;
  background-color: var(--gold-sccp-09);
  border-color: rgba(0, 0, 0, 0.5);
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-error hr {
  border-top-color: #f1b0b7;
}

.alert-error .alert-link {
  color: #491217;
}

.alert-danger {
  color: white;
  background-color: var(--red-sccp-06);
  border-color: var(--red-sccp);
}

.text-link-white:hover {
  color: white;
}

.text-link-white:hover {
  text-decoration: underline;
}

a {
  color: #fff;
}

a:hover {
  color: var(--gold-sccp);
  text-decoration: none;
}

hr {
  background: var(--gold-sccp)
}

.form-checkbox {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.form-checkbox input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.1rem solid var(--gold-sccp);
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.form-checkbox input[type="checkbox"]::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #645e5e;
  /* Windows High Contrast Mode */
  background-color: #645e5e;
}

.form-checkbox input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.form-checkbox input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.font-gold {
  color: var(--gold-sccp);
}

h1.title {
  font-family: steelfish, sans-serif;
  font-size: 40px;
  color: white;
}

p.lead {
  font-size: 1.10rem;
}

/* breadcrumb */

/* font-steelfish font40 text-white p-0 my-4 */

.event.list-group-item-action:focus,
.event.list-group-item-action:hover {
  color: inherit;
}

.margin-top-main {
  margin-top: 109px;
}

#main-wrapper {
  padding-top: 86px;
}

.auth-wrapper {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  overflow: hidden;
  min-width: 100%;
  min-height: 100vh;
}

.auth-card {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.63);
  border-radius: 0.8rem;
  border: 1px solid var(--gold-sccp);
}

#auth-wrapper {
  padding-top: 86px;
  min-height: 100vh;
}

#main-content {
  margin-top: 2rem;
}

.auth-wrapper .auth-content:not(.container) {
  width: 400px;
}

.auth-wrapper .auth-content {
  position: relative;
  padding: 15px;
  z-index: 5;
}

.breadcrumb {
  background: transparent;
  border: 0;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .header-mobile {
    display: grid;
    width: 100%;
    gap: 1rem;
    align-items: center;
    padding: 0 1.2rem;
  }
}

.header-mobile img {
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-mobile .icon {
  width: 100%;
  text-align: right;
}

.header-mobile .toolbar {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: steelfish;
  font-size: 16px;
}

.header-mobile .toolbar .line {
  height: 2rem;
  width: .1rem;
  background-color: var(--gold-sccp);
}


.op {
  opacity: .4;
}

.breadcrumb:hover {
  border-color: rgba(132, 114, 72, 0.8);
}

.home-one {
  width: 100%;
}

.home-one .action {
  bottom: 50px;
  right: 0;
}

.btn-gold {
  border-radius: 8px;
  background-color: var(--gold-sccp);
}

.btn-black {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  color: #000;
}

.planos-header {
  height: 7.4rem;
  background-color: #000;
  display: grid;
  place-content: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  z-index: 1;
}

.planos-header::before {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  z-index: 1;
}

.planos-header i {
  position: relative;
  z-index: 2;
}

.planos-header-mv {
  background-image: url("../img/sul.jpeg");
}

.planos-header-mh {
  background-image: url("../img/leste.jpg");
}

.planos-header-mc {
  background-image: url("../img/Oeste.jpg");
}

.planos-header-ma {
  background-image: url("../img/oeste_ma.jpg");
}

.logo-planos-mv {
  width: 160px;
  height: 60px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/mv.svg");
  mask-image: url("../img/mv.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.logo-planos-mh {
  width: 160px;
  height: 60px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/mh.svg");
  mask-image: url("../img/mh.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.logo-planos-ma {
  width: 160px;
  height: 60px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/ma.svg");
  mask-image: url("../img/ma.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.logo-planos-mc {
  width: 160px;
  height: 60px;
  display: inline-block;
  position: relative;
  background-color: white;
  -webkit-mask-image: url("../img/mc.svg");
  mask-image: url("../img/mc.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.alert-success {
  background-color: var(--gold-sccp-06) !important;
  border-color: var(--gold-sccp) !important;
  color: white;
}

.alert-secondary,
.bg-gray {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: white;
}

.btn-round {
  width: 100%;
  border-radius: 50px !important;
}

.btn-cancelar {
  background-color: transparent !important;
  border-color: var(--gold-sccp) !important;
  color: #fff;
}

.home-planos .escolher-plano {
  background-image: none !important;
  padding: 0 !important;
}

@media (max-width: 450px) {
  .escolher-plano tr {
    display: flex;
    flex-direction: column;
    height: auto !important;
  }
}

/* label.plano2 {
    color: #3F3F3F;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.63) -0.01%, rgba(0, 0, 0, 0) 76.89%), rgba(255, 255, 255, 0.9);
    border: 0.906992px solid #FFFFFF;
    border-radius: 9px;
    height: 150px;
    width: 200px;
    cursor: pointer;
    box-shadow: 0 0 35px 3px #847249 !important;
}

label.plano:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.63) -0.01%, rgba(0, 0, 0, 0) 76.89%), rgba(132, 114, 72, 0.9) !important;
}

label.plano2:hover {
    color: #fff !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.63) -0.01%, rgba(0, 0, 0, 0) 76.89%), rgba(132, 114, 72, 0.9) !important;
} */

.boxplanos input {
  visibility: hidden;
}

.myaccount-desktop {
  display: block;
}

.myaccount-mobile {
  display: none;
}

.menu-user {
  display: none;
  position: absolute;
  z-index: 20;
  top: 100px;
  right: 31px;
  border-radius: 5px;
  background-color: #000;
  border: 1px solid var(--gold-sccp);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 0 35px 3px #847249 !important;
}

.menu-user .fa-caret-up {
  top: -15px;
  right: 10px;
  color: var(--gold-sccp);
}

.menu-logout {
  width: auto;
  display: none;
  position: absolute;
  z-index: 20;
  right: 165px;
  border-radius: 5px;
  background-color: #000;
  border: 1px solid var(--gold-sccp);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 0 35px 3px #847249 !important;
}

.menu-logout .fa-caret-up {
  top: -26px;
  right: -10px;
  color: var(--gold-sccp);
}

.bg-modal-left {
  background: linear-gradient(169.7deg, var(--gold-sccp) 0%, #000000 100%);
  opacity: 0.8;
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0 13px;
}

.bg-gold {
  border: 1px solid var(--gold-sccp);
  color: #fff;
}

.border-withe {
  border: 1px solid #fff;
}

.bg-black {
  background-color: #000;
}

input.bg-gold:focus,
select.bg-gold:focus {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
}

.pagamento .nav-pills .nav-link.active {
  background-color: var(--gold-sccp);
}

.pagamento .nav-pills .nav-link:hover {
  color: #fff;
}

.table-home-logada {
  background: #847249;
  border: 1px solid #000;
  margin: auto;
}

#modalCancelarAssinatura textarea {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: #fff;
}

.submitAlterar+em {
  display: block;
}

.submitAlterar:not(.d-none)+em {
  display: none;
}

.ctaWhatsapp {
  position: fixed;
  bottom: 0;
  right: 0px;
}

.notifications {
  color: red;
  right: 2px;
  top: 3px;
}

.depoimentos {
  height: 337px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.slick-dots li {
  width: 30px !important;
}

.slick-dots li button:before {
  content: "___" !important;
  color: white !important;
  font-size: 20px !important;
  font-weight: bold !important;
  font-family: "gotham-bold" !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: red !important;
}

.home-tree .nav-link.active,
.modal .nav-link.active {
  background: transparent !important;
  color: var(--gold-sccp) !important;
  opacity: 1;
}

.rounded-10 {
  border-radius: 10px;
  border: 1px solid #847249;
  background: #000;
  color: #fff;
}

.form-control {
  border: 1px solid var(--gold-sccp);
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.form-control-plaintext {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid var(--gold-sccp);
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-family: "gotham";
  padding: 6px 12px;
}

.form-text {
  text-align: left;
}

.form-control:focus {
  box-shadow: 0 0 0 1px #847249;
  border: 1px solid white;
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

form.form-as-div>div {
  margin-top: 1.6rem;
  text-align: left;
}

.filter {
  z-index: 20;
  right: 15px;
  top: -30px;
  border: 1px solid #232323;
  border-radius: 5px;
  display: none;
}

.slick-list.draggable {
  padding: 0px !important;
}

.back-marrom {
  background: #302a1a;
}

.back-black {
  background: #232323;
}

.back-gold {
  background-color: #847249;
}

.border-gold {
  border: 1px solid #847249;
}

.border-black {
  border: 1px solid #000;
}

.color-gold {
  color: var(--gold-sccp);
}

.color-white {
  color: #fff;
}

.color-gray {
  color: var(--gray-sccp);
}

.slick-next,
.slick-prev {
  z-index: 9;
}

.slick-next {
  right: 4px !important;
}

button:focus {
  outline: none;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn {
  text-transform: uppercase;
  font-family: gotham-medium;
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}

.btn-link {
  color: rgba(255, 255, 255, 0.8);
}

.btn-link:hover {
  color: white;
}

.btn.btn-primary {
  border-radius: 5px;
  background-color: var(--gold-sccp-09);
  border-color: var(--gold-sccp);
}

.btn.btn-primary-black {
  border-radius: 5px;
  background-color: var(--black);
  color: white;
  border-color: var(--gold-sccp);
}

.btn.btn-primary-black:not(:disabled):not(.disabled):hover {
  opacity: 0.7;
  color: white;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--gold-sccp-09);
  border-color: white;
}

.btn.btn-primary:not(:disabled):not(.disabled):hover {
  background-color: var(--gold-sccp-06);
  color: white;
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: var(--gray-sccp-06);
}

.btn.btn-outline-primary {
  border-radius: 5px;
  border-color: var(--gold-sccp);
  color: var(--gold-sccp);
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  border-color: white;
  color: white;
}

.btn.btn-outline-primary:not(:disabled):not(.disabled):hover {
  background-color: var(--gold-sccp-03);
  color: white;
}

.slick-next:before {
  content: url("../img/next.png") !important;
}

.slick-prev:before {
  content: url("../img/prev.png") !important;
}

.slick-slide {
  height: auto !important;
}

.multiplanos .slick-slide {
  opacity: 0.35;
  overflow: auto;
  cursor: pointer;
}

.multiplanos .slick-slide.slick-current {
  opacity: 1;
}

.slider_tutorial {
  width: 100%;
  max-width: 580px;
  padding: 0 30px;
}

.iframe {
  width: 300px;
  height: 200px;
}

@media (min-width: 600px) {
  .slider_tutorial {
    width: 100%;
    max-width: 580px;
    padding: 0 40px;
  }

  .iframe {
    width: 520px;
    height: 300px;
  }
}

.left0 {
  left: 0 !important;
}

.back-red {
  background: #ff0019;
  opacity: 0.8;
  border: 1px solid #ff0019;
}

.border-cinza {
  border-bottom: 0.5px solid rgba(239, 239, 239, 0.5) !important;
}

.box-visible {
  visibility: visible;
  height: auto;
}

.box-invisible {
  visibility: hidden;
  height: 0;
}

.bg-top {
  background: transparent no-repeat top/cover;
}

.bg-center {
  background: transparent no-repeat center/cover;
}

.bg-bottom {
  background: transparent no-repeat bottom/cover;
}

.bg-center-center {
  background: transparent no-repeat center;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  background: transparent !important;
  text-align: left;
  border: 1px solid var(--gold-sccp) !important;
  color: #fff !important;
  padding: 0 4px;
  height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 36px !important;
  font-size: 16px;
}

.color-cinza {
  color: #f2f2f2;
  opacity: 0.5;
}

.textosDoc ul {
  padding: 0;
}

.textosDoc ul li {
  font-family: gotham-bold;
  font-style: italic;
  color: var(--gold-sccp);
  list-style: none;
  text-transform: uppercase;
}

.back-dark {
  background-color: #343a40;
}

.back-gold2 {
  background-color: #847249 !important;
}

.form-control:focus {
  box-shadow: none !important;
}

select option {
  background: #333;
}

.bullets_points p {
  width: 100%;
}

.bg-black-transparent {
  background: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 1024px) {
  .myaccount-desktop {
    display: none;
  }

  .myaccount-mobile {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .bg-modal-left {
    border-top-right-radius: 8px;
  }

  .table-home-logada .border-left {
    border-left: none !important;
  }

  .table-home-logada .border-left {
    border-bottom: 1px solid #fff;
  }

  .box-home-four {
    background-size: 715% !important;
  }

  .logo {
    width: 50%;
  }

  .menu-logout {
    right: 100px;
  }

  .menu-logout .fa-caret-up {
    right: 15px;
    top: -15px;
  }
}

@media only screen and (max-width: 768px) {
  .countFieis {
    display: none !important;
  }

  .countFieis2 {
    display: block !important;
  }

  .filter {
    right: 0px;
  }

  .submenu {
    left: -3px;
  }
}

@media only screen and (width: 768px) {

  .cadastro,
  .pagamento,
  .alterar-cadastro,
  .alterar-plano,
  .escolher-plano {
    padding: 0 !important;
    max-width: 50% !important;
  }

  .plano-fiel {
    padding: 0 !important;
    max-width: 65% !important;
  }

  .logo {
    width: 30%;
  }

  .submenu {
    max-width: 33.333333% !important;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.button {
  cursor: pointer;
}

#chairs_map {
  overflow-x: scroll;
  display: Block;
  white-space: nowrap;
}

.chairs-letter {
  background-color: var(--gold-sccp);
  color: white;
}

.chair {
  width: 60px;
  height: fit-content;
  display: inline-block;
}

.disabled-chair {
  width: 60px;
  height: fit-content;
  display: inline-block;
}

.selected-chair {
  background-color: #004280 !important;
}

#chair {
  opacity: 0;
  width: 0;
}

.bg-grey-light {
  background-color: #aaa;
}

.occupied-helper {
  background-color: #dc4c64;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.blocked-helper {
  background-color: #9fa6b2;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.available-helper {
  background-color: #343a40;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.selected-helper {
  background-color: #004280;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.meuplano-card {
  background-size: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  color: white;
  overflow: hidden;
  word-wrap: break-word;
}

.meuplano-card .cta {
  display: none;
}

.meuplano-card:hover .cta {
  display: block !important;
}
.meuplano-card.corporativo {
  margin-bottom: 1.5rem;
}

.meuplano-card.corporativo.enabled {
  background: rgba(74, 67, 67, 0.8);
  /* cursor: pointer; */
}

.meuplano-card.mv.enabled {
  background: rgba(74, 67, 67, 0.8);
  /* cursor: pointer; */
}

.meuplano-card.mh.enabled {
  background: rgba(128, 128, 128, 0.8);
  /* cursor: pointer; */
}

.meuplano-card.ma.enabled {
  background: rgba(122, 75, 36, 0.8);
  /* cursor: pointer; */
}

.meuplano-card.mc.enabled {
  background: rgba(171, 104, 20, 0.8);
  /* cursor: pointer; */
}

.meuplano-card.basic.enabled {
  background: rgba(13, 13, 13, 0.8);
  /* cursor: pointer; */
}

.meuplano-card.disabled {
  background-color: var(--gray-sccp-06);
  cursor: not-allowed;
}

.meuplano-card.disabled:hover {
  background-color: var(--gray-sccp-09);
}

.meuplano-card.enabled:hover {
  background: var(--gold-sccp-06);
}

.meuplano-card-header {
  background: url("../img/bg-meu-plano.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 130px;
  display: grid;
  place-content: center;
}

.meuplano-card-content {
  padding: 25px;
  display: grid;
  align-items: flex-end;
  grid-template-columns: 80% 20%;
  font-size: 14px;
}

.meuplano-card-content .item {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}

.table-ft tbody tr {
  border-top: 1px solid #847249;
}

.table-ft tbody tr:nth-of-type(1) {
  border-top: 0;
}

.table-ft tbody tr td {
  padding: 8px 0;
}

.table-ft tbody tr:hover {
  color: white;
  background-color: var(--gold-sccp-03);
}

.bg-logado {
  background: url("../img/back_banner_principal2.png") repeat top/auto;
}

.bg-login {
  background: url("../img/bg-login.jpg") repeat top/auto;
}

.bg-page {
  background-attachment: fixed;
  background-image: url("../img/bg-page.jpg");
  background-position: top;
  background-repeat: repeat;
  background-size: contain;
}

.comparativo {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-family: gotham-medium;
  font-size: 12px !important;
}

.comparativo-item {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  text-align: center;
  width: 20%;
  min-width: 180px;
  color: black;
}

.comparativo-item+.mv {
  background: #ddd;
}

.comparativo-item+.mh {
  background: #444;
  color: #fff;
}

.comparativo-item+.ma {
  background: #333;
  color: #fff;
}

.comparativo-item+.mc {
  background: #222;
  color: #fff;
}

.comparativo-header {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  padding: 1.5rem;
}

.comparativo-item .item {
  align-items: center;
  justify-content: center;
  gap: 1rem;
  display: flex;
  flex-direction: row;
  padding: 1rem 0;
  height: 3.5rem;
  border-bottom: 1px solid #887037;
  line-height: 1em;
}

.comparativo-item .item span {
  color: #887037 !important;
}

.comparativo-item .icon {
  color: #887037;
  font-size: 20px !important;
}

.mapa-arena {
  background: url("../img/mapa-arena.png") no-repeat;
  background-size: 96% auto;
  background-position: 5px 11px;
  height: 630px;
  width: 630px;
  margin: 0 auto;
  position: relative;
}

.mapa-psj {
  background: url("../img/mapa-psj.svg") no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  height: 630px;
  width: 824px;
  margin: 0 auto;
  position: relative;
}

.mapa-arena-blocos {
  background: url("../img/mapa-arena.png") no-repeat;
  background-size: 96% auto;
  background-position: 9px 12px;
  height: 630px;
  width: 630px;
  margin: 0 auto;
  position: relative;
}

.mapa-arena-blocos svg,
.mapa-arena svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.group-btn {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  margin-top: 2rem;
  user-select: none;
  align-content: stretch;
}

.group-btn-input {
  display: none;
}

.group-btn-label {
  color: var(--gold-sccp);
  background-color: transparent;
  border: 1px solid var(--gold-sccp);
  border-radius: 6px;
  padding: 1rem;
  font-size: 14px !important;
  cursor: pointer;
  margin: 0;
  font-family: gotham-medium;
  width: 100%;
  text-align: center;
  flex: auto;
  color: #fff;
}

.group-btn-label-plan {
  color: var(--gold-sccp);
  background-color: #222;
  border: 1px solid var(--gold-sccp);
  border-radius: 6px;
  padding: 1rem 1rem 0;
  font-size: 13px !important;
  cursor: pointer;
  margin: 0;
  font-family: gotham;
  width: 100%;
  text-align: center;
  flex: auto;
  color: #fff;
  line-height: 1em;
}

.group-btn-label-plan.group-btn-label-plan-disabled {
  background-color: var(--gold-sccp-06);
  cursor: not-allowed;
}

.group-btn-label-plan .valor {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  justify-content: center;
  gap: .2rem;
}

.group-btn-input:checked+label {
  color: #fff;
  background-color: var(--gold-sccp);
  border: 1px solid var(--gold-sccp);
}

@media (min-width: 800px) {
  .group-btn {
    flex-flow: row wrap;
  }

  .group-btn-label {
    width: auto;
  }

  .group-btn-label-w {
    width: 10rem;
  }
}

.grid-choose {
  background-color: #000;
  border: 1px solid var(--gold-sccp);
  border-radius: 12px;
  padding: 15px;
  overflow-x: auto;
  width: 100%;
  color: #fff;
  font-family: gotham-medium;
}

.grid-choose-container {
  width: 1900px;
}

.grid-choose-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  padding-bottom: 10px;
}

.legenda {
  display: flex;
  flex-direction: column;
}

.lds-ring {
  display: inline-block;
  width: 26px;
  height: 26px;
}

.lds-ring:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  margin: 2px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-ring 1.2s linear infinite;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.grid-payment {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}

.grid-payment-flex {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
}

.grid-payment-cupom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.section-tutorial {
  position: relative;
  background: url("../img/bg-tutorial.png") no-repeat;
  background-size: 100% auto;
}

.container-tutorial {
  padding: 40px 20px 60px;
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.content-tutorial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 800px) {
  .container-tutorial {
    padding: 80px 0 150px;
    max-width: 1000px;
    position: relative;
    margin: 0 auto;
  }

  .content-tutorial {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto auto;
  }
}

.content-tutorial .video {
  border: 0px solid #000;
  box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.5);
}

.increment {
  background-color: #000;
  padding: 25px;
  border-radius: 15px;
}

.increment-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.increment button {
  font-size: 20px;
  font-family: gotham-medium;
}

.increment input {
  font-size: 22px;
  font-family: gotham-medium;
  border: 0;
  background: transparent;
  color: white;
  width: 4rem;
}

.increment input::-webkit-outer-spin-button,
.increment input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.increment input[type=number] {
  -moz-appearance: textfield;
}

.page-link {
  background-color: transparent !important;
  border: 1px solid var(--gold-sccp-06);
  color: white;
}

.page-link:hover {
  border: 1px solid var(--gold-sccp);
  color: rgba(255, 255, 255, 0.8);
}

.page-item.active .page-link {
  border-color: rgba(255, 255, 255, 0.6);
}

.itempreencher {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .itempreencher {
    flex-direction: row;
  }
}

.footerfiled {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 1rem 0 0;
}

@media (min-width: 768px) {
  .footerfiled {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footerestacionamento {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 1rem 0 0;
  width: 100%;
}

@media (min-width: 768px) {
  .footerestacionamento {
    flex-direction: row;
    justify-content: space-between;
  }
}

.font-gotham-black {
  font-family: gotham-bold;
}

.font-gotham-book {
  font-family: gotham-book;
}

.font-gotham-ultra-italic {
  font-family: gotham-ultra-italic;
}

.font-gotham-light-italic {
  font-family: gotham-light-italic;
}

.font-gotham-medium {
  font-family: gotham-medium;
}

.font-philly-sans {
  font-family: philly-sans;
}

.font-inter-regular {
  font-family: inter-regular;
}

.font-inter-bold {
  font-family: inter-bold;
}

.title-home {
  font-size: 6vw;
  font-family: gotham-bold;
  font-style: italic;
  line-height: 1.2em;
  padding-top: 3rem;
  color: black;
  text-shadow: 1px 1px #fff,
    -1px 1px #fff,
    1px -1px #fff,
    -1px -1px #fff,
    1px 1px 20px #000;
}

.back-radius {
  border-radius: 7px;
  background: var(--gold-sccp);
  padding: 8px;
}

.border-radius {
  border-radius: 7px;
}

.icon-celular {
  background: url("../img/icon-celular.png") no-repeat center;
  background-size: contain;
  padding: 16px;
  vertical-align: top;
}

label.plano {
  color: #fff;
  background: rgba(35, 35, 35, 0.9);
  border: 0.906992px solid #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.63) -0.01%, rgba(0, 0, 0, 0) 76.89%), rgba(132, 114, 72, 0.9);
  border-radius: 9px;
  width: 200px;
  cursor: pointer;
  box-shadow: 0 0 35px 3px #847249 !important;
}

.minha-conta {
  z-index: 98;
  cursor: pointer;
}

.ingressos {
  z-index: 98;
  cursor: pointer;
}

.color-gold {
  color: var(--gold-sccp);
}

.color-white {
  color: #fff;
}

.color-gray {
  color: var(--gray-sccp);
}

.slick-next,
.slick-prev {
  z-index: 9;
}

.slick-next {
  right: 4px !important;
}

button:focus {
  outline: none;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn {
  text-transform: uppercase;
  font-family: gotham-medium;
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}

.btn-link {
  color: rgba(255, 255, 255, 0.8);
}

.btn-link:hover {
  color: white;
}

.btn.btn-primary {
  border-radius: 5px;
  background-color: var(--gold-sccp-09);
  border-color: var(--gold-sccp);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--gold-sccp-09);
  border-color: white;
}

.btn.btn-primary:not(:disabled):not(.disabled):hover {
  background-color: var(--gold-sccp-06);
  color: white;
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: var(--gray-sccp-06);
}

.slick-next:before {
  content: url("../img/next.png") !important;
}

.slick-prev:before {
  content: url("../img/prev.png") !important;
}

.slick-slide {
  height: auto !important;
}

.multiplanos .slick-slide {
  opacity: 0.35;
  overflow: auto;
  cursor: pointer;
}

.multiplanos .slick-slide.slick-current {
  opacity: 1;
}

.slider_tutorial {
  width: 100%;
  max-width: 580px;
  padding: 0 30px;
}

.iframe {
  width: 300px;
  height: 200px;
}

@media (min-width: 600px) {
  .slider_tutorial {
    width: 100%;
    max-width: 580px;
    padding: 0 40px;
  }

  .iframe {
    width: 520px;
    height: 300px;
  }
}

.left0 {
  left: 0 !important;
}

.back-red {
  background: #ff0019;
  opacity: 0.8;
  border: 1px solid #ff0019;
}

.border-cinza {
  border-bottom: 0.5px solid rgba(239, 239, 239, 0.5) !important;
}

.box-visible {
  visibility: visible;
  height: auto;
}

.box-invisible {
  visibility: hidden;
  height: 0;
}

.bg-top {
  background: transparent no-repeat top/cover;
}

.bg-center {
  background: transparent no-repeat center/cover;
}

.bg-bottom {
  background: transparent no-repeat bottom/cover;
}

.bg-center-center {
  background: transparent no-repeat center;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  background: transparent !important;
  text-align: left;
  border: 1px solid var(--gold-sccp) !important;
  color: #fff !important;
  padding: 0 4px;
  height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 36px !important;
  font-size: 16px;
}

.color-cinza {
  color: #f2f2f2;
  opacity: 0.5;
}

.textosDoc ul {
  padding: 0;
}

.textosDoc ul li {
  font-family: gotham-bold;
  font-style: italic;
  color: var(--gold-sccp);
  list-style: none;
  text-transform: uppercase;
}

.back-dark {
  background-color: #343a40;
}

.back-gold2 {
  background-color: #847249 !important;
}

.form-control:focus {
  box-shadow: none !important;
}

select option {
  background: #333;
}

.bullets_points p {
  width: 100%;
}

.bg-black-transparent {
  background: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 1024px) {
  .myaccount-desktop {
    display: none;
  }

  .myaccount-mobile {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .bg-modal-left {
    border-top-right-radius: 8px;
  }

  .table-home-logada .border-left {
    border-left: none !important;
  }

  .table-home-logada .border-left {
    border-bottom: 1px solid #fff;
  }

  .box-home-four {
    background-size: 715% !important;
  }

  .logo {
    width: 50%;
  }

  .menu-logout {
    right: 100px;
  }

  .menu-logout .fa-caret-up {
    right: 15px;
    top: -15px;
  }
}

@media only screen and (max-width: 768px) {
  .countFieis {
    display: none !important;
  }

  .countFieis2 {
    display: block !important;
  }

  .filter {
    right: 0px;
  }

  .submenu {
    left: -3px;
  }
}

@media only screen and (width: 768px) {

  .cadastro,
  .pagamento,
  .alterar-cadastro,
  .alterar-plano,
  .escolher-plano {
    padding: 0 !important;
    max-width: 50% !important;
  }

  .plano-fiel {
    padding: 0 !important;
    max-width: 65% !important;
  }

  .logo {
    width: 30%;
  }

  .submenu {
    max-width: 33.333333% !important;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.button {
  cursor: pointer;
}

#chairs_map {
  overflow-x: scroll;
  display: Block;
  white-space: nowrap;
}

.chairs-letter {
  background-color: var(--gold-sccp);
  color: white;
}

.chair {
  width: 60px;
  height: fit-content;
  display: inline-block;
}

.disabled-chair {
  width: 60px;
  height: fit-content;
  display: inline-block;
}

.selected-chair {
  background-color: #004280 !important;
}

#chair {
  opacity: 0;
  width: 0;
}

.bg-grey-light {
  background-color: #aaa;
}

.occupied-helper {
  background-color: #dc4c64;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.blocked-helper {
  background-color: #9fa6b2;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.available-helper {
  background-color: #343a40;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

.selected-helper {
  background-color: #004280;
  border: #f2f2f2 0.5px solid;
  width: 20px;
  height: 20px;
  float: left;
}

@media (min-width: 768px) {
  .legenda {
    flex-direction: row;
  }
}

.grid-choose-name {
  width: 50px;
  height: 26px;
}

.grid-choose-item {
  width: 26px;
  height: 26px;
  border-radius: 10px 10px 0 0;
  font-size: 12px;
  cursor: not-allowed;
  border: 0;
}

.grid-choose-label {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 20px 10px 0;
  color: #fff;
}

.grid-choose-item.ocupada {
  background-color: #969696;
  display: grid;
  place-content: center;
}

.grid-choose-item.sua_reserva {
  background-color: white;
  color: black;
  display: grid;
  place-content: center;
  cursor: pointer !important;
}

.grid-choose-item.livre {
  background-color: #0077ff;
  display: grid;
  place-content: center;
  cursor: pointer !important;
}

.grid-choose-item.selecionada {
  background-color: var(--gold-sccp);
  display: grid;
  place-content: center;
  cursor: pointer !important;
}

.grid-choose-item.indisponivel {
  background-color: #b11e22;
  display: grid;
  place-content: center;
}

.grid-choose-item.loading {
  cursor: wait;
  opacity: 0.5;
  cursor: wait !important;
}

.message {
  padding: 1rem 2rem;
  border: 2px;
  border-radius: 4px;
  border: 1px solid #fff;
}

.section-games {
  position: relative;
  background: url("../img/bg-games.png") no-repeat;
  background-size: 100% 100%;
}

@font-face {
  font-family: steelfish;
  src: url("../fonts/steelfish rg.otf");
}

@font-face {
  font-family: gotham;
  src: url("../fonts/Gotham/Gotham-Light.otf");
}

@font-face {
  font-family: gotham-bold;
  src: url("../fonts/Gotham/Gotham-Black.otf");
}

@font-face {
  font-family: gotham-book;
  src: url("../fonts/Gotham/Gotham-Book.otf");
}

@font-face {
  font-family: gotham-ultra-italic;
  src: url("../fonts/Gotham/Gotham-UltraItalic.otf");
}

@font-face {
  font-family: gotham-light-italic;
  src: url("../fonts/Gotham/Gotham-LightItalic.otf");
}

@font-face {
  font-family: gotham-medium;
  src: url("../fonts/Gotham/Gotham-Medium.otf");
}

@font-face {
  font-family: inter-regular;
  src: url("../fonts/Inter/static/Inter-Regular.ttf");
}

@font-face {
  font-family: inter-bold;
  src: url("../fonts/Inter/static/Inter-Bold.ttf");
}

@font-face {
  font-family: philly-sans;
  src: url("../fonts/philly_sans/PhillySans.otf");
}

html,
body {
  scroll-behavior: smooth;
  font-family: gotham;
  color: white;
  background-color: var(--black);
}

body {
  font-family: gotham;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: steelfish;
  text-transform: uppercase;
}

.card.pagbank-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold);
  border-radius: 8px;
  margin-top: 1rem;
}

.card.pagbank-card:hover {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 2px 2px 20px var(--gold-sccp-09);
}

.card.pagbank-card .card-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.card.pagbank-card .card-col {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
}

.card.pagbank-card .card-col.col-brand {
  flex: 0 0 20%;
  justify-content: space-between;
  text-align: right;
}

.card.pagbank-card .card-col.col-brand .card-brand,
.resumo .card-brand {
  height: 40px;
}

.card.pagbank-card .card-col.col-brand .card-brand>img,
.resumo .card-brand>img {
  height: 100%;
  border-radius: 0.4rem;
  opacity: 0.7;
}

.card.pagbank-card .card-col.col-brand .card-brand>img:hover,
.resumo .card-brand>img:hover {
  opacity: 0.9;
  cursor: help;
}

.card.pagbank-card .card-row .card-text {
  font-size: 14px;
  margin-bottom: 0;
}

.alerta-cobranca {
  margin: 12px 0;
  border: 1px solid var(--gold-sccp-06);
  border-radius: 8px;
  padding: 12px;
  background: #121212ba;
}

.alerta-cobranca.selected {
  background: var(--gold-sccp-06);
}

.alerta-cobranca .title {
  font-weight: bold;
  text-transform: uppercase;
}

.resumo {
  background: #232323;
  border: 1px solid var(--gold-sccp);
  border-radius: 8px;
}

.left {
  width: 100%;
  margin-right: 1rem;
}

.right {
  width: 320px;
}

.resumo .body {
  border-bottom: 1px solid #353535;
  border-top: 1px solid #353535;
  width: 100%;
  padding: 8px 0;
}

.resumo .header,
.resumo .footer {
  width: 100%;
  padding: 8px 0;
}

.resumo-group {
  padding: 16px;
  /* border-bottom: 1px solid #353535; */
  margin: 0;
  cursor: pointer;
}

label.d-flex.align-items-center.p-1 {
  margin-bottom: 0 !important;
}

.resumo-group.selected {
  background: var(--gold-sccp);
}

.resumo-group.selected:first-child {
  border-radius: 8px 8px 0 0;
}

.resumo-group.selected:last-child {
  border-radius: 0 0 8px 8px;
}

.resumo~.resumo {
  margin-top: 1rem;
}

.input-pagamento {
  border: 1px solid var(--gold-sccp);
  background: #111;
  color: #fff;
  outline: none;
  padding: 8px 12px;
  font-size: .855rem;
  width: 100%;
  margin: .5rem 0;
  border-radius: 8px;
}

.linha input~input {
  margin-left: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  vertical-align: middle;
  margin-right: 5px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4e4e4e;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.modal-body.center {
  text-align: center;
}

.creditcards {
  width: 100%;
  text-align: center;
  overflow-x: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* width */
.creditcards::-webkit-scrollbar {
  width: 2px;
  height: 10px;
  border-radius: 100%;
}

/* Track */
.creditcards::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.creditcards::-webkit-scrollbar-thumb {
  background: var(--gold-sccp);
}

/* Handle on hover */
.creditcards::-webkit-scrollbar-thumb:hover {
  background: var(--gold-sccp);
}

.pagbank-wrapper {
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .pagbank-wrapper {
    flex-wrap: nowrap;
  }
}

.card.pagbank-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--gold);
  border-radius: 8px;
  margin-top: 1rem;
  margin-right: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .card.pagbank-card.credit {
    max-width: 47%;
  }
}

.card.pagbank-card:hover {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 2px 2px 20px var(--gold-sccp-09);
}

input:checked+.slider {
  background-color: var(--gold-sccp);
}

input:focus+.slider {
  box-shadow: 0 0 1px var(--gold-sccp);
}

.card.pagbank-card .card-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.card.pagbank-card .card-col {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  align-items: flex-start;
}

.card-text~.card-text {
  padding-top: .5rem;
}

.pagbank-card .card-title {
  color: var(--gold-sccp-09);
  font-style: italic;
}

.card.pagbank-card .card-col.col-brand {
  flex: 0 0 20%;
  justify-content: space-between;
  text-align: right;
  align-items: flex-end;
}

input:checked+.slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.card.pagbank-card .card-col.col-brand .card-brand {
  height: 40px;
}

.slider.round:before {
  border-radius: 50%;
}

.card.pagbank-card .card-col.col-brand .card-brand>img {
  height: 100%;
  border-radius: 0.4rem;
  opacity: 0.7;
}

.card.pagbank-card .card-col.col-brand .card-brand>img:hover {
  opacity: 0.9;
  cursor: help;
}

.img-cc {
  width: 100%;
  max-width: 220px;
  margin-left: 1.5rem;
  display: none;
}

@media (min-width: 768px) {
  .img-cc {
    display: block;
  }
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: var(--gold-sccp);
  background-color: var(--gold-sccp);
}

.img-pix {
  height: 40px;
  border-radius: 8px;
  margin-left: .25rem;
}