/* Bloque de fuentes */

@font-face {
  font-family: NaturaAndCo-Bold;
  src: url(../fonts/NaturaAndCo-Bold.ttf);
}

@font-face {
  font-family: NaturaAndCo-Book;
  src: url(../fonts/NaturaAndCo-Book.ttf);
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* General */

:root {
  --color-primary: #ae0025;
  --color-secondary: #ff005e;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5e4ef;
}

.text-primary-custom {
  color: var(--color-primary) !important;
}

.text-secondary-custom {
  color: var(--color-secondary) !important;
}

.bg-primary-custom {
  background-color: var(--color-primary) !important;
}

.bg-secondary-custom {
  background-color: var(--color-secondary) !important;
}

.text-1 {
  color: #ff6000 !important;
}

.bg-1 {
  background-color: #ff6000 !important;
}

.btn-1 {
  background-color: #ff6000 !important;
  color: #fff !important;
}

.btn-1:hover,
.btn-1:focus,
.btn-1:active {
  background-color: #ff7017 !important;
  color: #fff !important;
}

.text-2 {
  color: #f69c00 !important;
}

.bg-2 {
  background-color: #f69c00 !important;
}

.btn-2 {
  background-color: #f69c00 !important;
  color: #fff !important;
}

.btn-2:hover,
.btn-2:focus,
.btn-2:active {
  background-color: #f7a517 !important;
  color: #fff !important;
}

.text-3 {
  color: #006ee6 !important;
}

.bg-3 {
  background-color: #006ee6 !important;
}

.btn-3 {
  background-color: #006ee6 !important;
  color: #fff !important;
}

.btn-3:hover,
.btn-3:focus,
.btn-3:active {
  background-color: #0077f0 !important;
  color: #fff !important;
}

.text-4 {
  color: #ff005e !important;
}

.bg-4 {
  background-color: #ff005e !important;
}

.btn-4 {
  background-color: #ff005e !important;
  color: #fff !important;
}

.btn-4:hover,
.btn-4:focus,
.btn-4:active {
  background-color: #ff0067 !important;
  color: #fff !important;
}

.btn-all {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

.btn-all:hover,
.btn-all:focus,
.btn-all:active {
  background-color: var(--color-secondary) !important;
  color: #fff !important;
}

body {
  font-family: NaturaAndCo-Book, sans-serif;
  overflow-x: hidden;
}

p {
  font-family: NaturaAndCo-Book, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: NaturaAndCo-Bold;
}

.btn-primary-custom {
  background: var(--color-primary) !important;
  color: #fff !important;
  border-radius: 5px !important;
  margin: 0 auto 0;
}

.btn-primary-custom:hover {
  background: var(--color-secondary) !important;
}

.btn-secondary-custom {
  background: var(--color-secondary) !important;
  color: #fff !important;
  border-radius: 5px !important;
  margin: 0 auto 0;
}

.btn-secondary-custom:hover {
  background: var(--color-primary) !important;
}

.form-login-container {
  display: flex;
  justify-content: center;
}

.form-login-container form {
  width: 75%;
}

.banner-buscamos {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-rrhhroad-theme {
  background-color: #f0f2ef;
}

p a:hover {
  color: #4c4c4c;
}

p a {
  color: #000;
  text-decoration: none;
}

.bg-principal {
  background-color: var(--color-primary);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  -webkit-border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(100, 100, 100, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.fs-7 {
  font-size: 0.875rem;
}

.fs-8 {
  font-size: 0.75rem;
}

.btn {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.084)) drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.168));
  padding: 0 15px;
  min-width: 200px;
  width: auto;
  min-height: 40px !important;
  background: var(--color-bg-primary);
  border-radius: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-decoration: none;
  display: block;
}

.btn-term-form {
  width: auto !important;
}

.btn-rotas {
  width: 270px !important;
}

.btn a {
  color: inherit;
  text-decoration: none;
}

.disabled {
  color: #c2c2c2 !important;
}

.speech-bubble {
  position: absolute;
  top: 0;
  left: -225px;
  background-color: #fdeff2;
  color: #e6007e;
  font-weight: 700;
  padding: 1.5rem 3.25rem;
  border-radius: 100%;
  font-size: 2rem;
  line-height: 1.2;
  z-index: 2;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 5px;
  border-width: 50px 0px 0 40px;
  border-style: solid;
  border-color: #fdeff2 transparent transparent transparent;
  rotate: -30deg;
  z-index: -1;
}

.route-disabled {
  filter: grayscale(1);
  pointer-events: none;
}

.router-disabled button {
  pointer-events: none;
}

#road-filter-menu button {
  min-width: 160px;
}

