/*:root {
 --easing-function-default: ease-in-out; 
 --segment-index: 0;
    --play-state: running;
 --color-transparent: transparent;
 --color-initial: initial;
 --color-filled: #fff; 
}*/

.leaflet-map-pane svg{
    z-index: 0 !important;
}


.leaflet-map-pane svg.leaflet-zoom-animated{
    z-index: 99 !important;
}

.leaflet-map-pane path.leaflet-interactive, .leaflet-map-pane path.leaflet-interactive:hover{
    stroke:#d02c30;
}

body{
    overflow: hidden;
    font-family: 'ArialNarrow';
}

#g-top{
    position:absolute;
    top:-1000px;
}

#g-navigation {
    background: transparent;
    border-top: 0;
    z-index: 9999999999;
}

#g-navigation > .g-container {
    position: relative;
    margin: 0;
    width: 100%;
}

#g-navigation .g-content {
    padding: 0;
    margin: 0;
}

#preloader{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#preloader .overlay{
    background: #ffffffe8;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#preloader .preloader-content{
    width: 100%;
    height: 100vh;
    position: fixed;
    text-align: center;
}

#preloader .preloader-content .image svg{
    width: 400px;
    transform: translateY(-70px);
}

#preloader .preloader-content #textLogo, #preloader .preloader-content .startButton{
    display: none;
}

#preloader .preloader-content #outsideLogo {
    transform-origin: center;
    transform-box: fill-box;
    animation: rodar 1s linear infinite;
    opacity:0.5;
} 

.preloader-content .titleLoader {
    -webkit-background-clip: text;
    background-clip: text;
    color: #ffffff47;
    background-image: linear-gradient(to right, #fff, #fff);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 0 100%;
    margin: 25px auto 0 auto;
    width: 100%; /* Ocupa toda a largura disponível */
    max-width: 500px; /* Mas não excede 500px em telas maiores */
    box-sizing: border-box;
    font-family: 'ArialGEOBold';
    font-size: 32px;
    font-weight: 100;
    line-height: 1.2;
    opacity:0;
}

.preloader-content .titleLoader.animate-start {
  animation: .8s ease-in-out .4s forwards running headingLineAppear;
}

.preloader-content .titleLoader.animate-startIntro {
  animation: .8s ease-in-out .4s forwards running headingLineAppearIntro;
}

.preloader-content .introLoader {
    -webkit-background-clip: text;
    background-clip: text;
    color: #ffffff47;
    background-image: linear-gradient(to right, #fff, #fff);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 0 100%;
    width: 100%; /* Ocupa toda a largura disponível */
    max-width: 390px; /* Mas não excede 500px em telas maiores */
    margin: 40px auto 0 auto;
    font-family: 'ArialNarrow';
    font-size: 25px;
    font-weight: 100;
    line-height: 1.2;
    opacity:0;
}

.preloader-content .introLoader.animate-start {
  animation: .8s ease-in-out .4s forwards running headingLineAppear;
}

.preloader-content .introLoader.animate-startIntro {
  animation: .8s ease-in-out .4s forwards running headingLineAppearIntro;
}

@keyframes headingLineAppear {
    0% {
        background-size: 0 100%; /* Começa sem preenchimento */
        opacity: 0;
        color: #ffffff47; /* Cor inicial */
    }
    50% {
        opacity: 1; /* Torna o texto visível mais cedo */
    }
    100% {
        background-size: 100% 100%; /* Preenche completamente */
        opacity: 1;
        color: #fff; /* Altera para a cor do gradiente */
    }
}

@keyframes headingLineAppearIntro{
  0% {
        background-size: 0 100%; /* Começa sem preenchimento */
        opacity: 0;
        color: #ffffff47; /* Cor inicial */
    }
    50% {
        opacity: 1; /* Torna o texto visível mais cedo */
    }
    100% {
        background-size: 100% 100%; /* Preenche completamente */
        opacity: 1;
        color: #fff; /* Altera para a cor do gradiente */
    }
}

#preloader .preloader-content .startButton{
    pointer-events: none;
    cursor: pointer;
    font-family: 'ArialNarrow';
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
    margin: 100px auto 0 auto;
    color: #fff;
    width: 200px;
    background: #8E7266;
    border-radius: 60px;
    border: 3px solid #fff;
    padding: 18px 0;
}

#preloader .preloader-content .startButton:hover{
    color: #8E7266;
    background: #fff;
    border: 3px solid #8E7266;
}

@keyframes rodar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#g-header {
    position: relative;
    z-index: 9;
}

#g-header .g-container {
    width: 100%;
}

#g-header .g-content {
    margin: 0;
    padding: 0;
}

#mapa{
    visibility:hidden;
    background-color: #E4DEC8;
}

#map {
    height: calc(100vh - 75px) !important;
    top: 75px;
    background-color: #E4DEC8;
    border-top: 1px solid #fff;
}

#map path:hover{
    stroke:transparent;
}

.zoom-slider {
    position: absolute;
    bottom: 200px;
    left: 10px;
    background: transparent;
    padding: 0px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.zoom-slider button {
    width: 30px;
    height: 30px;
    font-size: 26px;
    border: none;
    font-family: 'ArialNarrow';
    background-color: transparent;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.zoom-slider input[type=range] {
    writing-mode: bt-lr;
    -webkit-appearance: slider-vertical;
    width: 4px;
    height: 150px;
    margin: 10px 0;
}

.zoom-value {
  font-size: 12px;
  color: #333;
}

#message{
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    background-image:URL('../../../images/Slider/Slider1.jpg');
    background-position:center;
    background-size:cover;
    display:none;
}

#message .overlay {
    background: #000000b0;
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
}

#message .messageContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #b30000;
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    z-index: 1000;
    width: 520px;
    border: 3px solid #fff;
}

#message .iconMessage{
    text-align: center;
    display: block;
    width: 100px;
    margin: 0 auto;
}

#message .iconMessage svg{
    height: auto;
}

#message .iconMessage svg path{
    fill:#fff;
}

#message .firstMessage{
    display: block;
    font-size: 120px;
    text-transform: uppercase;
    font-family: 'ArialGEOBold';
    color: #ffffff7d;
}

#message .secondMessage{
    display: block;
    font-size: 35px;
    text-transform: uppercase;
    font-family: 'ArialGEOBold';
}

#message .thirdMessage{
    font-size: 30px;
    display: block;
    width: 235px;
    margin: 0 auto;
}

