body,.share,.arte-content blockquote:before {
	background:var(--arte-background)!important;
	background-color:#f5f7f9 !important;
}

@media (max-width: 435px) {
	.header-estadao h1.header-current-page {
		background-color:#f5f7f9 !important;
	}
}

.custom-dropdown {
  display: grid;
  grid-template-areas: 'dropdown';
  align-items: center;
  position: relative;
  margin: 0 auto;
  border-radius: 5rem;
  padding: 1.6rem 1.2rem 1.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.1;
  background-color: #d4dfe2;
  color: #5d869c;
  width: 360px;
  text-transform: uppercase !important;
  text-align: center;
  justify-content: center;
}

.custom-dropdown .custom-select,
.custom-dropdown::before,
.custom-dropdown::after {
  grid-area: dropdown;
}

/* Seta */
.custom-dropdown::after {
  content: '';
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: var(--custom-dropdown-arrow);
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

/* Redefine estilo padrÃƒÂ£o */
.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
  color: inherit;
  text-align: center;
}

figure.uva-graphic[style] {
  margin-top: 1.5rem !important;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--custom-dropdown-focus);
  border-radius: inherit;
}

.choose-text {
  text-align: center;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #5d869c;
    font-weight: 700;
}

.custom-titulo-modalidade {
  float: none;
  margin-top: 3rem;
  font-size: 1.75rem;
  color: #92805a;
}

select {
  text-align-last:center;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}