.home-main {
  padding: 20px 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  height: 100% !important;
  min-height: 80vh;
  max-width: 100%;
  width: 90vw;
  margin: 0 auto;
  margin-top: 30px;
  background-color: #fafafa;
}
.home-main .animal-selector-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 25px;
  background-color: #ffffff;
  width: 167px;
  height: 185px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  padding: 10px;
  cursor: pointer;
  border: 3px solid #d2d2d2;
  transition: all 0.1s ease-in-out;
  margin-bottom: 30px;
}
.home-main .animal-selector-button:hover {
  width: 177px;
  height: 195px;
}
.home-main .animal-selector-button span {
  font-size: 23px;
  font-weight: bold;
  color: #444;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.home-main .animal-selector-button img {
  width: 140px;
}

.anuncios-main {
  display: flex;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  margin: 30px auto;
  background-color: #fafafa;
}

.filtros-container {
  flex: 1;
  padding: 10px;
  height: 1000px;
  background-color: #DBDBDB;
  padding-top: 60px;
}
.filtros-container #formulario-filtro {
  display: flex;
  flex-direction: column;
}
.filtros-container #formulario-filtro .form-control {
  margin-bottom: 6px;
}
.filtros-container #formulario-filtro .form-input-text {
  height: 40px;
  font-weight: bold;
  font-size: 16px;
  padding-left: 10px;
}

.anuncios-lista {
  flex: 4;
}
.anuncios-lista h2 {
  color: #3d3d3d;
  margin: 10 0;
}
.anuncios-lista .anuncio {
  display: flex;
  background: #EAEAEA;
  margin-bottom: 10px;
}
.anuncios-lista .anuncio img {
  width: 150px;
}
.anuncios-lista .anuncio .detalhes-anuncio {
  margin-left: 14px;
}
.anuncios-lista .anuncio .detalhes-anuncio * {
  display: block;
}
.anuncios-lista .anuncio .detalhes-anuncio .titulo-anuncio {
  font-weight: normal;
  margin-top: 0;
}
.anuncios-lista .anuncio .detalhes-anuncio .autor-anuncio {
  color: #8c8c8c;
}
.anuncios-lista .anuncio .detalhes-anuncio .valor-anuncio {
  margin-top: 40px;
  font-weight: bold;
  color: #636363;
}
@media screen and (max-width: 767px) {
  .anuncios-lista .anuncio .detalhes-anuncio {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
  }
  .anuncios-lista .anuncio .detalhes-anuncio a .titulo-anuncio {
    margin-top: 8px;
    font-weight: bold;
  }
  .anuncios-lista .anuncio .detalhes-anuncio .autor-anuncio {
    font-size: 14px;
    color: #8c8c8c;
  }
  .anuncios-lista .anuncio .detalhes-anuncio .valor-anuncio {
    margin-top: 10px;
    font-weight: bold;
    color: #636363;
  }
}

hr {
  margin: 13px 0;
}

.anuncio-main {
  max-width: 850px;
  width: 100%;
  height: 100%;
  align-items: start;
  justify-content: space-between;
  margin: 30px auto;
  background-color: #fafafa;
}

