/**
 * Index:
 *
 * 1) General
 * 2) HEA: Header
 * 3) FOO: Footer
 * 4) HOM: Home
 * 5) WOR: How Works
 * 6) CTT: Contact Us
 * 7) TAC: Terms And Conditions
 * 8) SIG: Sign Up
 * 9) PLE: Places Element
 * 10) PLA: View Place
 * 11) PED: Edit Place
 * 12) CON: Conversation
 * 13) COS: Conversations
 * 14) USP: User Profile
 * 15) ADA: Add Address
 * 16) SCH: Search
 * 17) PAG: Institucional Pages
 * 18) DSP: Deal SidePanel
 * 19) PAR: Partners
 * 20) INS: Insurance
 * 21) ADR: Address Dropdown
 * 22) DSH: Dashboard
 * 23) CNT: Construction
 * 24) AEX: Add Exchange
 */


/*******************************************************************************
 * 1) General
 ******************************************************************************/
body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

.date label{
    display: block;
    margin-top: 10px;
}

.date select{
    padding: 10px 15px;
    margin: 10px;
}

.submit input{
    min-width: 100px;
    padding: 10px;
    color: black !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
}
.submit input:hover{
    color: gray !important;
}

.btn-menu{
    width: 100%;
}

.input{
    text-align: left;
}
.input label{
    font-size: 18px;
    font-weight: 500;
}

.input input{
    min-height: 40px;
    width: 100%;
}
.input input[type='checkbox']{
    width: 18px;
    height: 18px;
    min-height: 0px;
    border: 1px solid #f7ea05;
}

h4{
    font-weight: 500;
    text-transform: uppercase; 
    font-size: 16px;
    color: black;
    opacity: 1 !important;
}

/* Display */
.inline-block {
    display: inline-block;
}
/* Vertical Align */
.vertical-align-top {
    vertical-align: top;
}
.vertical-align-middle {
    vertical-align: middle;
}
/* Float */
.float-right {
    float: right;
}

.smokescreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
.input-date,
select,
textarea {
    border: 1px solid #f7ea05;
    border-radius: 3px;
    padding: 1px 3px;
    margin-bottom: 10px;
}

input[type="text"]:disabled {
    background-color: #e3e3e3;
}

input[type="submit"] {
    border: 1px solid #f7ea05;
    border-radius: 3px;
    background-color: #f7ea05;
    color: #fff;
    -webkit-transition: color 0.4s ease, background-color 0.4s ease;
    transition: color 0.4s ease, background-color 0.4s ease;
}
input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
    -webkit-transition: color 0.4s ease, background-color 0.4s ease;
    transition: color 0.4s ease, background-color 0.4s ease;
}
input[type="submit"]:disabled {
    background-color: #e3e3e3;
}
.belocal_button {
    border: 1px solid #f7ea05;
    border-radius: 3px;
    min-width: 100px;
    padding: 10px;
    background-color: #f7ea05;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: color 0.4s ease, background-color 0.4s ease;
    transition: color 0.4s ease, background-color 0.4s ease;
}
.belocal_button:hover {
    background-color: #fff;
    color: gray;
    -webkit-transition: color 0.4s ease, background-color 0.4s ease;
    transition: color 0.4s ease, background-color 0.4s ease;
}
.belocal_button:disabled {
    background-color: #e3e3e3;
}

.view{
    background-color: #fafafa;
}

#modal_confirmed .modal-header {
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 10;
    border: 0;
}

/*******************************************************************************
 * 2) Header
 ******************************************************************************/
.HEA_Container {
    height: 89px;
    background-color: #f7f6f4;
}

#HEA_ErrorContainer {
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
}
#HEA_ErrorContainer .message {
    display: block;
    max-width: 320px;
    border: 1px solid #f7ea05;
    margin: 49vh auto 0;
    background-color: #fff;
    padding: 10px;
    text-align: center;
}

#HEA_ErrorContainer .custom {
    max-width: 658px;
    height: 240px;
    border-radius: 10px;
    background-color: #f9b600;
    margin: 12% auto 0;
    border: 0;
    position:relative;
}
#HEA_ErrorContainer .custom p {
    width: 598px;
    height: 80px;
    margin: 11% auto 0;
    font-family: 'Poppins';
    font-size: 24px;
    /*font-weight: bold;*/
    font-style: normal;
    font-stretch: normal;
    line-height: 1.67;
    letter-spacing: 1px;
    text-align: center;
    color: #ffffff;
}
#HEA_ErrorContainer .custom .close {
    display: block; width: 58px; height:59px;
    position: absolute; right: 0; top: 0; opacity: 1;
    text-indent: -10000px; overflow: hidden;
    background: url('/img/flash_y_close.png') 0 0 no-repeat;
}

.HEA_Header {
    max-width: 1300px;
    height: 89px;
    margin: 0 auto;
    font-size: 14px;
    color: #fff;
    padding: 0px 50px;
}

@media(max-width: 768px) {
	.HEA_Header {
		padding: 0;
	}
}

#HEA_LogoContainer {
    -webkit-display: flex; display: flex;
    -webkit-align-items: center; align-items: center;
    height: 100%;
}

#HEA_Logo {
    width: 100%;
}

#HEA_HamburgerContainer {
	display: -webkit-flex; display: flex;
	-webkit-flex-direction: row; flex-direction: row;
	-webkit-justify-content: flex-end; justify-content: flex-end;
    -align-items: center; align-items: center;
	height: 100%;
}

#HEA_HamburgerContainer .btn {
	display: inline-block;
	margin: 0;
	background-color: #f7f6f4;
}

#HEA_HamburgerButtonDesktop {
    display: inline-block;
    margin: 0;
    background-color: #f7f6f4;
}

