html {
	height: 100%;
}

body
{
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
	display: flex;
	flex-flow: column nowrap;
	height: 100%;
}


main{
    max-width: 1300px;
    margin: 0 auto;
	flex: 1 0 auto;
	width: 100%;
}

img {
	max-width: 100%;
}

.layout-header .column-header
{
    height: 75px;
}

.layout-header .column-header.layout-logo
{
    padding-top: 10px;
    text-align: center;
}




.layout-search
{
    padding-top: 15px;
    text-align: center;
}


.layout-search form
{
    padding: 3px;
    text-align: left;
    display: inline-block;
    background-color: #FFF;
    border-radius: 6px;
    border: 1px solid #A3A3A3;
}

.layout-search form *
{
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.layout-search input.form-control
{
    width:60%;
}

.layout-search select.form-control
{
    width:40%;
    border-left: 1px solid;
}


.layout-publish
{
    text-align: center;


}
.layout-publish > div
{
    display: inline-block;
    margin: 0 auto;
    min-width: 200px;
    max-width: 250px;
}

.layout-login
{
    padding: 4px 8px;;
    color: rgba(255,255,255,.9);

}

.layout-login a
{
    color: rgba(255,255,255,.8);
    text-decoration: none;
}

.layout-login a:hover
{
    color: rgba(255,255,255,1);
    text-decoration: underline;
}

.layout-login-account
{
    text-align: left;
    margin-bottom: 3px;
}

.layout-login-register
{
    text-align: right;
    border-left: 1px solid #FFF;
    margin-bottom: 3px;
}


.btn.btn-publish {
    background-color: #449d44;
    color: #fff ;
    font-weight: 400 ;
    font-size: 15px ;
}
.btn.btn-publish.header-btn {
    background-color: #449d44;
    color: #000;
    font-weight: 700;
    font-size: 16px;
}

.btn.btn-publish.captura-btn {
    background-color: #FF8500;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
.mw1300centered {
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}
/*
    DESTACADO
*/

.layout-content
{
    border: 1px solid #D4D4D4;
    border-bottom: none;
    background-color: #FFF;
}

.layout-content .prominent-header
{
    position: relative;
    height: 40px;
}

.layout-content .prominent-line
{
    height: 30px;
    border-bottom: 1px solid #000;
}

.layout-content .prominent-title
{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -150px;
    background-color: #FFF;
    width: 300px;
    text-align: center;
    font-size: 35px;
    font-weight: 300;
}

.layout-content .prominent-list
{
    margin-bottom: 10px;
}


/* CONTENIDO DESTACADO */

.block-publish
{
    position: relative;
    display: block;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    padding-bottom: 10px;
}

a.block-publish,
a.block-publish:hover
{
    color: #000;
    text-decoration: none;
}

.block-publish .image
{
    width: 100%;
}

.block-publish .price
{
    font-size: 20px;
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

.block-publish .title
{
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    padding: 0 10px;
    color: rgba(0,0,0,.6);
    text-align: center;
}

.block-publish .code
{
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #FEC551;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 3px 20px;
}


@media (min-width: 992px)
{

    .block-publish .price
    {
        font-size: 18px;
    }

    .block-publish .title
    {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
    }

    .block-publish .code
    {
        font-size: 12px;
    }
}



/*** BREADCRUMBS ***/
.layout-breadcrumbs{
    margin: 10px 0;
}

.breadcrumb {
    list-style: none;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    background-color: transparent;
    text-align: left;
    padding: 5px;
}
.layout-breadcrumbs,
.breadcrumb > li.active,
.breadcrumb > li a
{
    color: #000;
    font-size: 16px;
}

.breadcrumb > li
{
    display: inline-block;
}

/********EL TERRITORIO***********/

.column-header.layout-logo a ,
.column-header.layout-logo a img {
    width: 100%;
}

.layout-header {
    background-color: rgb(68, 68,68);
    box-shadow: 0px 5px 10px rgb(0 0 0 / 8%);
    z-index: 10;
    position: relative;
}

select[data-live-search="true"]{
    display:none !important;
}

select[name="q"]{
    width:100% !important;
}

/********FOOTER*********/
.layout-footer {
    display: flex;
	background-color: #212121;
	padding: 35px 0;
  }
  
  .layout-footer .container {
    align-items: center;
  }
  
  .layout-footer .logo-footer img {
    box-sizing: content-box;
    width: 150px;
  }
  
  .layout-footer .info-footer {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex: 1 1 50%;
    margin: 0 15px;
    padding: 0 15px;
    border-left: 1px solid rgb(68,68,68);
    border-right: 1px solid rgb(68,68,68);
  }
  
  .layout-footer .info-footer strong {
    font-weight: 600;
  }
  
  .layout-footer .info-footer a {
    color: rgb(29, 157, 59);
  }
  
  .layout-footer .social-footer {
      display: flex;
    column-gap: 15px;
  }
  
  .layout-footer .social-footer svg {
    height: 20px;
    width: 20px;
    color: rgb(173, 173, 173);
  }
  
  .layout-footer .social-footer a:hover svg {
    color: #fff;
  }
  
  .layout-footer .social-footer a span {
    display: none;
  }

.logo-container img {
    width: 30%;
    padding: 20px;
    max-width: 150px;
}

.text-footer {
    color: #FFF;
    font-size: 17px;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    margin-bottom: 15px;
    padding-left: 20px;
}

.contact-icons a {   
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 0 5px;
}

.contact-icons a:hover {
    color: #FFF;
    background: rgba(255, 255, 255, 0.17);
}

.contact-icons {
    text-align: right;
}
.contact-icons .icon{
    height: 40px;
    width: 40px;
    display: inline-block;
    background-size: contain;
}
.contact-icons .icon.icon-facebook{
    background-image: url('../img/Funebres/icon-facebook.png');
}
.contact-icons .icon.icon-instagram{
    background-image: url('../img/funebres/icon-instagram.png');
}
.contact-icons .icon.icon-linkedin{
    background-image: url('../img/funebres/icon-linkedin.png');
}
.contact-icons .icon.icon-youtube{
    background-image: url('../img/funebres/icon-youtube.png');
}

@media (max-width: 843px){
    .contact-icons {
        text-align: right;
    }
    .logo-container {
        text-align: center;
    }
    .text-footer {
        font-size: 14px;
    }
}

/***DESTACADOS***/

.destacado-header {
    font-size: 25px;
    padding-left: 20px;
    background: #21b14b;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    border-left: 3px solid #FFF;
    border-right: 3px solid #FFF;
    color: #FFF;
}

.destacado-header.red-dead {
    background: #1e5e33;
    border-top: 5px solid #FFF;
    height: 50px;
    border-bottom: 5px solid #FFF;
}

ul.territorio li {
    padding: 3px;
}

ul.territorio {
    overflow: hidden;
}

.block-publish {
    margin-top: 3px !important;
}

@media (min-width: 992px){
    .block-publish .price {
        font-size: 26px !important;
        text-align: left;
        padding-left: 15px;
    }
    .block-publish .title {
        font-size: 16px !important;
        line-height: 20px;
        height: 40px;
        text-align: left !important;
        padding-left: 20px !important;
    }
}

.block-publish .price {
    font-size: 20px !important;
    text-align: left !important;
    padding-top: 5px;
    padding-left: 20px !important;
}

.block-publish .title {
    text-align: left !important;
    padding-left: 20px !important;
    height: 35px !important;
    font-size: 12px !important;
    font-weight: 400;
}

.black-div {
    height: 150px;
    background: rgb(6, 0, 84);
    margin-top: 10px;
}

.separator-div {
    height: 60px;
    background: #21b14b;
    overflow: hidden;
    display: block;
}

.separator-li {
    overflow: hidden;
    padding-bottom: 0 !important;
}

h2.maintitle {
    font-size: 30px;
    color: rgb(68,68,68);
    text-transform: uppercase;
    font-weight: bold;
    padding: 25px 0;
}

/**FIN DESTACADOS**/

.HasImage1 {
  display: inline;
}

.HasImage {
  display: none;
}


.section-title {
    padding: 10px 0;
    font-size: 28px;
    color: #133a20;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

/*MIDDLE GREEN*/

.middle-green {
    overflow: hidden;
    background: #ffffff;
    margin: 0 3px;
}

.middle-green .logo-container img {
    max-width: 50px;
    float: left;
    padding: 0;
    width: auto;
}

.middle-green .logo-container img.green-middle-img-text {
    max-width: 238px;
    display: inline-block;
    padding-top: 7px;
    margin-left: 10px;
}

.middle-green .logo {
    overflow: hidden;
    display: inline-block;
}

.middle-green .logo-container {
    text-align: center;
    padding-top: 52px;
    overflow: hidden;
}

.middle-green .text-container {
    text-align: center;
    font-size: 19px;
    padding: 25px 0 !important;
}

.middle-green .logo-container span {
    font-size: 45px;
    font-weight: bold;
    vertical-align: top;
    overflow: hidden;
    padding-left: 10px;
    line-height: 55px;
}

.middle-green .text-container span.mail {
    font-weight: bold;
}

.middle-green .text-container span.tel {
    font-weight: bold;
    line-height: 35px;
    font-size: 27px;
}

.middle-green .text-container span.duda {
    line-height: 20px;
}

.middle-green .black-hole-container {
    padding: 0px;
    margin-top: 0;
    overflow: hidden;
    background: #FFF;
}

.middle-green .black-div {
    height: 150px;
    background: rgb(6, 0, 84);
    margin: 6px 3px;
}

.middle-green .text-container span {
    display: block;
}

.middle-green .cols-black {
    padding: 0;
}

body.rubro-vehiculos .destacado-header {
    background: #21b14b;
    color: #FFF;
}

body.rubro-servicios .destacado-header {
    background: #21b14b;
    color: #FFF;
}

body.rubro-varios .destacado-header {
    background: #21b14b;
    color: #FFF;
}

/*CARA INDIO*/

.logo-container-header .logo div {
    display: inline-block;
    max-width: 240px;
    float: left;
}
.logo-container-header img {
    width: 100%;
}
.logo-container-header .logo {
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.logo-container-header .elterri-texto {
    max-width: 175px;
}
.logo-container-header .cara-indio {
    max-width: 30px;
}
.logo-container-header span.grupo-texto {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    font-size: 12px;
    padding-top: 7px;
    padding-right: 5px;
}
.logo-container-header {
    overflow: hidden;
    text-align: center;
}

.mw1300centered .queres-indio {
    overflow: hidden;
    width: 100%;
}

.mw1300centered .queres-indio .queres {
    margin-bottom: 25px;
    font-size: 37px;
    font-weight: 600;
    color: #FFF;
}

.mw1300centered .queres-indio .logo-container-header {
    overflow: hidden;
    text-align: right;
    color: #FFF;
}

.mw1300centered .queres-indio .logo-container-header span.grupo-texto {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    font-size: 14px;
    padding-top: 6px;
    padding-right: 0;
}

.mw1300centered .queres-indio .queres span {
    display: inline-block;
}

@media (max-width: 767px){
    .mw1300centered .queres-indio .queres {
        text-align: center;
        margin-bottom: 10px;
    }
    .mw1300centered .queres-indio .logo-container-header {
        text-align: center !important;
        margin-bottom: 10px;
    }
	
	  .layout-footer .container {
    flex-flow: column nowrap;
  }
  
  .layout-footer .info-footer {
    flex-flow: column;
    border: 0;
    row-gap: 15px;
    margin: 30px 0;
  }
}

/*NAV-BAR FIXED*/

div#fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #1e5e33;
    height: 50px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: 0.4s;
    border-bottom: 2px solid #fff;
}
div#fixed-navbar div {
    padding: 0;
}
div#fixed-navbar a.img-logo-inside img {
    height: 100%;
    padding: 10px;
}
div#fixed-navbar a.img-logo-inside {
    height: 50px;
    display: block;
    text-align: center;
}
div#fixed-navbar.noShow .arrow-to-top,
div#fixed-navbar.noShow {
    height: 0px !important;
    border-bottom: 0;
}
div#fixed-navbar .btn.btn-publish.header-btn {
    background-color: #21b14b !important;
    color: #FFF !important;
    border-radius: 0;
    font-size: 23px !important;
    max-width: 545px;
    width: 100%;
    line-height: 34px;
    padding: 6px;
}
div#fixed-navbar .arrow-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 45px !important;
    color: #f7a600;
    font-size: 40px;
    transition: 0.4s;
    cursor: pointer;
    overflow: hidden;
    height: 57px !important;
    text-align: center;
}