#road-filter-menu button img {
  max-height: 35px;
}

#modal-ranking .modal-header {
  height: 60px;
}

#modal-ranking .modal-body .container:first-child {
  height: 80dvh;
  display: flex;
  flex-direction: column;
}

#modal-ranking .modal-body .container:first-child .row:first-child {
  flex: 0 0 100px;
}

#modal-ranking .modal-body .modal-winners {
  flex: 1 1 auto;
}

#modal-ranking .modal-body .modal-road {
  flex: 1 1 auto;
  overflow-y: auto;
}

#modal-ranking .modal-body .modal-road .persons {
  border-radius: 20px;
}

#modal-ranking .modal-body .modal-road .persons img,
#modal-ranking .modal-body .winner .picture {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

#modal-ranking .modal-body .winner .picture {
  border-radius: 100%;
  width: 75px;
  height: 75px;
  object-fit: cover;
}

#modal-ranking .modal-body .winner .cap {
  top: -30px;
  left: 15px;
  max-width: 60px;
}

.profile .avatar img {
  border-radius: 100%;
}

.login-bg,
.terms {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

td.bg-green {
  text-align: center !important;
}

td.bg-red {
  text-align: center !important;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background: gray;
  filter: grayscale(1);
  opacity: 1;
}

.dashboard table {
  vertical-align: middle;
}

.dashboard .dt-container .row:first-child {
  margin-bottom: 20px;
}

.dashboard .dt-buttons {
  gap: 10px;
}

.dashboard .dt-buttons .btn.btn-secondary {
  border-radius: 1rem !important;
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border: none !important;
  font-size: 0.8rem !important;
  min-width: auto !important;
}

.dashboard .dt-buttons .btn.btn-secondary:hover {
  background-color: var(--color-secondary) !important;
}

.dashboard .page-link {
  color: var(--color-primary) !important;
  background-color: var(--color-bg-primary) !important;
}

.dashboard .page-link:hover {
  color: var(--color-secondary) !important;
  background-color: var(--color-bg-primary) !important;
}

.dashboard .disabled .page-link {
  color: #c2c2c2 !important;
  background-color: var(--color-bg-primary) !important;
}

.dashboard .active .page-link {
  border-color: var(--color-primary) !important;
}

.dashboard .active .page-link:focus {
  color: var(--color-primary) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 93, 0.25);
}

.dt-search {
  margin-bottom: 20px;
}

.dt-search label {
  color: var(--color-primary) !important;
  margin-bottom: 10px;
}

.dt-search input {
  min-width: 250px;
}

.dt-search input:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 93, 0.25);
}

img.disabled {
  filter: grayscale(1);
}

.btn:disabled:after {
  content: "🔒";
  width: 16px;
  height: 16px;
  position: relative;
  right: -15px;
}

.btn.disabled:after {
  content: "🔒";
  width: 16px;
  height: 16px;
  position: relative;
  right: -5px;
  top: -1px
}

.w-30 {
  width: 50px;
}

nav button.navbar-toggler {
  position: absolute;
  right: 0;
  top: 25px;
}