#map .icon-wrapper{
    position: relative;
    width: 25px;
    height: 25px;
}

#map .icon-image{
    width: 100%;
    height: 100%;
    display: block;
}

#map .icon-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'ArialGEOBold';
}

#map .hidePlacemark{
    display:none !important;
}

#map .leaflet-marker-icon{
    display:none;
}

.dados{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999999999;
    background: #00000059;
    height: 100vh;
    width: 100%;
    padding: 0;
    display:none;
}

.dados .dadosContent{
    width: 600px;
    height: 550px;
    overflow: hidden;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px  40px  40px;
    overflow-y: scroll;
}

.dados .blockDadosImage, .dados .blockDadosTitle{
    width:49.5%;
    display:inline-block;
    vertical-align:middle;
}

.dados .blockDadosTitle.toGaleria{
    width:100%;
    display:block;
}

.dados .blockDadosTitle{
    padding-left: 25px;
}

.dados .blockDadosTitle.toGaleria{
    padding-left: 0;
}

.dados .blockDadosImage .imgCapa{
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    /*height: 140px;*/
}

.blockDados{
    display:none;
}

.blockDados.active{
    display:block;
}

.closeDados{
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 9999999;
    cursor:pointer;
}

.closeDados svg{
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.dados .blockDados .pinNum{
    position: relative;
    width: 30px;
    height: 30px;
    display:inline-block;
    vertical-align:baseline;
}

.dados .blockDados .pinNum .iconPinNum{
    width: 30px;
    height: 30px;
    display: block;
}

.dados .blockDados .pinNum .namePinNum{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'ArialNarrow';
}

.dados .blockDados .pinNum svg{
    height:30px;
}

.dados .blockDados .subcatIcon, .dados .blockDados .catIcon{
    width: 30px;
    height: 30px;
    display:inline-block;
    vertical-align: top;
    background-color:transparent !important;
}

.dados .blockDados h4{
    margin-bottom: 0;
    margin-top: 10px;
    font-family: 'ArialNarrow';
    color: #947c6f;
    line-height: 1.1;
    font-size: 20px;
}

.dados .blockDados .blockDadosTitle.toGaleria h4{
    margin-bottom: 0;
    margin-top: 5px;
    font-family: 'ArialNarrow';
    color: #947c6f;
    line-height: 1.1;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    padding-left: 10px;
    font-weight: bold;
    width: calc(100% - 58px);
}

.dados .blockDados .subcat, .dados .blockDados .cat{
    display: inline-block;
    vertical-align: inherit;
    padding-left: 5px;
}

.dados .blockDados .blockContent .descricao{
    font-family: 'ArialNarrow';
    color: #947c6f;
    font-size: 18px;
    margin-top: 20px;
    text-align:justify;
}

.dados .blockDados .blockContent .descricao h3{
    font-family: 'ArialNarrow';
    font-size: 20px;
    font-weight: 100;
}

.dados .blockDados .botao, .placemarksContainer .results .blockContent .botao{
    margin-top:15px;
}

.dados .blockDados .botao a, .dados .blockDados .botao a:hover, .placemarksContainer .results .blockContent .botao a, .placemarksContainer .results .blockContent .botao a:hover{
    font-family: 'ArialNarrow';
    color: #947c6f;
    font-weight: bold;
    font-style: italic;
    font-size: 17px;
    text-decoration: underline;
    cursor:pointer;
}

.submitPlacemarks{
    display: none;
}

.leaflet-container .leaflet-control-attribution{
    display:none;
}

.sideMenu{
    display:none; 
    background:#0000006e;
    position: fixed;
    top: 75px;
    height: calc(100% - 75px);
    width: 100%;
    z-index: 99999;
}

.sideMenu .itensContent {
    position: fixed;
    top: 75px;
    width: 210px;
    height: calc(100% - 75px);
    padding: 30px 10px;
    background: #ffffffbf;
    overflow-y: auto;
    overflow-x: hidden;
    right: 0;
}

.sideMenu .itensContent .icon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    width: 151px;
    height: 30px;
    margin-bottom: 0px;
    position: relative;
    background: transparent;
    right: 0px;
}

.sideMenu .itensContent .pinNum {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.sideMenu .itensContent .pinNum .iconPinNum{
    width: 24px;
    height: 24px;
}

.sideMenu .itensContent .pinNum svg {
    height: 24px;
}

.sideMenu .itensContent .pinNum .namePinNum{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'ArialGEOBold';
}

.sideMenu .itensContent .image {
    width: 25px;
    height: 25px;
    background: transparent !important;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border-radius: 5px;
}

.sideMenu .itensContent .image .icon{
    height: 24px;
    width: 24px;
}

.sideMenu .itensContent .image .icon img, .sideMenu .itensContent .image .icon svg{
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.sideMenu .itensContent .item{
    width: calc(100% - 15px);
    margin-left: auto;
}

.sideMenu .itensContent .nameSubCat, .sideMenu .itensContent .nameCat{
    white-space: nowrap;
    color: #947c6f;
    font-size: 10px;
    margin-left: 5px;
    transition: opacity 0.3s ease;
    pointer-events: none;
    flex-shrink: 0;
    width: 95px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
}

.sideMenu .itensContent .cleanSubcat, .sideMenu .itensContent .cleanCat{
    position: absolute;
    width: 15px;
    height: 15px;
    background: transparent;
    z-index: 999999999999999;
    margin-top: -22px;
    margin-left: -5px;
}

.sideMenu .itensContent .cleanSubcat svg, .sideMenu .itensContent .cleanCat svg{
    width:15px;
    height:15px;
}

.sideMenu .itensContent .cleanSubcat svg path, .sideMenu .itensContent .cleanCat svg path{
    fill:#fff;
}

.placemarksContainer .mobile {
    display: none;
}

.placemarksContainer .mobile .verLista, .placemarksContainer .mobile .verMapa{
    position: fixed;
    top: 30px;
    right: 75px;
    background: #ffffffc2;
    z-index: 99999999;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 5px;
}

.placemarksContainer .pagecontent .topFilter {
    height: 60px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: fixed;
    bottom: 0;
    left: 2%;
    width: 96%;
    z-index: 999999;
    display: none;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.placemarksContainer .pagecontent .topFilter .pagination{
    display:inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.placemarksContainer .pagecontent .topFilter .pagination .page {
    margin: 0 3px;
    font-size: 17px;
    font-weight: 100;
    color: #947c6f;
}

.placemarksContainer .pagecontent .topFilter .pagination .page.active{
    color:#2d9be1;
}

.placemarksContainer .pagecontent .topFilter .pagination #previous{
    rotate: 180deg;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:3px;
    cursor:pointer;
}

.placemarksContainer .pagecontent .topFilter .pagination #next{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:3px;
    cursor:pointer;
}

.placemarksContainer .pagecontent .topFilter .pagination #previous svg, .placemarksContainer .pagecontent .topFilter .pagination #next svg{
    height: 20px;
    width: 20px;
}

.placemarksContainer .pagecontent .results{
    height: calc(100vh - 150px);
    width: 96%;
    left: 2%;
    padding: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    top: 80px;
    z-index: 99999;
    display: none;
    background: #fff;
    border-radius: 20px;
}

.placemarksContainer .pagecontent .results .page {
    display: none;
}

.placemarksContainer .pagecontent .results .page.active {
    display: block;
}

.placemarksContainer .results .block.inBlock {
    background-color: #cdc1b285;
    border-bottom: 1px solid #fff;
    height: 350px;
    cursor: auto;
    padding: 25px 20px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 5px;
}

.placemarksContainer .results .block.inBlock:nth-last-child(1){
    margin-bottom:0;
}

.placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
    width: 50%;
    display: inline-block;
    float: left;
    height: 300px;
    vertical-align: middle;
    overflow: hidden;
    border-radius: 20px;
}