#HEA_Hamburger {
	color: #ccc;
	font-size: 27px;
}

.HEA_ListContainer {
    margin-top: 25px;
    white-space: nowrap;
}

#HEA_ListMobile {
	padding: 0;
}

#HEA_ListMobile li {
	padding: 5px 0;
	border-bottom: 1px solid #eee;
}

#HEA_ListMobile a {
    color: #aaa;
	font-size: 18px;
}

#HEA_ListMobile li:last-child {
	border: 0;
}

#HEA_ListMobile .HEA_SocialLink {
	margin-right: 10%;
}
#HEA_ListMobile .HEA_SocialLink:last-child {
	margin: 0;
}

.HEA_List {
    display: inline-block;
    /*float: right;*/
    margin: 0;
}

.HEA_List li {
    display: inline-block;
    list-style: none;
    line-height: 40px;
}
.HEA_List:nth-child(1) li {margin-right: 25px;}

.HEA_List a {
    color: #aaa;
}

.HEA_features {float: right;}   
.HEA_features .talktous {margin-left: 15px; margin-right: 15px;}
.HEA_features .talktous a i {font-size:30px;}
.HEA_features .dropdown a i {margin-left: 5px;}

#HEA_HamburgerContainer .talktous {margin-left: 7px; margin-right: 7px;}
#HEA_HamburgerContainer .talktous a i {font-size:30px;}

#HEA_HamburgerContainer .HEA_Button_Signup {background-color: #ee4445;}
#HEA_HamburgerContainer .HEA_Button_Signup a {font-size:10px;}

.HEA_Separator {
    margin-left: 5px;
    margin-right: 5px;
    color: #aaa;
}
.HEA_Inbox{
    padding-left: 10px;
    cursor: pointer;
}
.HEA_Inbox .glyphicon{
    color: gray; 
    font-size: 20px;
}

.HEA_InboxCounter {
    margin-left: 4px;
    background-color: lightgray;
    color: gray;
    font-size: 14px;
}
.HEA_InboxCounter.HEA_InboxCounterFull {
    background-color: lightcoral;
    color: white;
}

.HEA_InboxImage {
    border: 1px solid #ccc;
}

.HEA_Button_Login, .HEA_Button_Login:hover{
    background-color: white;
    border-color: #1a687c;
}
.HEA_List .HEA_Button_Login{
	margin-right: 15px;
}
.HEA_List .HEA_Button_Login a{
    font-family: arial;
    color: #1a687c !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
}
.HEA_Button_Signup, .HEA_Button_Signup:hover{
    background-color: #ee4445;
    border-color: #ee4445;
    padding-right: 10px;
    padding-left: 10px;
}
.HEA_List .HEA_Button_Signup {
	margin-left: 15px;
}
.HEA_Button_Signup a{
    font-family: arial;
    color: white !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
}
@media screen and (max-width: 992px) {
    #HEA_ListContainer {
        white-space: initial;
    }   
}

/*******************************************************************************
 * 3) Footer
 ******************************************************************************/
.FOO_Container {
    background-color: #f2f2f2;
}

.FOO_Top {
    width: 100%;
    margin: 0 auto;
    padding: 2px 0px;
    text-align: right;
    height: 60px;
    background-color: #f2f2f2;
}

.FOO_Top ul {list-style-type: none; list-style: none; margin-right: 90px;margin-top: 8px;}
.FOO_Top ul li {display: inline-block; width: 40px; height: 40px;}


.FOO_Content {
    background-color: #FFF;
    padding-top: 25px;
    padding-bottom: 30px;    
}

.FOO_Content .wrapper {
    width: 90%;
    margin: 0 auto;
}

.FOO_Content .wrapper .col-sm-3:nth-child(3) li:nth-child(1) {margin-bottom: 14px;}

.FOO_Content .wrapper form h4 {
    text-align:left;
    color: #080808;
}

.FOO_Content .wrapper form .input.email {
    width: 290px; height: 44px;
    border: solid 1px #dadee2;
}
.FOO_Content .wrapper form .submit {
    margin-top: 15px;
    text-align: right;
    margin-right: 13px;
}
.FOO_Content .wrapper form .submit input {
    width: 104px; height: 34px;
    line-height: 34px;
    padding: 0;
    border-radius: 1.2px;
    border-color:#ee4445;
    background-color: #ee4445;
    color: #FFF !important;
    font-family: 'Poppins';
    font-size: 14px;
}


.FOO_List {
    list-style: none;
    margin: 0; padding: 0;
}

.FOO_List li {
    margin-bottom: 5px;
}

.FOO_List li h4 {
    color: #080808;
    font-size: 16px;
    font-family: 'Poppins';
}

.FOO_List a {
    color: #454545;
    opacity: 0.8;
    font-size: 14px;
    font-family: 'Poppins';
    line-height: 30px;
}