.anuncio {
  display: grid;
  grid-template-areas: "img-anuncio detalhes-anuncio" "descricao-anuncio descricao-anuncio";
  padding: 40px;
  max-width: 100%;
}
.anuncio .img-anuncio-container {
  grid-area: img-anuncio;
  height: 450px;
  width: 450px;
  background: url("../public/assets/images/img-anuncio.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
}
.anuncio .img-anuncio-container img {
  width: 450px;
  max-width: 100%;
  max-height: 450px;
}
.anuncio .detalhes-anuncio-container {
  padding-top: 40px;
  padding-left: 10px;
  grid-area: detalhes-anuncio;
}
.anuncio .detalhes-anuncio-container * {
  display: block;
}
.anuncio .detalhes-anuncio-container h1 {
  margin-bottom: 12px;
}
.anuncio .descricao-anuncio-container {
  padding-top: 20px;
  grid-area: descricao-anuncio;
}
.anuncio .descricao-anuncio-container h2 {
  margin-bottom: 10px;
  font-weight: normal;
}
.anuncio .descricao-anuncio-container p {
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .anuncio-main {
    margin: 5px 0;
  }

  .anuncio {
    display: flex;
    padding: 10px;
    flex-direction: column;
  }
  .anuncio * {
    flex: 1;
  }
}
#lista-imagens {
  margin-top: 13px;
  padding: 0 13px;
  flex-wrap: wrap;
}
#lista-imagens img {
  max-width: 160px;
  border: 3px solid #a1a1a1;
}
@media screen and (max-width: 767px) {
  #lista-imagens img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}

.video-container {
  flex-direction: column;
}
.video-container #video-anuncio {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  #lista-imagens {
    justify-content: space-around;
  }
}
.perfil-main {
  background-color: #fafafa;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1000px;
  margin: 20px auto;
  max-width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.perfil-usuario {
  width: 100%;
}
.perfil-usuario .info-pessoal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 0 30px;
}
.perfil-usuario .info-pessoal .imagem-usuario img {
  width: 160px;
  border: 4px solid #c9c9c9;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}
.perfil-usuario .info-pessoal .info-usuario {
  padding-left: 30px;
}
.perfil-usuario .anuncios-usuario {
  margin-top: 80px;
  width: 100%;
}
.perfil-usuario .anuncios-usuario h2 {
  text-align: center;
}
.perfil-usuario .anuncios-usuario .lista-anuncios-usuario {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.perfil-usuario .anuncios-usuario .lista-anuncios-usuario .mini-anuncio {
  padding: 10px;
  border: 2px solid #c9c9c9;
  max-width: 200px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.perfil-usuario .anuncios-usuario .lista-anuncios-usuario .mini-anuncio img {
  max-width: 100%;
  width: 200px;
}
.perfil-usuario .anuncios-usuario .lista-anuncios-usuario .mini-anuncio h4 {
  margin-top: 8px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .perfil-main {
    margin-top: 10px !important;
  }
  .perfil-main .info-pessoal {
    padding: 0 10px;
  }
  .perfil-main .info-pessoal .info-usuario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
  .perfil-main .info-pessoal .info-usuario h1, .perfil-main .info-pessoal .info-usuario span {
    text-align: center;
  }

  .perfil-usuario .anuncios-usuario .lista-anuncios-usuario {
    flex-direction: column;
    align-items: center;
  }
  .perfil-usuario .anuncios-usuario .lista-anuncios-usuario .mini-anuncio {
    margin-right: 0;
  }
}
.perfil-form-main {
  height: 100%;
  margin-top: 10px;
  background-color: #fafafa;
}
.perfil-form-main h2 {
  color: #3d3d3d;
}

#perfil-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
}
#perfil-form input {
  font-size: 18px;
  padding-left: 5px;
  height: 40px;
}
#perfil-form #campos-primarios {
  display: flex;
  align-items: center;
}
#perfil-form #campos-primarios .inputfields {
  width: 100%;
}
#perfil-form #campos-primarios .inputfields label img {
  border: 3px solid #A9A9A9;
}
#perfil-form #campos-primarios .inputfields input {
  width: 100%;
  margin-bottom: 30px;
  margin-left: 13px;
}
#perfil-form #campos-primarios .inputfields input[type=file] {
  border: 1px solid #A9A9A9;
}
#perfil-form #campos-secundarios {
  margin-top: 30px;
}
#perfil-form #campos-secundarios input, #perfil-form #campos-secundarios span {
  display: block;
  width: 100%;
}
#perfil-form #campos-secundarios input {
  margin-bottom: 20px;
}
#perfil-form #campos-secundarios span {
  margin-top: 5px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  #perfil-form {
    flex-direction: row;
  }
  #perfil-form #campos-primarios {
    width: 100%;
    flex-direction: column;
  }
  #perfil-form #campos-primarios .inputfields input {
    margin-left: 0;
    margin-bottom: 0;
  }
  #perfil-form #campos-primarios .img-thumbnail {
    z-index: 0;
  }
  #perfil-form #campos-secundarios {
    width: 100%;
  }
  #perfil-form .acoes-container {
    width: 100%;
  }
  #perfil-form .acoes-container button {
    width: 100%;
    height: 50px;
  }
}
.confirmar-email-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  background-color: #fafafa;
  margin-top: 10px;
}
.confirmar-email-main img {
  width: 130px;
}
.confirmar-email-main h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.confirmar-email-main p {
  text-align: center;
  margin-bottom: 10px;
}

.form-anuncio-main {
  justify-content: initial !important;
  height: 100%;
  padding-bottom: 30px;
  background-color: #fafafa;
}