.placemarksContainer .results .blockContent {
    width: 50%;
    height: 300px;
    display: inline-flex;
    padding: 0px 35px;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    justify-content: center;
    align-items: initial;
    flex-direction: column;
}

.placemarksContainer .results .blockContent h4 {
    margin: 20px 0 0 0;
    font-weight: 100;
    font-size: 22px;
    color: #947c6f;
    font-family: 'ArialGEOBold';
}

.placemarksContainer .results .pinNum {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
}

.placemarksContainer .results .pinNum .iconPinNum{
    width: 40px;
    height: 40px;
}

.placemarksContainer .results .pinNum svg {
    height: 40px;
}

.placemarksContainer .results .pinNum .namePinNum {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'ArialGEOBold';
}

.placemarksContainer .results .blockContent .subcatIcon, .placemarksContainer .results .blockContent .catIcon{
    width: 40px;
    display:inline-block;
    vertical-align:middle;
    background-color:transparent !important;
}

.placemarksContainer .results .subcat, .placemarksContainer .results .cat{
    white-space: nowrap;
    color: #333;
    font-size: 12px;
    margin-left: 5px;
    transition: opacity 0.3s ease;
    pointer-events: none;
    flex-shrink: 0;
    width: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    white-space: normal;
    line-height: 1;
}

.barraTopo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    overflow: hidden;
}

#botoesTopo .logoPlatform{
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11px;
    left: 30px;
    cursor: pointer;
}

#botoesTopo .menuPlatform, #botoesTopo .closeMenuPlatform{
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11px;
    left: 170px;
    cursor: pointer;
}

.barraTopo .openSideList, .barraTopo .closeSideList{
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11px;
    right: 30px;
    cursor: pointer;
}

.barraTopo .openPlacemarkList, .barraTopo .closePlacemarkList{
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11px;
    right: 100px;
    cursor: pointer;
}

.barraTopo .openPesquisa, .barraTopo .closePesquisa{
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11px;
    right: 170px;
    cursor: pointer;
}

.barraTopo .openSideList, .barraTopo .openPlacemarkList, .barraTopo .openPesquisa{
    display: inline-flex;
}

.barraTopo .closeSideList, .barraTopo .closePlacemarkList, .barraTopo .closePesquisa{
    display: none;
}

#botoesTopo .logoPlatform .insideDiv{
    width: 53px;
    height: 53px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#botoesTopo .menuPlatform .insideDiv, #botoesTopo .closeMenuPlatform .insideDiv{
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#botoesTopo .menuPlatform .insideDiv, #botoesTopo .closeMenuPlatform .insideDiv{
    border: 3px solid #947e71cc;
}

#botoesTopo .closeMenuPlatform .insideDiv{
    background: #937d6f;
}

#botoesTopo .logoPlatform .insideDiv svg{
    height:auto;
}

.barraTopo .openSideList .insideDiv, .barraTopo .closeSideList .insideDiv{
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #947c6f;
    background: #2d9be1;
}

.barraTopo .openPlacemarkList .insideDiv, .barraTopo .closePlacemarkList .insideDiv{
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #947c6f;
    background: #947c6f;
}

.barraTopo .openPesquisa .insideDiv, .barraTopo .closePesquisa .insideDiv{
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #957c6fcc;
    background: #957c6fcc;
}

.barraTopo .openSideList svg, .barraTopo .closeSideList svg, .barraTopo .openPlacemarkList svg, .barraTopo .closePlacemarkList svg, .barraTopo .openPesquisa svg, .barraTopo .closePesquisa svg, #botoesTopo .closeMenuPlatform svg{
    width: 25px;
    height: 30px;
    margin-top: 5px;
}

#botoesTopo .menuPlatform svg{
    width: 25px;
    height: 30px;
    margin-top: 3px;
}

.barraTopo .openSideList svg path, .barraTopo .closeSideList svg path, .barraTopo .openPlacemarkList svg path, .barraTopo .closePlacemarkList svg path, .barraTopo .openPesquisa svg path, .barraTopo .closePesquisa svg path, #botoesTopo .closeMenuPlatform .insideDiv svg path{
    fill: #fff;
}

#botoesTopo .menuPlatform .insideDiv svg path{
    fill: #947c6f;
}

#Menu{
    position: fixed;
    width: 96%;
    height: calc(100vh - 115px);
    left: 2%;
    top: 95px;
    z-index: 99999;
    border-radius: 20px;
    overflow: hidden;
    display:none;
    background: #E3DFC8;
    background: -webkit-linear-gradient(180deg,rgba(227, 223, 200, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(180deg,rgba(227, 223, 200, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(180deg,rgba(227, 223, 200, 1) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#E3DFC8",
      endColorstr="#FFFFFF",
      GradientType=0
    );
}

#Menu .g-content{
    height: calc(100% - 90px);
}

#Menu .backMenu{
    height: calc(100% - 90px);
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
    z-index: 1;
}

#Menu .backMenu svg{
    width: 800px;
    height: 800px;
}

#Menu .backMenu svg path{
    fill:#fff;
}

#Menu .listaMenus{
    height: calc(100% - 90px);
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
    z-index: 9999;
    text-align: center;
    font-family: 'ArialGEOBold';
}

