/* geral */
html, body, main{
    overflow-x: hidden!important;
}

.hide,
.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

textarea,
input,
select,
button,
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
body{
    color: black;
}
img{
    max-width: 100%;
}

.in{
    max-width: 1400px;
    padding: 0px 20px;
}

.in_med{
    max-width: 1100px;
}

/* headings */
h1{
    font-size: 60px;
    line-height: 68px;
}

p{
    font-size: 16px;
    line-height: 24px;
}

h2{
    font-size: 50px;
    line-height: 58px;
}

h3{
    font-size: 20px;
    line-height: 28px;
}

h4{
    font-size: 30px;
}

h5{
    font-size: 25px;
    font-weight: 900;
}

h6{
    font-size: 25px;
}

/* texto */
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    color: #333;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 700;
}
.txt p em{
    font-style: italic;
}

/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid #d1d3d4;
}
.radio label:after{
    content: " ";
    width: 12px;
    height: 12px;
    background: #ed7422;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 100%;
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
}


/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.checkbox label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 2px solid #d1d3d4;
}
.checkbox label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid #ed7422;
    border-top: none;
    border-right: none;
}
.checkbox input[type=checkbox]:checked ~ label:after{
    opacity: 1;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
}
.lb_x{
    position: fixed;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    padding: 10px;
    z-index: 2;
}
.lb_in{
    z-index: 1;
}
.lb_centro .lb_in{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.lb_ct{
    position: relative;
    width: 100%;
}

/* accordion */
ul.acc{

}
ul.acc dt{

    cursor: pointer;
}
ul.acc dd{

    display: none;
}
ul.acc .aberto ~ dd{
    display: block;
    height: auto;
}

/* slider */
.owl-carousel{
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    background: red;
    height: 0px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    top: 50%;
    opacity: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    background: transparent;
    width: 60px;
    height: 60px;
    display: block;
    z-index: 10;
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    opacity: 0.2;
}
.owl-carousel .owl-next{
    left: auto;
    right: 1px;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span{
    position: absolute;
    right: 35%;
    top: 25%;
    width: 50%;
    height: 50%;
    box-sizing: border-box;
    transform: rotate(-45deg);
    border: 5px solid #000;
    border-left: none;
    border-top: none;
}
.owl-carousel .owl-prev span{
    transform: rotate(135deg);
    left: 35%;
    right: auto;
}
.owl-carousel:hover > .owl-nav{
    opacity: 1;
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    opacity: 0.6;
}
.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    bottom: 10px;
    height: 25px;
    font-size: 0px;
    background: red;
}
.local_pontos .owl-dot,
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    background: transparent;
    width: auto;
    height: auto;
}
.local_pontos .owl-dot span,
.owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    display: block;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    margin: 5px;
}
.local_pontos .owl-dot.active span,
.local_pontos .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: white;
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/

.swiper-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.it_guia_img img{
    border-radius: 12px;
    width: 100%;
}

.swiper-slide {
    overflow: hidden;
}


::selection {
  background-color: #ed7422;
  color: #fff;
}

/* cores */
.c_cinzaClaro{
    color: #afb9ba;
}

.c_branco{
    color: #fff;
}

.c_laranja{
    color: #ed7422;
}

.c_cinzaEscuro{
    color: #414042;
}

.c_cinza{
    color:#8d9b9c;
}

.c_cinzaExtraEscuro{
    color: #58595b;
}

.c_cinzaExtraClaro{
    color: #f3f3f3;
}

.c_cinzaMedio{
    color: #939598;
}

.bc_cinzaClaro{
    background-color: #afb9ba;
}

.bc_branco{
    background-color: #fff;
}

.bc_laranja{
    background-color: #ed7422;
}

.bc_cinza{
    background-color:#8d9b9c;
}

.bc_cinzaEscuro{
    background-color: #414042;
}

.bc_cinzaExtraClaro{
    background-color: #f3f3f3;
}

.bc_cinzaExtraEscuro{
    background-color: #58595b;
}

.bc_cinzaMedio{
    background-color: #939598;
}

/* top */

body.pag_profissionais .menu a.underline#profissionais:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}

body.pag_profissionais .drop_menu_mobile a#profissionais{
    color: #ed7422;
}

body.pag_noticias a.bt_menu_mobile#noticias,html.pag_noticias a.bt_menu_mobile#noticias{
    color: #ed7422;
}

body.pag_contactos a.bt_menu_mobile#contactos{
    color: #ed7422;
}

body.pag_estacionar_vrsa .menu a.underline#estacionar:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}

body.pag_estacionar_vrsa .drop_cont#estacionar a#vrsa{
    color: #ed7422;
}

body.pag_estacionar_esp .menu a.underline#estacionar:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}

body.pag_estacionar_esp .drop_cont#estacionar a#esp{
    color: #ed7422;
}

body.pag_estacionar_esp .drop_cont_mobile#estacionar ul li a#esp{
    color: #ed7422;
}