span.navbar-toggler-icon {
  font-size: 30px;
  color: #fff;
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

/* Home */

.bg-rrhhroad {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.site-header {
  background-color: var(--color-primary);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.video iframe {
  height: 360px !important;
  bottom: 0 !important;
}

.home h1,
.home h2 {
  font-family: "NaturaAndCo-Book";
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: normal;
  color: #000;
  margin: 40px auto;
}

.home h3 {
  font-family: "NaturaAndCo-Book";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: #000;
  margin: 0 auto;
}

.home p {
  font-size: 14px;
}

.dashboard table img {
  border-radius: 100%;
}

.site-header a {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: inherit;
  font-family: "NaturaAndCo-Book";
  text-align: left;
  text-decoration: none;
}

.site-header a:hover {
  color: #f7f7f7;
}

ul li {
  font-family: "NaturaAndCo-Book";
}

.box {
  background: var(--color-bg-primary);
}

.box a {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.084)) drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.168));
  padding: 10px 15px;
  width: 250px;
  height: auto;
  background: var(--color-bg-primary);
  border-radius: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-decoration: none;
  margin: 40px auto 0;
  display: block;
}

.p-3.position-relative.text-left.bg-mascota .btn {
  background: var(--color-primary);
  margin: 0 auto 10px;
}

.box h1,
.box h2 {
  font-family: NaturaAndCo-Bold !important;
  font-style: normal;
  font-weight: 700;
  font-size: 27px;
  line-height: 38px;
  text-align: center;
  color: #000;
  margin: 40px auto;
  text-transform: uppercase;
}

.bg-banner {
  background: var(--color-primary);
  padding: 70px 0;
  color: #fff;
}

.bg-banner-white {
  background: var(--color-bg-primary);
  padding: 70px 0;
  color: var(--color-secondary);
}

