/* ----------------------------------------------------------------- */
/* GRUPO EDISUR												 		 */
/* By AfterSeven 2014 . afterseven.com.ar							 */
/* ----------------------------------------------------------------- */



/* ----------------------------------------------------------------- */
/* GOOGLE FONTS */

@import url('http://fonts.googleapis.com/css?family=Raleway:900,800,700,600,500,400,300,200,100');
@import url('http://fonts.googleapis.com/css?family=Open+Sans:800italic,700italic,600italic,400italic,300italic,800,700,600,400,300');



/* ----------------------------------------------------------------- */
/* CUSTOM FONT */

@font-face {
	font-family: 'Edisur Icons';
	src: url('fonts/edisur-icons/edisur_icons.eot');
	src: url('fonts/edisur-icons/edisur_icons.eot#iefix') format('embedded-opentype'),
	 	 url('fonts/edisur-icons/edisur_icons.woff') format('woff'),
	 	 url('fonts/edisur-icons/edisur_icons.ttf') format('truetype'),
	 	 url('fonts/edisur-icons/edisur_icons.svg#edisur_icons') format('svg');
	font-weight: normal;
	font-style: normal;
}



/* ----------------------------------------------------------------- */
/* GENERAL */

html,
body {
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-weight: 400;
	font-size: 14px;

	background-color: #F6F6F6;
	color: #444444;
}

.whole-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	min-height: 100%;
}