.FOO_List .foo_contactus {
    width: 140px; height: 31px;
    line-height: 31px;
    padding: 0;
    border-radius: 1.2px;
    border-color:#ee4445;
    background-color: #ee4445;    
    font-family: 'Poppins';
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}
.FOO_List .foo_contactus a {color: #FFF !important; opacity: 1 !important;}

.FOO_input{
    border-radius: 0px !important;
    border-color: white !important;
}

.FOO_Container .FOO_Content:nth-child(2) .col-sm-3:nth-child(3) ul li span {color: #454545; opacity: 0.8;}

.FOO_Container .FOO_Content:nth-child(3) {
    height: 40px; padding-top: 0;
    background-color: #f2f2f2;
}
.FOO_Container .FOO_Content:nth-child(3) .wrapper {width: 90%; margin: 0 auto; height: 40px;}
.FOO_Container .FOO_Content:nth-child(3) .wrapper div {height: 40px; line-height: 40px; font-family: 'Poppins'; font-size: 13px;}
.FOO_Container .FOO_Content:nth-child(3) .wrapper .col-xs-4 {text-align: right;}
.FOO_Container .FOO_Content:nth-child(3) .wrapper ul {list-style: none; list-style-type: none; margin: 0; padding: 0; height: 40px;}
.FOO_Container .FOO_Content:nth-child(3) .wrapper ul li {display: inline-block; margin-left: 25px; height: 40px; line-height: 40px;}
.FOO_Container .FOO_Content:nth-child(3) .wrapper ul li a {
    font-family: 'Poppins';
    font-size: 13px;
    color: #454545;
}



.FOO_PartnersContainer {
}

.FOO_Partner {
    margin-right: 6%;
}

.FOO_Partner:nth-child(2n) {
    margin: 0;
}

.FOO_Partner img {
    opacity: 0.8;
    width: 46%;
    height: auto;
    margin-bottom: 10px;
}

/*******************************************************************************
 * 4) Home
 ******************************************************************************/
.HOM_Slideshow {
    position: relative;
	padding: 0;
}
.HOM_SlideshowText {
    position: absolute;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 100px;
    top: 35%;
    left: 0px;
    z-index: 1000;
}
.HOM_SlideshowText .big{
    font-family: Arial;
    font-size: 42px;
    text-align: left;
    line-height: 40px;
    font-weight: bold;
    color: #fff;
}
.HOM_SlideshowText .small{
    margin-top: 20px;
    font-family: Arial;
    font-size: 22px;
    text-align: left;
    line-height: 24px;
    color: #fff;
}
#HOM_HowWorks {
    margin-top: 80px;
}
.HOM_RegisterContainer {
    margin-top: 30px;
}
#HOM_TryRegistration {	
    background-color: #f7ea05;
    padding: 10px 20px;
    font-size: 20px;
    line-height: 3;
}
.HOM_Tag {
    margin-right: 20px;
    text-transform: capitalize;
}
.HOM_Tag a {
    color: #aaa;
}
.HOM_title{
    font-family: Arial;
    font-size: 46px;
    line-height: 46px;
    color: black;
    letter-spacing: 2px;
}
.HOM_title span{
    font-weight: bold;
    color: #ee4445;
}
.HOM_Add, .HOM_Add:hover{
    background-color: #ee4445;
    border-color: #ee4445;
    border-radius: initial;
    padding: 10px 20px;
    margin-right: 10px;
}
.HOM_Add a{
    font-family: arial;
    color: white !important;
    text-transform: uppercase;
    font-size: 14px;
}
.HOM_Fb, .HOM_Fb:hover{
    background-color: #18697a;
    border-color: #18697a;
    border-radius: initial;
    padding: 10px 20px;
}
.HOM_Fb a{
    font-family: arial;
    color: white !important;
    text-transform: uppercase;
    font-size: 14px;
}
.HOM_Questions .block{
    text-align: center;
    cursor: pointer;
}
.HOM_Questions .block:hover{
    opacity: 0.8;
}
.HOM_Questions h4{}
.HOM_title_2{
    font-family: Arial;
    font-size: 26px;
    color: black;
    letter-spacing: 2px;
    margin: 30px auto;
    text-align: center;
    line-height: 32px;
}
.HOM_title_2 span{
    font-size: 40px;
    font-weight: bold;
    color: #ee4445;
    text-transform: uppercase;
}
.HOM_place{
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: white;
    padding: 0px;
    text-align: center;
    cursor: pointer;
}
.HOM_place:hover{
    opacity: 0.8;
}
.HOM_place_image{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 2;
}
.HOM_place_image img{
    width: 100%;
    height: auto;
}
.HOM_place_text{
    position: absolute;
    display: table-cell;
    width: 100%;
    height: 100%;
    font-family: Arial;
    font-size: 25px;
    font-weight: bold;
    color: white;
    z-index: 3;
    text-align: center;
    line-height: 220px;
}
.HOM_title_3{
    font-family: Arial;
    font-size: 26px;
    color: black;
    margin: 60px;
    width: 460px;
    text-align: left;
    line-height: 32px;
}
.HOM_title_3 span{
    font-size: 40px;
    font-weight: bold;
    color: #18697a;
    text-transform: uppercase;
}

#HOM_MediaContainer {
	margin: 0;
	display: -webkit-flex; display: flex;
	-webkit-flex-wrap: wrap; flex-wrap: wrap;
	-webkit-justify-content: center; justify-content: center;
	-webkit-align-items: baseline; align-items: baseline;
}

#HOM_MediaContainer a {
	margin-right: 10px;
}

#HOM_MediaContainer a:last-child {
	margin: 0;
}

.HOM_Footer_bg img{
    width: 100%;
    height: auto;
}
.HOM_Footer_content{
    position: absolute;
    width: 100%;
    margin-top: 60px;
    line-height: 32px;
    z-index: 1;
    text-align: center;

    font-family: Arial;
    font-size: 25px;
    color: white;
}
.HOM_Footer_content span{
    font-weight: bold;
    font-size: 35px;
}
.HOM_Footer_btn{
    padding: 15px 80px;
    margin: 20px;
    background-color: #18697a;
    border-color: #18697a;
    color: white;
    font-size: 17px;
}
.HOM_Footer_btn:hover{
    background-color: #18697a;
    border-color: #18697a;
    color: white;
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    .HOM_video{
        width: 100%;
        height: 315px;
    }
    .HOM_block{
        padding: 13px !important;
    }
    .HOM_SlideshowText {        
        display: none;
    }
    #HOM_HowWorks {
        margin-top: 0;
    }
    .HOM_Add, .HOM_Fb{
        margin-top: 10px;
    }
    .HOM_Footer_content {
        display: none;
    }
}
/*******************************************************************************
 * 5) How Works
 ******************************************************************************/
