html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    /* you need to set this to assign to the main element a min height of 100% */
    /*height: 100%;*/
}

body {
    /*font-size: 100%;*/
    /*font-family: "Titillium Web", sans-serif;*/
    color: #4e6361;
    background-color: #f5f4e9;
    margin: 0;
    padding: 0;
    /*background-color: #F1F1F1;*/
    font-family: "Verdana";
    font-size: 12px !important;
    /*background-color: #ffffff;*/
    width: 99.8%;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */

.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.overflow-hidden {
    overflow: hidden;
}

/* --------------------------------

Main components

-------------------------------- */

.cd-main-content {
    /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
   /*min-height: 100%;*/
    position: relative;
    background-image: url("gfx/fundo.jpg");
    z-index: 2;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.cd-main-content.lateral-menu-is-open {
    /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
}

@media only screen and (min-width: 768px) {
    .cd-main-content {
        padding-top: 70px;
		padding-bottom: 50px;
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background-color: white;
    z-index: 3;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

header.lateral-menu-is-open {
    /* translate to show the lateral menu */
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
}

header.is-fixed {
    position: fixed;
}

#cd-logo {
    display: block;
    float: right;
    margin: 12px 0 0 20px;
    margin: 4px 4px 0 0;
    top: -30px;
    position: relative;
}

#cd-logo img {
    display: block;
}

#cd-top-nav {
    position: absolute;
    top: 0;
    right: 120px;
    height: 100%;
    display: none;
}

#cd-top-nav ul {
    height: 100%;
    padding-top: 18px;
}

#cd-top-nav li {
    display: inline-block;
    margin-right: 1em;
}

#cd-top-nav a {
    display: inline-block;
    padding: .5em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.no-touch #cd-top-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media only screen and (min-width: 768px) {
    #cd-top-nav {
        display: block;
    }
}

#cd-menu-trigger {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #5C6BC0;
    padding-left: 1.25em;
}

#cd-menu-trigger .cd-menu-text {

    display: inline-block;

    line-height: 70px;
    height: 100%;

    text-transform: uppercase;

    color: #FFF;

    font-weight: 600;

    display: none;

}

#cd-menu-trigger .cd-menu-icon {

    /* this span is the central line in the menu menu */

    display: inline-block;

    position: absolute;

    left: 50%;

    top: 50%;

    bottom: auto;

    right: auto;

    -webkit-transform: translateX(-50%) translateY(-50%);

    -moz-transform: translateX(-50%) translateY(-50%);

    -ms-transform: translateX(-50%) translateY(-50%);

    -o-transform: translateX(-50%) translateY(-50%);

    transform: translateX(-50%) translateY(-50%);

    width: 18px;

    height: 2px;

    background-color: #FFF;

    /* these are the upper and lower lines in the menu menu */

}

#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {

    content: '';

    width: 100%;

    height: 100%;

    position: absolute;

    background-color: inherit;

    left: 0;

}

#cd-menu-trigger .cd-menu-icon::before {

    bottom: 5px;

}

#cd-menu-trigger .cd-menu-icon::after {

    top: 5px;

}

#cd-menu-trigger.is-clicked .cd-menu-icon {

    background-color: rgba(255, 255, 255, 0);

}

#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {

    background-color: white;

}

#cd-menu-trigger.is-clicked .cd-menu-icon::before {

    bottom: 0;

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    -o-transform: rotate(45deg);

    transform: rotate(45deg);

}

#cd-menu-trigger.is-clicked .cd-menu-icon::after {

    top: 0;

    -webkit-transform: rotate(-45deg);

    -moz-transform: rotate(-45deg);

    -ms-transform: rotate(-45deg);

    -o-transform: rotate(-45deg);

    transform: rotate(-45deg);

}

