@import url(helper.css);
@import url(roots.css);
@import url(loot-boxes.min.css);
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  width: 100%;
  background: url(../images/fon-bg-top.jpg) center top no-repeat,
    url(../images/fon-bg-bottom.jpg) center bottom no-repeat;
  background-color: #100c0c;
  font-family: "Candara", "Verdana";
  font-weight: 400;
  font-size: 15px;
  color: #f7ddbf;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  transition: all 0.3s ease;
  color: #8d7962;
  text-decoration: none;
}

h1,
h2,
h3 {
  color: rgba(var(--cor-ouro));
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
small {
  --bs-text-opacity: 1;
  opacity: var(--bs-text-opacity) !important;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

table {
  width: 100%;
}

table td {
  border-collapse: collapse;
  padding: 4px;
  border: 1px solid #482c22;
  text-align: center;
}

table tr:nth-child(odd) {
  background-color: #100c0c;
}

caption {
  margin-bottom: 15px;
}

.error-message {
  width: 500px;
}

.form-group {
  width: 100%;
  display: inline-block;
}

.input-re {
  background-color: #2e2524;
  border: 1px solid #49321a;
  height: 55px;
  box-shadow: inset 0px 5px 20px 0px rgba(0, 0, 0, 0.75);
  color: #e7c195;
  padding: 16px 10px;
  margin: 5px 0px;
  font-weight: bold;
  max-width: 100%;
  width: 100%;
}


input:-webkit-autofill {
    appearance: menulist-button; /* Opcional: se quiser imitar dropdown */
    background-image: none !important;
    background-color: rgba(70, 90, 126, 0.4) !important; /* Fundo escuro customizado */
    color: #000 !important; /* Cor do texto */
    -webkit-text-fill-color: #000 !important; /* Alinha a cor do texto no autofill */
    border: 1px solid #444; /* Estilo de borda */
}

textarea {
  color: #241a18;
  position: relative;
}

.agree a {
  color: #0b8a88;
  text-decoration: underline !important;
}

.agree a:hover {
  text-decoration: none !important;
}

:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #e7c195;
}

::-moz-placeholder {
  color: #e7c195;
}

:-moz-placeholder {
  color: #e7c195;
}

:-ms-input-placeholder {
  color: #e7c195;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.flex {
  display: flex;
}

.flex-s {
  display: flex;
  justify-content: space-between;
}

.flex-s-c {
  display: flex;
  justify-content: space-between;
}

.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-panel {
  width: 100%;
  position: fixed;
  margin: 0 auto;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 99;
}

.top-panel::before {
  width: 100vw;
  height: 80px;
  background-color: rgba(17, 14, 13, 0.74);
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  border-bottom: 1px solid #3b2323;
  content: "";
}

/* Header

-----------------------------------------------------------------------------*/

.header {
  min-height: 694px;
  position: relative;
}

.content {
  position: relative;
  z-index: 10;
}

.menu li a:before {
  content: "";
  position: absolute;
  height: 23px;
  width: 4px;
  left: 0px;
  top: 22px;
}

.menu li:first-child a:before {
  display: none;
}

.menu li a {
  margin: 0px;
}

.menu li {
  margin: 0px 8px;
}

.menu a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  padding: 0px 26px;
  display: block;
  height: 80px;
  line-height: 80px;
  position: relative;
}

.menu a:after {
  content: "";
  transition: 0.3s;
  height: 0px;
  width: 0px;
}

.menu a:hover {
  color: rgba(var(--cor-ouro));
}

.menu a:hover:after {
  content: "";
  height: 2px;
  width: 100%;
  left: 0px;
  position: absolute;
  background: rgba(var(--cor-ouro));
}

.menu .active a {
  color: rgba(var(--cor-ouro));
}

.menu .active a:after {
  content: "";
  height: 2px;
  width: 100%;
  left: 0px;
  position: absolute;
  background: rgba(var(--cor-ouro));
}

.logo {
  max-width: 500px;
  display: block;
  position: absolute;
  transition: 0.3s;
  z-index: 2;
  left: 0;
  top: 330px;
}