.bg-banner-white-grafico {
  background: var(--color-bg-primary);
  padding: 70px 0;
  background-image: url(../img/bg_white.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: inherit;
}

.bg-banner-oque {
  background: url(../img/banner_oque.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-rrhhroad .col-md-4 div {
  font-size: 40px;
}

.box-mascota,
.box-card {
  position: relative;
  height: 200px;
}

.box-card img {
  position: absolute;
  right: -60px;
  top: 0px;
  width: 280px;
}

.box-mascota img {
  position: absolute;
  right: -130px;
  top: -50px;
  width: auto;
}

.terms .no-h p.lead.text-start {
  height: auto !important;
  overflow: inherit !important;
}

ul.dropdown-menu.show {
  background: var(--color-primary);
  padding: 0;
  margin: 0 auto;
  position: relative;
  top: 50px !important;
  border: 0;
  border-radius: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  left: 50px;
}

ul.dropdown-menu.show li a {
  padding: 5px 40px;
  font-size: 16px;
  position: relative;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:active,
.site-header .dropdown-item:focus {
  background-color: var(--color-secondary);
  color: #fff;
}

.dropdown-item.disabled:before {
  content: "🔒";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 10px;
}

nav a.px-4.d-none.d-md-inline-block span:hover,
nav a.px-4.d-none.d-md-inline-block.active span {
  border-bottom: 1px solid #f7f7f7;
}

.nav-link:focus,
.nav-link:hover {
  color: #f7f7f7 !important;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #b4b4b4 !important;
  pointer-events: none;
  background-color: transparent;
  filter: grayscale(1);
}


.nav-sub-item {
  padding: 5px 5px;
  font-size: 16px;
  color: #FFF;
}

.nav-sub-item ul {
  padding: 0;
}

.nav-sub-item ul li {
  list-style: none;
}

/* Rutas */
.bg-rotas {
  position: relative;
}

.bg-rotas img.fondo {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.map {
  position: absolute;
  z-index: 9;
  cursor: pointer;
}

.map img {
  object-fit: contain;
  width: 110px;
}

.map.position-1 {
  top: 16%;
  left: 25%;
}

.map.position-2 {
  top: 22%;
  left: 42%;
}

.map.position-3 {
  top: 40%;
  left: 53%;
}

.map.position-4 {
  top: 60%;
  left: 50%;
}

.map.position-5 {
  top: 82%;
  left: 54%;
}

.map.position-6 {
  top: 76%;
  left: 70%;
}

.map:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 45px;
  background-color: inherit;
  border-radius: 0 10px 10px 0;
  right: -40px;
  top: 12px;
  z-index: -1;
  box-shadow: 11px 0 11px 0.01rem rgb(0 0 0 / 57%);
  pointer-events: none;
  cursor: pointer;
}

.map.done:after {
  content: "✅";
  width: 16px;
  height: 16px;
  position: absolute;
  right: -20px;
  top: 23px;
  pointer-events: none;
  cursor: pointer;
}

.map.ini:after {
  content: "▶️";
  width: 16px;
  height: 16px;
  position: absolute;
  right: -20px;
  top: 23px;
  filter: grayscale(1);
}

.map.disabled:after {
  content: "🔒";
  width: 16px;
  height: 16px;
  position: absolute;
  right: -10px;
  top: 23px;
}

.map.disabled {
  filter: grayscale(1);
  pointer-events: none;
}

.bg-mascota .done:after {
  content: "✅";
}

.bg-mascota .ini:after {
  content: "▶️";
  filter: grayscale(1);
}

.bg-mascota .disabled:after {
  content: "🔒";
}

.roads .btn-roads button {
  min-width: 280px;
  height: 60px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.roads .btn-roads button img {
  max-height: 30px;
}

.roads .map {
  display: flex;
  padding: 20px;
  border-radius: 100%;
  box-shadow: 2px 0 9px 0.06rem rgb(0 0 0 / 74%);
}

.roads .btn-maps {
  width: 30px;
  height: auto;
}

form input,
form textarea {
  background: #d9d9d9 !important;
  border-radius: 5px !important;
}

form input {
  background-color: var(--color-bg-primary) !important;
}

form input:focus {
  background: var(--color-bg-primary) !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 0 4px 0.01rem var(--color-secondary) !important;
}

.bg-blue {
  background: #00c1b9;
  box-shadow: 0 3px 9px -1px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: #fff;
}

.progress {
  height: 40px;
  border-radius: 0 !important;
}

.progress .progress-bar {
  background: var(--color-primary);
}

span.text-bar {
  position: absolute;
  top: 10px;
  text-align: center;
  width: 100%;
  font-weight: 700;
}

/* Que e somos */

.bg-h .box-side-b img {
  right: 0;
  position: relative;
}

.bg-lg {
  background: #faedd7;
}

.bg-mascota {
  background: var(--color-bg-primary);
}

.bg-footer-black {
  background: #383738;
}

.box-side img {
  object-fit: cover;
  right: 0;
  top: -50px !important;
  position: relative;
}

.site-header a span img {
  object-fit: cover;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 100%;
}

div#accordion .card,
div#accordion .card-header {
  padding: 0 !important;
  margin: 0 auto 10px !important;
  border-radius: 0 !important;
  width: 100% !important;
  display: block !important;
  box-shadow: none !important;
  background: transparent;
  border: 0 !important;
}

div#accordion .card .card-body {
  color: var(--color-primary);
}

div#accordion .card-header a.btn {
  padding: 10px !important;
  margin: 0 !important;
  width: 100% !important;
  min-height: auto !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: var(--color-primary) !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  text-align: left;
  color: #fff;
  filter: none !important;
}

.bg-ligth {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin: 0 auto;
}

.bg-light-custom {
  background: var(--color-bg-secondary);
}

/* Terminos */
.terms .box {
  background: var(--color-bg-primary);
  position: relative;
}

.content-card-terms {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.terms .box p.text-start {
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
  height: 187px;
  overflow: hidden;
}

.terms .box p.text-left {
  text-align: left;
}

.terms .progressbar {
  padding-inline-start: 0;
  margin-block-start: 0;
}

.main-content .wizard-form .progressbar-list::before {
  content: " ";
  background-color: var(--color-bg-primary);
  border: 10px solid var(--color-secondary);
  border-radius: 50%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 20px auto;
  box-shadow: none;
  transition: all;
  z-index: 12;
  position: inherit;
  padding: 2px 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-secondary);
}

ul#progressBar #progressList-1.active::before {
  content: "01";
  border: 1px solid var(--color-secondary);
}

ul#progressBar #progressList-2.active::before {
  content: "02";
  border: 1px solid var(--color-secondary);
}