@media only screen and (min-width: 768px) {

    /*#cd-menu-trigger .cd-menu-text {

        display: inline-block;

        line-height: 70px;

    }*/

    #cd-menu-trigger .cd-menu-icon {

        left: auto;

        right: 1.25em;

        -webkit-transform: translateX(0);

        -moz-transform: translateX(0);

        -ms-transform: translateX(0);

        -o-transform: translateX(0);

        transform: translateX(0);

    }

}

#cd-lateral-nav {
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    /* the secondary navigation is covered by the main element */
    z-index: 1;
    width: 260px;
    background-color: #283593;
    overflow-y: auto;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
    transition: transform .4s 0s, visibility 0s .4s;
    /* this creates the subtle slide in animation of the navigation */
    -webkit-transform: translateX(-80px);
    -moz-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    -o-transform: translateX(-80px);
    transform: translateX(-80px);
}

#cd-lateral-nav .sub-menu {

    padding: 0 10px 20px 15px;

    display: none;

}

#cd-lateral-nav a {

    display: block;

    line-height: 2em;

    padding: 0 16px 0 32px;

    color: #aab5b7;

}

#cd-lateral-nav a.current {

    background-color: #3F51B5;
    color: #FFF;

}

.no-touch #cd-lateral-nav a:hover {

    color: #FFF;

}

@media only screen and (min-width: 768px) {

    #cd-lateral-nav .cd-navigation {

        /*margin: 20px 0;*/
        margin: 10px 0 16px;

    }

}

#cd-lateral-nav.lateral-menu-is-open {

    -webkit-transform: translateX(0);

    -moz-transform: translateX(0);

    -ms-transform: translateX(0);

    -o-transform: translateX(0);

    transform: translateX(0);

    visibility: visible;

    -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;

    -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;

    transition: transform .4s 0s, visibility 0s 0s;

    /* smooth the scrolling on touch devices - webkit browsers */

    -webkit-overflow-scrolling: touch;

}

/* style menu items which have a submenu */

#cd-lateral-nav .item-has-children > a {

    position: relative;

    text-transform: uppercase;

    font-weight: 600;

    /* this is the right arrow to show that the item has a submenu */

}

#cd-lateral-nav .item-has-children > a::after {

    content: '';

    display: block;

    height: 11px;

    width: 8px;

    position: absolute;

    top: 50%;

    bottom: auto;

    -webkit-transform: translateY(-50%);

    -moz-transform: translateY(-50%);

    -ms-transform: translateY(-50%);

    -o-transform: translateY(-50%);

    transform: translateY(-50%);

    right: 1em;

    background: url("../img/cd-arrow.svg") no-repeat center center;

    background-size: 8px 11px;

    -webkit-transition-property: -webkit-transform;

    -moz-transition-property: -moz-transform;

    transition-property: transform;

    -webkit-transition-duration: 0.2s;

    -moz-transition-duration: 0.2s;

    transition-duration: 0.2s;

}

#cd-lateral-nav .item-has-children > a.submenu-open::after {

    -webkit-transform: translateY(-50%) rotate(90deg);

    -moz-transform: translateY(-50%) rotate(90deg);

    -ms-transform: translateY(-50%) rotate(90deg);

    -o-transform: translateY(-50%) rotate(90deg);

    transform: translateY(-50%) rotate(90deg);

}

#cd-lateral-nav .socials {

    padding: 0 32px;

}

#cd-lateral-nav .socials:after {

    content: "";

    display: table;

    clear: both;

}

#cd-lateral-nav .socials a {

    height: 32px;

    width: 32px;

    float: left;

    padding: 0;

    background-image: url("../img/cd-socials.svg");

    background-repeat: no-repeat;

    background-size: 128px 64px;

    background-color: #FFF;

    margin-right: .5em;

    border-radius: 0.25em;

}

#cd-lateral-nav .socials a.cd-twitter {

    background-position: 0 0;

}

#cd-lateral-nav .socials a.cd-github {

    background-position: -32px 0;

}