#Menu .listaMenus #accordeonck3024{
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

#Menu .listaMenus #accordeonck3024 li.level1 > span a {
    padding: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #927e6f;
    font-size: 26px;
    font-family: 'ArialGEOBold';
}

#Menu .listaMenus #accordeonck3024 li.level1 > span a:hover{
    color: #4198e0;
}

#Menu .bandeirasPRR {
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    z-index: 9999;
}

#Menu .bandeirasPRR img{
    width: auto;
    max-width: 520px;
}

#idioma{
    display:none;
    position: absolute;
    top: 85px;
    left: 65px;
    width: 120px;
    background: #e3dfc8;
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 10px;
    justify-content: center;
}

#idioma a.glink{
    display:block;
}

#idioma a.glink.gt-current-lang{
    border-bottom: 1px solid #fff;
}

#idioma a.glink img{
    width:16px;
}

#idioma .gt_container--pdwr5t a.glink span {
    margin-right: 7px;
    font-size: 16px;
    vertical-align: middle;
    font-family: 'ArialNarrow';
    color: #947c6f;
}

#botoesTopo .openIdioma, #botoesTopo .closeIdioma{
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11px;
    left: 100px;
    cursor: pointer;
}

#botoesTopo .openIdioma .insideDiv, #botoesTopo .closeIdioma .insideDiv{
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #947c6f;
}

#botoesTopo .closeIdioma .insideDiv{
    background: #957c6fcc;
}

#botoesTopo .openIdioma svg{
    width: 25px;
    height: 30px;
    margin-top: 0px;
}

#botoesTopo .closeIdioma svg{
    width: 25px;
    height: 30px;
    margin-top: 5px;
}

#botoesTopo .openIdioma .insideDiv svg path{
    fill: #947c6f;
}

#botoesTopo .closeIdioma .insideDiv svg path{
    fill:#fff;
}

.filterPlacemark{
    position: absolute;
    z-index: 99999;
    top: 95px;
    left: 2%;
    width: 96%;
    height: calc(100vh - 115px);
    background: #e3dfc8e8;
    border-radius: 20px;
    padding: 20px;
    display: none;
}

.filterPlacemark h4{
    font-family: 'ArialNarrow';
    margin: 0 0 10px 0;
    color: #937d6f;
    text-transform: uppercase;
    padding: 0 40px;
    font-size: 18px;
}

.filterPlacemark input[type="text"]{
    border-radius: 45px;
    padding: 20px 80px 20px 40px;
    background: #4198e036;
    box-shadow: none;
    border: 0;
    font-family: 'ArialNarrow';
    font-size: 20px;
    color: #fff;
}

.filterPlacemark #find{
    width: 25px;
    height: 25px;
    float: right;
    margin-top: -48px;
    margin-right: 40px;
}

.filterPlacemark #find path{
    fill:#fff;
}

.filterPlacemark #search{
    margin-bottom:60px;
}

.filterPlacemark #search .outsideDiv{
    padding: 2px;
    background: #fff;
    border: 1px solid #4198e036;
    border-radius: 45px;
}

.filterPlacemark #selectCat .outsideDiv{
    padding: 2px;
    background: #fff;
    border: 1px solid #937d6f2b;
    border-radius: 45px;
}

.filterPlacemark #selectCat .select2-container--bootstrap .select2-selection--single {
    height: 70px;
    line-height: 1.42857;
    padding: 20px 40px;
    border-radius: 45px;
    box-shadow: none !important;
    border: 2px solid #937d6f;
}

.filterPlacemark #selectCat .select2-container--bootstrap .select2-selection {
    font-family: 'ArialNarrow';
    font-size: 20px;
}

.filterPlacemark #selectCat .select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
    color: #937d6f;
}

.filterPlacemark #selectCat .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
    border-color: #937d6f transparent transparent transparent;
}

.filterPlacemark #selectCat .select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
    border-color: transparent transparent #937d6f transparent;
}

.select2-results__option{
    color:#937d6f;
}

.filterPlacemark #cleanfilter{
    float: right;
    margin-right: 50px;
    margin-top: 40px;
    font-family: 'ArialNarrow';
    color: #937d6f;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

.filterPlacemark #cleanfilter:hover{
    text-decoration:underline;
}