@media (max-width: 600px){
    .destacado-header {
        font-size: 21px !important;
        padding-left: 20px !important;
        line-height: 30px !important;
        height:auto !important;
        vertical-align: middle;
    }
}
@media (max-width: 545px){
    div#fixed-navbar div{
        width:100% !important;
    }
    div#fixed-navbar{
        height: 89px !important;
    }
    div#fixed-navbar .btn.btn-publish.header-btn {
        line-height: 24px !important;
    }
}

a.elterrifooter img{
    width: 100%;
}
a.elterrifooter {
    border: 0;
    border-radius: 0 !important;
    background: none !important;
    padding: 0 !important;
    width: 270px !important;
    height: 55px !important;
    float: left;
    overflow: hidden;
    max-width: 100%;
}
.elterri-text-footer span{
    display:inline-block;
}
.elterri-text-footer {
    padding: 40px 0 0 23px;
    width: 100%;
}

@media (max-width: 500px){
    .contact-icons a {
        padding-top: 5px;
        font-size: 22px;
        height: 40px;
        width: 40px;
    }
}
@media (max-width: 423px){
    .contact-icons a {
        margin-top: 5px;
    }
}
@media (max-width: 340px){

}

.text-a-r{
    text-align: right;
}
.text-a-l{
    text-align: left;
}
.no-pad-r{
    padding-right: 0;
}

.black-pub-header img{
    width:100%
}
.black-pub-header {
    max-width: 728px;
    width: 100%;
    margin: 0 auto;
    margin-top: 5px;
}
.black-pub-container {
    background: #FFF;
    padding:3px;
    position: relative;
}

.cssTabMS{
    display: none !important;
}

.BL_MessageBox_Title, .BL_WindowBox_Title{
	    background-color: #1e5e33;
		color: white;
}
.BL_LoadingBox_Dialog, .BL_MessageBox_Dialog, .BL_WindowBox_Dialog{
	border-color:#1e5e33a6
}