#cd-lateral-nav .socials a.cd-facebook {

    background-position: -64px 0;

}

#cd-lateral-nav .socials a.cd-google {

    background-position: -96px 0;

}

.no-touch #cd-lateral-nav .socials a:hover {

    background-color: #4e6361;

}

.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {

    background-position: 0 -32px;

}

.no-touch #cd-lateral-nav .socials a:hover.cd-github {

    background-position: -32px -32px;

}

.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {

    background-position: -64px -32px;

}

.no-touch #cd-lateral-nav .socials a:hover.cd-google {

    background-position: -96px -32px;

}

.cd-navigation li{
    list-style-type: none;
}

#footer {
    clear: both;
    text-align: right;
    color: #666666;
    font-size: 0.85em;
    padding-right: 15px;
}

#content {
    /*float: left;*/
    margin-top: 75px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: #fff;
    border-radius: 10px;
    padding: 1em;
}

form {
    padding: 1em;
    /*font: 80%/1 sans-serif;*/
    /*width: 375px;
    border: 1px solid #D5D5D5;*/
}

.top_fixed {
    z-index: 1000;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 90px;
    font-size: 13px;
    background: white;
    padding-top: 5px;
}

/*.badge {
    top: -12px;
    right: 3px;
    padding: 0 5px;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.25);
    border: 1px solid;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);

    background: #fa623f;
    border-color: #fa5a35;
    background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f);
    background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f);
    background-image: -o-linear-gradient(top, #fc9f8a, #fa623f);
    background-image: linear-gradient(to bottom, #fc9f8a, #fa623f);
}*/

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 0px 9px 0px 9px !important;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: super;
    background: #fa623f !important;
    border-radius: 8px;
    border-color: white;
    border: 1px solid;
    top: -13px;
    position: relative;
    left: -24px;
}

.badge label{
    margin-bottom: 0px;
}

.container-fluid, .container {
    padding: 20px;
    background-color: #fff;
    margin: 50px;
}

th {
    font-weight: bold;
    background-color: #5C6BC0;
    color: #fff;
}

.table-condensed {
    padding: 2px;
}

.title_form{
    border-bottom: 2px solid #ddd;
    width: 60%;
}

.btn_circle{
    /*background: #1abc9c !important;*/
    /*color: #fff !important;*/
    margin-bottom: 7px !important;
    display: inline-block !important;
    /*font-size: .8em !important;*/
    margin-right: 4px !important;
    line-height: 30px !important;
    text-align: center !important;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2) !important;
    border-radius: 15px 15px 15px 0 !important;
}

.btn_two_lines{
    height: 60px;
    width: 60px !important;
}

.ui-growl {
    position: fixed;
    top: 80px !important;
    right: 20px;
    width: 301px;
}

.logo {
    color: black; 
    font-size: x-large
} 

.contato_paroquia {
    color: black; 
    font-size: x-large
} 

.img_fundo {
    background-image: url("resources/gfx/fundo.jpg");
    background-color: #cccccc;
} 

.fundo_cadastro {
    background-color: rgba(154,143,146, 0.2);    
}

.font_input {
   color: #7E726B;
   font-family: "opensans-regular";
}

.quadro_transparente {
    background-color: rgba(234, 249, 252, 0.5);
    border-radius: 1.20em;
} 

.espaco_itens {
    margin-right: 50px
}



@font-face {
    font-family: "opensans-regular";
    src: url("fontes/OpenSans-Regular.ttf") format("truetype");
}

.opensans-regular{
    font-family: "opensans-regular"; 
} 

@font-face {
    font-family: "dosis-regular";
    src: url("fontes/Dosis-Regular.ttf") format("truetype");
}

.dosis-regular{
    font-family: "dosis-regular"; 
} 

@font-face {
    font-family: "dosis-light";
    src: url("fontes/Dosis-Light.ttf") format("truetype");
}

.dosis-light{
    font-family: "dosis-light"; 
} 