ul#progressBar #progressList-3.active::before {
  content: "03";
  border: 1px solid var(--color-secondary);
}

ul#progressBar #progressList-4.active::before {
  content: "04";
  border: 1px solid var(--color-secondary);
}

ul#progressBar #progressList-1.activated::before {
  content: "\2714";
  background-color: var(--color-secondary);
  color: #fff;
}

ul#progressBar #progressList-2.activated::before {
  content: "\2714";
  background-color: var(--color-secondary);
  color: #fff;
}

ul#progressBar #progressList-3.activated::before {
  content: "\2714";
  background-color: var(--color-secondary);
  color: #fff;
}

ul#progressBar #progressList-4.activated::before {
  content: "\2714";
  background-color: var(--color-secondary);
  color: #fff;
}

.main-content .wizard-form .progressbar-list::after {
  content: "";
  border-top: 2px dashed var(--color-secondary);
  padding: 0;
  position: absolute;
  top: 25px;
  left: -50%;
  width: 100%;
  height: 2px;
  margin: 9px auto;
  z-index: 0;
  transition: all 0.8s;
}

.main-content .wizard-form .progressbar-list.active::after {
  background-color: var(--color-secondary);
}

.main-content .wizard-form .progressbar-list:first-child::after {
  content: none;
}

.main-content .wizard-form .progressbar-list.active::before {
  background-color: var(--color-bg-primary);
  box-shadow: none;
}

.progressbar-list {
  width: 25%;
}

.back-to-wizard {
  transform: translate(-50%, -139%) !important;
}

.bg-success-color {
  background-color: #87d185;
}

.bg-success-color:focus {
  box-shadow: 0 0 0 0.25rem #8c0000;
}

.p-4.text-left.bg-lg hr {
  color: var(--color-primary);
  border: 3px solid var(--color-primary);
  opacity: 1;
  width: 300px;
}

.blue {
  background: #00c1b9 !important;
  color: #fff !important;
}

/* FAQ */
.bg-banner-faq {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 480px;
}

.faq-mascota img {
  position: absolute;
  top: -30px;
}

.bg-banner-faq .row {
  min-height: 480px;
}

.faq {
  padding-bottom: 60px !important;
}

.bg-banner-faq form {
  background: var(--color-bg-primary);
  padding: 40px 60px;
  top: -150px !important;
  position: absolute;
  border-radius: 10px;
}

div#accordion .card-body img {
  height: 280px;
  width: auto;
}

.bg-mascota2 {
  background: #fff;
}

/*Modals*/

.modal-header,
.modal-header h5 {
  border-bottom: 0;
  color: #000;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  font-family: NaturaAndCo-Book !important;
  text-align: left;
}

/**
* Guia
*/
.guiaAnimadoFloat::after {
  content: "X";
  position: absolute;
  top: -20px;
  right: 0px;
  width: 30px;
  height: 30px;
  background-color: var(--color-secondary);
  color: #ffffff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

/** RNAKING **/

#ranking ul {
  list-style: none;
  position: relative;
  counter-reset: mi-contador;
}

#ranking ul li {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.hidden {
  display: none !important;
}

.lista li:before {
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-color: #000;
  border-radius: 50px;
  content: counter(mi-contador) "";
  counter-increment: mi-contador;
  color: #fff;
  padding: 0px;
  text-align: center;
}

#ranking ul li:nth-of-type(3)::before {
  background-image: url(../img/r3.png);
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-color: transparent;
}

#ranking ul li:nth-of-type(2):before {
  background-image: url(../img/r2.png);
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-color: transparent;
}

#ranking ul li:nth-of-type(1):before {
  background-image: url(../img/r1.png);
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-color: transparent;
}

.btn-ranking button,
.btn-ranking-movil {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.084)) drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.168));
  padding: 0 15px;
  width: auto;
  min-height: 40px !important;
  background: var(--color-bg-primary);
  border-radius: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-decoration: none;
  margin: 10px auto 0;
}