.logo img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
    -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.topPanel__buttons a {
  margin-left: 18px;
}

.buttons-small {
  transition: all 0.3s ease;
  cursor: pointer;
  justify-content: center;
  display: flex;
  margin-top: 25px;
}

.button-small {
  height: 50px;
  color: rgba(var(--cor-ouro));
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/bg-button-1.jpg) no-repeat;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.35);
}

.button-small:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

.button-small-other {
  color: rgba(var(--cor-ouro));
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/bg-button-1.jpg) no-repeat;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.button-small-other a {
  display: block;
  line-height: 50px;
}

.button-small-other:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

button,
.button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/bg-button-1.jpg) center bottom no-repeat;
  background-size: cover !important;
  color: rgba(var(--cor-ouro));
  position: relative;
  padding: 19px 32px;
  max-width: max-content;
  height: 50px;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  border: none;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.35);
}

button:hover,
.button:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

.button_other {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/bg-button-1.jpg) center bottom no-repeat;
  color: rgba(var(--cor-ouro));
  position: relative;
  width: 140px;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  border: none;
  box-shadow: 0px 10px 20px 8px rgba(0, 0, 0, 0.35);
  display: inline-block;
  margin: 20px 0px;
}

.button_other a {
  display: block;
  height: 50px;
  padding: 19px 32px;
}

.button_other.active {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

.button_other:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

.buttonDark {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/bg-button-sign.png) center bottom no-repeat;
  color: rgba(var(--cor-ouro));
  position: relative;
  padding: 19px 32px;
  width: 140px;
  height: 50px;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.3);
}

.buttonDark:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
  color: #fff;
}

.fast-button {
  display: flex;
  margin-bottom: 10px;
}

.download-block {
  display: flex;
  height: 125px;
  width: 398px;
  background: url(../images/download-button.jpg) no-repeat;
}

.download-block a {
  font-size: 30px;
  color: rgba(var(--cor-ouro));
  padding-left: 172px;
  padding-top: 40px;
  text-align: left;
  text-shadow: #000 0px 1px;
  font-weight: 600;
}