#form {
  margin: 15px 35px 0 35px;
  width: 75%;
  height: 100%;
  padding-top: 10px;
}
#form #titulo {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  height: 40px;
  font-size: 25px;
  padding-left: 10px;
}
#form #main-form-container {
  display: flex;
}
#form .secondary-fields {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #form #main-form-container {
    flex-direction: column;
  }
  #form .secondary-fields {
    padding: 0;
  }
}

#edit-image-container {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
#edit-image-container div {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
}
#edit-image-container:hover div {
  opacity: 1;
}
#edit-image-container #label-thumbnail img {
  width: 300px;
  max-width: 100%;
}
#edit-image-container span {
  position: absolute;
  font-size: 50px;
  color: #fafafa;
}

@media screen and (max-width: 767px) {
  #edit-image-container {
    margin-bottom: 13px;
  }

  #form {
    margin: 0;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 20px;
  }

  .form-anuncio-main {
    margin-top: 10px;
  }
}
.checkout-main {
  background-color: #fafafa;
  max-width: 100%;
  min-height: 100%;
}
.checkout-main .table-container {
  overflow-x: auto;
}
.checkout-main .table-container .info-anuncio {
  border-collapse: collapse;
}
.checkout-main .table-container .info-anuncio tbody tr:hover {
  background-color: #eee;
}
.checkout-main .table-container .info-anuncio thead {
  background-color: #bcc421;
}
.checkout-main .table-container .info-anuncio thead th {
  color: #fafafa;
}
.checkout-main .table-container .info-anuncio th, .checkout-main .table-container .info-anuncio td {
  border: 1.5px solid #ddd;
  padding: 15px;
}
.checkout-main .table-container .info-anuncio th img, .checkout-main .table-container .info-anuncio td img {
  width: 160px;
}
.checkout-main form button {
  background-color: #207D06;
  color: #fff;
  margin-bottom: 30px;
  max-width: 100%;
  width: 200px;
  font-weight: bold;
  font-size: 19px;
}
.checkout-main form button:active {
  background-color: rgba(0, 0, 0, 0);
  color: #207D06;
  border: 1px solid #207D06;
  transition: all 0.2s ease-in;
}
.checkout-main form button:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #737373;
  border: 1px solid #737373;
}

.image-preview-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.image-preview-container .image-preview {
  width: 700px;
  max-width: 100%;
}
.image-preview-container .close {
  position: relative;
  font-size: 40px;
  top: -490px;
  left: 700px;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 0px 3px red;
}
@media screen and (max-width: 425px) {
  .image-preview-container .close {
    left: calc(100% - 30px);
    top: 40px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

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

body {
  background-color: #D2DE18;
}

.navbar {
  background: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.navbar nav ul {
  display: flex;
  list-style: none;
}
.navbar nav ul li {
  margin: 0 10px;
  font-weight: bold;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  transition: border-bottom 0.2s ease-out;
}
.navbar nav ul li:hover {
  border-bottom: 3px solid #D2DE18;
}
.navbar nav ul li a {
  font-size: 19px;
}

.font-weight-bold {
  font-weight: bold;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-1 {
  margin-top: 10px;
}

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

.mt-3 {
  margin-top: 30px;
}

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

.ml-1 {
  margin-left: 10px;
}

.ml-2 {
  margin-left: 20px;
}

.ml-3 {
  margin-left: 30px;
}

.ml-4 {
  margin-left: 40px;
}

.mx-1 {
  margin-left: 10px;
  margin-right: 10px;
}

.py-1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-4 {
  padding-top: 40px;
}

.my-1 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.my-2 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.my-3 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.my-4 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.py-1 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.py-2 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.py-3 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.py-4 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.h1 {
  font-size: 32px;
  font-weight: bold;
}

.h2 {
  font-size: 24px;
  font-weight: bold;
}

.h3 {
  font-size: 18.72px;
  font-weight: bold;
}

.h4 {
  font-size: 1em;
  font-weight: bold;
}

.form-control {
  display: block;
}

.btn {
  height: 30px;
  padding: 7px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  border: 0;
  border-radius: 2px;
}

.btn-lg {
  height: 50px;
  padding-top: 15px;
  font-size: 18px;
}

.btn-success {
  background-color: #207D06;
  color: #fff;
}
.btn-success:active {
  background-color: rgba(0, 0, 0, 0);
  color: #207D06;
  border: 1px solid #207D06;
  transition: all 0.2s ease-in;
}
.btn-success:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #737373;
  border: 1px solid #737373;
}

.btn-warning {
  background-color: #ffc107;
  color: #fff;
}
.btn-warning:active {
  background-color: rgba(0, 0, 0, 0);
  color: #ffc107;
  border: 1px solid #ffc107;
  transition: all 0.2s ease-in;
}
.btn-warning:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #737373;
  border: 1px solid #737373;
}

.btn-cancel {
  background-color: #991616;
  color: #fff;
}
.btn-cancel:active {
  background-color: rgba(0, 0, 0, 0);
  color: #991616;
  border: 1px solid #991616;
  transition: all 0.2s ease-in;
}
.btn-cancel:disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #737373;
  border: 1px solid #737373;
}

.btn-primary {
  background-color: #2098D1;
  color: #fff;
}
.btn-primary:active, .btn-primary:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #2098D1;
  border: 1px solid #2098D1;
  transition: all 0.2s ease-in;
}