.WOR_HowWorks {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}
.WOR_StepsDescription {
    max-width: 164px;
    text-align: center;
}

/*******************************************************************************
 * 6) Contact Us
 ******************************************************************************/
.CTT_Container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}
.CTT_Input {
    margin-bottom: 10px;
    width: 100%;
    min-height: 45px;
}

#CTT_Captcha {
    display: inline-block;
    margin-bottom: 10px;
}

/*******************************************************************************
 * 7) Terms And Conditions
 ******************************************************************************/
.TAC_Container {
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

/*******************************************************************************
 * 8) Sign Up
 ******************************************************************************/
.SIG_IllustrationContainer {
    text-align: center;
    margin: 20px 0px;
    margin-bottom: 40px;
}

.SIG_IllustrationContainer p {
    max-width: 300px;
    margin: 20px auto;
}

.SIG_FormContainer {
    padding: 10px 10px 20px 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
}

.SIG_TermsAndConditions {
    margin: 10px auto;
}

.SIG_Select{
    width: 100%;
    padding: 10px;
}

#SIG_Captcha {
    display: inline-block;
    margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
    .SIG_FormContainer{
        width: 80%;
        margin: 30px auto;
    }
}

/*******************************************************************************
 * 9) Places Element
 ******************************************************************************/
.PLE_Container {
    padding-top: 50px;
    display: -webkit-flex; display: flex;
    -webkit-flex-wrap: wrap; flex-wrap: wrap;
}

.PLE_Place {
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 10px;
    box-shadow: 1px 1px 3px #999797;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.PLE_Place:hover {
    box-shadow: 1px 1px 3px black;
    cursor: pointer;
    text-align: center;
}

.PLE_Place a {
    text-decoration: none;
}

.PLE_PlaceImageContainer {
    height: 250px;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.PLE_Favorite {
    position: absolute;
    left: 15px;
    top: 15px;
}
.PLE_Title{
    font-size: 15px;
    font-weight: 500;
    height: 50px;
    overflow-y: hidden;

    display: table-cell;
    vertical-align: middle;
    padding-top: 11px;
}
.PLE_Location{
    font-size: 12px;
    font-weight: 500;
    min-height: 20px;
}

.PLE_PageNumbers {
	text-align: center;
}
.PLE_PageNumbers li {
	display: inline-block;
	margin: 0 10px;
}
.PLE_PageNumbers li.active {
	text-decoration: underline;
}

/*******************************************************************************
 * 10) View Place
 ******************************************************************************/
.PLA_PlaceContainer {
    background-color: white;
    border-radius: 5px;
    border: 2px solid #f5f5f5;
    padding: 24px 34px;
    margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
    .PLA_PlaceContainer {   
        margin-left: 0px;
    }
}

.PLA_PlaceContainer .send_proposal {
    display: block;
    margin: 40px 0 15px 0;
    padding: 6px;
    border: 1px solid #666;
    width: 318px;
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 1em;
}


.PLA_Slideshow {
    /*height: 350px;*/
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.PLA_Slideshow > img {
    width: 100%;
    height: auto;
    position: relative;
    top: -50%;
    left: -50%;
    display: none;
}

.PLA_Slideshow .cycle-slide {
    cursor: pointer;
}

.PLA_Slideshow .cycle-prev {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1000;
    width: 70px;
    opacity: 0.6;
    cursor: pointer;
    text-align: center;
}

.PLA_Slideshow .cycle-prev img {
    transform: rotate(180deg);
}

.PLA_Slideshow .cycle-next {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 100%;
    z-index: 1000;
    opacity: 0.6;
    cursor: pointer;
    text-align: center;
}

.PLA_Slideshow .cycle-prev img, .PLA_Slideshow .cycle-next img {
    position: relative;
    top: 50%;
}

.PLA_Slideshow .cycle-prev:hover, .PLA_Slideshow .cycle-next:hover {
    background-color: #eee;
    opacity: 0.4;
}

.PLA_Tag {
    border-radius: 5px;
    background-color: #ffad00;
    color: white;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    text-transform: capitalize;
    white-space: nowrap;
    margin-top: 10px;
    display: inline-block;
    margin: 5px;
}

#PLA_Favorite {
}

#PLA_Map {
    height: 350px;
}

.PLA_UserContainer {
    background-color: white;
    border: 2px solid #f5f5f5;
    border-radius: 5px;
    padding: 10px;
}
.PLA_UserContainer .row{
    padding-top: 5px;
    padding-bottom: 5px;
}

.PLA_UserImage {
    width: 100%;
    height: auto;
}
.reputation iframe{
    width: 100%;
}
.PLA_sidetitle{
    font-family: Arial;
    font-size: 14px;
    text-transform: uppercase;
    color: #b0b0b0;
    margin-bottom: 5px;
}
.PLA_sidename{
    font-family: Arial;
    font-size: 19px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    margin-bottom: 15px;
}
.PLA_count{
    display: inline-block;
    margin: 20px 0px;
    width: 200px;
    background-color: #fafafa;
    padding: 5px 15px 5px 15px;
    border-radius: 5px;

}
.PLA_count span{
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
}
.PLA_btn{
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 17px;
    margin-left: 7px;
    color: white;
    font-weight: bold;
    border-color: white;
    cursor: initial;
}
.PLA_btn:hover{
    color: white;
    text-decoration: none;
    border-color: white;
}

.PLA_Translation {
    width: 170px;
    height: auto;
    position: absolute;
    top: -170px;
    right: 0;
    z-index: 1000;
    cursor: pointer;
}