body.pag_estacionar_vrsa .drop_cont_mobile#estacionar ul li a#vrsa{
    color: #ed7422;
}

body.pag_estacionar_vrsa .drop_cont_mobile#estacionar ul li a#vrsa{
    color: #ed7422;
}

body.pag_estacionar_vrsa .drop_menu_mobile #estacionar a#estacionar{
    color: #ed7422;
}

body.pag_estacionar_esp .drop_menu_mobile #estacionar a#estacionar{
    color: #ed7422;
}

body.pag_estacionar_mg .drop_menu_mobile #estacionar a#estacionar{
    color: #ed7422;
}

body.pag_estacionar_mg .drop_cont_mobile#estacionar ul li a#mg{
    color: #ed7422;
}

body.pag_avencas .drop_cont.especial a#avencas {
    color: #ed7422;
}

body.pag_avencas .drop_cont_mobile a#avencas {
    color: #414042;
}

body.pag_metodos_pagamento .drop_cont_mobile a#metodos_pagamento {
    color: #414042;
}

body.pag_apoio .drop_cont_mobile a#apoio {
    color: #414042;
}


body.pag_metodos_pagamento .drop_cont.especial a#metodos_pagamento {
    color: #ed7422;
}

body.pag_apoio .drop_cont.especial a#apoio {
    color: #ed7422;
}


body.pag_guia_esp .sub_drop_cont a#esp {
    color: #ed7422;
}

body.pag_guia_vrsa .sub_drop_cont a#vrsa {
    color: #ed7422;
}

body.pag_guia_mg .sub_drop_cont a#mg {
    color: #ed7422;
}


body.pag_guia_esp .sub_drop_cont_mobile a#esp {
    color: #414042;
}

body.pag_guia_vrsa .sub_drop_cont_mobile a#vrsa {
    color: #414042;
}

body.pag_guia_mg .sub_drop_cont_mobile a#mg {
    color: #414042;
}


body.pag_estacionar_mg .menu a.underline#estacionar:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}

body.pag_estacionar_mg .drop_cont#estacionar a#mg{
    color: #ed7422;
}

body.pag_noticias .menu a.underline#noticias:after, html.pag_noticias .menu a.underline#noticias:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}

body.pag_contactos .menu a.underline#contactos:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}


.underline_active:after{
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 100%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}


.wp_cab_desktop{
    padding: 0px 0px 20px 0px;
}

.cab_lang{
    padding: 20px 0px;
    font-size: 12px;
    color: #afb9ba;
}

.cab_lang a{
    color: #afb9ba;
}

.lang_en .cab_lang a#en{
    color: #ed7422;
}

.lang_en .cab_lang a#pt{
    color: #afb9ba;    
}

.lang_pt .cab_lang a#pt{
    color: #ed7422;
}

.lang_pt .cab_lang a#en{
    color: #afb9ba;    
}


.logotipo img{
    height: 48px;
}

.drop_menu{
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.drop_cont.especial{
    left: -239px;
}



.menu a.underline:after {
    margin: 10px 0 0 0;
    height: 2px;
    display: block;
    width: 0%;
    background: #ed7422;
    border-right: 1px white;
    content: '';
    opacity: 1;
}

.menu a.underline:hover:after {
    width: 100%;
}

.drop_cont{
    position: absolute;
    left: 0px;
    top: 100%;
    height: 0px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.2);
}

.drop_cont ul li a{
    display: inline-block;
    font-size: 16px;
    padding: 10px 35px 10px 35px;
    cursor: pointer;
}

.drop_cont a:hover{
    color: #ed7422;

}

.drop_cont ul{
    padding: 25px 0 25px 0;
}

.drop_cont ul.dif{
    padding: 0px 0 0px 0;
}


.drop_menu:hover .drop_cont{
    height: auto;
    opacity: 1;
}

.bt_menu{
    font-size: 16px;
    padding: 20px 10px 10px 10px;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 15px;
}

.bt_menu_especial{
    display: inline-block;
    vertical-align: middle;
    padding: 15px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    padding-right: 30px;
    cursor: pointer;
}

.bt_menu_especial:before{
    content: "";
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    border-top: none;
    border-right: none;
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    right: 15px;
    top: 20px;
}
.bt_menu_especial:hover{
    box-shadow: 0px 6px 13px rgba(0, 0, 0, 0.2); 
}

.bt_menu_especial:hover:before{
    transform: rotate(135deg);
    top: 23px;
}

.bt_menu_semi{
    font-size: 16px;
    padding: 20px 10px 10px 10px;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 15px;
    padding-right: 20px;
    cursor: pointer;
}

.bt_menu_semi:before{
    content: "";
    width: 5px;
    height: 5px;
    border: 1px solid #dadada;
    border-top: none;
    border-right: none;
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    right: 20px;
    top: 25px;
}

.bt_menu_semi:hover:before{
    transform: rotate(135deg);
    top: 28px;
}

