.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  z-index: 2;
  padding: 15px 0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  left: 0;
  width: 250px;
  margin-top: 38px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -20px, 0);
  transition: 0.2s;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.dropdown-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: -5px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #fff transparent;
}

.dropdown-menu li {
  margin-left: 0px !important;
}

.dropdown-menu li a {
  padding: 15px 20px !important;
  font-weight: 500 !important;
  text-align: left !important;
  color: var(--black) !important;
  border: none !important;
  margin-top: 0px !important;
  border-radius: 0px !important;
}

.dropdown-menu li a > i {
  margin-right: 5px;
}

.dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #00b9bb !important;
}

.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  opacity: 0;
}

.modal.open {
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 1;
}

.modal.open .modal-wrap {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-wrap.modal-sm {
  max-width: 400px;
}

.modal-wrap {
  position: absolute;
  left: 0;
  right: 0;
  margin: 30px auto;
  background: #fff;
  width: 95%;
  max-width: 600px;
  height: auto;
  -webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.modal-btn-close {
  position: absolute;
  top: 22px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 999;
}

.modal-btn-close::before,
.modal-btn-close::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 50%;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}

.modal-btn-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal-btn-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal-btn-close:hover::before,
.modal-btn-close:hover::after {
  background: #00b9bb;
}

.modal-header {
  float: left;
  width: 100%;
  padding: 20px 15px 15px;
  background: none;
}

.modal-titulo {
  display: block;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}

.modal-body {
  float: left;
  width: 100%;
  padding: 40px;
  padding-top: 0px;
}

.opt-login {
  position: relative;
  margin: 20px 0;
  text-align: center;
}

.opt-login span {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 16px;
  text-align: center;
}

.campo-icon {
  position: relative;
}
.campo-container {
  position: relative;
  margin-bottom: 20px;
}

.link-rec {
  display: block;
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
}

.link {
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #00b9bb;
}

.link:hover {
  color: #00404c;
}

.btn-container {
  float: left;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.btn-container-login {
  margin-top: 0px;
}

.texto.opt {
  float: left;
  width: 100%;
  color: #777;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}
.texto {
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #777;
}

.campo-icon .campo {
  padding-left: 45px;
}
.campo {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.campo-icon > .icon {
  position: absolute;
  left: 15px;
  top: 12px;
  cursor: pointer;
}
.campo-container label {
  display: inline-block;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  background: #ededed;
  border: 1px solid #ededed;
  border-radius: 25px;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  padding: 15px 30px;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.btn.btn-facebook {
  font-size: 14px;
  border-color: #3b5998;
  background: #3b5998;
  color: #fff;
}

.btn.btn-primario {
  border-color: #00b9bb;
  background: #00b9bb;
  color: #fff;
}

.btn.btn-primario:hover {
  background: #00404c;
  border-color: #00404c;
}

.btn.btn-full {
  width: 100%;
}

.opt-login::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ddd;
}

.campo-container.cr-container .cr-lbl .checkbox {
  position: relative;
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  background: #ddd;
  margin-right: 5px;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.campo-container.cr-container .cr-lbl input:checked + .checkbox {
  background: #00b9bb;
  border-color: #00b9bb;
}

.campo-container.cr-container .cr-lbl input:checked + .checkbox::before {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 5.5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.campo-container.cr-container .cr-lbl input:checked ~ span {
  color: #333;
}
.campo-container.cr-container .cr-lbl > span {
  display: inline;
  font-weight: 600;
  color: #777;
  margin-bottom: 20px;
}

.container.publicidade,
.publicidade {
  padding: 0px;
  margin-bottom: 35px;
  clear: both;
}

aside .mapa {
  margin-bottom: 25px;
}

.divider {
  margin-top: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(196, 196, 196, 0.5);
  clear: both;
}

.mt-40 {
  margin-top: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.w728 {
  width: 760px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.w728 .ad {
  width: 728px !important;
  margin: 0 auto;
}

.hide-desktop {
  display: none !important;
}

.separador {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