/*******************************************************************************
 * 11) Place Edit
 ******************************************************************************/
.PED_Container {

}

/*******************************************************************************
 * 12) Conversation
 ******************************************************************************/
.CON_Messages a{
    line-height: 30px;
    font-size: 17px;
}
.CON_Message {
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
}
.CON_Message_Status {
    background-color: lightgreen;
    border-radius: 5px;
    margin-bottom: 5px;
}
.CON_Message.Other {
    background-color: #eee;
}

.CON_NewMessage {
    width: 100%;
    border: 0 !important;
    background-color: #ddd;
}
.CON_NewMessage:focus {
    outline: none;
}
.CON_Container{
    padding: 20px;
	min-height: 400px;
}

.CON_Translation {
    width: 170px;
    height: auto;
    position: absolute;
    top: -80px;
    left: 146px;
    z-index: 1000;
    cursor: pointer;
}

.CON_Counter {
    background-color: lightgray;
    color: gray;
}
.CON_Counter.CON_CounterFull {
    background-color: lightcoral;
    color: white;
}

/*******************************************************************************
 * 13) Conversations
 ******************************************************************************/
#COS_Container {
    padding-top: 30px;
    padding-bottom: 40px;
    
    font-family: 'Poppins', sans-serif;
}

#COS_Top {
    display: flex;

    margin-bottom: 24px;
}

#COS_Title {
    font-weight: 500;
    font-size: 22px;

    color: #4A4A4A;
    
    text-transform: capitalize;
    
    margin-left: 14px;
    flex-grow: 2;
}

#COS_BackButton {
    display: inline-block;
    cursor: pointer;
}
#COS_BackButton:active, #COS_BackButton:hover, #COS_BackButton:focus, #COS_BackButton:visited {
    text-decoration: none;
}

#COS_BackButton > * {
    vertical-align: middle;
}

#COS_BackText {
    font-weight: 500;
    font-size: 15px;

    color: #EE4445;
    
    text-transform: uppercase;
}

.COS_Lists {
    height: 550px;
    display: flex;
    flex-direction: column;
}

#COS_FilterButtons {
    display: flex;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.COS_FilterButton {
    flex-grow: 1;
    padding: 15px;
    text-align: center;
    color: #828281;
    cursor: pointer;
    
    font-size: 14px;
    
    border: 1px solid #DADEE2;
    border-right: 0;
}
.COS_FilterButton:last-child {
    border-right: 1px solid #DADEE2;
}
.COS_FilterButton.Selected {
    font-weight: 600;
    background-color: #D1AD29;
    color: #fff;
    box-shadow: 0px 0px 10px #FFEFB3;
}

.COS_Box {
    background-color: #fff;
    border: 1px solid #DADEE2;
    box-sizing: border-box;
    border-radius: 4px;
    
    flex-grow: 1;
}

#COS_Conversations {
    overflow-y: auto;
}
#COS_Conversations.Empty {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#COS_Conversations .COS_NoMessage {
    display: none;
    color: #828281;
    font-size: 18px;
    text-align: center;
}

.COS_Conversation {
    display: flex;
    padding: 20px 20px 20px 26px;
    position: relative;
    cursor: pointer;
}
.COS_Conversation.Hidden {
    display: none;
}

.COS_Conversation.Selected {
    border-left: 4px solid #EE4445;
    background-color: #F7F6F4;
}

.COS_Conversation .COS_Photo {
    width: 41px;
    height: 41px;
}

.COS_Photo {
    border-radius: 4px;
    margin-right: 15px;
    overflow: hidden;
    width: 41px;
    height: 41px;
    flex-shrink: 0;
    flex-grow: 0;
    
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.COS_Photo img {
    max-width: 100%;
    max-height: 100%;
}
.COS_Photo.Invert {
    margin: 0 0 0 15px;
}

.COS_Count {
    align-self: flex-start;
    min-width: fit-content;
    
    font-size: 12px;
    font-weight: normal;
    text-align: center;

    color: #FFFFFF;
}
.COS_Count.New {
    background-color: #EE4445;
}

.COS_check {
    border-radius: 0;
    min-width: 20px;
    line-height: 20px;
    height: 20px;
    margin-top: -3px;
}

.COS_check i { 
    color: #BBB;
    font-size: 20px;
    line-height: 20px;
}

.COS_archived {display:none; position: absolute; right: 19px; top: 40px; width: 22px; height: 22px;}
.COS_archived i {color: #BBB; font-size: 19px; line-height: 19px;}
.COS_archived img {opacity: .5;}
.COS_Conversation.Selected .COS_archived {display: block;}


.COS_ConversationText {
    flex-grow: 1;
    overflow: hidden;
}

.COS_Name {
    font-size: 15px;
    color: #91989E;
}

.COS_Date {
    font-size: 12px;
    color: #91989E;
}

.COS_Phrase {
    font-size: 13px;
    
    white-space: nowrap;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;

    color: #828281;
}

#COS_Messages {
    display: flex;
    flex-direction: column;
}

#COS_UserInfoContainer {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 15px 30px;
    border-bottom: 1px solid #DADEE280;
    
    display: flex;
    align-items: center;
}

#COS_UserInfoContainer .COS_Photo {
    width: 60px;
    height: 50px;
}

#COS_ExchangeContainer {
    flex-grow: 1;
    flex-shrink: 0;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 140px;
}
#COS_ExchangeContainer img {
    display: block;
    margin: 0 auto;
}

#COS_ExchangeStatus {
    font-weight: 500;
    font-size: 13px;
    color: #F5A623;
}

.COS_PlaceName {
    white-space: nowrap;
}