.uppercase h1 {
  text-transform: uppercase;
}

.uppercase h1 img {
  width: auto;
  position: relative;
  top: -5px;
  height: 70px;
  margin-right: 10px;
}

.modal-content {
  border-radius: 1rem;
}

.content-postais img {
  width: 100%;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.content-postais {
  width: 100%;
  position: relative;
  transition: all 0.5s;
  top: 0;
  overflow: hidden;
}

.content-postais:hover {
  top: -10px;
}

.content-postais .overlay-postais {
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: url("../img/postal.jpg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  opacity: 0;
  padding: 30px;
}

.content-postais:hover .overlay-postais {
  opacity: 1;
}

.content-postais .overlay-postais img {
  box-shadow: none;
  max-width: 100%;
  height: auto;
}

.content-postais .overlay-postais .col-3,
.content-postais .overlay-postais .col-9 {
  float: left;
  margin: 0 auto;
}

.content-postais .overlay-postais .col-8 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.content-postais .overlay-postais .col-8 h4 {
  font-size: 16px;
  font-weight: bold;
  margin-left: 10px;
  margin-bottom: 0;
}

.content-postais .overlay-postais .col-4 img {
  width: 59px;
  height: 59px;
  margin-right: 15px;
  margin-left: auto;
  display: block;
}

.content-postais .overlay-postais p {
  margin: 16px auto 0 auto;
  text-align: justify;
  line-height: 30px;
}

ul.pagination li.active a {
  font-weight: bold;
  color: #000 !important;
}

ul.pagination li a {
  font-size: 22px;
  text-align: center;
  padding: 0 10px;
  color: #000 !important;
  text-decoration: none;
  font-family: NaturaAndCo-Book;
}

ul.pagination {
  margin: 40px auto;
  align-items: center !important;
  justify-content: center;
  text-align: center;
}

select.filtro-rotas,
button#capturar,
button#btnCSV {
  padding: 10px;
  background: #383738;
  color: #fff;
  font-family: "Roboto", sans-serif !important;
  font-size: 18px;
  line-height: normal;
  border: 0;
  border-radius: 5px;
}

.loop-postais .im-rota {
  position: absolute;
  right: 25px;
  width: 50px;
  top: 10px;
}

td.detalle {
  position: relative;
  top: 0;
  bottom: 0;
  background-image: url(../img/postal_without_logos.jpg);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.5s ease;
  opacity: 1;
  padding: 40px 55px;
  height: inherit;
}

td.detalle .col-4 img {
  width: 40%;
  border-radius: 50px;
}

.ranking-page .persons {
  min-height: 80px;
  border-radius: 10px;
}

.ranking-page .persons img {
  border-radius: 100%;
}


.floating-button-container {
  position: fixed;
  top: 18%;
  right: 20px; /* Distância da lateral esquerda da tela */
  transform: translateY(-50%);
  text-align: left;
  z-index: 10000;
}

#floatBtn {
  display: flex;
  align-items: center;
  gap: 8px; /* espaçamento entre ícone e texto */
  background-color: white;
  border: 1px solid #ae0025;
  padding: 10px 16px;
  border-radius: 30px;
  color: #ae0025;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#floatBtn .icon {
  display: flex;
  align-items: center;
}

#floatBtn .label {
  display: inline-block;
}

#selectMenu {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hidden {
  display: none;
}

/* Media querys */

@media only screen and (min-width: 1680px) {
  .map img {
    object-fit: contain;
    width: 130px;
  }
}

@media only screen and (max-width: 1679px) {

  .home h1,
  .home h2 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 1366px) {
  .form-login-container form {
    width: 100%;
  }

  .home h3 {
    font-size: 27px;
  }

  .content-postais .overlay-postais p {
    line-height: 25px;
    font-size: 11px;
  }
}