.openManualUser{
    position: absolute;
    width: 55px;
    height: 55px;
    background: #5d5d5d69;
    border-radius: 50%;
    bottom: 0;
    right: 50px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.openManualUser .insideDiv{
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5d5d5d;
}

.openManualUser .insideDiv svg{
    width: 40px;
    height: 40px;
    margin-top: 4px;
}

.openManualUser .insideDiv svg path{
    fill:#fff;
}

.desativarPin{
    position: absolute;
    width: 55px;
    height: 55px;
    background: #5d5d5d69;
    border-radius: 50%;
    bottom: 70px;
    right: 50px;
    cursor: pointer;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.desativarPin .insideDiv{
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff0000;
}

.desativarPin .insideDiv svg{
    width: 40px;
    height: 40px;
    margin-top: 4px;
}

.desativarPin .insideDiv svg path{
    fill:#fff;
}

.closeManualUser svg {
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.boxManualUser{
    position: absolute;
    background: #00000047;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display:none;
}

.boxManualUser .insideBoxManualUser{
    width: 540px;
    height: 515px;
    overflow: hidden;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 40px 40px 40px 40px;
    overflow-y: scroll;
}

.boxManualUser .closeManualUser {
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 9999999;
    cursor: pointer;
}

.boxManualUser .manualUserTitle{
    font-family: 'ArialNarrow';
    color: #947c6f;
    font-size: 16px;
    text-decoration: underline;
    margin-bottom: 15px;
}

.boxManualUser .itemManual{
    display:none;
}

.boxManualUser .itemManual.active{
    display:block;
}

.boxManualUser .itemManual .itemImage{
    width: 40%;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    border-radius: 20px;
    background: #ccc;
    margin-bottom: 0;
}

.boxManualUser .itemManual .itemImage img{
    width:100%;
}

.boxManualUser .itemManual .itemText {
    width: 58%;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}

.boxManualUser .itemManual .stepDescription{
    margin-bottom: 0;
    margin-top: 15px;
    font-family: 'ArialNarrow';
    color: #947c6f;
    line-height: 1.1;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
    padding-left: 10px;
}

.boxManualUser .itemManual .stepDescription p{
    margin:0;
}

.boxManualUser .itemManual .stepNumber {
    width: 75px;
    height: 75px;
    background: #5d5d5d69;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.boxManualUser .itemManual .stepNumber .insideDiv{
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border:2px solid #fff;
    background:#ff0000;
    color:#fff;
    font-family: 'ArialNarrow';
    font-size: 20px;
}

.boxManualUser .paginationManual{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.boxManualUser .paginationManual .pageManual {
    margin: 0 3px;
    font-size: 17px;
    font-weight: 100;
    color: #947c6f;
}

.boxManualUser .paginationManual .pageManual.active{
    color:#2d9be1;
}

.boxManualUser .paginationManual #previousManual{
    rotate: 180deg;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:3px;
    cursor:pointer;
}

.boxManualUser .paginationManual #nextManual{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:3px;
    cursor:pointer;
}

.boxManualUser .paginationManual #previousManual svg, .boxManualUser .paginationManual #nextManual svg{
    height: 20px;
    width: 20px;
}

.accessContent{
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    background-image:URL('../../../images/Slider/Slider1.jpg');
    background-position:center;
    background-size:cover;
}

.accessContent .accessBox{
    background: #0000006e;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessContent .accessBox .insideBox {
    border: 3px solid #fff;
    background: #ff0000;
    padding: 100px 50px;
    border-radius: 20px;
    width: 400px;
    text-align: center;
    color: #fff;
}

.accessContent .accessBox .insideBox h2{
    font-family: 'ArialNarrow';
    font-weight: 100;
    margin: 0;
    font-size: 35px;
}

.blockGaleria{
    text-align:center;
    height: auto !important;
    margin-bottom: 30px;
}

.blockGaleria .multipleImages {
    /*height: 360px;*/
    height: auto;
    max-height: 360px;
    width: 265px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.blockGaleria .multipleImages .image{
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.blockGaleria .multipleImages .image img{
    border-radius:20px;
}

.blockGaleria .navegacao{
    width: auto;
    display: inline-block;
    margin: 25px auto 0 auto;
    position: relative;
}

.blockGaleria #arrows .arrow.prev{
    rotate: 180deg;
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.blockGaleria #arrows .arrow.next, .blockGaleria #arrows .countFotos{
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.blockGaleria #arrows .arrow.prev, .blockGaleria #arrows .arrow.next{
    cursor:pointer;
    height: 25px;
    color: #947c6f;
}

.blockGaleria #arrows .arrow.prev svg, .blockGaleria #arrows .arrow.next svg{
    height: 25px;
}

.blockGaleria #arrows .countFotos{
    padding: 0 10px;
    color: #947c6f;
}

.blockGaleria #arrows .countFotos .fotoAtual{
    font-weight: bold;
}


@media (min-height: 768px) {
    .sideMenu {
        flex-direction: column;
        justify-content: center;
        right: 0;
    }
}