.width-wrapper {
	width: 1000px;
	min-height: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

b, strong {
	font-weight: bold;
	font-weight: 600;
}

.horizontal-divider {
	width: 100%;
	overflow: hidden;
	/* border: 1px solid red; */
	box-sizing: border-box;
}

.general-container {
	text-align: left;
	background-color: #FFFFFF;
	padding: 0;
	margin-bottom: 40px;
	border: none;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

a,
a:link,
a:active,
a:visited {
	color: #0652E1;
	text-decoration: none;

	-webkit-transition: color ease-in-out 0.3s;
	-moz-transition: color ease-in-out 0.3s;
	transition: color ease-in-out 0.3s;
}

a:hover {
	color: #0C2D6B;
}



/* ----------------------------------------------------------------- */
/* BUTTONS */

.btn {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	padding: 8px 20px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-align: center;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	outline-offset: 0;
	color: #0C2D6B;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';

	-webkit-transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
	-moz-transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
	transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
}

.btn:hover,
.btn:focus, 
.btn:active, 
.btn.active {
	color: #0652E1;
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
	outline-offset: 0;
}

.btn-primary {
	font-size: 16px;
	color: #FFFFFF;
	background-color: #0C2D6B;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.open .dropdown-toggle.btn-primary {
	color: #FFFFFF;
	background-color: #0652E1;
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
	outline-offset: 0;
}

.btn-action {
	/*
	color: #0C2D6B;
	border-left: none;
	padding: 0;
	width: 54px;
	padding-top: 5px;
	margin: 0;
	*/
	color: #FFFFFF;
	background-color: #0C2D6B;
	border: 0;
	margin: 0;
	padding: 0;
	padding-top: 5px;
	width: 54px;
	height: 54px;
	border: 5px solid #F6F6F6;
	margin-left: -5px;
}

.btn-action:hover, 
.btn-action:focus, 
.btn-action:active, 
.btn-action.active,
.open .dropdown-toggle.btn-action {
	/*
	color: #0652E1;
	*/
	color: #FFFFFF;
	background-color: #0652E1;
}

.btn-critical {
	/*
	color: #B00303;
	*/
	background-color: #B00303;
}

.btn-critical:hover, 
.btn-critical:focus, 
.btn-critical:active, 
.btn-critical.active {
	/*
	color: #ED0000;
	*/
	background-color: #ED0000;
}

.btn-show {
	background-color: #CCCCCC;
	color: #FFFFFF;
}

.btn-show:hover, 
.btn-show:focus, 
.btn-show:active, 
.btn-show.active,
.open .dropdown-toggle.btn-show {
	color: #FFFFFF;
	background-color: #0652E1;
}

.btn-gray {
	background-color: #CCCCCC;
	color: #FFFFFF;
}

.btn-gray:hover {
	background-color: #888888;
	color: #FFFFFF;
}

.btn.disabled,
.btn[disabled], 
fieldset[disabled] .btn,
.btn-primary.disabled,
.btn-primary[disabled], 
fieldset[disabled] .btn-primary, 
.btn-primary.disabled:hover, 
.btn-primary[disabled]:hover, 
fieldset[disabled] .btn-primary:hover, 
.btn-primary.disabled:focus, 
.btn-primary[disabled]:focus, 
fieldset[disabled] .btn-primary:focus, 
.btn-primary.disabled:active, 
.btn-primary[disabled]:active, 
fieldset[disabled] .btn-primary:active, 
.btn-primary.disabled.active, 
.btn-primary[disabled].active, 
fieldset[disabled] .btn-primary.active {
	background-color: #C1C8D5;
	color: #E1E4EA;
	opacity: 1;
}



/* ----------------------------------------------------------------- */
/* ACCOUNT INFO */

.account-info {
	background-color: #DDDDDD;
	height: 42px;
	line-height: 42px;
}

.account-info .owners {
	font-size: 0;
	color: #222222;
	line-height: 42px;
	float: right;
	vertical-align: middle;
	padding-top: 3px;
}

.account-info .owners-text {
	font-size: 13px;
	font-style: italic;
	float: left;
	vertical-align: middle;
	line-height: 34px;
}

.account-info .login-bar-login-button {
	margin: 0;
	padding: 0 10px;
	height: 26px;
	border: none;
	margin-left: 10px;
	display: inline-block;
	background-color: #98A6BE;
	color: #FFFFFF;
	font-style: normal;
	font-size: 13px;
	line-height: 24px;
	vertical-align: middle;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;

	-webkit-transition: background-color 0.4s;
	-moz-transition: background-color 0.4s;
	transition: background-color 0.4s;
}

.account-info .login-bar-login-button:hover,
.account-info .login-bar-login-button:focus {
	background-color: #0652E1;
}

.account-info .login-bar-login-button a {
	color: #FFFFFF;
	text-decoration: none;
}



/* ----------------------------------------------------------------- */
/* COMPANY ID */

.company-id {
	background-color: #0C1F42;
	height: 70px;
	position: relative;
}

.company-id a {
	display: block;
	width: 176px;
}

.company-id .logo {
	background-image: url('images/edisur_header_edisur@2x.png');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 176px 50px;
	margin-top: 10px;
	width: 176px;
	height: 50px;
	opacity: 1;
	
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;	
	transition: opacity 0.5s;
}

.company-id .logo:hover {
	opacity: 0.6;
}

.company-id .menu-trigger {
	font-family: 'Edisur Icons';
	font-size: 20px;
	text-transform: none;
	color: #FFFFFF;
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	top: 15px;
	right: 20px;
	background-color: #0C2D6B;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	display: none;

	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;	
	transition: background 0.3s;
}

.company-id .menu-trigger:hover {
	background-color: #0652E1;
}


/* ----------------------------------------------------------------- */
/* FOOTER */

.footer {
	background-color: #0C1F42;
	padding-bottom: 80px;
	padding-top: 30px;
	position: absolute;
	bottom: 0;
}

.footer .institutional-data {
	color: #FFFFFF;
}

.footer .institutional-data .tel {
	color: #FFFFFF;
}

.footer img {
	margin-bottom: 20px;
}



/* ----------------------------------------------------------------- */
/* AFTERSEVEN */

.afterseven {
	background-color: #333333;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	position: absolute;
	bottom: 0;
}

.afterseven img {
	opacity: 0.3;

	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;	
	transition: opacity 0.3s;
}

.afterseven img:hover {
	opacity: 1;
}



/* ----------------------------------------------------------------- */
/* MAIN MENU */

.main-menu {
	background-color: #0C2D6B;
	box-shadow: 0 -10px 20px rgba(0,0,0,0.2) inset;
}

.main-menu-container {
	margin: 0;
	padding: 0;
}

.main-menu-container li {
	float: left;
	width: 12.5%;
	max-width: 140px;
	min-width: 115px;
	position: relative;
}

.main-menu-container li a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 20px 0 15px;

	-webkit-transition: background ease-in-out 0.4s;
	-moz-transition: background ease-in-out 0.4s;
	transition: background ease-in-out 0.4s;
}

.main-menu-container .round-item-icon {
	width: 76px;
	height: 76px;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 10px;
	border: 2px solid #FFFFFF;

	-webkit-transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
	-moz-transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
	transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
}

.main-menu-container .round-item-icon img {
	width: 72px;
	height: 72px;
	display: none;
}

.main-menu-container .round-item-icon svg {
	width: 72px;
	height: 72px;
	fill: #FFFFFF;

	-webkit-transition: fill ease-in-out 0.3s;
	-moz-transition: fill ease-in-out 0.3s;
	transition: fill ease-in-out 0.3s;
}

/* TITLE */

.main-menu-container .round-item-title {
	display: table;
	width: 100%;
	height: 40px;
}

.main-menu-container .round-item-title-fix {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 13px;
	font-weight: bold;
	font-weight: 500;
	line-height: 14px;
	text-transform: uppercase;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #FFFFFF;
	padding: 0 10px;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
	
	-webkit-transition: color ease-in-out 0.3s;
	-moz-transition: color ease-in-out 0.3s;
	transition: color ease-in-out 0.3s;
}

/* ARROW */

.main-menu-container li a:after {
	content: '';
	width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	border: 10px solid transparent;
	border-bottom-color: #F6F6F6;
	position: absolute;
	text-align: center;
	margin: 0 auto;
	bottom: -10px;
	float: left;
	left: 50%;
	margin-left: -10px;

	-webkit-transition: bottom ease-in-out 0.3s;
	-moz-transition: bottom ease-in-out 0.3s;
	transition: bottom ease-in-out 0.3s;
}

/* HOVER */

.main-menu-container li a:hover {
	background-color: #0652E1;
	background-color: #074BC9;
}

.main-menu-container li a:hover .round-item-icon {
	/* border-color: aqua; */
	/* background-color: rgba(0,0,0,0.1); */
}

.main-menu-container li a:hover .round-item-title-fix {
	/* color: aqua; */
}

.main-menu-container li a:hover .round-item-icon svg {
	/* fill: aqua; */
}

.main-menu-container li a:hover:after {
	bottom: 0;
}

/* SELECTED */

.main-menu-container li.selected a {
	background-color: #0652E1;
}

.main-menu-container li.selected a:after {
	bottom: 0;
}



/* ----------------------------------------------------------------- */
/* CONTENT WRAPPER */

.content-wrapper {
	padding-bottom: 350px;
	margin-top: 50px;
}



/* ----------------------------------------------------------------- */
/* BANNER */

.banner {
	width: 728px;
	height: 90px;
	display: block;
	margin: 0 auto;
	margin-bottom: 40px;
	border: 1px solid #000000;
	box-sizing: content-box;
	background-color: #FFFFFF;
	background-image: url('images/grupoedisur_sistema-propietarios_banner_background.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.banner-club {
	width: 728px;
	height: 90px;
	display: block;
	margin: 0 auto;
	margin-bottom: 40px;
	border: 1px solid #2D4B4F;
	box-sizing: content-box;
	background-color: #FFFFFF;
}

.banner .banner-image {
	width: 90px;
	height: 90px;
	position: absolute;
	top: 0;
	left: 0;
}

.banner .vignette {
	background-color: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: fadein-copy2 20s infinite;
	-moz-animation: fadein-copy2 20s infinite;
	-ms-animation: fadein-copy2 20s infinite;
	-o-animation: fadein-copy2 20s infinite;
	animation: fadein-copy2 20s infinite;
}

.banner .copy1 {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 18px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	color: #FFFFFF;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 13px 30px 8px;
	text-align: center;
	display: block;
	width: 638px;
	float: right;
	-webkit-animation: fadein-copy1 20s infinite;
	-moz-animation: fadein-copy1 20s infinite;
	-ms-animation: fadein-copy1 20s infinite;
	-o-animation: fadein-copy1 20s infinite;
	animation: fadein-copy1 20s infinite;
}

.banner .copy2 {
	font-size: 15px;
	font-weight: normal;
	font-weight: 400;
	line-height: 18px;
	color: #FFFFFF;
	letter-spacing: 0.03em;
	padding: 0 30px;
	text-align: center;
	display: block;
	width: 638px;
	float: right;
	-webkit-animation: fadein-copy2 20s infinite;
	-moz-animation: fadein-copy2 20s infinite;
	-ms-animation: fadein-copy2 20s infinite;
	-o-animation: fadein-copy2 20s infinite;
	animation: fadein-copy2 20s infinite;
}

@-webkit-keyframes fadein-copy1 {
	0% { opacity: 0; }
	10% { opacity: 1; }
	75% { opacity: 1; }
	85% { opacity: 0; }
	100% { opacity: 0; }
}

@-webkit-keyframes fadein-copy2 {
	0% { opacity: 0; }
	15% { opacity: 1; }
	80% { opacity: 1; }
	90% { opacity: 0; }
	100% { opacity: 0; }
}

@-moz-keyframes fadein-copy1 {
	0% { opacity: 0; }
	10% { opacity: 1; }
	75% { opacity: 1; }
	85% { opacity: 0; }
	100% { opacity: 0; }
}

@-moz-keyframes fadein-copy2 {
	0% { opacity: 0; }
	15% { opacity: 1; }
	80% { opacity: 1; }
	90% { opacity: 0; }
	100% { opacity: 0; }
}

@-ms-keyframes fadein-copy1 {
	0% { opacity: 0; }
	10% { opacity: 1; }
	75% { opacity: 1; }
	85% { opacity: 0; }
	100% { opacity: 0; }
}

@-ms-keyframes fadein-copy2 {
	0% { opacity: 0; }
	15% { opacity: 1; }
	80% { opacity: 1; }
	90% { opacity: 0; }
	100% { opacity: 0; }
}

@-o-keyframes fadein-copy1 {
	0% { opacity: 0; }
	10% { opacity: 1; }
	75% { opacity: 1; }
	85% { opacity: 0; }
	100% { opacity: 0; }
}

@-o-keyframes fadein-copy2 {
	0% { opacity: 0; }
	15% { opacity: 1; }
	80% { opacity: 1; }
	90% { opacity: 0; }
	100% { opacity: 0; }
}

@-keyframes fadein-copy1 {
	0% { opacity: 0; }
	10% { opacity: 1; }
	75% { opacity: 1; }
	85% { opacity: 0; }
	100% { opacity: 0; }
}

@-keyframes fadein-copy2 {
	0% { opacity: 0; }
	15% { opacity: 1; }
	80% { opacity: 1; }
	90% { opacity: 0; }
	100% { opacity: 0; }
}



/* ----------------------------------------------------------------- */
/* BREADCRUMB */

.breadcrumb {
	padding: 0;
	border: 0;
	margin-bottom: 40px;
	text-align: left;
	font-size: 0;
	border-radius: 0;
	background: none;
}

.breadcrumb>li+li:before {
	display: none;
	content: "";
}

.breadcrumb li:first-child {
	margin-left: 0;
}

.breadcrumb li {
	margin-bottom: 3px;
	-moz-font-feature-settings: 'lnum';
    -ms-font-feature-settings: 'lnum';
    -webkit-font-feature-settings: 'lnum';
    -o-font-feature-settings: 'lnum';
    font-feature-settings: 'lnum';
}

.breadcrumb li a {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-weight: bold;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	padding: 0 10px 0 25px;
	position: relative;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	text-transform: uppercase;
	white-space: nowrap;
	background-color: #0C2D6B;
	color: #FFFFFF;
	margin: 0;
	margin-left: 4px;
	cursor: pointer;

	-webkit-transition: background ease-in-out 0.15s, color ease-in-out 0.15s;
	-moz-transition: background ease-in-out 0.15s, color ease-in-out 0.15s;
	transition: background ease-in-out 0.15s, color ease-in-out 0.15s;
}

.breadcrumb li a:after { 
	content: "";
	display: inline;
	width: 0; 
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #0C2D6B;
	padding: 0;
	font-size: 0;
	position: absolute;
	white-space: nowrap;
	right: -15px;
	z-index: 2;

	-webkit-transition: border-color ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s;
}

.breadcrumb li a:before { 
	content: "";
	display: inline;
	width: 0; 
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #F6F6F6;
	padding: 0;
	font-size: 0;
	position: absolute;
	left: 0;
	z-index: 1;
}

.breadcrumb li:first-child a {
	padding-left: 15px;
	margin-left: 0;
}

.breadcrumb li:first-child a:before {
	display: none;
}

/* CURRENT */

.breadcrumb .current span {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-weight: bold;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	padding: 0 10px 0 25px;
	position: relative;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	text-transform: uppercase;
	white-space: nowrap;
	background-color: #98A6BE;
	color: #FFFFFF;
	margin: 0;
	margin-left: 4px;

	-webkit-transition: background ease-in-out 0.15s, color ease-in-out 0.15s;
	-moz-transition: background ease-in-out 0.15s, color ease-in-out 0.15s;
	transition: background ease-in-out 0.15s, color ease-in-out 0.15s;
}

.breadcrumb .current span:after { 
	content: "";
	display: inline;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #98A6BE;
	padding: 0;
	font-size: 0;
	position: absolute;
	white-space: nowrap;
	right: -15px;
	z-index: 2;

	-webkit-transition: border-color ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s;
}

.breadcrumb .current span:before { 
	content: "";
	display: inline;
	width: 0; 
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #F6F6F6;
	padding: 0;
	font-size: 0;
	position: absolute;
	left: 0;
	z-index: 1;
}

.breadcrumb .current:first-child span {
	padding-left: 15px;
	margin-left: 0;
}

.breadcrumb .current:first-child span:before {
	display: none;
}

/* HOVER */

.breadcrumb li a:hover {
	background-color: #0652E1;
}

.breadcrumb li a:hover:after { 
	border-left-color: #0652E1 !important;
}



/* ----------------------------------------------------------------- */
/* SOLO BUTTONS */

.solo-buttons-container {
	margin-bottom: 10px;
	width: 100%;
	font-size: 0;
	text-align: left;
}

.solo-buttons-container .btn {
	margin-right: 5px;
	margin-bottom: 5px;
	
	padding: 0 20px;
	height: 32px;
	line-height: 32px;
	font-weight: normal;
	text-transform: uppercase;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.008em;
	white-space: nowrap;
	color: #FFFFFF
}



/* ----------------------------------------------------------------- */
/* ICONS */

.big-icons {
	margin-bottom: 40px;
	width: 100%;
	font-size: 0;
	text-align: left;
}

.big-icons li {
	width: 20%;
	min-width: 160px;
	display: inline-block;
	overflow: hidden;

	-webkit-transition: background ease-in-out 0.3s;
	-moz-transition: background ease-in-out 0.3s;
	transition: background ease-in-out 0.3s;
}

.big-icons li a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 20px 0 0;
	cursor: pointer;

	-webkit-transition: background ease-in-out 0.3s;
	-moz-transition: background ease-in-out 0.3s;
	transition: background ease-in-out 0.3s;
}

.big-icons .big-icons-item-icon {
	width: 114px;
	height: 114px;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 10px;
	background-color: #FFFFFF;
	border: 3px solid #0C2D6B;
	
	-webkit-transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
	-moz-transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
	transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
}

.big-icons .big-icons-item-icon img {
	width: 108px;
	height: 108px;
	display: none;
}

.big-icons .big-icons-item-icon svg {
	width: 108px;
	height: 108px;
	fill: #0C2D6B;

	-webkit-transition: fill ease-in-out 0.3s, margin 0.3s, width 0.3s, height 0.3s;
	-moz-transition: fill ease-in-out 0.3s, margin 0.3s, width 0.3s, height 0.3s;
	transition: fill ease-in-out 0.3s, margin 0.3s, width 0.3s, height 0.3s;
}

/* TITLE */

.big-icons .big-icons-item-title {
	display: table;
	width: 100%;
	height: 46px;
	overflow: hidden;
	padding: 0;
	text-align: center;
}

.big-icons .big-icons-item-title-fix {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: bold;
	font-weight: 600;
	line-height: 15px;
	text-transform: uppercase;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #0C2D6B;
	padding: 0;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
	
	-webkit-transition: color ease-in-out 0.15s;
	-moz-transition: color ease-in-out 0.15s;
	transition: color ease-in-out 0.15s;
}

/* HOVER */

.big-icons li a:hover .big-icons-item-icon {
	border-color: #0652E1;
}

.big-icons li a:hover .big-icons-item-title-fix {
	color: #0652E1;
}

.big-icons li a:hover .big-icons-item-icon svg {
	fill: #0652E1;
	width: 102px;
	height: 102px;
	margin-top: 3px;
	margin-left: 3px;
}

/* SELECTED */

.big-icons li.selected a .big-icons-item-icon {
	border-color: #0652E1;
}

.big-icons li.selected a .big-icons-item-title-fix {
	color: #0652E1;
}

.big-icons li.selected a .big-icons-item-icon svg {
	fill: #0652E1;
	width: 102px;
	height: 102px;
	margin-top: 3px;
	margin-left: 3px;
}



/* ----------------------------------------------------------------- */
/* ICONS */

.big-icons-alt {
	margin-bottom: 40px;
	width: 100%;
	font-size: 0;
	text-align: left;
}

.big-icons-alt li {
	width: 20%;
	min-width: 160px;
	display: inline-block;
	overflow: hidden;

	-webkit-transition: background ease-in-out 0.3s;
	-moz-transition: background ease-in-out 0.3s;
	transition: background ease-in-out 0.3s;
}

.big-icons-alt li a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 20px 0 0;
	cursor: pointer;

	-webkit-transition: background ease-in-out 0.3s;
	-moz-transition: background ease-in-out 0.3s;
	transition: background ease-in-out 0.3s;
}

