@import url("https://fonts.googleapis.com/css2?family=Offside&family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
html, body {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /*overflow-x: hidden;*/
  font-family: "Roboto", serif;
}

body.menu_mobile_open {
  overflow: hidden !important;
}

*, ::after, ::before {
  box-sizing: border-box;
}

*:focus {
  outline: 0 !important;
}

#kenburnsy-bg {
  overflow: hidden;
  width: 100%;
  position: relative;
}
#kenburnsy-bg.fullscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#kenburnsy-bg .slide {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateZ(0);
  transform-origin: center;
}
#kenburnsy-bg .slide img {
  display: none;
}

#curtains {
  position: fixed;
  height: 100%;
  width: 100%;
  background: url(../img/curtains.png) repeat top left;
  z-index: -1;
}

.preload-content {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.9;
  -moz-opacity: 0.9;
  -webkit-opacity: 0.9;
  filter: alpha(opacity=90);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  z-index: -1;
}
.preload-content img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.04;
}

.global-content {
  position: relative;
  width: 100%;
}

.content-center {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.gridbox {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
}
.gridbox li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gridbox li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 200px;
  height: 200px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #f04912;
  background-color: rgba(240, 73, 18, 0.05);
  border-radius: 15px;
  animation: pulse-animation 2s infinite;
  transition: transform 0.2s ease-in-out;
}
.gridbox li a i, .gridbox li a svg {
  font-size: 3rem;
  color: #f04912;
  margin-bottom: 20px;
}
.gridbox li a span {
  font-size: 1.7rem;
  text-transform: uppercase;
  color: #fffdfc;
}
.gridbox li a:hover {
  animation: bounce 0.6s ease-out;
  background-color: rgba(240, 73, 18, 0.1);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(240, 73, 18, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
body.portal footer {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}

footer {
  position: relative;
  margin: 20px 0;
  text-align: center;
}
footer .socialnetwork {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .socialnetwork li {
  display: inline-block;
  margin: 0 15px;
}
footer .socialnetwork li a {
  color: #fffdfc;
}
footer .socialnetwork li a i, footer .socialnetwork li a svg {
  font-size: 1.5rem;
}
footer .copyright {
  width: 100%;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
footer .copyright i, footer .copyright svg {
  color: red;
}
footer .copyright span {
  color: #f04912;
  text-shadow: 0 0 0.7em #f77f00;
  font-weight: 500;
  background: url("../img/giphy.gif");
}

header {
  position: relative;
  width: 100%;
}
header .topmsg {
  width: 100%;
  background-color: rgba(240, 73, 18, 0.68);
  height: 50px;
  padding: 0 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .topmsg .randommsg {
  width: 50%;
  position: relative;
  text-align: left;
}
header .topmsg .randommsg p {
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
header .topmsg .randommsg p i, header .topmsg .randommsg p svg {
  font-size: 12px;
  margin-right: 10px;
}
header .topmsg .randommsg p.fade {
  opacity: 0;
}
header .topmsg .socialnetwork {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 50%;
  position: relative;
  text-align: right;
}
header .topmsg .socialnetwork li {
  display: inline-block;
  margin: 0 15px;
}
header .topmsg .socialnetwork li a {
  color: #fffdfc;
}
header .topmsg .socialnetwork li a i, header .topmsg .socialnetwork li a svg {
  font-size: 1.5rem;
}
header .navhead {
  position: relative;
  width: 100%;
  margin: 15px 0;
}
header .navhead .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .navhead .logo {
  position: relative;
  text-align: left;
  width: 20%;
}
header .navhead .logo img {
  height: 170px;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
header .navhead .menu {
  position: relative;
  text-align: right;
  width: 80%;
}
header .navhead .menu .bt-hamburger {
  display: none;
  border: 1px solid #f04912;
  background-color: rgba(240, 73, 18, 0.05);
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  float: right;
}
header .navhead .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .navhead .menu ul li {
  display: inline-block;
  margin: 0 5px;
}
header .navhead .menu ul li a {
  border: 1px solid #f04912;
  background-color: rgba(240, 73, 18, 0.05);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  transition-duration: 0.4s;
}
header .navhead .menu ul li a i, header .navhead .menu ul li a svg {
  margin-right: 5px;
  color: #f04912;
  transition-duration: 0.4s;
}
header .navhead .menu ul li a:hover {
  background-color: #f04912;
}
header .navhead .menu ul li a:hover i, header .navhead .menu ul li a:hover svg {
  color: #fff;
}
header .navhead .menu ul li:first-child {
  margin-left: 0 !important;
}
header .navhead .menu ul li:last-child {
  margin-right: 0 !important;
}
header .navhead .menu ul li.active a {
  background-color: #f04912;
}
header .navhead .menu ul li.active a i, header .navhead .menu ul li.active a svg {
  color: #fff;
}

.section-content {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #222222;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin-bottom: 50px;
}
.section-content .breadcrumb-custom {
  position: relative;
  background: rgb(29, 29, 29);
  background: linear-gradient(0deg, rgb(29, 29, 29) 0%, rgb(32, 32, 32) 35%, rgb(33, 33, 33) 100%);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-content .breadcrumb-custom li {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  text-transform: uppercase;
  font-weight: 500;
}
.section-content .breadcrumb-custom li:first-child {
  background-color: #2d2d2d;
}
.section-content .breadcrumb-custom li:first-child::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 20px solid #2d2d2d;
}
.section-content .conteudo {
  position: relative;
  width: 100%;
  padding: 20px;
}

.divescrita {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  text-align: justify;
}
.divescrita .titulo {
  padding: 15px;
  background-color: #f04912;
  border-left: 4px solid #fff;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.groupsteam {
  color: #fff;
  border: 1px solid #f04912;
  background-color: rgba(240, 73, 18, 0.05);
  margin-bottom: 40px;
}
.groupsteam .membersrealtime {
  margin: 0;
  padding: 20px;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}
.groupsteam .membersrealtime li {
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
}
.groupsteam .membersrealtime li span {
  display: block;
  font-size: 2rem;
}
.groupsteam .membersrealtime li.members {
  color: #9a9a9a;
}
.groupsteam .membersrealtime li.playing {
  color: #8bc53f;
}
.groupsteam .membersrealtime li.online {
  color: #62a7e3;
}
.groupsteam .join-group-steam {
  position: relative;
  padding: 0 20px 20px 20px;
  width: 100%;
}
.groupsteam .join-group-steam a {
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  display: block;
  text-decoration: none;
  width: 100%;
  background: rgb(60, 96, 145);
  background: linear-gradient(0deg, rgb(60, 96, 145) 0%, rgb(96, 132, 181) 35%, rgb(170, 206, 255) 100%);
  font-weight: 600;
  transition-duration: 0.2s;
}
.groupsteam .join-group-steam a:hover {
  opacity: 0.7;
}
.groupsteam .otherinfogroupsteam {
  border-top: 1px solid #f04912;
  position: relative;
  padding: 20px;
  width: 100%;
}
.groupsteam .otherinfogroupsteam .groupstat {
  position: relative;
  font-size: 14px;
  margin-bottom: 10px;
  color: #9a9a9a;
}
.groupsteam .otherinfogroupsteam .groupstat:last-child {
  margin-bottom: 0 !important;
}
.groupsteam .otherinfogroupsteam .groupstat strong {
  color: #fff;
}

.staffmembers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}
.staffmembers li {
  display: block;
  text-align: center;
}
.staffmembers li a {
  text-decoration: none;
}
.staffmembers li .avatar {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #2d2d2d;
  margin-bottom: 10px;
  transition-duration: 0.4s;
}
.staffmembers li .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.staffmembers li .nickname {
  font-size: 12px;
  color: #fff;
  transition-duration: 0.4s;
}
.staffmembers li:hover .avatar {
  border: 2px solid #62a7e3;
}
.staffmembers li:hover .nickname {
  color: #62a7e3;
}

.parceiroslist {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.parceiroslist li {
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
.parceiroslist li img {
  transition-duration: 0.3s;
}
.parceiroslist li:hover img {
  opacity: 0.6;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  width: 100%;
  background: rgb(29, 29, 29);
  background: linear-gradient(0deg, rgb(29, 29, 29) 0%, rgb(32, 32, 32) 35%, rgb(33, 33, 33) 100%);
  z-index: 9999999;
  padding: 30px;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  transform: translateX(100%);
  display: grid;
  place-items: center;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
}
.nav-mobile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/cpobscure-logo-nospace.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 130% 115%;
  opacity: 0.2;
  pointer-events: none;
}
.nav-mobile.active {
  transform: translateX(0) !important;
}
.nav-mobile .closenavmobile {
  color: #fff;
  font-size: 3rem;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  margin: 0 auto;
}
.nav-mobile .menu {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.nav-mobile .menu li {
  display: block;
  width: 100%;
  text-align: center;
}
.nav-mobile .menu li a {
  display: block;
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px;
  margin-bottom: 5px;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  transition-duration: 0.2s;
}
.nav-mobile .menu li a i, .nav-mobile .menu li a svg {
  margin-right: 5px;
}
.nav-mobile .menu li.active a {
  color: #f04912;
  border: 1px solid #f04912;
  background-color: rgba(240, 73, 18, 0.05);
}
.nav-mobile .socialnetwork {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  position: relative;
  text-align: center;
}
.nav-mobile .socialnetwork li {
  display: inline-block;
  margin: 0 15px;
}
.nav-mobile .socialnetwork li a {
  color: #fffdfc;
}
.nav-mobile .socialnetwork li a i, .nav-mobile .socialnetwork li a svg {
  font-size: 1.5rem;
}

.listservers {
  display: block;
  position: relative;
  width: 100%;
}
.listservers .sv {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
}
.listservers .sv.online .status {
  color: #28a745;
}
.listservers .sv.online .status i, .listservers .sv.online .status svg {
  font-size: 10px;
}
.listservers .sv.offline .status {
  color: #dc3545;
}
.listservers .sv.offline .status i, .listservers .sv.offline .status svg {
  font-size: 10px;
}
.listservers .sv .svdetails {
  position: relative;
  width: 70%;
}
.listservers .sv .svdetails .svdesc {
  background-color: rgba(240, 73, 18, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.listservers .sv .svdetails .svdesc .game {
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 20px;
}
.listservers .sv .svdetails .svdesc .game img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.listservers .sv .svdetails .svdesc .desc {
  font-size: 12px;
  line-height: 18px;
  text-align: left !important;
}
.listservers .sv .svdetails .svdesc .desc .hostname {
  font-size: 16px;
  float: left;
}
.listservers .sv .svdetails .svdesc .desc .emptyspace {
  width: 15px;
  display: inline-block;
}
.listservers .sv .svdetails .progress {
  margin-top: -3px;
  z-index: 1;
  position: relative;
  background-color: #515151;
}
.listservers .sv .svinfo {
  margin: 0;
  padding: 0 0 0 5px;
  list-style: none;
  position: relative;
  width: 30%;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
}
.listservers .sv .svinfo .buttone {
  width: 100%;
  position: relative;
  border-radius: 0;
  padding: 13px;
}

.buttone {
  display: inline-block;
  font-weight: 400;
  cursor: pointer;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.3rem;
  text-decoration: none !important;
}
.buttone.bt-green {
  color: #28a745;
  border-color: #28a745;
}
.buttone.bt-green:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.buttone.bt-info {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.buttone.bt-info:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #111111;
}

.form-custom-control {
  position: relative;
  width: 100%;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid #717171;
  background-color: rgba(240, 73, 18, 0.05);
  color: #717171;
}
.form-custom-control:focus {
  border-bottom: 1px solid #f04912;
}

.bt-submit {
  border: 1px solid #f04912;
  background-color: rgba(240, 73, 18, 0.05);
  color: #717171;
  text-decoration: none;
  padding: 10px 40px;
  font-size: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  transition-duration: 0.4s;
  cursor: pointer;
}
.bt-submit:hover {
  background-color: #f04912;
  color: #fff;
}

.anothercontactmethods {
  margin: 40px 0 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.anothercontactmethods li {
  display: inline-block;
  margin: 0 15px;
}
.anothercontactmethods li a {
  color: #fffdfc;
}
.anothercontactmethods li a i, .anothercontactmethods li a svg {
  font-size: 2rem;
}

.logopub {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.logopub img {
  height: 350px;
}

.tournament .bannertornament {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.tournament .bannertornament img {
  width: 100%;
}

.load-gm-status {
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

.maintenance {
  width: 100%;
  position: relative;
  text-align: center;
}
.maintenance img {
  max-width: 100%;
  width: 400px;
}
.maintenance p {
  font-size: 1.4rem;
  text-transform: uppercase;
}/*# sourceMappingURL=style.css.map */