@media (max-width: 361px){
    
    .desativarPin{
        bottom: 90px;
        right: 40px;
    }
    
    #message .messageContent{
        width: 350px;
    }
    
    #message .iconMessage {
        text-align: center;
        width: 85px;
    }
    
    #message .firstMessage{
        font-size:80px;
    }
    
    #message .secondMessage{
        font-size: 25px;
    }
    
    #message .thirdMessage {
        font-size: 20px;
        width: 185px;
    }
    
    .blockGaleria {
        margin-bottom: 30px;
    }
    
    .blockGaleria .multipleImages {
        /*height: 330px;*/
        height: auto;
        max-height: 330px;
        width: 295px;
    }
    
    .blockGaleria .navegacao {
        margin: 10px auto 0 auto;
    }
    
    #preloader .preloader-content .image svg {
        width: 300px;
    }
    
    #preloader .preloader-content .titleLoader{
        max-width: 315px;
        font-size: 22px;
    }
    
    #preloader .preloader-content .introLoader{
        max-width: 315px;
        font-size: 18px;
        margin: 30px auto 0 auto;
    }
    
    #preloader .preloader-content .startButton{
        font-size: 15px;
        margin: 75px auto 0 auto;
        padding: 15px 0;
    }
    
    .accessContent .accessBox .insideBox{
        width:90%;
        padding: 75px 50px;
    }
    
    .openManualUser{
        bottom:25px;
        right:40px;
    }
    
    .dados{
        height:100vh;
    }
    
    .dados .blockDados .blockContent .descricao h3 {
        font-size: 17px;
    }
    
    .dados .dadosContent {
        width: 94%;
        height: 500px;
        padding: 50px 20px 20px 20px;
    }
    
    .dados .blockDadosImage, .dados .blockDadosTitle {
        width: 49%;
    }
    
    .dados .blockDadosTitle {
        padding-left: 20px;
    }
    
    .dados .blockDadosTitle.toGaleria{
        width: 100%;
        padding-left: 0px;
    }
    
    .dados .blockDados .pinNum{
        width: 25px;
        height: 25px;
    }
    
    .dados .blockDados .pinNum .iconPinNum {
        width: 25px;
        height: 25px;
    }
    
    .dados .blockDados .pinNum svg {
        height: 25px;
    }
    
    .dados .blockDados .subcatIcon, .dados .blockDados .catIcon{
        width: 25px;
        height: 25px;
    }
    
    .dados .blockDados h4{
        font-size: 16px;
        margin-top: 0px;
    }
    
    /*.dados .blockDadosImage .imgCapa {
        height: 83px;
    }*/
    
    .dados .blockDados .blockContent .descricao {
        font-size: 15px;
    }
    
    .dados .blockDados .botao a, .dados .blockDados .botao a:hover{
        font-size: 15px;
    }
    
    .placemarksContainer .results .blockContent .botao a, .placemarksContainer .results .blockContent .botao a:hover{
        font-size:10px;
    }
    
    .placemarksContainer .results .blockContent .botao {
        margin-top: 0px;
    }
    
    .placemarksContainer .pagecontent .results{
        height: calc(100vh - 200px);
    }
    
    .placemarksContainer .results .block.inBlock {
        height: 120px;
        padding: 14px;
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        height: 90px;
        width: 160px;
    }
    
    .placemarksContainer .results .blockContent {
        height: 90px;
        padding: 0 0 0 15px;
        width: calc(100% - 160px);
    }
    
    .placemarksContainer .results .blockContent h4 {
        margin: 10px 0 0 0;
        font-size: 13px;
        line-height: 1.1;
    }
    
    .placemarksContainer .results .pinNum {
        width: 25px;
        height: 25px;
    }
    
    .placemarksContainer .results .pinNum .iconPinNum {
        width: 25px;
        height: 25px;
    }
    
    .placemarksContainer .results .pinNum svg {
        height: 25px;
    }
    
    .placemarksContainer .results .pinNum .namePinNum{
        font-size:10px;
    }
    
    .placemarksContainer .results .blockContent .subcatIcon, .placemarksContainer .results .blockContent .catIcon {
        width: 28px;
    }
    
    .barraTopo .openSideList, .barraTopo .closeSideList {
        right: 15px;
        width: 48px;
        height: 48px;
    }
    
    .barraTopo .openSideList .insideDiv, .barraTopo .closeSideList .insideDiv{
        width: 46px;
        height: 46px;
    }
    
    .barraTopo .openPlacemarkList, .barraTopo .closePlacemarkList{
        right: 68px;
        width: 48px;
        height: 48px;
    }
    
    .barraTopo .openPlacemarkList .insideDiv, .barraTopo .closePlacemarkList .insideDiv{
        width: 46px;
        height: 46px;
    }
    
    .barraTopo .openPesquisa, .barraTopo .closePesquisa{
        right: 121px;
        width: 48px;
        height: 48px;
    }
    
    .barraTopo .openPesquisa .insideDiv, .barraTopo .closePesquisa .insideDiv{
        width: 46px;
        height: 46px;
    }
    
    #botoesTopo .logoPlatform{
        left: 15px;
        width: 48px;
        height: 48px;
    }
    
    #botoesTopo .logoPlatform .insideDiv{
        width: 46px;
        height: 46px;
    }
    
    #botoesTopo .openIdioma, #botoesTopo .closeIdioma{
        left: 68px;
        width: 48px;
        height: 48px;
    }
    
    #botoesTopo .openIdioma .insideDiv, #botoesTopo .closeIdioma .insideDiv{
        width: 46px;
        height: 46px;
    }
    
    #botoesTopo .menuPlatform, #botoesTopo .closeMenuPlatform{
        left: 121px;
        width: 48px;
        height: 48px;
    }
    
    #botoesTopo .menuPlatform .insideDiv, #botoesTopo .closeMenuPlatform .insideDiv{
        width: 46px;
        height: 46px;
    }
    
    #idioma{
        top: 80px;
        left: 40px;
    }
    
    #Menu {
        height: calc(100vh - 145px);
        top: 85px;
    }
    
    #Menu .bandeirasPRR img{
        width:100%;
    }
    
    #Menu .listaMenus #accordeonck3024 li.level1 > span a{
        font-size: 20px;
    }
    
    .filterPlacemark{
        height:calc(100vh - 160px);
        padding: 75px 20px;
    }
    
    .filterPlacemark h4 {
        font-size: 15px;
    }
    
    .filterPlacemark input[type="text"] {
        padding: 12px 80px 12px 40px;
    }
    
    .filterPlacemark #find {
        margin-top: -40px;
    }
    
    .filterPlacemark input[type="text"]{
        font-size:18px;
    }
    
    .filterPlacemark #selectCat .select2-container--bootstrap .select2-selection--single {
        height: 51px;
        padding: 12px 40px;
    }
    
    .filterPlacemark #selectCat .select2-container--bootstrap .select2-selection {
        font-size: 18px;
    }
    
    .boxManualUser .insideBoxManualUser{
        width: 94%;
        height: 50%;
        padding: 50px 20px 20px 20px;
    }
    
    .boxManualUser .itemManual .stepDescription{
        font-size:16px;
    }
    
    .boxManualUser .itemManual .stepNumber {
        width: 65px;
        height: 65px;
    }
    
    .boxManualUser .itemManual .stepNumber .insideDiv {
        width: 64px;
        height: 64px;
        font-size:16px;
    }

}