.big-icons-alt .big-icons-item-icon {
	width: 114px;
	height: 114px;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 10px;
	border: 3px solid #0C2D6B;
	background-color: #0C2D6B;

	-webkit-transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
	-moz-transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
	transition: border ease-in-out 0.3s, background ease-in-out 0.3s;
}

.big-icons-alt .big-icons-item-icon img {
	width: 108px;
	height: 108px;
	display: none;
}

.big-icons-alt .big-icons-item-icon svg {
	width: 108px;
	height: 108px;
	fill: #FFFFFF;

	-webkit-transition: fill ease-in-out 0.3s, margin 0.3s, width 0.3s, height 0.3s;
	-moz-transition: fill ease-in-out 0.3s, margin 0.3s, width 0.3s, height 0.3s;
	transition: fill ease-in-out 0.3s, margin 0.3s, width 0.3s, height 0.3s;
}

/* TITLE */

.big-icons-alt .big-icons-item-title {
	display: table;
	width: 100%;
	height: 46px;
	overflow: hidden;
	padding: 0;
	text-align: center;
}

.big-icons-alt .big-icons-item-title-fix {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: bold;
	font-weight: 600;
	line-height: 15px;
	text-transform: uppercase;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #0C2D6B;
	padding: 0;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
	
	-webkit-transition: color ease-in-out 0.15s;
	-moz-transition: color ease-in-out 0.15s;
	transition: color ease-in-out 0.15s;
}