.COS_Location {
    font-size: 12px;
    color: #91989F;
    flex-grow: 0;
    flex-basis: 30%;
    
    overflow: hidden;
    text-overflow: ellipsis;
}
.COS_Location.Invert {
    text-align: right;
}

.COS_Location p {
    margin: 0;
}

.COS_LocationData {
    color: #91989F;
    white-space: nowrap;
}

#COS_MessageListContainer {
    flex-grow: 1;
    flex-basis: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0 30px;
    
    display: flex;
    flex-direction: column;
}

#COS_MessageList {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
}

#COS_MessageTemplate {
    display: none;
}

.COS_Message {
    display: flex;
    flex-shrink: 0;
}

.COS_Message .COS_Photo {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    flex-grow: 0;
}

.COS_Message.Invert .COS_Photo {
    order: 2;
    margin-right: 0;
    margin-left: 15px;
}

.COS_MessageTextContainer {
    flex-grow: 1;
    margin-bottom: 10px;
    max-width: calc(100% - 49px);
}

.COS_Message.Invert .COS_MessageTextContainer {
    order: 1;
    text-align: right;
}

.COS_MessageHeader {
    display: flex;
    align-items: baseline;
}

.COS_Message.Invert .COS_MessageHeader {
    flex-direction: row-reverse;
}

.COS_Message .COS_Name {
    display: inline-block;
    font-size: 15px;
    margin: 0;
}

.COS_Message .COS_Date {
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 5px;
}

.COS_Message.Invert .COS_Date {
    margin-left: 0;
    margin-right: 5px;
    text-align: right;
}

.COS_Message .COS_Text {
    padding: 10px 24px 10px 19px;
    background-color: #EEF0F1;
    font-size: 12px;
    color: #A9B0B6;
    position: relative;
    border-radius: 10px;
    border-top-left-radius: 0;
    overflow-wrap: break-word;
    display: inline-block;
}
.COS_Message.Invert .COS_Text {
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
    text-align: right;
    background-color: #F7F6F4;
}

.COS_Message .COS_Arrow {
    position: absolute;
    top: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #EEF0F1;
}

.COS_Message.Invert .COS_Arrow {
    right: -5px;
    left: unset;
    border-left: 5px solid #EEF0F1;
    border-right: 0;
}

#COS_Progress {
    display: none;
    flex-direction: row;
    margin: 0px 20px 10px 30px;
    align-items: center;
}

#COS_Progress .progress {
    display: inline-block;
    flex-grow: 1;
    margin: 0;
}
#COS_Progress .glyphicon {
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: 10px;
    color: #EE4445;
    cursor: pointer;
}

#COS_NewMessageContainer {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 90px;
    display: flex;
    flex-direction: row;
    padding: 14px 20px 14px 30px;
    border-top: 1px solid #DADEE280;
}

#COS_NewMessage {
    flex-grow: 1;
    margin: 0;
    margin-right: 10px;
    border: 0;
    
    font-style: normal;
    font-weight: normal;
    font-size: 13px;

    color: #A9B0B6;
}
#COS_NewMessage:focus {
    outline: none;
}

#COS_Send {
    flex-grow: 0;
    flex-shrink: 0;
    align-self: flex-end;
    padding: 12px 22px;
    cursor: pointer;
    
    font-size: 14px;
    text-align: center;
    
    background: #EE4445;
    border-radius: 1.16px;
    color: #fff;
}

#COS_Send[disabled] {
    cursor: default;
}

#COS_DefaultMessages {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    border-top: 1px solid #DADEE280;
}

#COS_DefaultMessages[disabled] .COS_DefaultMessageButton {
    cursor: default;
}

.COS_DefaultMessageButton {
    background: #F9F9F9;
    border: 0.5px solid #DADEE280;
    box-sizing: border-box;
    border-radius: 1.6px;
    padding: 8px 12px;
    margin-right: 14px;
    cursor: pointer;
    
    font-size: 12px;
    text-align: center;

    color: #828281;
}
.COS_DefaultMessageButton:last-child {
    margin: 0;
}
.COS_DefaultMessageButton:hover {
    text-decoration: none;
}

.COS_DefaultMessageText {
    display: none;
}

/*******************************************************************************
 * 14) User Profile
 ******************************************************************************/
.USP_ProfileImage {
    width: 100%;
}

.USP_Input {
    width: 100%;
}

.USP_ProfileField {
    width: 100%;
}

#USP_CropperPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    text-align: center;
    z-index: 10;
}
#USP_CropperContainer {
    height: calc(100vh - 45px);
}
#USP_ImageCropper {
    max-width: 100%;
}
#USP_ConfirmCrop {
    display: block;
    height: 45px;
    width: 100%;
    font-size: 16px;
    padding: 10px;
    background-color: #f7ea05;
    color: #fff;
    cursor: pointer;
}
@media all and (min-width: 992px) {
    #USP_CropperPopup {
        display: none;
        position: absolute;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        opacity: 1;
        text-align: center;
    }
    #USP_ImageCropper {
        max-width: 100%;
    }
    #USP_ConfirmCrop {
        padding: 5px;
        border-radius: 5px;
        background-color: #f7ea05;
        color: #fff;
        cursor: pointer;
    }	
}

/*******************************************************************************
 * 15) ADA: Add Address Bar
 ******************************************************************************/