.menu_active:before{
    transform: rotate(135deg);
    top: 28px;
}
.menu_normal:before{
    transform: rotate(-45deg);
    top: 25px;
}

.menu_active_especial:before{
    transform: rotate(135deg);
    top: 23px;
}
.menu_normal_especial:before{
    transform: rotate(-45deg);
    top: 20px;
}

.menu_icon span{
    width: 24px;
}

.menu_icon .close{
    display: none;
    opacity: 0;
}

.menu_icon .open{
    display: block;
    opacity: 1;
}

.menu_icon_opacity1{
    opacity: 1!important;
}
.menu_icon_opacity0{
    opacity: 0!important;
}

.menu_icon > span {
    cursor: pointer;
}

.wp_cab_mobile{
    position: fixed;
    top: 0px;
    width: 100%;
    box-shadow: 0px 11px 10px 0px rgba(0, 0, 0, 0.10); 
}

.wp_cab_menu_mobile{
    height: 0px;
    width: 100%;
    position: absolute;
    box-shadow: 0px 11px 10px 0px rgba(0, 0, 0, 0.10); 
    overflow-y: scroll;
    -webkit-overflow-scrolling:touch;
}

.wp_cab_menu_mobile .in{
    opacity: 0;
}

.wp_cab_menu_mobile_content_anim{
    opacity: 1!important;
}

.wp_cab_menu_mobile_anim{
    height: 370px;
}

ul li a.bt_menu_mobile{
    position: relative;
    font-size: 16px;
    display: block;
    vertical-align: middle;
    cursor: pointer;
    width: auto; 
    padding: 20px;
}

ul li a.bt_menu_semi_mobile{
    position: relative;
    font-size: 16px;
    display: block;
    vertical-align: middle;
    cursor: pointer;
    width: auto; 
}

.acc.especial{
    border-radius: 4px;
}

ul li a.bt_menu_semi_mobile:before{
    content: "";
    width: 5px;
    height: 5px;
    border: 1px solid #dadada;
    border-top: none;
    border-right: none;
    display: block;
    position: absolute;
    transform: rotate(-45deg);
    right: 0px;
    margin-right: 20px;
    top: 5px;
}

ul li a.bt_menu_semi_mobile.aberto:before {
    transform: rotate(135deg);
}

.drop_menu_mobile{
    padding: 20px 0 20px 0;
}

.drop_menu_mobile a{
    padding: 0 20px;
}

.drop_cont_mobile{
    margin: 10px 0 0 0;
    position: relative;
    padding: 0 20px 0 20px;
    display: none;
}

.sub_drop_cont_mobile ul li a{
    padding: 10px 10px 10px 20px!important;
}


.drop_cont_mobile ul li a{
    display: inline-block;
    font-size: 14px;
    padding: 10px 10px 10px 10px;
    cursor: pointer;
}

.drop_cont a:hover{
    color: #ed7422;

}

.drop_cont ul{
    padding: 25px 0 25px 0;
}

.sub_drop_cont ul li a {
    padding-left: 55px!important;
}

.wp_cab_menu_mobile .in .ct .it.menu{
    margin: 30px 0 0 0;
}

/* home */
/* intro */

.i4ewOd-pzNkMb-haAclf{
	display: none!important;
	opacity: 0!important;
}

.intro_img img.desktop_intro{
    height: 768px;
    object-fit: cover;
    object-position: right;
}

.intro_img.vv img.desktop_intro{
    height: 768px;
    object-fit: cover;
    object-position: left;
}

.erro_img img{
    height: 768px;
    object-fit: cover;
    object-position: left;
    width: 100%;
}

.intro_img img.mobile_intro{
    width: 100%;
}

.intro_img.vv {
    height: 100%;

}

.ct_logos .entidade_logo{
    padding-bottom: 0px;
}

.ct_logos .entidade_logo img{
    max-width: 50%;
}

.intro{
    display: block;
}

.intro_txt_e{
    max-width: 700px;
    padding-left: 50px;
    padding-bottom: 100px;
    padding-top: 100px;
    padding-right: 20px;
}

.intro_txt_e h3{
    margin-top: 20px;
}

.intro_txt_d p {
    margin-top: 50px;
}

.intro_txt_d{
    padding-right: 50px;
    max-width: 700px;
}

.wp_met .in p{
    margin-top: 50px;
}

.info_met.met_tickets{
    padding: 50px 0 50px 0;
}

.download_icon{
    padding-bottom: 0px!important;
}

.intro_txt_d h3{
    margin-top: 20px;
}

.intro_saber{
    margin-top: 80px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 0 0 0;
}

.intro_saber span svg{
    display: inline;
    vertical-align: middle;
    width: 24px;
    margin: 0 20px 0 0;
    height: 10px;
}

.link{
    cursor: pointer;
}

.link:hover{
    padding: 0 0 0 0px;
}


.link:hover{
    padding: 0 0 0 20px;
}

/* estacionar */

.wp_estacionar{
    padding: 100px 0px;
}

.est_tit{
    padding-bottom: 100px;
}