/* HOVER */

.big-icons-alt li a:hover .big-icons-item-icon {
	border-color: #0652E1;
	background-color: #0652E1;
}

.big-icons-alt li a:hover .big-icons-item-title-fix {
	color: #0652E1;
}

/* SELECTED */

.big-icons-alt li.selected a .big-icons-item-icon {
	border-color: #0652E1;
	background-color: #0652E1;
}

.big-icons-alt li.selected a .big-icons-item-title-fix {
	color: #0652E1;
}



/* ----------------------------------------------------------------- */
/* LISTS */

.list .list-header {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	color: #888888;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 20px 30px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
}

.list .list-selectors {
	padding: 30px 30px 40px;
	border-bottom: 1px solid #EEEEEE;
	font-size: 0;
	line-height: 0;
	letter-spacing: 0;
}

.list .list-selectors div.half {
	display: block;
	float: none !important;
	margin: 0;
	display: inline-block;
}

.list .list-items {
	padding: 30px;
}

.list .list-items li {
	background: #F6F6F6;
	margin-bottom: 5px;
	padding: 0;
	position: relative;
	overflow: hidden;
	min-height: 54px;
}

.list .list-items .list-item-title {
	font-weight: bold;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	padding-top: 10px;
	padding-left: 15px;
	float: left;
	clear: both;
	padding-right: 120px;
	height: auto;
}

.list .list-items .list-item-details {
	font-size: 14px;
	line-height: 20px; 
	padding-bottom: 7px;
	padding-left: 15px;
	float: left;
	clear: both;
	padding-right: 120px;
	height: auto;
}

.list .list-items .list-item-buttons {
	height: 54px;
	position: absolute;
	top: 0;
	right: 0;
}

.list .list-items li button {
	float: right;
	height: 100%;
}

.list .list-items li .glyphicon {
	font-size: 15px;
}

.list .register {
	text-align: right;
}



/* ----------------------------------------------------------------- */
/* NOTIFICATION */

.notification {
	border: 2px solid #0C2D6B;
	padding: 15px;
}

.notification .notification-item p {
	font-size: 15px;
	margin: 0;
}



/* ----------------------------------------------------------------- */
/* ACCORDION */

.accordion .accordion-header {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	color: #888888;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 20px 30px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
}

.accordion .faq-list {
	padding: 30px;
}

.accordion .question {
	position: relative;

	-webkit-transition: color ease-in-out 0.3s;
	-moz-transition: color ease-in-out 0.3s;
	transition: color ease-in-out 0.3s;
}

.accordion .question a {
	font-size: 14px;
	font-weight: bold;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 16px;
	padding: 12px 40px 12px 15px;
	letter-spacing: -0.05em;
	cursor: pointer;
	background-color: #0C2D6B;
	color: #FFFFFF;
	margin-bottom: 5px;
	display: block;

	-webkit-transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
	-moz-transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
	transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
}

.accordion .question:after {
	font-family: 'Edisur Icons';
	text-transform: none;
	color: #FFFFFF;

	content: 'v';
	display: block;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -10px;
	height: 20px;

	/*
	background-color: rgba(0,0,0,0.02);
	width: 100%;
	margin: 0;
	padding: 0;
	bottom: 0;
	right: 0;
	top: auto;
	text-align: center;
	*/
}

/* HOVER */

.accordion .question a:hover {
	text-decoration: none;
	background-color: #0652E1;
	color: #FFFFFF;
}

.accordion .question:hover {
	color: #FFFFFF;
}

/* ACTIVE STATE */

.accordion .active .question a {
	text-decoration: none;
	background-color: #0652E1;
	color: #FFFFFF;
}

.accordion .active .question:after {
	content: '^';
	color: #FFFFFF;
}

/* ANSWER */

.accordion .answer {
	padding: 15px;
	padding-bottom: 40px;
}

.accordion a {
	color: #0652E1;
}

.accordion a:hover {
	text-decoration: underline;
}



/* ----------------------------------------------------------------- */
/* INFORMATION CONTAINERS */