.ADA .button{
    display: inline-block;
    width: 100%;
    height: 50px;
    background-color: white;
    border: 1px solid #f7ea75;
}
.ADA_search_button{
    margin-top: 30px;
}
.ADA .row:first-of-type{
    padding-top: 20px;
}
.ADA .input, .ADA input{
    display: inline-block;
    width: 100%;
}
#ada-search{
    height: 50px;
}
.editPrefDestinations #ada-search{
    margin-top: 30px;
}
.ADA .row{
    position: relative;
}
.ADA_results{
    text-align: left;
    min-height: 50px;
}
.ADA_err{
    display: none;
    width: 100%;
    text-align: center;

    font-family: Arial;
    font-size: 16px;
    color: darkred;
}
.ADA_item{
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #f7ea05;
}
.ADA_address{
    font-weight: 500;
    font-size: 17px;
    line-height: 40px;
    font-size: 15px;
}
.ADA_select{
    border-color: #DBCE5A;
    font-size: 16px;
    min-width: 150px;
}
.ADA_delete{
    opacity: 0.9;
    font-size: 16px;
    background-color: #FF9F9F !important; 
    width: 39px !important;
    height: 39px !important;
}
.ADA_Added{
    background-color: #FAF9F7;
    border: 1px solid #f7ea75;
    min-height: 100px;
    margin-top: 10px;
}
.ADA_Added_item{
    display: inline-block;
    border-bottom: 1px solid #f7ea05;
    width: 100%;
    padding: 10px 0px;
}

.ADA_Added_item:last-of-type{
    border: 0;
}

.calendar{
    height: 33px;
    width: 196px;
}
.calendar-unavaliable{
    border-color: red !important;
}
.calendar-avaliable{
    border-color: green !important;
}

.daterangepicker {
    min-width: 444px !important;
    min-height: 318px !important;
}

/*******************************************************************************
 * SCH: Search
 ******************************************************************************/
/* .SCH_MainField {
    font-size: 20px;
    line-height: 3;
    margin-top: 15px;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}
.SCH_MainField:focus {
    outline: none;
} */
/* Login Lightbox */
.SCH_loginNeeded{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}
.SCH_loginNeededContent{
    width: 475px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -250px;
    margin-top: -158px;
    z-index: 9999;
    color: #fff;
    font-size: 18px;
    text-align: center;
    background-color: rgba(0,0,0,.47);
    padding: 5px;
}

@media all and (max-width: 768px) {
    .SCH_loginNeededContent {
        width: 90%;
        position: fixed;
        top: 30%;
        left: 5%;
        margin: 0;
    }
}

.SCH_loginNeededContent img {
    position: relative;
    width: 100%;
    height: auto;
}

.SCH_Links {
    display: block;
    width: 100%;
    position: absolute;
    left: 0%;
}

.SCH_Close {
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: white;
    padding: 0px;
    border-radius: 20px;
    width: 1.4em;
    text-align: center;
    cursor: pointer;
}

#SCH_SearchPrecision {
    color: rgb(51, 51, 51);
    font-size: 12px;
}

#SCH_SubmitSearch {
    margin-top: 23px;
}

@media all and (max-width: 767px) {
    #SCH_SubmitSearch {
        width: 100%;
    }
}

/*******************************************************************************
 * PAG: Institucional Pages
 ******************************************************************************/

.PAG_Container{
    padding-top: 40px;
    padding-bottom: 40px;
}
.PAG_Container image{
    max-width: 100%;
}
.PAG_SubContainer{
    margin-top: 20px;
    padding: 20px;
    background-color: #ededed;
}
.PAG_SubContainer2{
    margin-top: 20px;
    padding: 20px;
    padding-top: 0px;
}
.PAG_Center{
    text-align: center;
}
.PAG_Image{
    max-width: 100%;
}
.PAG_border{
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 20px;
}
.PAG_Title{
    font-size: 17px;
    font-weight: bold;
}
.PAG_block{
    background-color: #f7f5f6;
}
.PAG_block2{
    background-color: #f7f5f6;
    margin-left: 0px;
    margin-right: 2px;
}
.PAG_block p, .PAG_Vertical span{
    width: 100%;
    text-align: center;
    padding: 30px;

    font-size: 16px;
    font-weight: bold;
}
.PAG_Vertical{
    display: table;
    text-align: center;

    width: 100%;
}
.PAG_Vertical span{
    display: table-cell;
    vertical-align: middle;
}
.PAG_Collapse{
    padding-top: 6px;
    padding-bottom: 6px;
}
.PAG_Collapse a{
    cursor: pointer;
}
.PAG_Label{
    width: 100%;
    line-height: 40px;
    background-color: #d3ad2a;
    text-align: center;
    color: white;
    font-size: 20px;
}
.PAG_Label2{
    width: 100%;
    background-color: #ededed;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

.PAG_PressLink {
    font-weight: bold;
}

/*******************************************************************************
 * DSP: Deal SidePanel
 ******************************************************************************/

.DSP_Container{
    width: 100%;
    margin-top: 20px;	
}
.btn-interested, .btn-approve, .btn-approve2{
    width: 100%;
    background-color: lightgreen;
    border-color: limegreen;
    color: black;
}
.btn-interested:hover, .btn-approve:hover, .btn-approve2:hover{
    background-color: lightgreen;
    color: black;
}
.btn-full{
    width: 100%;
    background-color: lightgray;
    border-color: darkgray;
    color: black;
}

/*******************************************************************************
 * PAR: Partners
 ******************************************************************************/
#PAR_List {
	display: -webkit-flex; display: flex;
	-webkit-justify-content: space-around; justify-content: space-around;
	-webkit-flex-wrap: wrap; flex-wrap: wrap;
}

/*******************************************************************************
 * INS: Insurance
 ******************************************************************************/
.INS_Logos img {
    width: 150px;
    height: auto;
    vertical-align: middle;
}

.INS_TypesTitle {
    text-transform: uppercase;
    font-size: 17px;
    color: #4472c4;
}

.INS_Drag {
    font-family: monospace;
    font-size: 10px;
    text-align: center;
    margin: 0;
}