.it_est:hover{
    transform: translateY(-16px);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.52); 
}

.it_est{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0); 
}

.it_est_lug,
.it_est_local,
.it_est_saber{
    position: absolute;
}

.it_est_lug{
    font-size: 24px;
    left: 30px;
    top: 30px;
}

.it_est_saber{
    left: 30px;
    bottom: 0px;
    font-size: 14px;
    opacity: 0;
    text-transform: uppercase;
}

.it_est_saber span svg{
    display: inline;
    vertical-align: middle;
    width: 24px;
    height: 10px;
    margin: 0 20px 0 0;
}

.it_est_local{
    bottom: 30px;
    left: 30px;
    right: 20px;
    font-size: 32px;
}

.it_est:hover > .it_est_saber{
    opacity: 1;
    margin-bottom: 30px;
}


.it_est:hover > .it_est_local{
    padding-bottom: 40px;
}

/* noticias */

.wp_noticias{
    padding: 100px 0px;
}

.wp_noticias_page{
    padding: 100px 0 20px 0;
}

.not_tit{
    padding-bottom: 100px;
}

.it_not{
    position: relative;
    font-size: 0px;
    overflow: hidden;
    margin: 0 0 80px 0;
}

.it_not_data,
.it_not_tit,
.it_not_sub_tit
.it_not_saber{
    position: relative;
}

.it_not_img img{
	max-width: 100%;
	min-height: initial;
}


.it_not_data{
    padding: 20px 0 0 0;
    margin: 0 30px 0 30px;
    font-size: 12px;
}

.it_not_tit{
    display: block;
    display: -webkit-box;
    margin: 20px 30px 0px 30px;
    font-size: 20px;
    line-height: 28px;
    max-height: 84px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.it_not_sub_tit {
    display: block;
    display: -webkit-box;
    margin: 20px 30px 0px 30px;
    margin-bottom: 0px;
    margin-bottom: 60px;
    max-height: 72px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

.it_not_sub_tit p{
    font-size: 16px;
    line-height: 24px;
}


.it_not_saber{
    position: absolute;
    bottom: 60px;
    left: 30px;
    font-size: 14px;
    text-transform: uppercase;
}

.it_not_info{
    position: relative;
    height: 362px;
}

.it_not_info:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 0;
    border-style: solid;
    top: -50px;
    border-width: 0 0px 50px 414px;
    border-color: transparent transparent #fff transparent;
}

.it_not_saber span svg{
    display: inline;
    vertical-align: middle;
    width: 24px;
    height: 10px;
    margin: 0 20px 0 0;
}

.ct_not_home .it_not{
    margin: 0 0 0px 0;
}

/* ESSE pro */

.wp_pro{
    padding: 0px 0px;
}

.wp_pro_home{
    padding: 100px 0px;
}

.ct.pro_page .it_pro.first_m {
    padding: 100px 0 100px 0!important;
}

.ct.pro_page .it_pro.second_m {
    padding: 100px 0 100px 0!important;
}

.pro_tit{
    padding-bottom: 75px;
}

.pro_tit h2{
    text-transform: uppercase;
}

.it_pro_desc{
    padding: 10px 0 20px 0;
    font-size: 16px;
    line-height: 24px;
    padding: 0 80px 0 80px;
    margin: 25px 0 25px 0;
}

.it_pro_icon{
    padding: 20px;
    border-radius: 100%;
    width: 110px;
    height: 110px;
    margin: 25px 0 25px 0;
}

.pro_btn .btn{
    text-transform: uppercase;
    margin: 75px 0 0 0;
}

.pro_btn_page .btn{
    text-transform: uppercase;
    margin: 100px 0 0 0;
}

/* newsletter */

.it_tit_newsletter{
    margin-bottom: 10px;
}

.wp_newsletter{
    padding: 100px 0px;
}

.ct_form_newsletter{
    margin: 50px 0 0px 0;
}

.form_newsletter_input{
    height: 57px;
    padding: 0 15px 0 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    width: 600px;
    -webkit-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0);
    -moz-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0);
    box-shadow: 0px 0px 5px 1px rgba(255,0,0,0);
}

.form_newsletter_input:hover,
.form_newsletter_input:focus{
    border: 1px solid #fff;
}

.form_newsletter_input::placeholder {
  color: #fff;
  opacity: 1;
  font-style: italic; 
}

.form_newsletter_input::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-style: italic; 
}

.form_newsletter_input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-style: italic; 
}

.form_newsletter_btn .btn{
    margin: 0 0 0 20px;
    text-transform: uppercase;
    cursor: pointer;
}

.politica_privacidade{
    font-size: 12px;
    margin: 10px 0 0 15px;
}

.campos{
    font-size: 12px;
    margin: 10px 0 0 15px;
}

.politica_privacidade a{
    text-decoration: underline;
}

/* fonts */
/* Quicksand */

.qs_light{
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}