.details-container {
	background-color: #FFFFFF;
	padding: 0;
	margin-bottom: 40px;
	padding-bottom: 20px;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* .details-container .project-resume-file.property-data li:first-child { */
.details-container .details-container-header {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	color: #888888;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 20px 20px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
	width: 100%;
	margin-bottom: 20px;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
}

.details-container > li {
	text-align: left;
}

.details-container .project-resume-file p {
	margin: 0;
}

.details-title {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-weight: bold;
	font-weight: 600;
	display: block;
	font-size: 13px;
	line-height: 16px;
	color: #888888;
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

.details-container .project-resume-file.property-data li,
.details-container .project-resume-file.property li {
	padding: 0px 20px;
}

.details-container .project-resume-file.property-data,
.details-container .project-resume-file.property {
	margin-bottom: 30px;
}

.details-container .project-resume-file.property-data:last-child,
.details-container .project-resume-file.property:last-child {
	margin-bottom: 0;
}



/* ----------------------------------------------------------------- */
/* TABSET */

.nav-tabs {
	border-bottom: 2px solid #0C2D6B;
	line-height: 0;
}

.nav-tabs > li > a {
	border-radius: 0;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-weight: 600;
	line-height: 20px;
	padding: 10px 20px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 0;
	overflow: hidden;
	color: #0C2D6B;
	border: none;
	white-space: nowrap;
	cursor: pointer;
	
	-webkit-transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
	-moz-transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
	transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
}

.nav-tabs > li > a:hover {
	border: none;
	background: none;
	color: #0652E1;
}

.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:hover, 
.nav-tabs > li.active > a:focus {
	border: none;
	background-color: #0C2D6B;
	color: #FFFFFF;
}

.tab-content > .tab-pane {
	background-color: #FFFFFF;
	border: none;
	overflow: hidden;
	padding: 30px 20px;
	margin-bottom: 50px;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	
}

.tab-content > .tab-pane .header-info {
	text-align: left;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 20px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.tab-content > .tab-pane ul {
	text-align: left;
	margin-bottom: 20px;
}

.tab-content .info-group {
	margin-bottom: 50px;
}

.tab-content .info-group:last-child {
	margin-bottom: 0;
}

.tab-content > .tab-pane ul:last-child {
	margin-bottom: 0;
}

.tab-content > .tab-pane ul li {
	margin-bottom: 20px;
}



/* ----------------------------------------------------------------- */
/* GALLERIES */

.gallery {}

.gallery .gallery-header {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	color: #888888;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 20px 20px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
	width: 100%;

	-moz-font-feature-settings: 'lnum', 'pnum';
	-ms-font-feature-settings: 'lnum', 'pnum';
	-webkit-font-feature-settings: 'lnum', 'pnum';
	-o-font-feature-settings: 'lnum', 'pnum';
	font-feature-settings: 'lnum', 'pnum';
}

.gallery .gallery-menu {
	height: 40px;
	width: 100%;
	line-height: 40px;
	padding: 0;
	margin: 0;
	font-size: 0;
	box-sizing: border-box;
	background-color: #0C2D6B;
}

.gallery .gallery-menu .item {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-weight: 600;
	line-height: 40px;
	padding: 0 30px;
	height: 40px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	display: inline-block;
	overflow: hidden;
	color: #FFFFFF;
	border: none;
	white-space: nowrap;
	cursor: pointer;
	background: none;
	position: relative;
	border: none;
	margin: 0;
	overflow: visible;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;

	-webkit-transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
	-moz-transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
	transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
}

.gallery .gallery-menu .item.active {
	background-color: #0652E1;
}

.gallery .gallery-menu .item:hover {
	background-color: #0652E1;
	background-color: #074BC9;	
}

/* SUBMENU */

.gallery .gallery-menu .submenu {
	position: absolute;
	left: 0;
	top: 40px;
	z-index: 10;
	opacity: 1 !important;
	background-color: #0652E1;
	background-color: #0C2D6B;
	box-shadow: 0 5px 5px rgba(0,0,0,0.2);

	-moz-transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.gallery .gallery-menu .submenu .item {
	float: left;
	clear: both;
	font-size: 13px;
	line-height: 14px;
	font-weight: normal;
	font-weight: 400;
	padding: 10px 30px;
	height: auto;
	text-align: left;
}

.gallery .gallery-menu .submenu .item {
	width: 100%;
}

.gallery .gallery-menu .submenu.ng-hide {
	display: block !important;
	opacity: 0 !important;
	height: 0;
	overflow: hidden;
}

/* GALLERY */

.gallery .single-gallery {
	padding-top: 20px;
	padding-bottom: 10px;
	padding-left: 11px;
	font-size: 0;
}

.gallery .single-gallery li {
	width: 237px;
	height: 175px;
	display: inline-block;
	border: 1px solid #EEEEEE;
	box-sizing: border-box;
	margin-right: 10px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px 10px inset black;
}

.gallery .single-gallery li a {
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.3) inset;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.gallery .single-gallery li .caption-over {
	background: rgba(0,0,0,0.6);
	position: absolute;
	top: 0;
	left: 0;
	width: 237px;
	height: 175px;
	text-align: center;
	display: block;
	line-height: 175px;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 12px;
	opacity: 0;
	cursor: pointer;
	padding-top: 90px;
	padding-right: 2px;
	
	-moz-transition: opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.gallery .single-gallery li a:hover .caption-over {
	opacity: 1;
	padding-top: 0;
}



/* ----------------------------------------------------------------- */
/* FORM */

.login-form {
	width: 750px;
	margin: 0 auto;
	/* padding-bottom: 50px; */
}

.form-divider {
	border-bottom: 1px solid #EEEEEE;
	margin-left: -30px;
	margin-right: -30px;
	clear: both;
	margin-bottom: 30px;
}

.form-container {
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 50px;
	text-align: right;
	background-color: #FFFFFF;
	padding: 0;
	border: none;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.form-container-midsize {
	width: 750px;
}

.form-header {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 18px;
	color: #888888;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 20px 30px;
	text-align: center;
	margin-bottom: 20px;
	border-bottom: 1px solid #EEEEEE;
}

form {
	padding: 30px;
	padding-top: 0;
}

.form-group {
	text-align: left;
	margin-bottom: 30px;
}

.form-group.half {
	width: 50%;
	float: left;
	padding-right: 10px;
}

.form-group.half .form-control {
	width: 100%;
}

.form-group.half.right {
	padding-left: 10px;
	padding-right: 0;
}

.form-group.quarter {
	width: 25%;
	float: left;
	padding-right: 10px;
}

.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 8px;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: normal;
	vertical-align: middle;
	background: none;
	-webkit-appearance: initial;

	color: #777777;
	border: 1px solid #CCCCCC;
	background-color: #F6F6F6;
	
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;

	-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, background-color ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, background-color ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, background-color ease-in-out 0.15s;
}

.form-control:focus {
	background-color: #FFFFFF;
	color: #444444;
	border-color: #444444;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	-webkit-box-shadow: none;
	box-shadow: none;
}

select,
select option {
	-webkit-appearance: initial;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

select.form-control {
	background-image: url('images/grupoedisur_sistema-propietarios_controls_arrow_off.png');
	background-repeat: no-repeat;
	background-position: right center;
}

select.form-control:focus {
	background-image: url('images/grupoedisur_sistema-propietarios_controls_arrow_on.png');
}

.input-group-btn:last-child>.btn, 
.input-group-btn:last-child>.btn-group {
	margin: 0;
}

label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: normal;
	text-transform: uppercase;
	position: relative;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: -0.008em;
	white-space: nowrap;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
}

.form-helper {
	text-align: left;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 0;
	color: #888888;
	padding: 15px 30px;
	border-top: 1px solid #EEEEEE;
}

.form-helper p {
	margin: 0;
}

.form-new-helper {
	text-align: left;
	margin-bottom: 30px;
}

.form-helper a {
	color: #0C2D6B;
	text-decoration: none;
	cursor: pointer;
}

.form-helper a:hover {
	color: #0652E1;
	text-decoration: none;
}

.required:before {
	display: inline;
	position: absolute;
	top: 0;
	content: '';
	width: 6px;
	height: 6px;
	background: #FF4444;
	margin-top: 4px;
	left: -11px;
	border-radius: 50%;
}

.glyphicon-refresh {
	width: 24px;
	height: 20px;
	line-height: 20px;
	display: block;
	position: relative;
	margin-top: -27px;
	float: right;
}

.glyphicon-refresh:before {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}

#day-calendar h2 {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: normal;
	text-transform: uppercase;
	position: relative;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 16px;
	letter-spacing: -0.008em;
	white-space: nowrap;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
	display: none;
}

/* DROPDOWN MENU CALENDAR */

.dropdown-menu {
	border-radius: 0;
	border: none;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	width: 100%;
	width: 390px;
	overflow: hidden;
	/*left: auto !important;*/
	right: 1px !important;
	/*margin-top: 60px;*/

	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: 0;
}

.dropdown-menu .btn:hover,
.dropdown-menu .btn:focus, 
.dropdown-menu .btn:active {
	color: #FFFFFF;
	background-color: #195FE5;
}

.dropdown-menu .btn.active {
	color: #FFFFFF;
	background-color: #0C1F42;
}

.dropdown-menu .btn .text-info {
	color: #195FE5;
}

.dropdown-menu .btn-info .text-info {
	color: #FFFFFF;
}

.dropdown-menu .btn-info:hover {
	background-color: #195FE5;
}

.dropdown-menu .btn:hover .text-info,
.dropdown-menu .btn:focus .text-info, 
.dropdown-menu .btn:active .text-info {
	color: #FFFFFF;
}

.dropdown-menu .btn .text-muted {
	color: #CCCCCC;
}

.dropdown-menu thead {
}

.dropdown-menu > li:last-child {
	padding: 0 !important;
	/*margin-top: 20px;*/
}

.dropdown-menu thead > tr:first-child {
	height: 40px;
	overflow: hidden;
	background-color: #CCCCCC;
}

.dropdown-menu thead > tr:first-child th {
	vertical-align: top;
	text-align: left;
}

.dropdown-menu thead > tr:first-child button {
	width: 100%;
	height: 40px;
	color: #FFFFFF;
}

.dropdown-menu thead > tr:last-child {
	background-color: #F6F6F6;
}

.dropdown-menu tbody tr > td:first-child {
	background-color: #F6F6F6;
}

.dropdown-menu button.btn-info,
.dropdown-menu button.btn-danger,
.dropdown-menu button.btn-success {
	background-color: #CCCCCC;
	color: #FFFFFF;
}


/* ----------------------------------------------------------------- */
/* ACCOUNT STATUS TABLE */

.table-bordered {
	background-color: #FFFFFF;
	width: 100%;
	border: 0;
}

.table-bordered>thead>tr>th, 
.table-bordered>tbody>tr>th, 
.table-bordered>tfoot>tr>th, 
.table-bordered>thead>tr>td, 
.table-bordered>tbody>tr>td, 
.table-bordered>tfoot>tr>td {
	border-color: yellow;
	border-color: #CCCCCC;
}

.table-condensed > thead > tr > th, 
.table-condensed > tbody > tr > th, 
.table-condensed > tfoot > tr > th, 
.table-condensed > thead > tr > td, 
.table-condensed > tbody > tr > td, 
.table-condensed > tfoot > tr > td {
	padding: 5px 10px;
	vertical-align: top;
}

.table-condensed > tbody td.subtd {
	text-align: right;
}

.table-condensed > tbody td.numeric {
	text-align: right;
	-webkit-font-feature-settings: "tnum";
	-moz-font-feature-settings: "tnum";
	font-feature-settings: "tnum";
	white-space: nowrap;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
	background-color: #0C1F42;
	color: #FFFFFF;
	text-align: center;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-bottom-width: 0;
	height: 24px;
	line-height: 24px;
	white-space: nowrap;
}

.table-bordered > thead > tr > th {
	border-right-color: #4163A1;
	border-bottom-style: hidden;
	border-top: 1px double #EEEEEE;
}

.table-bordered > thead > tr > th:last-child {
	border-right-color: yellow;
	border-color: #CCCCCC;
}

.table-bordered > tfoot td.table-highlight {
	background-color: #0C1F42;
	color: #FFFFFF;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	height: 24px;
	line-height: 24px;
	border-right-color: #4163A1;
	border-bottom-style: hidden;
	border-top: 1px double yellow;
	border-top: 1px double #CCCCCC;
}

.table-bordered > tfoot td.table-highlight:last-child {
	border-right-color: yellow;
	border-right-color: #CCCCCC;
}

.table-bordered > thead th.sub-table-wrapper,
.table-bordered > tbody td.sub-table-wrapper {
	padding: 0;
}

.table-bordered > thead td.subth {
	height: 24px;
	line-height: 24px;
	padding: 5px 0;
	width: 50%;
}

.table-bordered > thead td.subth.center {
	border-right: 1px solid #4163A1;
}

.table-bordered > tbody td.subtd {
	width: 50%;
	text-align: right;
}

.table-bordered > tbody td.subtd.center {
	text-align: center;
	border-right: 1px solid #dddddd;
}

.table-bordered > tbody td.sub-table-wrapper table {
	border-bottom: 1px solid #EAEAEA;
	border-color: yellow;
	border-color: #CCCCCC;
}

.table-bordered > tbody td.sub-table-wrapper table:last-child {
	border-bottom: none;
}

.table-bordered > tfoot td.hidden-cell {
	border: none;
}

.table-bordered > tfoot td.table-totals {
	font-weight: 600;
	color: #000000;
	text-align: right;
}

.table-bordered > tfoot td.icon-padding {
	padding-right: 33px;
}

.table-bordered a.edisur-icon {
	font-family: 'Edisur Icons';
	color: #0C1F42;
	cursor: pointer;

	-webkit-transition: color ease-in-out 0.15s;
	-moz-transition: color ease-in-out 0.15s;
	transition: color ease-in-out 0.15s;
}

.table-bordered a.edisur-icon:hover {
	color: #195FE5;
}



/* ----------------------------------------------------------------- */
/* CALENDAR */

.calendar-container {
	text-align: left;
	background-color: #FFFFFF;
	padding: 0;
	margin-bottom: 40px;
	border: none;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.calendar-container .calendar-header {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-weight: 600;
	line-height: 18px;
	color: #888888;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 20px 30px;
	text-align: center;
	border-bottom: 1px solid #EEEEEE;
}

.calendar-container .project-selectors {
	font-size: 0;
}

.calendar-container .form-group.half {
	float: none;
	box-sizing: border-box;
	padding-left: 30px;
	padding-top: 30px;
	display: inline-block;
}

.calendar-container .form-group.half.right {
	padding-right: 30px;
}

.calendar-container .fc {
	padding: 30px;
	border-top: 1px solid #EAEAEA;
}

.calendar-container .fc h2 {
	font-weight: normal;
	text-transform: uppercase;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: -0.008em;
	white-space: nowrap;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
}

.calendar-container .fc .fc-button {
	border-radius: 0;
	border: none;
	box-shadow: none;
	background: none;
	padding: 0 20px;
	height: 32px;
	line-height: 32px;

	font-weight: normal;
	text-transform: uppercase;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.008em;
	white-space: nowrap;
	text-shadow: none;
	background-color: #CCCCCC;
	color: #FFFFFF;
	
	-webkit-transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
	-moz-transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
	transition: background-color ease-in-out 0.3s, color ease-in-out 0.3s;
}

.calendar-container .fc .fc-center {
	margin-right: 80px;
	margin-right: .75em;
	float: right;
}

.calendar-container .fc .fc-toolbar {
	padding: 0;
	margin-bottom: 20px;
	line-height: 12px;
}

.calendar-container .fc .fc-day-header {
	background-color: #F6F6F6;
	text-transform: uppercase;
	padding: 5px 0;
	font-weight: 600;
}

.calendar-container .fc .fc-axis {
	background-color: #F6F6F6;
	text-align: center;
}

.calendar-container .fc .fc-state-active,
.calendar-container .fc .fc-button:hover,
.calendar-container .fc .fc-button:focus,
.calendar-container .fc .fc-button:active {
	color: #FFFFFF;
	box-shadow: none;
	background-color: #195FE5;
}

.calendar-container .fc .fc-state-disabled {
	opacity: 0.4;
	cursor: default;
}

.calendar-container .fc .fc-state-disabled:hover {
	background-color: #CCCCCC;
}

.calendar-container .fc .fc-event {
	margin: 0;
}

/* GENERAL CALENDAR STYLES */

.fc-ltr .fc-time-grid .fc-event-container,
.fc-event-container {
	margin: 0;
}

.fc-event {
	margin: 1px 0 0 10px;
}

.fc-event {
	border: none;
	border-radius: 0;
	padding: 2px 4px;
	opacity: 1;
}

/* EVENTS COLORS */

.new-event {
	background-color: #195FE5;
	color: #FFFFFF;
}

.new-event:hover {
	color: #FFFFFF;
}

.approved {
	background-color: #195FE5;
	color: #FFFFFF;
}

.approved:hover {
	background-color: #195FE5;
	color: #FFFFFF;
}

.pending-approval {
	background-color: #CCCCCC;
	color: #FFFFFF;
}

.pending-approval:hover {
	background-color: #CCCCCC;
	color: #FFFFFF;
}

.paid:before {
	content: '\e089';

	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	margin-bottom: 2px;
	display: inline-block;
	text-align: center;
	color: #30CC00;

	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #30CC00;
}

.not-paid:before {
	content: '\e088';

	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 20px;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	margin-bottom: 2px;
	display: inline-block;
	text-align: center;
	color: #F90404;

	content: '';
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #F90404;
}

.someoneelses-booking {
}

.someoneelses-booking:hover {
}



/* ----------------------------------------------------------------- */
/* MODAL */

.modal-dialog {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.modal-header {
	min-height: 0;
	padding: 15px;
	border-bottom: none;
	text-align: left;
	background-color: #0C1F42;
}

.modal-header h3 {
	margin: 0;
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFFFFF;
}

.modal {
	overflow: hidden;
	overflow-y: hidden;
	display: block;
	text-align: center;
}

.modal-body {
	padding: 36px;
}

.modal-body-text {
	padding: 15px;
	padding-bottom: 20px;
}

.modal-content {
	margin-top: 30px;
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.modal-content .reserve-info {
	background-color: #F6F6F6;
	background-color: #FFFFFF;
	padding: 20px;
	margin-bottom: 5px;
}

.modal-content .button-wrapper {
	text-align: right;
}

.modal-content .reserve-info strong {
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	line-height: 18px;
	margin-top: 10px;
	margin-bottom: 5px;
	display: block;

	-moz-font-feature-settings: 'lnum', 'pnum';
    -ms-font-feature-settings: 'lnum', 'pnum';
    -webkit-font-feature-settings: 'lnum', 'pnum';
    -o-font-feature-settings: 'lnum', 'pnum';
    font-feature-settings: 'lnum', 'pnum';
}

.modal-content .reserve-actions {
	background-color: #F6F6F6;
	font-size: 0;
	text-align: right;
	margin: 20px;
}

.modal-content .reserve-actions .btn-action {
	font-size: 16px;
	height: 54px
}

.modal-content .btn-modal-close {
	float: left;
	height: 54px;
	line-height: 54px;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 30px;
	display: none;
}

.modal-dialog .modal-close-btn {
	width: 48px;
	height: 24px;
	position: absolute;
	top: 0;
	right: -48px;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 15px;
	color: #BBB;
	
	-webkit-transition: color ease-in-out 0.3s;
	-moz-transition: color ease-in-out 0.3s;
	transition: color ease-in-out 0.3s;
}

.modal-dialog .modal-close-btn:hover {
	color: #FFFFFF;
}

.modal-dialog .form-group {
	margin-bottom: 10px;
}

.modal-dialog .radio input[type="radio"], 
.modal-dialog .radio-inline input[type="radio"], 
.modal-dialog .checkbox input[type="checkbox"], 
.modal-dialog .checkbox-inline input[type="checkbox"] {
	position: relative;
	margin: 0;
}



/* ----------------------------------------------------------------- */
/* LOADING OVERLAY */

.overlay-base {
	text-align: center;
	margin-bottom: 20px;
	margin: 0 auto;
	overflow: visible;
}

.overlay-wrapper {
	position: absolute;
	width: 1000px;
	height: 600px;
	z-index: 100;
}

.overlay {
	position: absolute;
	float: left;
	background-color: #F6F6F6;
	width: 100%;
	height:100%;
}

.overlay p {
	color: gold;
	display: block;
	padding-top: 150px;
	position: absolute;
	width: 100%; 
	
	font-family: 'Raleway', Futura, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 15px;
	text-transform: uppercase;
}



/* ----------------------------------------------------------------- */
/* ANIMATION RELATED STYLES */

.form-container{
	opacity: 1;

	-moz-transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition:	opacity 0.3s ease;

	-webkit-animation-name: fadeInFromNone;
	-moz-animation-name: fadeInFromNone;
	-o-animation-name: fadeInFromNone;
	animation-name: fadeInFromNone;

	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	-o-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

@-webkit-keyframes fadeInFromNone {
	0% {
		display:none; 
		opacity: 0;
	}
	
	1% {
		display: block ; 
		opacity: 0;
	}
	
	100% {
		display: block ; 
		opacity: 1;
	}
}

@-moz-keyframes fadeInFromNone {
	0% {
		display:none; 
		opacity: 0;
	}
	
	1% {
		display: block ; 
		opacity: 0;
	}
	
	100% {
		display: block ; 
		opacity: 1;
	}
}

@-o-keyframes fadeInFromNone {
	0% {
		display:none; 
		opacity: 0;
	}
	
	1% {
		display: block ; 
		opacity: 0;
	}
	
	100% {
		display: block ; 
		opacity: 1;
	}
}

@keyframes fadeInFromNone {
	0% {
		display:none; 
		opacity: 0;
	}
	
	1% {
		display: block ; 
		opacity: 0;
	}
	
	100% {
		display: block ; 
		opacity: 1;
	}
}



/* ----------------------------------------------------------------- */
/* ANGULAR JS STYLES */

[ng-cloak] {
	display: none;
}

.ng-hide {
	display: none !important;
	opacity: 0 !important;
}

/* ----------------------------------------------------------------- */
#blueimp-gallery .prev,
#blueimp-gallery .next {
	background-color: transparent;
	border: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	background-size: 25px 46px;
	background-repeat: no-repeat;
	width: 45px;
	height: 46px;
	text-indent: -10000px;
	overflow: hidden;
}

#blueimp-gallery .next {
	background-image: url('images/grupoedisur_sistema-propietarios_next@2x.png');
	background-position: left center;
}

#blueimp-gallery .prev {
	background-image: url('images/grupoedisur_sistema-propietarios_prev@2x.png');
	background-position: right center;	
}

#blueimp-gallery .prev:hover,
#blueimp-gallery .next:hover {
	background-color: transparent;
}

#blueimp-gallery .indicator {
	display: none;
}

#blueimp-gallery .play-pause {
	display: none;
}

#blueimp-gallery .title {
	display: none;
}

#blueimp-gallery .close {
	background-image: url('images/grupoedisur_sistema-propietarios_cerrar@2x.png');
	background-position: top left;
	text-indent: -1000px;
	overflow: hidden;
	width: 40px;
	height: 40px;
	background-size: 40px 40px;
	margin: 10px;
}



/* ----------------------------------------------------------------- */
/* BLUEPRINT GALLERY */

.blueprint-gallery {	
	width: 920px;
	background-color: white;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	margin: 0 auto 50px auto;
	float: left;
}

.blueprint-gallery .menu {
	height: 50px;
	line-height: 50px;
	float: left;
	position: absolute;
	top: 0;
	left: 230px;
	width: 620px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border: none;
}

.blueprint-gallery .menu .item,
.blueprint-gallery .menu .item a,
.blueprint-gallery .menu .item a:link,
.blueprint-gallery .menu .item a:active,
.blueprint-gallery .menu .item a:visited {
	height: 50px;
	width: auto;
	line-height: 50px;
	float: left;
	padding: 0 20px;
	text-transform: uppercase;
	color: #FFFFFF;
	cursor: pointer;
	background: none;
	border: none;
	margin: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	-moz-transition: background-color 0.3s ease;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	overflow: visible;
	position: relative;
}

.blueprint-gallery .menu .item:hover,
.blueprint-gallery .menu .item a:hover {
	background-color: rgba(0,0,0,0.2);
	border: none;
	color: #FFFFFF;
}

.blueprint-gallery .menu .item.active {
	border: none;
	margin: 0;
}

.blueprint-gallery .menu .item.active,
.blueprint-gallery .menu .item.active a,
.blueprint-gallery .menu .item.active a:link,
.blueprint-gallery .menu .item.active a:active,
.blueprint-gallery .menu .item.active a:visited {
	background-color: rgba(0,0,0,0.4);
}

.blueprint-gallery .menu .submenu {
	position: absolute;
	left: 0;
	top: 50px;
	z-index: 10;
	width: 200px;
	opacity: 1 !important;
	-moz-transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.blueprint-gallery .menu .submenu .item {
	float: left;
	clear: both;
	font-size: 15px;
	line-height: 17px;
	padding: 15px;
	height: auto;
	text-align: left;
}

.blueprint-gallery .menu .submenu .item {
	width: 100%;
}

.blueprint-gallery .menu .submenu .item:nth-child(1) {
	background-color: rgba(0,0,0,0.1);
}

.blueprint-gallery .menu .submenu .item:nth-child(2) {
	background-color: rgba(0,0,0,0.2);
}

.blueprint-gallery .menu .submenu .item:nth-child(3) {
	background-color: rgba(0,0,0,0.3);
}

.blueprint-gallery .menu .submenu .item:nth-child(4) {
	background-color: rgba(0,0,0,0.4);
}

.blueprint-gallery .menu .submenu .item:nth-child(5) {
	background-color: rgba(0,0,0,0.5);
}

.blueprint-gallery .menu .submenu .item:nth-child(6) {
	background-color: rgba(0,0,0,0.6);
}

.blueprint-gallery .menu .submenu .item:nth-child(7) {
	background-color: rgba(0,0,0,0.7);
}

.blueprint-gallery .menu .submenu .item:nth-child(8) {
	background-color: rgba(0,0,0,0.8);
}

.blueprint-gallery .menu .submenu .item:nth-child(9) {
	background-color: rgba(0,0,0,0.9);
}

.blueprint-gallery .menu .submenu .item:nth-child(10) {
	background-color: rgba(0,0,0,1);
}

.blueprint-gallery .submenu.ng-hide {
	display: block !important;
	opacity: 0 !important;
	height: 0;
	overflow: hidden;
}

/* ----------------------------------------------------------------- */
/* GALLERY ZOOM */
.image-zoom{
	cursor: -webkit-zoom-out;
	position: absolute;
	display:none;
	-webkit-transition: opacity .5s;
	width: 170%;
	opacity: 0;
	top: 'initial';
	left: 'initial';
	right: 'initial';
	bottom: 'initial';
}
.image-zoom.zoom-active{
	opacity: 1;
	display: block;
	-webkit-transition: opacity .5s;
	-webkit-animation: image-zoom-in .5s;
}

@-webkit-keyframes image-zoom-in {
  0%   { 
  	opacity: 0;
  	display: block;
  }
  100% { opacity: 1; }
}
.image-zoom.zoom-hidden{
	display: block;
	opacity: 0;
	-webkit-transition: opacity .5s;
	-webkit-animation: image-zoom-out .5s;
}
@-webkit-keyframes image-zoom-out {
  0%   { 
  	opacity: 1;
  	display: block;
  }
  100% { opacity: 0;}
}
.image-zoom.top{
	top: -159px;
}
.image-zoom.left{
	left: -152px;
}
.image-zoom.bottom{
	bottom: -195px;
}
.image-zoom.right{
	right: 0;
}

.blueimp-gallery>.slides>.slide-loading{
	background: url(images/grupoedisur_sistema-propietarios_loading.gif) center no-repeat;
	background-size:64px 64px
}