.INS_Table > thead > tr > th {
    text-align: center;
}

.INS_Table > thead > tr > th {
    border-bottom: 4px solid #4472c4;
}

.INS_Table > tbody > tr > td:first-of-type {
    background-color: #fff;
    text-align: left;
    border-right: 2px solid #4472c4;
}

.INS_TableBorderBottom {
    border-bottom: 2px solid #4472c4;
}

.INS_Table > tbody > tr > td {
    border: 0;
    text-align: center;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #d0dbf0;
}

.INS_TableTextRight {
    text-align: right;
}

/*******************************************************************************
 * ADR: Address Dropdown
 ******************************************************************************/
.ADR_Container {
    
}

.ADR_Template {
    display: none;
}

.ADR_Item {
    cursor: pointer;
    border-bottom: 1px solid #DBCE5A;
    padding-top: 5px;
    padding-bottom: 5px;
}
.ADR_Item:hover {
    background-color: #eee;
}

.ADR_Item.ADR_Selected {
    background-color: #ddd;
}

.ADR_Text {
    
}

/*******************************************************************************
 * 22) DSH: Dashboard
 ******************************************************************************/
#DSH_Container {
    padding-top: 47px;
    padding-bottom: 45px;
    font-family: 'Poppins', sans-serif;
}

.DSH_Button {
    background: #F7F6F4;
    border: 0.5px solid rgba(198, 198, 198, 0.449134);
    border-radius: 6px;
    padding: 20px 18px 18px 18px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    
    height: 190px;
    margin-bottom: 20px;
    
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

.DSH_Button.last {
    margin-bottom: 0;
}

.DSH_Button:hover,
.DSH_Button:visited,
.DSH_Button:active,
.DSH_Button:focus {
    text-decoration: none;
}

.DSH_Button h1 {
    color: #4A4A4A;
    font-size: 20px;
    font-weight: 500;
    margin-top: 14.5px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.DSH_Button p {
    color: #9B9B9B;
    font-size: 15px;
    margin: 0;
}

.DSH_SlideshowTitle {
    margin-top: 40px;
    margin-bottom: 30px;
}

.DSH_SlideshowContainer {
    overflow: hidden;
    border-radius: 6px;
    text-align: center;
    height: 340px;
}
.DSH_SlideshowContainer div, .DSH_SlideshowContainer a {
    width: 100%;
    height: 100%;
}
.DSH_SlideshowContainer a {
    position: absolute;
}
.DSH_SlideContent {
    display: flex;
    justify-content: center;
    align-items: center;
}

.DSH_SlideshowContainer li.active {
    background-color: #EE4445;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.DSH_SlideshowContainer li {
    border: 0;
    background-color: #D8D8D8;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.DSH_SlideshowContainer li:last-child {
    margin-right: 0;
}

.DSH_Slide div {
    background-position: center;
    background-size: cover;
}

.DSH_MoreHouses {
    background-color: #EE4445;
    border-radius: 1.6px;
    display: inline-block;
    font-size: 18px;
    margin-top: 26px;
    padding: 15px 20px;
    text-align: center;
}

.DSH_MoreHouses,
.DSH_MoreHouses:hover,
.DSH_MoreHouses:visited,
.DSH_MoreHouses:active,
.DSH_MoreHouses:focus {
    color: #fff;
    text-decoration: none;
}

/*******************************************************************************
 * 23) CNT: Construction
 ******************************************************************************/
#CNT_Message {
    font-size: 40px;
    margin-top: 100px;
    margin-bottom: 200px;
    text-align: center;
}

/*******************************************************************************
 * 24) AEX: Add Exchange
 ******************************************************************************/
#AEX_Container {
    padding-top: 30px;
    padding-bottom: 40px;
    
    font-family: 'Poppins', sans-serif;
}

#AEX_Container h2 {
    text-align: center;
}

.AEX_Name {
    text-align: center;
}

.AEX_Photo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 400px;
}

.AEX_Location {
    margin-top: 5px;
    text-align: center;
}

#AEX_Guests {
    margin-top: 30px;
    text-align: center;
}

.AEX_Dates {
    text-align: center;
}

#AEX_Submit {
    text-align: center;
}

.AEX_ButtonContainer {
    text-align: center;
    margin-top: 10px;
}


/* MOBILE */
@media only screen and (max-width: 768px) {

    /* header */
    #HEA_LogoContainer {width: 100px; margin: 0; padding: 0;}
    #HEA_HamburgerContainer {float:right; margin: 0; padding: 0;}
    
    #HEA_ErrorContainer .custom {
        max-width: 90%; height: 260px; 
    }
    #HEA_ErrorContainer .custom p {
        width: 90%; height: auto; margin: 15% auto 0;  
    }

    /* footer */
    .FOO_Top ul {margin-right: 0;}
    .FOO_List {margin-bottom: 25px;}
    .FOO_Content .col-sm-3 form {margin-left: 15px;}
    .FOO_Content .wrapper form .submit {text-align: left; margin-right: 0; margin-left: 187px;}
    .FOO_Container .FOO_Content:nth-child(3) {height: 70px;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper {width: 96%; margin: 0 auto; height: 70px; position: relative;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper div {position: absolute;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper div:nth-child(1) {width:100%; top: 30px; left: 0; text-align:center; font-size:12px;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper div:nth-child(2) {width:100%; top: 0; left: 0; padding: 0; margin: 0;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper div:nth-child(2) ul {margin: 0 auto; width: 100%;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper div:nth-child(2) ul li {width: 49%; text-align: center; margin: 0;}
    .FOO_Container .FOO_Content:nth-child(3) .wrapper div:nth-child(2) ul li a {font-size:12px;}

}