@media (min-width: 362px) and (max-width: 469px){
    
    .desativarPin{
        bottom: 90px;
        right: 40px;
    }
    
    #message .messageContent{
        width: 350px;
    }
    
    #message .iconMessage {
        text-align: center;
        width: 85px;
    }
    
    #message .firstMessage{
        font-size:80px;
    }
    
    #message .secondMessage{
        font-size: 25px;
    }
    
    #message .thirdMessage {
        font-size: 20px;
        width: 185px;
    }
    
    .blockGaleria {
        margin-bottom: 30px;
    }
    
    .blockGaleria .multipleImages {
        /*height: 330px;*/
        height: auto;
        max-height: 330px;
        width: 295px;
    }
    
    .blockGaleria .navegacao {
        margin: 10px auto 0 auto;
    }
    
    #preloader .preloader-content .image svg {
        width: 300px;
    }
    
    #preloader .preloader-content .titleLoader{
        max-width: 350px;
        font-size: 22px;
    }
    
    #preloader .preloader-content .introLoader{
        max-width: 350px;
        font-size: 20px;
        margin: 30px auto 0 auto;
    }
    
    #preloader .preloader-content .startButton{
        font-size: 15px;
        margin: 75px auto 0 auto;
        padding: 15px 0;
    }
    
    .accessContent .accessBox .insideBox{
        width:90%;
        max-width:400px;
        padding: 75px 50px;
    }
    
    .openManualUser{
        bottom:25px;
        right:40px;
    }
    
    .dados{
        height:100vh;
    }
    
    .dados .blockDados .blockContent .descricao h3 {
        font-size: 17px;
    }
    
    .dados .dadosContent {
        width: 340px;
        height: 500px;
        padding: 50px 20px 20px 20px;
    }
    
    .dados .blockDadosImage, .dados .blockDadosTitle {
        width: 49%;
    }
    
    .dados .blockDadosTitle {
        padding-left: 20px;
    }
    
    .dados .blockDadosTitle.toGaleria{
        width: 100%;
        padding-left: 0px;
    }
    
    .dados .blockDados .pinNum{
        width: 25px;
        height: 25px;
    }
    
    .dados .blockDados .pinNum .iconPinNum {
        width: 25px;
        height: 25px;
    }
    
    .dados .blockDados .pinNum svg {
        height: 25px;
    }
    
    .dados .blockDados .subcatIcon, .dados .blockDados .catIcon{
        width: 25px;
        height: 25px;
    }
    
    .dados .blockDados h4{
        font-size: 16px;
        margin-top: 0px;
    }
    
    /*.dados .blockDadosImage .imgCapa {
        height: 83px;
    }*/
    
    .dados .blockDados .blockContent .descricao {
        font-size: 15px;
    }
    
    .dados .blockDados .botao a, .dados .blockDados .botao a:hover{
        font-size: 15px;
    }
    
    .placemarksContainer .results .blockContent .botao a, .placemarksContainer .results .blockContent .botao a:hover{
        font-size:10px;
    }
    
    .placemarksContainer .results .blockContent .botao {
        margin-top: 0px;
    }
    
    .placemarksContainer .pagecontent .results{
        height: calc(100vh - 200px);
    }
    
    .placemarksContainer .results .block.inBlock {
        height: 120px;
        padding: 14px;
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        height: 90px;
        width: 160px;
    }
    
    .placemarksContainer .results .blockContent {
        height: 90px;
        padding: 0 0 0 15px;
        width: calc(100% - 160px);
    }
    
    .placemarksContainer .results .blockContent h4 {
        margin: 10px 0 0 0;
        font-size: 13px;
        line-height: 1.1;
    }
    
    .placemarksContainer .results .pinNum {
        width: 25px;
        height: 25px;
    }
    
    .placemarksContainer .results .pinNum .iconPinNum {
        width: 25px;
        height: 25px;
    }
    
    .placemarksContainer .results .pinNum svg {
        height: 25px;
    }
    
    .placemarksContainer .results .pinNum .namePinNum{
        font-size:10px;
    }
    
    .placemarksContainer .results .blockContent .subcatIcon, .placemarksContainer .results .blockContent .catIcon {
        width: 28px;
    }
    
    .barraTopo .openSideList, .barraTopo .closeSideList {
        right: 15px;
        width:50px;
        height:50px;
    }
    
    .barraTopo .openSideList .insideDiv, .barraTopo .closeSideList .insideDiv{
        width:48px;
        height:48px;
    }
    
    .barraTopo .openPlacemarkList, .barraTopo .closePlacemarkList{
        right: 70px;
        width:50px;
        height:50px;
    }
    
    .barraTopo .openPlacemarkList .insideDiv, .barraTopo .closePlacemarkList .insideDiv{
        width:48px;
        height:48px;
    }
    
    .barraTopo .openPesquisa, .barraTopo .closePesquisa{
        right: 125px;
        width:50px;
        height:50px;
    }
    
    .barraTopo .openPesquisa .insideDiv, .barraTopo .closePesquisa .insideDiv{
        width:48px;
        height:48px;
    }
    
    #botoesTopo .logoPlatform{
        left: 15px;
        width:50px;
        height:50px;
    }
    
    #botoesTopo .logoPlatform .insideDiv{
        width:48px;
        height:48px;
    }
    
    #botoesTopo .openIdioma, #botoesTopo .closeIdioma{
        left: 70px;
        width:50px;
        height:50px;
    }
    
    #botoesTopo .openIdioma .insideDiv, #botoesTopo .closeIdioma .insideDiv{
        width:48px;
        height:48px;
    }
    
    #botoesTopo .menuPlatform, #botoesTopo .closeMenuPlatform{
        left: 125px;
        width:50px;
        height:50px;
    }
    
    #botoesTopo .menuPlatform .insideDiv, #botoesTopo .closeMenuPlatform .insideDiv{
        width:48px;
        height:48px;
    }
    
    #idioma{
        top: 80px;
        left: 40px;
    }
    
    #Menu {
        height: calc(100vh - 145px);
        top: 85px;
    }
    
    #Menu .bandeirasPRR img{
        width:100%;
    }
    
    #Menu .listaMenus #accordeonck3024 li.level1 > span a{
        font-size: 20px;
    }
    
    .filterPlacemark{
        height:calc(100vh - 160px);
        padding: 75px 20px;
    }
    
    .filterPlacemark h4 {
        font-size: 15px;
    }
    
    .filterPlacemark input[type="text"] {
        padding: 12px 80px 12px 40px;
    }
    
    .filterPlacemark #find {
        margin-top: -40px;
    }
    
    .filterPlacemark input[type="text"]{
        font-size:18px;
    }
    
    .filterPlacemark #selectCat .select2-container--bootstrap .select2-selection--single {
        height: 51px;
        padding: 12px 40px;
    }
    
    .filterPlacemark #selectCat .select2-container--bootstrap .select2-selection {
        font-size: 18px;
    }
    
    .boxManualUser .insideBoxManualUser{
        width: 340px;
        height: 50%;
        padding: 50px 20px 20px 20px;
    }
    
    .boxManualUser .itemManual .stepDescription{
        font-size:16px;
    }
    
    .boxManualUser .itemManual .stepNumber {
        width: 65px;
        height: 65px;
    }
    
    .boxManualUser .itemManual .stepNumber .insideDiv {
        width: 64px;
        height: 64px;
        font-size:16px;
    }
    
}