@media only screen and (max-width: 1023px) {
  #modal-ranking .modal-body .container:first-child {
    height: calc(100dvh - 60px);
  }

  div#navbarNavAltMarkup {
    position: fixed;
    left: 0 !important;
    height: auto;
    z-index: 999999 !important;
    width: 100% !important;
    top: 100px !important;
    background: var(--color-primary);
    border-bottom: 3px solid #ddd;
  }

  ul.navbar-nav.align-items-center li {
    width: auto;
    padding: 5px 0 !important;
  }

  button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none !important;
  }

  ul.navbar-nav.align-items-center {
    padding: 0;
  }

  #navbarNavAltMarkup .align-items-center {
    align-items: start !important;
  }

  .video iframe {
    height: 230px !important;
    bottom: 0 !important;
  }

  ul.dropdown-menu.show {
    top: 0 !important;
    left: 0 !important;
    background: var(--color-primary);
    box-shadow: none;
  }

  .site-header .dropdown-item:hover,
  .site-header .dropdown-item:active,
  .site-header .dropdown-item:focus {
    color: #f7f7f7;
    background-color: var(--color-primary);
  }

  ul.navbar-nav.align-items-center {
    background: var(--color-primary);
    padding: 15px;
  }

  ul.navbar-nav.align-items-center .d-none {
    display: block !important;
  }

  .content-postais .overlay-postais p {
    line-height: 23px;
    font-size: 10px;
  }
}

@media only screen and (max-width: 820px) {
  .content-postais .overlay-postais p {
    margin: 12px auto 0 auto;
    line-height: 20px;
  }

  .speech-bubble {
    left: -170px;
    font-size: 1rem;
    padding: 1.25rem 2.25rem;
  }

  #img-nia {
    max-height: 150px;
  }

  .profile .avatar img {
    border-radius: 100%;
    max-width: 100px;
  }
}

@media only screen and (max-width: 400px) {
  .terms {
    background: var(--color-bg-primary);
  }

  #road-filter-menu button {
    min-width: 60px;
  }

  #road-filter-menu button img {
    max-height: 30px;
  }

  .profile .bg-ligth,
  .roads .bg-ligth {
    border-radius: 0;
  }

  .home {
    background: none !important;
  }
}

@media only screen and (max-width: 320px) {
  #img-nia {
    max-height: 130px;
  }

  .ballonImageguiaAnimadoFloat {
    bottom: 25px !important;
    right: 120px !important;
  }

  .ImageguiaAnimadoFloat {
    height: 150px !important;
  }

  #road-filter-menu button {
    min-width: 50px;
  }

  #road-filter-menu button img {
    max-height: 25px;
  }
}

/**
* Modal Force FullScreen
*/
@media (max-width: 768px) {
  .fullscreen-modal .modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: auto;
  }

  .fullscreen-modal .modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
  }

  #interactions .modal-body iframe {
    height: 100% !important;
    min-height: 100% !important;
  }

  .success-desafio {
    margin-bottom: 40px !important;
  }

  .modal-body {
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .box {
    height: 100%;
    border-radius: 0 !important;
    align-content: center !important;
  }

  .content-card-terms {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .box-mascota img,
  .box-card img {
    position: relative;
    right: 0;
    top: 0;
    left: 0;
    width: 100%;
  }

  .box-mascota img {
    width: 60% !important;
  }

  .bg-rotas {
    display: none;
  }

  .bg-h {
    height: auto !important;
  }

  .box-side img {
    top: 0 !important;
  }

  .box-mascota,
  .box-card {
    position: relative;
    height: auto !important;
  }

  .faq-mascota img {
    position: relative;
    top: 0;
    right: 0;
  }

  .bg-banner-faq {
    height: auto !important;
  }

  div#accordion .card-header a.btn {
    font-size: 18px;
  }

  .faq {
    padding-bottom: 50px !important;
  }

  .mt-2.video {
    height: 250px !important;
  }
}

@media only screen and (max-width: 414px) {
  .content-postais .overlay-postais p {
    margin: 15px auto 0 auto;
    line-height: 23px;
    font-size: 10px;
  }

  .w-50 {
    width: 100% !important;
  }
}