.download-block span {
  font-weight: bold;
  font-style: italic;
  background: linear-gradient(rgba(var(--cor-ouro)), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.download-block p {
  font-size: 14px;
  font-style: italic;
  padding-top: 10px;
}

.download-block:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

/* servers

-----------------------------------------------------------------------------*/

.status-block {
  background: url(../images/status-bg.jpg) no-repeat;
  height: 125px;
  width: 398px;
  margin-left: 3px;
}

.server {
  padding: 35px 30px 0px 157px;
  height: 125px;
  font-size: 12px;
  background: url(../images/img-server-top.png) no-repeat;
  font-size: 14px;
}

.server:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

.server a {
    font-size: 30px;
    color: rgba(var(--cor-ouro));
    padding-top: 40px;
    text-align: left;
    text-shadow: #000 0px 1px;
    font-weight: 600;
}

.server span {
  font-weight: bold;
  font-style: italic;
  background: linear-gradient(rgba(var(--cor-ouro)), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.server p {
  font-size: 14px;
  font-style: italic;
  padding-top: 10px;
}

.download-block:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

.server .server-name {
  color: #fff;
}

.status-online,
.online,
.on {
  color: #ccfa6a;
}

.online,
.on {
  color: #ccfa6a;
}

.server-bottom {
  padding: 35px 30px 0px 157px;
  height: 125px;
  font-size: 12px;
  background: url(../images/img-server-bottom.png) no-repeat;
}

.server-bottom .server-name {
  color: #fff;
}

.status-offline {
  color: #f74133;
  float: right;
}

.offline,
.off {
  color: #f74133;
}

.progress-bar {
  height: 16px;
  margin: 9px 0px 6px 0px;
  position: relative;
  padding-top: 1px;
}

.progress-bar:after {
  content: "";
  position: absolute;
  background-color: #1a100a;
  width: 100%;
  height: 4px;
  top: 7px;
  left: 0px;
}

.progress-bar span {
  height: 17px;
  background: url(../images/line-server.png) repeat-x;
  display: block;
  position: relative;
  z-index: 1;
}

.progress-bar-off {
  height: 16px;
  margin: 9px 0px 6px 0px;
  position: relative;
  padding-top: 1px;
}

.progress-bar-off:after {
  content: "";
  position: absolute;
  background-color: #1a100a;
  width: 100%;
  height: 4px;
  top: 7px;
  left: 0px;
}

.progress-bar-off span {
  height: 17px;
  background: url(../images/line-server-off.png) repeat-x;
  display: block;
  position: relative;
  z-index: 1;
}

.desc {
  color: #8d7962;
  font-size: 12px;
  text-decoration: underline;
}

.desc:hover {
  text-decoration: none;
}

/* servers end

-----------------------------------------------------------------------------*/

/*   slider  */

.swiper-container {
  width: 599px;
  float: left;
}

.swiper-slider {
  width: 100%;
  height: 370px;
}

.swiper-slider .swiper-slide,
.hall .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-slider .swiper-slide h2,
.hall .swiper-slide h2 {
  color: #fff;
  font-size: 24px;
  background: rgba(44, 28, 19, 0.55);
  margin-bottom: 0px;
  font-weight: normal;
  padding: 26px 0px 26px 50px;
}

.swiper-slider .swiper-slide .slider-info,
.hall .swiper-slide .slider-info {
  position: absolute;
  bottom: 60px;
  height: 90px;
  padding: 0px 60px;
  padding-bottom: 20px;
  width: 599px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(36, 32, 27, 0.8) 0%,
    rgba(0, 0, 0, 0)
  );
}

.swiper-slider .swiper-slide .slider-info p,
.hall .swiper-slide .slider-info p {
  color: #fff;
  font-size: 14px;
  width: 290px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.swiper-slider .swiper-pagination,
.hall .swiper-pagination {
  height: 60px;
  line-height: 60px;
  bottom: 0 !important;
  background: rgba(32, 24, 23, 0.9);
  border-top: 1px solid #3f2f21;
  text-align: left;
  padding-left: 40px;
}

.swiper-slider .swiper-pagination .swiper-pagination-bullet,
.swiper-pagination-horizontal .swiper-pagination-bullet,
.hall .swiper-pagination .swiper-pagination-bullet,
.swiper-pagination-horizontal .swiper-pagination-bullet {
  border-radius: 0px;
  background: #908783;
}

.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal .swiper-pagination-bullet,
.swiper-pagination-custom .swiper-pagination-bullet {
  margin-right: 15px !important;
}

.swiper-slider .swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover,
.hall .swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
  background: #ffd481;
}

.swiper-slider .slider-button,
.hall .slider-button {
  width: 30px;
  height: 30px;
  background: 50% / 100% 100% no-repeat;
}

.swiper-slider .swiper-button-next,
.hall .swiper-button-next {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  right: 0;
}

.swiper-slider .swiper-button-prev,
.hall .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  left: 0;
}

.swiper-slider .swiper-button-prev:hover,
.hall .swiper-button-prev:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.swiper-slider .swiper-button-next:hover,
.hall .swiper-button-next:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.swiper-slider .swiper-button-disabled,
.hall .swiper-button-disabled {
  display: none;
}

/*   end slider*/

/*Last news*/

.news-top {
  float: right;
  height: 370px;
  width: 599px;
  margin-left: 4px;
  background: url(../images/fon-news.jpg) no-repeat;
}

.news-top-title {
  position: relative;
  display: flex;
}

.news-top-title span {
  display: block;
  color: rgba(var(--cor-ouro));
  font-size: 20px;
  font-weight: bold;
  padding: 40px 40px 20px 40px;
  text-transform: uppercase;
  position: relative;
}

.tab-block.active {
  display: block;
  animation: tab 0.6s linear;
}

.tab-more {
  position: absolute;
  right: 0;
  color: rgba(var(--cor-ouro));
  background: #140e0d;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -9px;
  line-height: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 18px;
  margin-right: 40px;
}

.bright:hover {
  filter: brightness(120%);
  background: #322725;
}

.news-top-text {
  padding: 0px 40px 40px 40px;
}

span.news-1 {
  color: #8d7962;
}

.news:hover {
  height: 50px;
  padding-top: 13px;
  background-color: #342b29;
  border-bottom: 1px solid #5c432b;
  padding-left: 33px;
  padding-right: 47px;
  transition: 0.3s;
  box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.45);
}

.news:hover .news-1 {
  color: #e7c195;
}

.news:hover .date {
  color: #e7c195;
}

.news:hover a {
  color: rgba(var(--cor-ouro));
}

.date {
  color: #8d7962;
}

.news {
  height: 50px;
  margin: 0px -40px 0px -40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 13px;
}

.news a {
  width: 400px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f7ddbf;
}

.top-content {
  display: flex;
}

/*END Last news*/

/*--block-widget--*/

.block-widget {
  display: flex;
  margin-top: 10px;
}

.block-widget-more {
  margin-top: 10px;
  float: left;
}

.widget-fon {
  background: url(../images/fon-top-players.jpg) center bottom no-repeat;
  box-shadow: 0em 8px 8px rgba(0, 0, 0, 0.1);
  height: 670px;
}

.widget-fon-guilds {
  background: url(../images/fon-guilds.jpg) center bottom no-repeat;
  box-shadow: 0em 8px 8px rgba(0, 0, 0, 0.1);
  height: 670px;
}

.widget-fon-discussions {
  background: url(../images/fon-discussions.jpg) center bottom no-repeat;
  box-shadow: 0em 8px 8px rgba(0, 0, 0, 0.1);
  height: 670px;
}

.block-players {
  padding: 0px 35px 35px 35px;
  margin-top: 4px;
}

.block-widget-title {
  padding-top: 165px;
  padding-bottom: 35px;
  color: rgba(var(--cor-ouro));
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.guild .top-number {
  width: 60px;
}

.top-block.guild .top-number img {
  margin-bottom: -2px;
  margin-left: 5px;
}

.top-block.guild .score {
  padding-left: 55px;
}

.top-block {
  width: 100%;
  padding-bottom: 15px;
}

.top-block span {
  display: block;
}

.top-block .top-number {
  width: 20px;
}

.guild img {
  border: 1px solid #360e17;
}

.top-block .top-flag {
  width: 30px;
  padding-top: 2px;
}

.top-block .top-name {
  width: 162px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-block .top-lvl {
  width: 80px;
}
.top-block .top-Res {
    padding-left: 55px;
}
.top-block .top-Res sup {
  font-size: 10px;
  color: #ff0000;
  position: absolute;
  margin-top: -5px;
}

.top-list {
  height: 41px;
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: 0.3s;
  color: #f7ddbf;
}

.top-list a {
  color: #f7ddbf;
  text-decoration: none;
}

.top-list:hover {
  background-color: #342b29;
  border-bottom: 1px solid #5c432b;
  box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.45);
  height: 41px;
  margin: 0px -40px 0px -40px;
  padding: 0px 25px 0px 25px;
  color: rgba(var(--cor-ouro));
  position: relative;
  z-index: 5;
}

.top-list:hover a {
  color: rgba(var(--cor-ouro));
}

.top-title {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 15px;
}

.top-block.guild .top-number {
  width: 60px;
}

/*--block-widget end--*/

/*widget Discussions*/

.admin-icon {
  float: left;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-size: 45px;
  box-shadow: 0em 8px 15px rgba(0, 0, 0, 0.3);
  margin-right: 26px;
}

.discussions-content-top {
}

.discussions-icon {
  float: left;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-size: 45px;
  box-shadow: 0em 8px 15px rgba(0, 0, 0, 0.3);
}

.discussions-message {
  float: right;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #563d2e;
  color: rgba(var(--cor-ouro));
  font-size: 12px;
  box-shadow: 0em 8px 15px rgba(0, 0, 0, 0.3);
}

.discussions-text {
  padding-left: 16px;
  font-size: 14px;
}

.discussions-text-bt {
  padding-left: 16px;
  font-size: 15px;
  color: #8d7962;
}

.discussions-content-block:hover .discussions-text-bt {
  color: #8b6757;
}

.discussions-text-bt a {
  color: #fccca0;
}

.discussions-content-block {
  padding-bottom: 10px;
  padding-top: 11px;
}

.discussions-content-block:hover {
  background-color: #342b29;
  border-bottom: 1px solid #5c432b;
  box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.45);
  transition: 0.4s;
  margin: 0px -40px 0px -40px;
  padding: 10px 26px 10px 26px;
  cursor: pointer;
}

.discussions-content-block:hover .discussions-text {
  color: rgba(var(--cor-ouro));
}

.discussions-content-block:hover .discussions-text-bt a {
  text-decoration: none;
  color: rgba(var(--cor-ouro));
}

/*widget Discussions end*/

/*MEDIA*/

.content-last-news {
  margin-top: 10px;
}

.last-news-top {
  text-transform: uppercase;
  height: 85px;
  background: url(../images/fon-bg-news.jpg) no-repeat;
  color: rgba(var(--cor-ouro));
  font-size: 20px;
  font-weight: bold;
  padding: 32px 35px 0px 35px;
  margin-bottom: 4px;
}

.last-news-top a {
  float: right;
  font-size: 14px;
  color: rgba(var(--cor-ouro));
  text-decoration: none;
  font-weight: normal;
  padding-top: 3px;
}

.last-news-top a:hover {
  text-decoration: underline;
}

.media-fon {
  width: 1200px;
  height: 267px;
  background: url(../images/fon-media.jpg) no-repeat;
  padding-top: 25px;
  padding-left: 30px;
  padding-right: 30px;
}

.media-fon .slick-list:before {
  content: "";
  position: absolute;
  height: 220px;
  width: 195px;
  left: 0px;
  top: 0px;
  background: linear-gradient(to right, rgb(36, 26, 24), rgba(57, 43, 33, 0));
  z-index: 1;
}

.media-fon .slick-list:after {
  content: "";
  position: absolute;
  height: 220px;
  width: 195px;
  right: 0px;
  top: 0px;
  background: linear-gradient(to left, rgb(36, 26, 24), rgba(57, 43, 33, 0));
  z-index: 1;
}

.slick-slider-slide {
  padding: 15px;
}

.slick-slider-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: 1s;
  transform: scale(1);
}