@media (min-width: 470px) and (max-width: 591px){
    
    #message .messageContent{
        width: 450px;
    }
    
    #message .iconMessage {
        text-align: center;
        width: 90px;
    }
    
    #message .firstMessage{
        font-size:90px;
    }
    
    #message .secondMessage{
        font-size: 30px;
    }
    
    #message .thirdMessage {
        font-size: 25px;
        width: 200px;
    }
    
    .blockGaleria .multipleImages {
        /*height: 410px;*/
        height: auto;
        max-height: 410px;
        width: 360px;
    }
    
    .dados .blockDados .blockDadosTitle.toGaleria h4{
        width:calc(100% - 72px);
    }
    
    #preloader .preloader-content .titleLoader{
        max-width: 450px;
    }
    
    .dados .dadosContent {
        width: 460px;
        height: 600px;
        padding: 55px 25px 25px 25px;
    }
    
    .dados .blockDados h4 {
        margin-top: 5px;
        font-size: 18px;
    }
    
    .dados .blockDados .blockContent .descricao {
        font-size: 17px;
    }
    
    .dados .blockDados .botao a, .dados .blockDados .botao a:hover, .placemarksContainer .results .blockContent .botao a, .placemarksContainer .results .blockContent .botao a:hover{
        font-size: 16px;
    }
    
    .placemarksContainer .results .blockContent .botao {
        margin-top: 5px;
    }
    
    .placemarksContainer .pagecontent .results{
        height: calc(100vh - 200px);
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        width: 55%;
        height: 131px;
    }
    
    .placemarksContainer .results .blockContent {
        width: 45%;
        height: 131px;
        padding: 0px 0 0 20px;
    }
    
    .placemarksContainer .results .pinNum {
        width: 30px;
        height: 30px;
    }
    
    .placemarksContainer .results .pinNum .iconPinNum {
        width: 30px;
        height: 30px;
    }
    
    .placemarksContainer .results .pinNum svg {
        height: 30px;
    }
    
    .placemarksContainer .results .blockContent .subcatIcon, .placemarksContainer .results .blockContent .catIcon {
        width: 30px;
    }
    
    .placemarksContainer .results .blockContent h4 {
        margin: 10px 0 0 0;
        font-size: 16px;
        line-height: 1.1;
    }
    
    .placemarksContainer .results .block.inBlock {
        height: 172px;
        padding: 20px 15px;
    }
    
    #Menu .bandeirasPRR img{
        width:100%;
    }
    
    #Menu .listaMenus #accordeonck3024 li.level1 > span a{
        font-size: 20px;
    }
    
    .filterPlacemark{
        height:calc(100vh - 160px);
        padding: 75px 20px;
    }
    
    .filterPlacemark h4 {
        font-size: 15px;
    }
    
    .filterPlacemark input[type="text"] {
        padding: 12px 80px 12px 40px;
    }
    
    .filterPlacemark #find {
        margin-top: -40px;
    }
    
    .filterPlacemark input[type="text"]{
        font-size:18px;
    }
    
    .filterPlacemark #selectCat .select2-container--bootstrap .select2-selection--single {
        height: 51px;
        padding: 12px 40px;
    }
    
    .filterPlacemark #selectCat .select2-container--bootstrap .select2-selection {
        font-size: 18px;
    }
    
    .boxManualUser .insideBoxManualUser{
        width: 460px;
        height: 50%;
        padding: 45px 20px 20px 20px;
    }
    
    .boxManualUser .itemManual .stepDescription{
        font-size:18px;
    }
    
    .boxManualUser .itemManual .stepNumber {
        width: 70px;
        height: 70px;
    }
    
    .boxManualUser .itemManual .stepNumber .insideDiv {
        width: 70px;
        height: 70px;
        font-size:16px;
        font-size:18px;
    }
}

@media (min-width: 592px) and (max-width: 767px){
    
    #message .messageContent{
        width: 450px;
    }
    
    #message .iconMessage {
        text-align: center;
        width: 90px;
    }
    
    #message .firstMessage{
        font-size:90px;
    }
    
    #message .secondMessage{
        font-size: 30px;
    }
    
    #message .thirdMessage {
        font-size: 25px;
        width: 200px;
    }
    
    .blockGaleria .multipleImages {
        /*height: 405px;*/
        height: auto;
        max-height: 405px;
        width: 340px;
    }
    
    .dados .blockDados .blockDadosTitle.toGaleria h4{
        width: calc(100% - 70px);
    }
    
    .dados .dadosContent {
        width: 490px;
        height: 590px;
        padding: 50px 30px 30px 30px;
    }
    
    .placemarksContainer .pagecontent .results{
        height: calc(100vh - 200px);
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        width: 55%;
        height: 165px;
    }
    
    .placemarksContainer .results .blockContent {
        width: 45%;
        height: 165px;
        padding: 0px 0 0 25px;
    }
    
    .placemarksContainer .results .pinNum {
        position: relative;
        width: 30px;
        height: 30px;
    }
    
    .placemarksContainer .results .pinNum .iconPinNum {
        width: 30px;
        height: 30px;
    }
    
    .placemarksContainer .results .pinNum svg {
        height: 30px;
    }
    
    .placemarksContainer .results .blockContent .subcatIcon, .placemarksContainer .results .blockContent .catIcon{
        width: 30px;
    }
    
    .placemarksContainer .results .blockContent h4 {
        margin: 10px 0 0 0;
        font-size: 18px;
        line-height:1.1;
    }
    
    .placemarksContainer .results .block.inBlock {
        height: 215px;
    }
    
    .filterPlacemark{
        padding: 75px 20px;
    }

}

@media (min-width: 768px) and (max-width: 958px){
    
    .dados .dadosContent{
        width: 510px;
        height: 600px;
    }
    
    .blockGaleria .multipleImages {
        /*height: 370px;*/
        height: auto;
        max-height: 370px;
        width: 330px;
    }
    
    .dados .blockDados .blockDadosTitle.toGaleria h4{
        width: calc(100% - 70px);
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        height: 196px;
    }
    
    .placemarksContainer .results .blockContent {
        height: 196px;
        padding: 0px 0 0 25px;
    }
    
    .placemarksContainer .results .blockContent h4 {
        margin: 10px 0 0 0;
        line-height: 1.1;
        font-size: 20px;
    }
    
    .placemarksContainer .results .block.inBlock {
        height: 247px;
    }
    
    .filterPlacemark{
        padding: 75px 20px;
    }

}

@media (min-width: 959px) and (max-width: 1199px){
    
    .dados .blockDados .blockDadosTitle.toGaleria h4{
        width: calc(100% - 70px);
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        height: 248px;
    }
    
    .placemarksContainer .results .blockContent {
        height: 248px;
        padding: 0px 0 0 25px;
    }
    
    .placemarksContainer .results .block.inBlock {
        height: 299px;
    }
    
    .placemarksContainer .results .blockContent h4{
        margin: 15px 0 0 0;
        line-height:1.1;
        font-size: 21px;
    }

}

@media (min-width: 1200px) and (max-width: 1439px){
    
    .dados .blockDados .blockDadosTitle.toGaleria h4{
        width: calc(100% - 70px);
    }
    
    #preloader .preloader-content .introLoader {
        margin: 30px auto 0 auto;
    }
    
    #preloader .preloader-content .startButton {
        margin: 60px auto 0 auto;
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        height: 309px;
    }
    
    .placemarksContainer .results .blockContent{
        height: 309px;
        padding: 0px 0 0 35px;
    }
    
    .placemarksContainer .results .block.inBlock{
        height: 360px;
    }
    
}

@media (min-width: 1440px){
    
    .dados .blockDados .blockDadosTitle.toGaleria h4{
        width: calc(100% - 70px);
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa {
        height: 307px;
    }
    
    .placemarksContainer .results .blockContent{
        height: 307px;
        padding: 0px 0 0 35px;
    }
    
    .placemarksContainer .results .block.inBlock{
        height: 358px;
    }
    
    .placemarksContainer .pagecontent .results{
        width: 1420px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    
    .placemarksContainer .results .blockImage, .placemarksContainer .results .imgCapa{
        width: 40%;
    }
    
}





