/**
CSS QUE CONTROLA O EFEITO TRANSPARENTE DA APLICAÇÃO
**/
.glass-effect {
  opacity: 0.4;
  pointer-events: none;
}

.blur-effect {
  box-shadow: inset 0 0 0px rgba(255, 255, 255, .5);
  filter: blur(5px);
  border: 0;
  pointer-events: none;
}


/**
CSS QUE CONTROLA O LOADING DA APLICAÇÃO 
**/
@keyframes lds-eclipse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes lds-eclipse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.lds-eclipse {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.lds-eclipse div {
  position: absolute;
  -webkit-animation: lds-eclipse 1s linear infinite;
  animation: lds-eclipse 1s linear infinite;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 1.5px 0 0 #0f0f0f;
}

.checkout-process-message {
  font-size: 25px;
  color: green;
  position: fixed;
  font-weight: bold;
  z-index: 1000;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  top: 60%;
}

.checkout-process-message-mobile {
  font-size: 25px;
  color: green;
  position: fixed;
  font-weight: bold;
  z-index: 1000;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  top: 60%;
  margin-left: -15px;
  padding: 5px;
}

/** CSS PARA PÁGINAS DINAMICAS **/
.content-dynamic-page {
  padding: 30px 0;
  margin-bottom: 30px;
}

.content-dynamic-page .menu ul {
  width: auto;
  padding: 0;
  background: #003400;
  border: 1px solid #0E65Af;
  border-radius: 5px;
  color: #FFF;
  list-style: none;
}

.content-dynamic-page .menu ul .top-title {
  padding: 10px;
  font-weight: bold;
  text-align: center;
  background: #003400;
}

.content-dynamic-page .menu ul li {
  padding: 7px 15px;
  cursor: pointer;
  border-bottom: 1px solid #003400;
}

.content-dynamic-page .menu ul li:hover {
  background: #003400;
}

.content-dynamic-page .menu ul li.active {
  background: #003400;
  font-weight: bold;
}

.content-dynamic-page .menu ul li:last-child {
  border-bottom: none;
}

body {

  background-color: #003400;
}

footer>.up-footer .top>div.right>span>a {
  margin-right: -50%;
}

header .up-header .topo>.left>img {
  max-width: 80%;
  max-height: 80%;
}

body>section>div.up-content>div>div>wmw-lightbox:nth-child(17)>div>div {
  max-height: 210px !important;
  line-height: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 300px;
}