.btn-hot {
  background-color: #ff8609;
  color: #fff;
}
.btn-hot:active, .btn-hot:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #ff8609;
  border: 1px solid #ff8609;
  transition: all 0.2s ease-in;
}

.btn-secondary {
  background-color: #e6e6e6;
  color: #525252;
}
.btn-secondary:active, .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.2s ease-in;
}

.form {
  margin: 0 10px;
}

.form-field {
  height: 30px;
  margin-bottom: 13px;
  padding-left: 10px;
}

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

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-fill-available {
  width: -webkit-fill-available;
}

.px-1 {
  padding-left: 10px;
  padding-right: 10px;
}

.mx-auto {
  margin: 0 auto !important;
}

.d-flex {
  display: flex;
}

.p-fixed {
  position: fixed;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #2d2d2d;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #2d2d2d;
}

.text-center {
  text-align: center;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-none-i {
  display: none !important;
}

.hidden {
  display: hidden;
}

.fixed-bottom {
  position: fixed;
  top: 100vh;
  left: 100vw;
}

@media screen and (max-width: 767px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-block {
    display: block !important;
  }

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

  .w-lg-100 {
    width: 100%;
  }

  .flex-lg-column {
    flex-direction: column;
  }
}
.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.hidden-on-left {
  left: 100vw !important;
}

.navbar-mobile-nav {
  position: fixed;
  overflow: scroll;
  display: flex;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  top: 0;
  left: 40vw;
  width: 60vw;
  background-color: #fff;
  min-height: 100vh;
  height: 100vh;
  box-shadow: -1px 0 3px rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease-out;
}
.navbar-mobile-nav #link-perfil-mobile {
  cursor: pointer;
  font-size: 18px;
  color: #292929;
}
.navbar-mobile-nav .close-btn {
  align-self: flex-end;
  font-size: 35px;
  font-weight: bold;
  padding-right: 10px;
  cursor: pointer;
}
.navbar-mobile-nav ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar-mobile-nav ul li a {
  font-size: 14px !important;
}

.img-rounded {
  border-radius: 50%;
}

.dropdown-toggler:hover .dropdown-menu {
  height: 300px;
  padding: 15px;
}

.dropdown-menu {
  position: fixed;
  background-color: #fafafa;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  width: 300px;
  height: 0;
  padding: 0;
  transition: height 0.3s ease-out;
  overflow-y: hidden;
  top: 12vh;
  left: calc(100vw - 330px);
}
.dropdown-menu h3 {
  padding-bottom: 10px;
}
.dropdown-menu a {
  margin-bottom: 7px;
}

.background {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url("http://animais.massapeimoveis.com.br/assets/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #ced652;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ced652 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#notificacoes {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 60px;
  left: calc(100vw - 320px);
  width: 300px;
  max-width: 300px;
}

.notificacao {
  padding: 20px;
  width: 300px;
  max-width: 300px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.notificacao-danger {
  background-color: #dc3545;
}
.notificacao-danger h3 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.notificacao-danger span {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.notificacao-warning {
  background-color: #ffc107;
}
.notificacao-warning h3 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.notificacao-warning span {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.notificacao-primary {
  background-color: #007bff;
}
.notificacao-primary h3 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.notificacao-primary span {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.notificacao-success {
  background-color: #2Ba745;
}
.notificacao-success h3 {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.notificacao-success span {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.text-primary {
  color: #007bff !important;
}

/*# sourceMappingURL=styles.css.map */