.qs_regular{
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

.qs_medium{
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.qs_bold{
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

/* footer */

.rodape{
    margin: 100px 0 100px 0;
}

.logotipo_footer img{
    height: 60px;
}

.ct_certificados{
    margin: 30px 0 0 0;   
}

.it_certificado img{
    height: 70px;
}

.it_certificado{
    margin: 0 10px 0 0;
}

.it_livrorec{
    margin: 30px 0 0 0;
}

.menu_item{
    font-size: 16px;
    line-height: 36px;
}

.menu_item:hover{
    color: #ed7422;
}


.redes_sociais .menu_item {
    margin-right: 10px;
    border-radius: 50%;
    padding: 10px 9px;
    font-size: 16px;
}

.redes_sociais .menu_item:hover{
    background-color: #ed7422;
}

.redes_sociais .menu_item:hover img{
    filter: brightness(255);
}

.menu_item img{
    height: 100%;
    vertical-align: middle;
}

.redes_sociais{
    margin: 82px 0 0 0;
}

.it_copyright{
    font-size: 14px;
}

.it_livrorec{
    height: 36px;
}

.it_livrorec img{
    height: 100%;
}

.it_equipa_logo{
    opacity: 0.2;
}

.it_equipa_logo img{
    height: 15px;
    width: auto;
}

.ct_copy_teamLogo{
    margin-top: 80px;
}

/* profissionais */

.wp_banner{
    position: relative;
}

.wp_banner_bg {
    height: 458px;
}

.wp_banner_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.it_pro_tit{
    padding: 10px 0 20px 0;
    font-size: 28px;
    line-height: 36px;
    padding: 0 80px 0 80px;
    margin: 50px 0 50px 0;
}

.ct_pro_info_page .it_pro_desc{
    padding: 10px 0 20px 0;
    font-size: 20px;
    line-height: 28px;
    padding: 0 80px 0 80px;
    margin: 0 0 0 0;
}

.ct_pro_info_page .it_pro_icon{
    padding: 20px;
    border-radius: 100%;
    width: 110px;
    height: 110px;
    margin: 0 0 0 0;
}

.wp_solicitar{
    background: white;
    color: black;
    padding: 100px 0px;
}

/* estacionar page */

.banner_txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    width: 60%;   
}

.wp_map{
    background: white;
    color: #fff;
    padding: 100px 0px;    
}

.map_tit{
    padding-bottom: 100px;
}

.wp_info_util{
    padding: 100px 0px;    
}

.info_util_tit{
    padding-bottom: 100px;
}

.info_morada:before{
    content: "";
    display: block;
    background-image: url("/assets/img/icons/contactos/Morada.svg");
    opacity: 0.5;
    width: 24px;
    height: 24px;
    float: left;
    margin: 0 0px 0 -40px;
    vertical-align: middle;
}

.info_tel:before{
    content: "";
    display: block;
    background-image: url("/assets/img/icons/contactos/Telefone.svg");
    opacity: 0.5;
    width: 24px;
    height: 24px;
    float: left;
    margin: 0 0px 0 -40px;
    vertical-align: middle;
}

.it_tit_banner h3{
    margin: 50px 0 0 0;
}

.info_item svg{
    display: inline;
    vertical-align: middle;
    width: 24px;
    height: 10px;
    margin: 0 20px 0 0;
}

.it_col_est ul li{
    margin: 25px 0 0 0;
}

.it_col_est_con{ /* ululul*/
    padding: 0 0 0 40px;
}

/* contactos */

.wp_contactos{
    padding: 100px 0px;
}

.wp_ajuda{
    padding: 100px 0px;
}

.wp_avencas{
    padding: 100px 0px;
}

.loja_tit{
    font-size: 30px;
    line-height: 38px;
}

.contactos_item{
    font-size: 16px;
    line-height: 30px;
}

.esse_loja{
    margin: 0 0 50px 0;
}

.esse_loja ul li.last{
    margin-bottom: 50px;
}

.esse_loja ul{ 
    padding: 0 0 0 40px;
}

.it_form_contactos{
    position: relative;
    padding: 50px;
    box-shadow: 0px 2px 46px 0px rgba(0, 0, 0, 0.15); 
}

.it_form_contactos form input.input{
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 1px;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.it_form_contactos form input.input:focus,
.it_form_contactos form input.input:hover{
    border-color: #ed7422;

}

.it_form_contactos form textarea.input{
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 54px;
    height: 236px;
    background: #fff;
    padding: 15px 20px;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 1px;
    margin: 0 0 10px 0;
}

.it_form_contactos form textarea.input:focus,
.it_form_contactos form textarea.input:hover{
    border-color: #ed7422;
}

.form_contactos_btn .btn{
    margin: 50px 0 50px 0;
    cursor: pointer;
}

.tit_form_contactos{
    font-size: 30px;
    line-height: 38px;
}

.sub_tit_form_contactos{
    font-size: 16px;
    line-height: 24px;
}

.opcao_tit_form_contactos{
    font-size: 16px;
    line-height: 24px
}

.form_contactos{
    margin: 25px 0 0 0;
}
.form_contactos .politica_privacidade{
    margin: 0 0 0 0;
}

.form_contactos .campos{
    margin: 10px 0 0 0;
}

.form_contactos .input::placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_contactos .input::-ms-input-placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_contactos .input:-ms-input-placeholder {
  color: #afb9ba;
  opacity: 1;
}

/* Open Sans */

.os_light{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.os_regular{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.os_semiBold{
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.os_bold{
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.os_extraBold{
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}

.header_site{
    z-index: 10000;
}

.btn{
    margin: 100px 0 0 0;
    display: inline-block;
    vertical-align: middle;
    padding: 15px 20px 15px 20px;
    font-size: 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover{
    box-shadow: 0px 6px 13px rgba(0, 0, 0, 0.2); 
    transform: translateY(-4px);
}

/* empresa */

.bold_text{
    margin: 0!important;
}

.it_sub_tit{
    font-size: 16px;
    line-height: 24px;
}

.acc.it{
    margin: 0 0 20px 0;
}

.wp_empresa{
    padding: 100px 0px;
}

.ct_pilares{
    margin: 10px 0 0 0;
}

.ct_valores{
    margin: 0 0 0 0;
}

.it_col_itens{
    font-size: 20px;
    line-height: 28px; 
}

.it_col_itens ul li{
    margin: 20px 0 0 0;
}

.it_col_itens.visao ul li{
    margin: 40px 0 0 0;
}

.container ul li{
    font-size: 16px;
    line-height: 24px;
    margin: 20px 0 0 0;
}

.it_col_itens ul li:before{
    content: "";
    display: block;
    background-image: url("/assets/img/icons/check-1.svg");
    width: 24px;
    height: 24px;
    float: left;
    margin: 0 0px 0 -40px;
    vertical-align: middle;
}

.item_tit{
    margin: 40px 0 0 0;
    font-size: 16px;
    line-height: 24px;
}

.item_tit.org{
    margin: 0 0 0 0;
}


.wp_orgaos_sociais{
    padding: 100px 0px;
}

.acc_tit{
    margin: 0 0 0 0;
    padding: 30px 80px 30px 80px;
    font-size: 20px;
    position: relative;
}

.item{
    margin: 20px 0 0 0;
}

dt .acc_tit:after{
    position: absolute;
    content: "";
    background-image: url("/assets/img/icons/mais.svg");
    width: 24px;
    height: 24px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

dt.mostra .acc_tit:after{
    position: absolute;
    content: "";
    background-image: url("/assets/img/icons/menos.svg");
    width: 24px;
    height: 24px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.container{
    padding: 30px 80px 50px 80px;
}

.politica_gestao ul li:before{
    content:"\A";
    width:10px;
    height:10px;
    border-radius:50%;
    background: #ed7422;
    display:block;
    width: 8px;
    height: 8px;
    float: left;
    margin: 10px 0px 0 -40px;
    vertical-align: middle;
}

.ct_politica{
    margin: 0 0 0 0;
}

.it_especial{
    padding: 0px!important;
}

.it_texto{
    margin: 20px 0 0 0;
}

.it_texto span{
    width: 100%;
    display:block;
    margin: 20px 0 0 0;
}

/* recrutamento */

.tit_upload{
    font-size: 16px;
}

.image-upload{
    margin: 40px 0 50px 0;
}

.image-upload label:hover{
    transform: translateY(-8px); 
}

.image-upload label:hover > .ct .tit_upload{
    color: #ed7422;
}

.image-upload label{
    cursor: pointer;
}

.image-upload > input{
    display: none;
}

.image-upload svg{
    width: 80px;
    height: 60px;
    cursor: pointer;
}

.filename-container {
  margin: 10px 0 0 0;
}

.filename {
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    color: #58595b;
}

.politica_privacidade span{
    margin: 0 0 0 10px;    
}

.it_form_rh{
    position: relative;
    padding: 50px;
    box-shadow: 0px 2px 46px 0px rgba(0, 0, 0, 0.15); 
}

.it_form_rh form input.input{
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 1px;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.it_form_rh form input.input:focus,
.it_form_rh form input.input:hover{
    border-color: #ed7422;

}

.it_form_rh form textarea.input{
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 54px;
    height: 176px;
    background: #fff;
    padding: 15px 20px;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 1px;
    margin: 0 0 10px 0;
}

.it_form_rh form textarea.input:focus,
.it_form_rh form textarea.input:hover{
    border-color: #ed7422;
}

.form_rh_btn .btn{
    margin: 50px 0 50px 0;
    cursor: pointer;
}

.tit_form_rh{
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 50px 0;
}

.sub_tit_form_rh{
    font-size: 16px;
    line-height: 24px;
}

.opcao_tit_form_rh{
    font-size: 16px;
    line-height: 24px
}

.form_rh{
    margin: 25px 0 0 0;
}

.form_rh .politica_privacidade{
    margin: 0 0 0 0;
}

.form_rh .campos{
    margin: 10px 0 0 0;
}

.form_rh .input::placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_rh .input::-ms-input-placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_rh .input:-ms-input-placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_rh_btn .ct .btn{
    margin: 50px 0 0 0;
}

.tit_rh h3{
    margin: 100px 0 100px 0;
}

.tit_met h2{
    margin: 0 0 100px 0;
}

.intro .tit_met h2{
    margin: 100px 0 100px 0;
}

.info_met h2{
    margin: 0 0 50px 0;
}

.info_met p{
    margin: 0 0 50px 0;
}

.tit_aju h3{
    margin: 100px 0 100px 0;
}

.tit_parc h3{
    margin: 100px 0 0 0;
}

.tit_res h3{
    margin: 100px 0 0 0;
}

.intro_rh{
    margin: 0 0 100px 0;
}

.ct_lojas ul{
    padding: 0 0 0 40px;
    margin: 0 0 50px 0;
}

.tit_ajude{
    margin: 0 0 100px 0;
    text-align: center;
}

.checkbox .form{
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.tit_form_ajude{
    font-size: 30px;
    line-height: 38px;
    margin: 50px 0 25px 0;
}


.form_ajude{
    margin: 25px 0 0 0;
}
.form_ajude .politica_privacidade{
    margin: 0 0 0 0;
}

.form_ajude .campos{
    margin: 10px 0 0 0;
}

.form_ajude .input::placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_ajude .input::-ms-input-placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_ajude .input:-ms-input-placeholder {
  color: #afb9ba;
  opacity: 1;
}

.form_ajude_btn .btn{
    margin: 50px 0 50px 0;
    cursor: pointer;
}

.form_ajude_btn .ct .btn{
    margin: 50px 0 0 0;
}

.it_form_ajude{
    position: relative;
    padding: 50px;
    box-shadow: 0px 2px 46px 0px rgba(0, 0, 0, 0.15); 
}

.it_form_ajude form input.input{
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 1px;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.it_form_ajude form input.input:focus,
.it_form_ajude form input.input:hover{
    border-color: #ed7422;

}

.it_form_ajude form textarea.input{
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 54px;
    height: 176px;
    background: #fff;
    padding: 15px 20px;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 1px;
    margin: 0 0 10px 0;
}

.it_form_ajude form textarea.input:focus,
.it_form_ajude form textarea.input:hover{
    border-color: #ed7422;
}

.it_livrorec_form{
    height: 36px;
}

.it_livrorec_form img{
    height: 100%;
}

/* avenças */

.tipo_avenca{
    margin: 0 0 10px 0;
}

input[placeholder] { text-overflow: ellipsis; }
::-moz-placeholder { text-overflow: ellipsis; } /* firefox 19+ */
input:-moz-placeholder { text-overflow: ellipsis; }

/* concessões */

.conessoes_btn{
    margin: 50px 0 50px 0;
}

.ct_espinho{
    margin: 0 0 0 0;
}

.concessao_espinho ul li:before {
    content: "\A";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ed7422;
    display: block;
    width: 8px;
    height: 8px;
    float: left;
    margin: 10px 0px 0 -40px;
    vertical-align: middle;
}

/* certificaoes */

.wp_certificacoes, .wp_rh, .wp_parc, .wp_met_avisos{
    padding: 100px 0px;
}

.wp_met{
    padding: 50px 0px;
}

.cert_tit{
    padding: 0 0 100px 0;
}

.links{
    margin: 50px 0 0 0;
}

.links ul li{
    margin: 25px 0 0 0;
}

/* guias da cidade */

.wp_guia{
    padding: 100px 0;
}

.it_guia_legenda{
    margin: 50px 0 0 0;
    width: 1200px;
}

.it_guia_legenda ul li{
    font-size: 16px;
    margin: 0 0 20px 0;
}

.it_guia_legenda ul li span{
    display: inline-block;
    padding: 7px 7px 7px 7px;
    border-radius: 68px;
    width: 14px;
    height: 14px;
    margin: 0 10px 0 0;
}

.it_col_guia ul li{
    margin: 25px 0 0 0;
}

.it_col_guia_con{ /* ululul*/
    padding: 0 0 0 40px;
}

.pol_priv ul li span{
    margin: 10px 0 0 -40px;
}

.pol_priv ul li span.sub_tit{
    margin: 0 0 0 0;
}

.pol_priv ul li .texto{
    display: inline;
}

.pol_priv ul li .tit{
    padding: 0 0 0 20px;
    display: inline;
}

.container .pol_priv {
    line-height: 28px;
    margin: 40px 0 0 0;
}

.texto a:hover{
    color: #ed7422;
}

.wp_pol_priv{
    padding: 100px 0;
}

.wp_res_lit{
    padding: 100px 0;
}

.entidade_info ul li{
    margin: 25px 0 0 0;
}

.entidade_logo img{
    display: block;
    margin: auto;
}

.drop_menu_mobile:after{

}

hr{
    border-top: 1px solid #dadada;
    opacity: 0.3;
}

/* erro 404 */

.erro_txt{
    margin-left: auto;
    max-width: 700px;
    padding: 0 40px 0 0;
}

.erro_txt h3 {
    margin-top: 20px;
}

.erro_txt .btn {
    margin: 80px 0 0 0;
}

.entidate-tit{
    font-size: 28px;
    font-weight: 36px;
    padding: 0 40px 0 0;
}

.ct_entidade > .it{
    padding-bottom: 0px;
}

.entidade_logo img{
    mix-blend-mode: multiply;
}

.mobile_vv{
    display: none;
}

.desktop_vv{
    display: block;
}

.mobile_intro{
    display: none;
}

.desktop_intro{
    display: block;
}


.last_v{
    margin-bottom: 0px!important;
}

.last_h{
    margin-right: 0px!important;
}

.first_v{
    margin-top: 0px!important;
}

.first_h{
    margin-left: 0px!important;
}

.first { margin-top: 0 !important; margin-left: 0 !important; }
.last { margin-bottom: 0 !important; margin-right: 0 !important; }


.it_not:hover > .it_not_img{
    transform: scale(1.2);
}

.it_not:hover > .it_not_info .link{
    padding: 0 0 0 20px;
}

.it_not_img{
    transform: scale(1);
}

.wp_intro:hover > .ct .it .ct .intro_txt_e .intro_saber .link{
    padding: 0 0 0 20px;  
}

.error_field {
    -webkit-box-shadow: 0px 0px 21px 5px rgba(255,0,0,.2);
    -moz-box-shadow: 0px 0px 21px 5px rgba(255,0,0,.2);
    box-shadow: 0px 0px 5px 1px rgba(255,0,0,.2);
}

.form_newsletter_input.error_field:hover, 
.form_newsletter_input.error_field:focus{
    border: 1px solid red!important;
}

.input.error_field:focus,
.input.error_field:hover{
    border: 1px solid red!important;
}

.input.error_field{
    border: 1px solid red!important;
}

.checkbox label.error_field{
    color: red;
    -webkit-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0);
    -moz-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0);
    box-shadow: 0px 0px 5px 1px rgba(255,0,0,0);

}

.checkbox label.error_field{
    color: red;
    -webkit-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0);
    -moz-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0);
    box-shadow: 0px 0px 5px 1px rgba(255,0,0,0);

}

.checkbox label.error_field:before{
    border: 2px solid red;
    -webkit-box-shadow: 0px 0px 21px 5px rgba(255,0,0,.2);
    -moz-box-shadow: 0px 0px 21px 5px rgba(255,0,0,.2);
    box-shadow: 0px 0px 5px 1px rgba(255,0,0,.2);
}

.tit_upload.error_field {
    color: red;
    -webkit-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0)!important;
    -moz-box-shadow: 0px 0px 21px 5px rgba(255,0,0,0)!important;
    box-shadow: 0px 0px 5px 1px rgba(255,0,0,0)!important;
}

.image-upload label:hover > .ct .tit_upload.error_field {
    color: red;
}

.file_info{
    padding-bottom: 0px!important;
    font-size: 12px;
}

.close_btn{
    height: 12px;
    opacity: 1;
    display: none;
}

.close_btn:hover{
    opacity: 0.5;
}

.close_btn svg{
    height: 20px;
    width: 80px;
}

.btn:disabled{
    background-color: #afb9ba;
}

.menu_icon span svg{
    width: 24px;
    height: 24px;

}

.menu_icon span svg{
    width: 24px;
    height: 24px;
}

.wp_rodape a{
    cursor: pointer;
}

.cc-message{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgb(141, 155, 156);
}

.cc-message a{
	color: rgb(141, 155, 156);
	opacity: 0.8;
}

.cc-message a:hover{
	opacity: 1;
}

.cc-compliance{
	background-color: #ed7422;
    color: #fff;
    border-radius: 5px;
}

.cc-compliance a{
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    border-radius: 5px;
}

.cc-compliance a:hover{
	background-color: rgb(255, 154, 72);
}

.wp_popup{
    width: 280px;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 11px 10px 0px rgba(0, 0, 0, 0.10); 
    border-radius: 0px 0px 8px 8px;
    position: fixed;
    bottom: 20px;
    margin-left: -340px;
    z-index: 1;
}

.wp_popup.esc{
    margin-left: -340px!important;
}

.wp_popup.ver{
    margin-left: 20px;
}

.wp_popup:before{
    content: "";
    border-top: 4px solid #ed7422;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.x_btn{
    width: 16px;
    height: auto;
    margin-left: auto;
    cursor: pointer;
}


.wp_popup .btn{
    margin-top: 25px;
    text-align: center;
    display: block;
}

.wp_popup .text{
    margin-top: 16px;
}

.underline_link{
    text-decoration: underline;
    text-underline-position: under;
}
