@font-face {
    font-family: 'AvenirNextLTProRegular';
    src: url('../fonts/AvenirNextLTPro-Regular.otf');
}

@font-face {
    font-family: 'AvenirNextLTProBold';
    src: url('../fonts/AvenirNextLTPro-Bold.otf');
}

@font-face {
    font-family: 'AvenirNextLTProIt';
    src: url('../fonts/AvenirNextLTPro-It.otf');
}

*{
    font-family: 'AvenirNextLTProRegular', Helvetica, sans-serif;
}

html,
body {
    margin: 0;
}

main {
    height: 100vh;
}

.wrapper {
    position: relative;
    height: 100%;
}

.wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/**************************\
  Basic Modal Styles
\**************************/

.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #7e8578;
    padding: 10px 30px 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    color: #fff;
    box-sizing: border-box;
    font-family: 'AvenirNextLTProBold', Helvetica, sans-serif;
}

.modal__logo{
    height: 70px;
    margin-bottom: 20px;
}

.modal__select{
    width: 100%;
    padding: 5px;
    font-size: 1em;
    font-family: 'AvenirNextLTProRegular', Helvetica, sans-serif;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}



/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

.modal {
    display: none;
}

.modal.is-open {
    display: block;
}
  
#btn-idioma{
    overflow: visible;
    min-width: 16px;
    min-height: 16px;
    position: absolute;
    right: 6.9%;
    top: 12.2%;
    width: 75px;
    height: 75px;
    z-index: 999;
    cursor: pointer;
}

.alterar-idioma-text{
    color: #fff;
}

.idiomas{
    display: flex;
    margin-bottom: 1em;
}

.idiomas a{
    display: flex;
    padding: 5px;
    outline: none;
}

.idiomas a img{
    height: 20px;
}