.slick-slider-slide img {
  display: block;
}

.slick-center a {
  transform: scale(1.1);
}

.slick-center a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  box-shadow: inset 0px 0px 100px 10px rgba(0, 0, 0, 1);
  top: 0px;
  left: 0px;
}

/*footer*/

/*To top*/

.toTop-fon {
  display: flex;
  justify-content: center;
  height: 42px;
  background: url(../images/fon-totop.png) no-repeat;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.toTop {
  background: url(../images/fon-circle.png) no-repeat;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
}

.toTop:hover {
  -webkit-filter: brightness(140%);
  filter: brightness(140%);
}

/* to top end*/

/* Footer

-----------------------------------------------------------------------------*/

.footer-block-t {
  padding-top: 33px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.f-menu li {
  display: inline-block;
  margin: 15px 23px;
}

.f-menu li a {
  text-transform: uppercase;
  color: #9b6926;
  font-size: 14px;
}

.f-menu li a:hover {
  color: #e39f45;
  font-weight: bold;
}

.f-menu li a:active {
  color: #e39f45;
  font-weight: bold;
}

.footer-end {
  margin: 0px 0px 50px 0px;
}

.footer-block-coperite {
  float: left;
  color: #c67c54;
  padding-top: 70px;
}

.footer-block-coperite a {
  color: #ffa328;
}

.footer-block-coperite a:hover {
  text-decoration: underline;
}

.footer-block-r {
  float: right;
}

.soc-block {
  margin-bottom: 45px;
}

.soc-block a {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  padding-top: 8px;
  margin-left: 20px;
  background-color: #27130c;
  border: 1px solid #c66047;
  height: 33px;
  width: 33px;
  box-shadow: inset 0px 0px 7px 0px rgba(183, 55, 77, 0.9);
}

.soc-block a:hover {
  box-shadow: inset 0px 0px 15px 0px rgba(183, 55, 77, 0.9);
  filter: drop-shadow(0px 0px 6px rgba(220, 84, 107, 0.75));
  border: 1px solid #c66047;
}

.footer-logo {
  text-align: center;
  margin-top: -30px;
}

.footer-logo:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.templstock:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

/*end footer*/

/*smog*/

.smog {
  position: absolute;
  top: 450px;
  left: 170px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.smog .num1 {
  -webkit-animation: spreadSmog 7s infinite linear;
  animation: spreadSmog 7s infinite linear;
}

.smog .num2 {
  -webkit-animation: spreadSmog 15s infinite linear;
  animation: spreadSmog 15s infinite linear;
}

.smog .num3 {
  -webkit-animation: spreadSmog 40s infinite linear;
  animation: spreadSmog 40s infinite linear;
}

.smog .num1 {
  bottom: 0;
  left: -677px;
  width: 2354px;
  height: 1300px;
  opacity: 0;
}

.smog i {
  position: absolute;
  display: block;
  background: url(../images/sp_smog.png) no-repeat;
  transform-origin: 50% 100%;
}

.smog .num2 {
  bottom: 0;
  left: -677px;
  width: 2354px;
  height: 1300px;
  opacity: 0;
}

.smog .num3 {
  bottom: 0;
  left: -677px;
  width: 2354px;
  height: 1300px;
  opacity: 0;
}

@keyframes spreadSmog {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  45% {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    opacity: 1;
  }
  90% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

/*end smog*/

/*sparks*/

.sparks-sparks {
  left: 550px;
  position: absolute;
  top: 800px;
}

.sparks-1 {
  background-image: url(../images/sparks-1.png);
  width: 117px;
  height: 136px;
  right: 200px;
  bottom: 0px;
  background-position: left 0px bottom 0px;
  animation-name: sparks-1;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.sparks-2 {
  background-image: url(../images/sparks-2.png);
  width: 219px;
  height: 176px;
  right: 200px;
  bottom: 30px;
  background-position: left 0px bottom 0px;
  animation-name: sparks-2;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 0.5s;
  opacity: 0;
}

.sparks-3 {
  background-image: url(../images/sparks-3.png);
  width: 438px;
  height: 281px;
  right: 100px;
  bottom: 20px;
  background-position: left 0px bottom 0px;
  animation-name: sparks-3;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes sparks-1 {
  0% {
    right: 200px;
    bottom: 10px;
    opacity: 0;
  }
  33% {
    right: 210px;
    bottom: 20px;
    opacity: 0.5;
    transform: scale(1.1);
  }
  70% {
    right: 220px;
    bottom: 30px;
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    right: 230px;
    bottom: 40px;
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes sparks-2 {
  0% {
    right: 210px;
    bottom: 40px;
    opacity: 0;
  }
  33% {
    right: 220px;
    bottom: 50px;
    opacity: 0.5;
    transform: scale(1.1);
  }
  70% {
    right: 230px;
    bottom: 60px;
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    right: 240px;
    bottom: 70px;
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes sparks-3 {
  0% {
    right: 120px;
    bottom: 30px;
    opacity: 0;
  }
  33% {
    right: 140px;
    bottom: 50px;
    opacity: 0.5;
    transform: scale(1.1);
  }
  70% {
    right: 160px;
    bottom: 70px;
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    right: 180px;
    bottom: 90px;
    opacity: 0;
    transform: scale(1.1);
  }
}

.sparks {
  background-repeat: no-repeat;
  background-position: left 0px bottom 0px;
  position: absolute;
}

/*end sparks*/

/*modal windovs*/

.logo-re {
  text-align: center;
  margin-bottom: 35px;
}

.modal_div {
  width: 599px;
  min-height: 510px;
  background: url(../images/modal-top-bg.jpg) center top no-repeat,
    url(../images/modal-bottom-bg.jpg) center bottom no-repeat;
  position: fixed;
  background-color: #221918;
  top: 45%;
  left: 50%;
  margin-top: -90px;
  margin-left: -328px;
  display: none;
  opacity: 0;
  z-index: 199;
  padding: 50px 0px;
}

.modal_div .modal_close {
  width: 36px;
  height: 36px;
  background: url(../images/close-icon.png) no-repeat;
  position: absolute;
  top: -18px;
  right: -18px;
  cursor: pointer;
  display: block;
}

.modal_close:hover {
  -webkit-filter: brightness(140%);
  filter: brightness(140%);
}

#overlay {
  z-index: 190;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.modal-content {
  padding: 0px 40px;
  text-align: center;
  color: #e7c195;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 20px;
}

.modal-content h2 span {
  position: relative;
  text-transform: uppercase;
  color: rgba(var(--cor-ouro));
}

.modal-content form p {
  margin-bottom: 20px;
}

.formButton {
  text-align: center;
  margin-top: 40px;
}

/*end modal  windows*/

/*page-content*/

.page-content {
  padding: 40px 65px 40px 60px;
  background: url(../images/fon-page-top.jpg) center top no-repeat,
    url(../images/fon-page-bottom.jpg) center bottom no-repeat;
  background-color: #211715;
}

.page-container {
  width: 1050px;
  margin: 20px auto;
}

.page-top {
  text-transform: uppercase;
  font-size: 20px;
  color: rgba(var(--cor-ouro));
  text-align: center;
  font-weight: bold;
}

.page-title {
  padding-top: 35px;
  padding-bottom: 30px;
}

.page-title-time {
  color: #8d7962;
}

.page-title-news {
  color: rgba(var(--cor-ouro));
  text-transform: uppercase;
  font-size: 18px;
}

.page-text {
  line-height: 20px;
}

.page-text a {
  color: rgba(var(--cor-ouro));
  text-decoration: underline;
}

.page-text a:hover {
  text-decoration: none;
  color: #8d7962;
}

.page-text-img {
  float: left;
  height: 286px;
  width: 476px;
  margin-right: 35px;
  margin-bottom: 15px;
}

/*end page-content*/

/*download*/

.page-title-news-1 {
  color: rgba(var(--cor-ouro));
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
}

.downloadBlock {
  text-align: center;
  padding: 35px;
  margin: 0px 35px;
}

.downloadBlock p {
  margin-bottom: 30px;
}

.download-block-1 {
  margin-bottom: 40px;
}

.download-block-1:last-child {
  margin-bottom: 0px;
}

.client-text {
  margin-right: 50px;
  width: 255px;
  height: 90px;
  color: #f7ddbf;
  flex-wrap: wrap;
  align-content: center;
  background: #2e2524;
}

.client-text span {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 9px;
}

.center-content {
  margin: auto;
  width: 90%;
  padding: 10px;
}

.center-content-equipments {
  margin: auto;
  width: 40%;
  padding: 10px;
}

thead tr th {
  padding: 10px 5px 5px;
  margin: 0 auto;
  border: 1px #482c22 solid;
  top: 5px;
}

td a:hover {
  color: rgba(var(--cor-ouro));
  text-decoration: none;
}

.notification {
  display: inline-block;
  padding: 5px 9px 9px;
  background: #8d7962;
  color: rgba(var(--cor-ouro));
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  border-radius: 12px;
  margin: -35px;
  margin-left: 40px;
}

.page-gateways img {
  width: 250px;
  border: 1px #8d7962 solid;
  padding: 0 auto;
  position: relative;
  margin-left: 10px;
  left: 250px;
}

.center-gateways {
  margin: auto;
  width: 50%;
  padding: 10px;
  display: inline-flex;
}

.container-info span {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
}

.container-error span {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
}

.container-alert span {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
}

.container-success span {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
}

.alert.dismessable.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
}

.alert.dismessable.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
}

.error-message label {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 0.45rem 10.98rem;
  margin-bottom: 1rem;
  //position: absolute;
  border: 1px solid transparent;
  //border-radius: 0.25rem;
  align-content: center;
}

.rates p.title {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  padding: 0.45rem 12.8rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  align-content: center;
  text-align: center;
}

.page-character {
  display: inline;
  position: relative;
  margin-left: 10px;
  padding: 0px 10px 0px;
}

.page-character.name {
  font-size: 14px;
  font-weight: bold;
  color: #c3e6cb;
  position: absolute;
  padding: 93px 27px;
  display: inline;
}

.page-character.photo img {
  max-width: 100%;
  align-content: center;
  border: 1px solid rgba(var(--cor-ouro));
  border-radius: 5px;
  display: inline;
  position: relative;
  padding: 8px 8px 15px;
  top: 10px;
}

.package-content {
  display: none;
}
.package-content.active {
  display: block;
}

/**
    Tooltip Package
**/


.tooltip-target {
    position: relative;
    cursor: pointer;
}

.tooltip-content {
    position: fixed;
    background-color: #000 !important;
    border: 1px solid #444 !important;
    color: #656565;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: normal;
    z-index: 1000;
    display: none;
    pointer-events: none;
    opacity: 1;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); 
    isolation: isolate;
}
.tooltip-content strong {
    color: #fff;
    margin: 0px 0px 0px 0px;
    display: block;
}
.tooltip-content .images {
    display: flex;
}
.tooltip-content img {
    max-width: 100px;
    display: block;
    margin: 5px 0;
}
.cs {
    background: url('../images/castle.jpg') no-repeat top center;
    width: 100%;
    height: 380px;
    background-size: cover;
    position: relative;
    font-family: "Candara", "Verdana";
}
.cs:before {
    content: '';
    width: 25%;
    position: absolute;
    top: 70px;
    bottom: 70px;
    left: 70px;
    border: solid #ffc722;
    border-width: 1px 0 1px 1px;
}
.cs:after {
    content: '';
    width: 25%;
    position: absolute;
    top: 70px;
    bottom: 70px;
    right: 70px;
    border: solid #ffc722;
    border-width: 1px 1px 1px 0;
}
.cs h3 {
    padding-bottom: 17px;
    font-size: 38px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 46px 0px 0px 0px;
}
.cs h3 span {
    color: #ffc722;
}
.cs .intro-text {
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    text-align: center;
}
.cs .intro-text span {
    color: #ffc722;
}
.cs .flex {
    display: flex;
    margin: 36px 0px 0px 0px;  
}
.cs .a {
    display: flex;
    margin: 0px 0px 0px 0px;
    gap: 15px;
    align-items: center;
    padding: 0px 0px 0px 274px;
}
.cs .d {
    
}
.cs .d p {
    font-size: 2rem;
    color: #fff;
}
.cs .d span {
    filter: drop-shadow(var(--drop-orange-1));
    color: rgba(var(--cor-ouro));
    display: block;
    padding: 5px 0px 0px 0px;
}
.cs .m {
    margin: 0px 0px 0px 80px; 
}
.cs .m .last-match-title {
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    float: left;
    line-height: normal;
}
.cs .m .last-match-title span {
    color: #ffc722;
}
.cs .m .l {
    background: rgba(0,0,0,0.2);
    display: flex;
    margin: 10px 0px 0px 0px;
    padding: 5px 0px;
    align-items: center;
}
.cs .m .l img {
    margin: 0px 0px 0px 10px;
    display: block;
}
.cs .m .l p {
    padding: 0 14px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.cs .c {
    margin: 12px 0px 0px 0px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 22px;
    text-transform: uppercase;
}
.cs .c strong {
    color: #999;
    display: block;
    text-transform: none;
}
.terms-new {
    white-space: pre-line;
    text-align: left;
    display: none;
    flex-direction: column;
    padding: 15px;
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    background-color: rgba(var(--cor-marrom-4));
    background-clip: border-box;
    border: 1px solid rgba(var(--cor-marrom-3));
    border-radius: 0.25rem;
    white-space: pre-line;
}
.tituloTermo {
    --bs-text-opacity: 1;
    color: rgba(var(--cor-ouro), var(--bs-text-opacity)) !important;
    font-size: 1rem;
}
.navbar-news {
    margin: 40px 0 0 80px;
    padding: 0 10px;
    display: flex;
    gap: 20px;
}
.navbar-news a {
    display: block;
    color: #f7ddbf !important;
    height: 26px !important;
}
.navbar-news a.active {
    color: rgba(var(--cor-ouro)) !important;
    border-bottom: 1px solid rgba(var(--cor-ouro));
}
}