:root {
	--primary-color: #f79263;
	--primary-hover: #fb6c29;
	--secondary-color: #182042;
	--secondary-hover: #111731;
	--bg-color: #f8fafc;
	--card-bg: #ffffff;
	--text-color: #2d3436;
	--text-muted: #64748b;
	--border-color: rgba(0, 0, 0, 0.05);
	--shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
	--radius: 16px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
	height: 100%;
}

*,
html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: var(--secondary-color);
	transition: var(--transition);
}

a:hover {
	color: var(--secondary-hover);
}

body>footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 11px;
	text-align: right;
	z-index: 1000;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	border-top: 1px solid var(--border-color);
}

body>footer.footer-passport {
	bottom: 0;
	background: white;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

body>footer.footer-passport li {
	display: inline-block;
}

body>footer li {
	display: inline-block;
	padding: 0 10px;
}

.warning {
	font-size: 13px;
	color: #e74c3c;
}

.publicidad {
	width: 100%;
	max-width: 728px;
	height: auto;
	min-height: 90px;
	margin: 20px auto;
	background: #fdfdfd;
	border: 1px dashed #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
}

#loaderback {
	display: none;
	position: fixed;
	z-index: 1010;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
}

#loaderback .loader {
	position: fixed;
	left: calc(50% - 22px);
	top: calc(50% - 22px);
}

#menulateral {
	width: 60px;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 1001;
	background-color: var(--secondary-color);
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	transition: width 0.3s ease;
	overflow: hidden;
}

#menulateral.open {
	width: 240px;
}

#menulateral #profile {
	text-align: center;
	padding: 20px 10px;
	height: auto;
	width: 100%;
	box-sizing: border-box;
}

#menulateral #profile img {
	width: 40px;
	height: 40px;
	border-radius: 16px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

#menulateral #profile.active img {
	border-color: var(--primary-color);
}

#menulateral.open #profile img {
	width: 80px;
	height: 80px;
}

#menulateral ul#sections {
	background-color: transparent;
	padding: 0;
	margin: 0;
	width: 100%;
	flex-grow: 1;
}

#menulateral ul#sections li {
	list-style: none;
	padding: 5px 0;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	color: rgba(255, 255, 255, 0.6);
	position: relative;
}

/* Menu Buttons */
#menulateral .menubutton {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	width: 44px;
	height: 44px;
	margin: 0 auto 5px;
	border-radius: 12px;
	transition: all 0.2s;
	color: rgba(255, 255, 255, 0.6);
}

#menulateral.open .menubutton {
	width: 210px;
	justify-content: flex-start;
	padding-left: 15px;
}

#menulateral .menubutton i {
	font-size: 20px;
	min-width: 24px;
	text-align: center;
	color: white;
	opacity: 0.8;
	transition: all 0.2s ease-in-out;
}

#menulateral .menubutton:hover,
#menulateral .menubutton.active {
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

#menulateral .menubutton:hover i,
#menulateral .menubutton.active i {
	opacity: 1;
	color: var(--primary-color);
	transform: scale(1.1);
}

/* Toggle Button */
#menu-toggle {
	cursor: pointer;
	margin-top: 15px;
	margin-bottom: 10px;
}

#menulateral ul#sections.sectionsPublic {
	max-height: calc(100% - 150px);
}

/* Text Labels */
.menu-text {
	display: none;
	white-space: nowrap;
	margin-left: 15px;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.2s;
}

#menulateral.open .menu-text {
	display: inline-block;
	opacity: 1;
}

/* Notification Badge */
.notification-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	min-width: 18px;
	height: 18px;
	background-color: #e74c3c;
	color: white;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border: 2px solid var(--secondary-color);
	z-index: 10;
}

#menulateral.open .notification-badge {
	top: 12px;
	right: 15px;
}

#menulateral ul#general {
	background: transparent;
	padding: 20px 0;
	margin: 0;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#menulateral ul#general li {
	list-style: none;
	padding: 5px 0;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	color: rgba(255, 255, 255, 0.5);
}

#menudays {
	position: absolute;
	left: 101px;
	top: 0;
	/*80px;*/
	width: 70px;
	bottom: 0;
	border-right: 1px solid #eee;
	z-index: 1000;
}

#menudays ul#sections {
	direction: rtl;
	background-color: #1abc9c;
	padding: 0;
	margin: 0;
	color: white;
	width: 100%;
	overflow-y: auto;
}

#menudays ul#sections li {
	direction: ltr;
	list-style: none;
	padding: 15px;
	text-align: center;
	max-height: 38px;
}

#menudays ul#sections li:hover {
	background-color: #16a085;
	color: #fff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#menudays ul#sections li:hover div {
	display: block;
}

#menudays ul#sections li.active {
	cursor: initial;
	background-color: #16a085;
	color: #fff;
}

#menudays ul#general {
	background: rgb(247, 146, 99);
	padding: 0;
	margin: 0;
	color: #3399cc;
	width: inherit;
}

#menudays ul#general li {
	list-style: none;
	padding: 0;
	text-align: center;
}

#menudays ul#general li:hover {
	background-color: #ff7f46;
	color: #fff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#menudays ul#general li:hover div {
	display: block;
}

#menulocations {
	position: absolute;
	left: 172px;
	top: 0;
	bottom: 2px;
	width: 328px;
	border-right: 1px solid #eee;
	background: white;
}

#menulocations .formfield {
	padding: 10px 10px 0;
	margin: 5px 0 0;
	text-align: center;
}

#menulocations #travel-centermap {
	text-align: center;
	padding-top: 10px;
}

#menulocations #location-list {
	overflow-y: auto;
	height: calc(100% - 50px);
}

#menulocations #location-list .location-list-placeholder {
	min-height: 40px;
	background: rgba(51, 153, 204, 0.3);
}

#menulocations #location-list li {
	list-style: none;
	padding: 10px;
	margin: 10px 0;
	font-size: 12px;
	position: relative;
	padding-left: 25px;
}

#menulocations #location-list.cursorpointer li {
	cursor: move;
}

#menulocations #location-list li:hover {
	background: #39c;
	color: white;
}

#menulocations #location-list li .location-icon {
	position: relative;
	left: -15px;
	top: 5px;
	float: left;
	border: 2px solid #ff7f46;
	display: block;
	width: 18px;
	max-width: 18px;
	padding: 5px;
	padding-top: 8px;
	padding-bottom: 2px;
	border-radius: 15px;
	height: 18px;
	max-height: 18px;
	text-align: center;
	color: #ff7f46;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 12px;
}

#menulocations #location-list li .location-name {
	padding: 5px 0;
	width: 280px;
}

#menulocations #location-list li .location-name .location-commenticon {
	width: 12px;
	display: inline-block;
	text-align: center;
	border: 1px solid #2980b9;
	border-radius: 10px;
	color: #2980b9;
	height: 12px;
	font-size: 9px;
	padding: 1px;
	margin: 0 5px;
}

#menulocations #location-list li:hover .location-name .location-commenticon {
	color: white;
	border: 1px solid white;
}

#menulocations #location-list li .location-name .location-commenticon:hover~.location-comment {
	display: block;
}

#menulocations #location-list li .location-name .location-comment {
	display: none;
	color: #444;
	font-weight: normal;
	position: absolute;
	left: 0;
	background: white;
	width: 100%;
	padding: 0 10px;
	height: calc(100% - 35px);
	top: 30px;
	padding-top: 5px;
	border: 1px solid #39c;
}

#menulocations #location-list li .location-address {
	color: #888;
	width: 280px;
	display: block;
}

#menulocations #location-list li:hover .location-address {
	color: #ddd;
}

#menulocations #location-list li .location-address .location-moreimages {
	display: inline-block;
	vertical-align: top;
	width: 73px;
	height: 43px;
	padding-top: 30px;
	text-align: center;
	border: 1px solid #ddd;
}

#menulocations #location-list li .location-delete {
	position: absolute;
	top: 20px;
	right: 10px;
	background: #aaa;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	text-align: center;
	cursor: pointer;
}

#menulocations #location-list li .location-delete:hover {
	background: red;
}

#menulocations #location-list li .location-delete img {
	margin-top: 3px;
	width: 14px;
}

/* UI Utilities */
.card {
	background: var(--card-bg);
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow);
	margin-bottom: 30px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}


.grid {
	display: grid;
	gap: 20px;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 28px;
	/* Un poco más de aire lateral */
	background: var(--primary-color);
	color: white;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	/* Borde interior sutil */
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition-smooth);

	/* Sombra más realista con el color de la marca */
	box-shadow:
		0 4px 6px -1px rgba(247, 146, 99, 0.1),
		0 10px 15px -3px rgba(247, 146, 99, 0.2);

	position: relative;
	overflow: hidden;
}

.btn:hover {
	background: var(--primary-hover);
	transform: translateY(-3px);
	/* Elevación un poco más marcada */

	/* Efecto de brillo (glow) al pasar el mouse */
	box-shadow:
		0 10px 20px -5px rgba(247, 146, 99, 0.4),
		0 0 15px rgba(247, 146, 99, 0.1);
}

.btn:active {
	transform: translateY(0);
	/* Efecto de "clic" real */
	filter: brightness(0.9);
}

/* Variante Secundaria Modernizada */
.btn-secondary {
	background: var(--secondary-color);
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow:
		0 4px 6px -1px rgba(24, 32, 66, 0.1),
		0 10px 15px -3px rgba(24, 32, 66, 0.2);
}

.btn-secondary:hover {
	background: var(--secondary-hover);
	box-shadow:
		0 10px 20px -5px rgba(24, 32, 66, 0.4);
}

/* Variante Outline (Muy moderna para acciones secundarias) */
.btn-outline {
	background: transparent;
	color: var(--text-color);
	border: 2px solid var(--border-color);
	box-shadow: none;
}

.btn-outline:hover {
	background: var(--bg-color);
	border-color: var(--text-muted);
	color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.btn-full {
	width: 100%;
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: white !important;
}

.menutooltip {
	visibility: hidden;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 6px 12px;
	position: absolute;
	z-index: 100;
	left: 55px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 0.3s;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 500;
	pointer-events: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.menutooltip::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent #333 transparent transparent;
}

#menulateral .menubutton:hover .menutooltip {
	visibility: visible;
	opacity: 1;
}

#menulateral.open .menutooltip {
	display: none !important;
}

.mobile-header {
	background: var(--secondary-color);
	color: var(--white);
	padding: 15px 20px;
	display: none;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.mobile-header {
		display: flex;
	}

	#menulateral {
		left: -80px;
		box-shadow: none;
	}

	#menulateral.active {
		left: 0;
		box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
	}

	#content {
		margin-left: 0;
		width: 100%;
		padding: 15px;
	}
}

#content {
	margin-left: 60px;
	width: calc(100% - 60px);
	min-height: 100vh;
	padding: 20px;
	transition: margin-left 0.3s ease, width 0.3s ease;
}

#content.nomenu {
	margin-left: 0;
	width: 100%;
}

#content.contentwithdays {
	margin-left: 152px;
	width: calc(100% - 152px);
}

#content #main {
	max-width: 1200px;
	margin: auto;
	padding-top: 20px;
}

.pager {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 40px 0;
}

.pager .pager-btn {
	background: white;
	padding: 8px 16px;
	border-radius: var(--radius);
	border: 1px solid var(--border-color);
	cursor: pointer;
	color: var(--text-color);
	transition: var(--transition);
}

.pager .pager-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.pager .pager-btn-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.pager .pager-num {
	background: white;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	color: var(--text-muted);
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.pager .pager-num:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.pager .pager-num-this {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

#data_expenses {
	padding: 25px;
	text-align: center;
}

#data {
	padding: 25px;
	text-align: center;
	position: absolute;
	color: white;
	bottom: 0;
	top: 0;
	right: 0;
	left: 80px;
}

#data #travel-name {
	height: 50px;
	font-size: 32px;
	line-height: 50px;
	text-shadow: 0 0 1px #444;
}

#data #travel-date {
	text-shadow: 0 0 1px #444;
}

#data #travel-duration {
	text-shadow: 0 0 1px #444;
}

#data #travel-description {
	font-size: 22px;
	height: 40px;
	line-height: 40px;
	text-shadow: 0 0 1px #444;
}

#data .btnaddlocation {
	position: absolute;
	bottom: 10px;
	left: 20px;
	cursor: pointer;
}

#data #travel-locations {
	position: absolute;
	bottom: 70px;
	left: 20px;
	color: white;
	text-align: left;
}

#data #travel-locations div {
	padding: 5px 0;
}

#data #travel-locations div a {
	cursor: help;
	font-family: serif;
	/*"Roboto", sans-serif;*/
	font-weight: bold;
	text-shadow: #444 0px 1px 1px;
}

#data #travel-locations span {
	margin-left: 10px;
}

.field {
	border: 1px solid transparent;
	padding: 10px;
	display: inline-block;
}

.sharetravel {
	cursor: pointer;
}

/*.field:hover {
	border: 1px dotted #ccc;
	cursor: text;
}*/

.btnedit img {
	vertical-align: middle;
	cursor: pointer;
}

#bg-ops {
	position: absolute;
	bottom: 10px;
	right: 20px;
}

/* Floating Buttons */
.btnfloat {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 64px;
	height: 64px;
	background: var(--primary-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(247, 146, 99, 0.4);
	cursor: pointer;
	transition: var(--transition);
	z-index: 1002;
	padding: 18px;
}

.btnfloat:hover {
	transform: scale(1.1) rotate(90deg);
	background: var(--primary-hover);
	box-shadow: 0 15px 40px rgba(247, 146, 99, 0.5);
}

.btnfloat-square {
	position: fixed;
	bottom: 40px;
	right: 40px;
	padding: 15px 25px;
	background: var(--secondary-color);
	color: white;
	border-radius: 16px;
	box-shadow: var(--shadow-hover);
	z-index: 1002;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}


.btnclear {
	display: none;
	border-radius: 15px;
	background: lightgray;
	padding: 5px;
	width: 20px;
	position: absolute;
	z-index: 1010;
	right: 10px;
	top: 10px;
	text-align: center;
	cursor: pointer;
	font-size: 16px;
	line-height: 17px;
	height: 20px;
}

.withlocations .btnclear {
	right: 255px;
}

.btnremove {
	border-radius: 20px;
	background: lightgray;
	padding: 5px;
	width: 20px;
	z-index: 1010;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	color: black;
}


.profile-field .field.editable:hover {
	background-color: #f5f5f5;
	cursor: pointer;
}

.profile-header-info .field.editable:hover {
	background-color: #f5f5f5;
	cursor: pointer;
}

@media screen and (max-width: 1200px) {
	.profile-grid {
		grid-template-columns: 1fr;
	}
}

.msgbox {
	position: fixed;
	right: 0;
	top: 0;
	max-width: 320px;
	z-index: 1011;

}

.msgbox li {
	display: none;
	box-shadow: 0 25px 10px -15px rgba(0, 0, 0, 0.05);
	max-width: 300px;
	width: 300px;
	border-radius: 5px;
	padding: 15px 20px;
	pointer-events: none;
	color: rgba(250, 251, 255, 0.95);
	font-size: 90%;
	font-family: 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
	box-sizing: border-box;
	list-style: none;
	margin: 10px;
	line-height: 1.3;
}

.msgbox li.error {
	background: #c00;
}

.msgbox li.ok {
	background: #67c58f;
}

/* Modal Box Styles (Confirm & Share) */
.modal-box {
	display: none;
	z-index: 1010;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -40%) scale(0.95);
	/* Estado inicial para animación */
	width: 90%;
	max-width: 500px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	flex-direction: column;
	/* display: flex is handled by JS */
}

.modal-header {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	background: #f8fafc;
}

.modal-header h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-body {
	padding: 25px;
	color: var(--text-color);
	font-size: 15px;
}

.modal-footer {
	padding: 15px 25px;
	border-top: 1px solid var(--border-color);
	background: #f8fafc;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

/* Share Options */
.share-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.share-option {
	display: block;
	cursor: pointer;
}

.share-option input[type="radio"] {
	display: none;
}

.option-content {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	transition: var(--transition);
}

.share-option input:checked+.option-content {
	border-color: var(--primary-color);
	background: rgba(247, 146, 99, 0.05);
}

.option-content .icon {
	width: 36px;
	height: 36px;
	background: #f1f5f9;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 16px;
	flex-shrink: 0;
}

.share-option input:checked+.option-content .icon {
	background: var(--primary-color);
	color: white;
}

.option-content .text strong {
	display: block;
	color: var(--secondary-color);
	margin-bottom: 4px;
}

.option-content .text p {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.4;
}

.share-link-container {
	margin-top: 10px;
	display: flex;
	gap: 8px;
}

.share-link-container.hidden {
	display: none;
}

.sharelink {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 13px;
	color: var(--primary-color);
	background: white;
}

.warning-text {
	display: block;
	margin-top: 20px;
	font-size: 12px;
	color: #e74c3c;
	background: #fff1f0;
	padding: 10px;
	border-radius: 8px;
}

.btn-danger {
	background: #e74c3c;
	color: white;
	border: none;
	border-radius: 10px;
}

.btn-danger:hover {
	background: #c0392b;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 10px;
}

.btn-primary:hover {
	background: var(--primary-hover);
}

#locationbox {
	display: none;
	z-index: 1010;
	position: fixed;
	top: 100px;
	left: 200px;
	width: 400px;
	/*height: 600px;*/
	background: white;
	border: 1px solid rgb(222, 227, 234);
	box-shadow: 0px 0px 10px rgb(102, 112, 126);
}

#locationbox img {
	vertical-align: middle;
	margin: 5px;
}

#locationbox #locationbox-text {
	/*position: absolute;
        top: 0;
        bottom: 50px;
        right: 0;
        left: 0;*/
	margin-bottom: 50px;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
}

#locationbox #locationbox-text li {
	list-style: none;
	text-align: left;
	padding: 10px;
	display: block;
	cursor: pointer;
	border: 1px solid white;
}

#locationbox #locationbox-text li:hover {
	background: #eee;
}

#locationbox #locationbox-text li.checked {
	border: 1px solid #cbcbcb;
	background: #eee;
}

#locationbox #locationbox-text label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin-right: 15px;
	font-size: 16px;
}

#locationbox #locationbox-text input[type=radio] {
	display: none;
}

#locationbox #locationbox-text .locationbox-description {
	font-size: 12px;
	padding: 10px 5px 5px 40px;
}

#locationbox #locationbox-text li .locationbox-description {
	display: none;
}

#locationbox #locationbox-text li.checked .locationbox-description {
	display: block;
}

#locationbox #locationbox-text .locationbox-description .sharelink {
	text-align: center;
	padding: 15px;
	font-size: 26px;
	margin-left: -40px;
	color: #1abc9c;
}

#locationbox #locationbox-text .locationbox-description input {
	border: 1px solid #cbcbcb;
	padding: 5px;
	font-size: 16px;
	margin-top: 5px;
	width: calc(100% - 10px);
}

#locationbox #locationbox-text .locationbox-description .sharelistusers {
	height: 100px;
	overflow-y: auto;
	overflow-x: hidden;
}

#locationbox #locationbox-text .locationbox-description .sharelistusers li {
	padding: 5px 0;
	border: 0;
	position: relative;
	cursor: auto;
}

#locationbox #locationbox-text .locationbox-description .sharelistusers li:hover {
	background: white;
}

#locationbox #locationbox-text .locationbox-description .sharelistusers li img {
	height: 20px;
	margin-right: 10px;
}

#locationbox #locationbox-text .locationbox-description .sharelistusers li select {
	background: white;
	padding: 0 5px;
	height: 20px;
	position: absolute;
	right: 35px;
	margin-top: 5px;
	border-radius: 2px;
	cursor: pointer;
}

#locationbox #locationbox-text .locationbox-description .sharelistusers li span.delshare {
	border-radius: 10px;
	height: 20px;
	width: 20px;
	background: #aaa;
	display: inline-block;
	text-align: center;
	line-height: 18px;
	color: white;
	position: absolute;
	right: 5px;
	margin-top: 5px;
	cursor: pointer;
}

#locationbox #locationbox-text .locationbox-description .listsetuser {
	display: none;
	position: absolute;
	/*margin-top: 30px;
			    margin-left: -414px;*/
	width: calc(100% - 95px);
	background: white;
	height: 100px;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 1001;
}

#locationbox #locationbox-text .locationbox-description .listsetuser li {
	font-size: 14px;
	color: #666;
	background: white;
	font-weight: normal;
	padding: 5px;
}

#locationbox #locationbox-text .locationbox-description .listsetuser li:hover {
	background: #888;
	color: white;
}

#locationbox .locationbox-labelcomment {
	width: calc(100% - 20px);
	border-top: 1px dashed #cbcbcb;
	margin-top: 5px;
	padding: 10px;
}

#locationbox #location-comment {
	width: 100%;
	height: 75px;
	resize: none;
	border: 1px solid #cbcbcb;
}

#locationbox #locationbox-buttons {
	position: absolute;
	bottom: 10px;
	width: 182px;
	left: 50%;
	margin-left: -80px;
}

.msgcenter {
	position: absolute;
	top: 50%;
	margin-top: -100px;
	left: 50%;
	margin-left: -200px;
	text-align: center;
	max-width: 400px;
	width: 100%;
	height: 100px;
	vertical-align: middle;
}

.msgcenter img {
	max-width: 80%;
	clear: both;
	display: block;
	margin: auto;
}

.menubutton {
	cursor: pointer;
}

.btn.disabled {
	color: #bbb;
	cursor: default;
}

.btn.disabled:hover {
	color: #bbb;
	cursor: default;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
	border: 1px solid rgba(0, 0, 0, .15);
}

.btn.enabled {
	background: #2288BB;
	color: #eee;
}

.btn.btnok {
	background-color: #33cc99;
	color: white;
}

.btn.btncancel {
	background-color: #cc3333;
	color: white;
}

.btn.previewDayPDF {
	float: right;
	margin-right: 0px;
}

.btn.saveDayPDF {
	float: right;
	margin-right: 10px;
}

/*Main*/
.stat {
	text-align: center;
	width: 49%;
	display: inline-block;
	vertical-align: top;
	padding: 15px;
	box-sizing: border-box;
	min-width: 200px;
}

.stat .ofTotal {
	color: rgb(247, 146, 99);
}

span.stillFree {
	font-size: 12px;
}

/*Fin main*/

/*Travel Cards*/

.card .options {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 40px;
	padding: 10px 10px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.6);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.28) 53%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(53%, rgba(0, 0, 0, 0.28)), color-stop(100%, rgba(0, 0, 0, 0)));
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.28) 53%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.28) 53%, rgba(0, 0, 0, 0) 100%);
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.28) 53%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.28) 53%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}

.card:hover .options {
	opacity: 1;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	display: block;
}

.card .options img {
	float: right;
}

.card .options .options-list {
	display: none;
	background: white;
	font-size: 12px;
	margin-top: 5px;
}

.card .options .options-list li {
	padding: 10px;
	list-style: none;
}

.card .options .options-list li:hover {
	background: #ddd;
}

.card .options .options-list li.separator {
	padding: 0;
	border-top: 1px dotted #ddd;
}


.card-header {
	height: 45%;
	overflow: hidden;
}

.card-header>a>img {
	width: 100%;
}

.card-header .nocover {
	text-align: center;
	height: calc(100% - 20px);
	border: 1px solid rgb(222, 227, 234);
	padding-top: 20px;
}

.card-header .nocover img {
	display: inline;
	width: 250px;
	margin-top: 60px;
}

.card-descrip {
	padding: 20px;
	height: calc(55% - 125px);
	/*border-left: 1px solid rgb(222,227,234);
	border-right: 1px solid rgb(222,227,234);*/
}

.card-descrip h1.title {
	font-size: 22px;
	margin-bottom: 5px;
	cursor: pointer;
	overflow: hidden;
	height: 34px;
	/*display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		text-overflow: -o-ellipsis-lastline;*/
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-descrip h4.date {
	font-size: 14px;
	margin: 5px 0;
	color: #1abc9c;
}

.card-descrip p.descrip {
	font-size: 15px;
	margin: 8px 0;
	max-height: 60px;
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: -o-ellipsis-lastline;
}

.card-descrip span {
	position: absolute;
	bottom: 95px;
}

.card-descrip span img {
	display: inline-block;
}

.card-descrip span.sharestatus {
	right: 30px;
	font-size: 10px;
}

.card-descrip span.sharestatus img {
	width: 26px;
	border-radius: 13px;
	vertical-align: middle;
}

.card-descrip span.sharestatus span {
	position: relative;
	bottom: auto;
	font-size: 10px;
	vertical-align: middle;
	max-width: 160px;
	display: inline-block;
	overflow: hidden;
}

.card-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	height: 64px;
	border-top: 1px solid #ddd;
	text-align: center;
	background: url(../img/interface/papertexture.png);
}

.card-footer img {
	display: inline-block;
}

.card-footer-slider {
	width: 280px;
	margin-left: 25px;
	margin-bottom: 0;
}

/*End travel cards*/

#map_canvas {
	margin: auto;
	min-height: 100%;
}

div#travels-mosaic {
	text-align: center;
}

#mosaic {
	/*margin: -10px;*/
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#mosaic ul {
	padding: 0;
	margin: 0;
}

#mosaic li {
	float: left;
	list-style: none;
	vertical-align: top;
	position: relative;
	width: 225px;
	height: 225px;
}

#mosaic li>* {
	vertical-align: top;
}

#mosaic li>img {
	width: 100%;
	height: 100%;
}

#mosaic li .overlay {
	opacity: 0;
	background-color: rgba(20, 20, 20, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}

#mosaic li:hover .overlay {
	cursor: pointer;
	opacity: 1;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}

#mosaic li .overlay>img {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	left: 50%;
	margin-left: -25px;
}

#mosaic li .selectCheck {
	opacity: 0;
	position: absolute;
	cursor: pointer;
	background: url(../img/interface/select-24.png) 10px 10px no-repeat;
	width: 44px;
	height: 44px;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	z-index: 1;
}

#mosaic li:hover .selectCheck {
	opacity: 1;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}

#mosaic li .selectCheck:hover {
	background: url(../img/interface/select_green-24.png) 10px 10px no-repeat;
}

#mosaic li.selected .selectCheck {
	opacity: 1;
	background: url(../img/interface/select_green-24.png) 10px 10px no-repeat;
}

#mosaic li.selected .selectCheck:hover {
	opacity: 1;
	background: url(../img/interface/select-24.png) 10px 10px no-repeat;
}

#mosaic li .ticketType {
	opacity: 0;
	position: absolute;
	width: 44px;
	height: 44px;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	z-index: 1;
	top: 0;
	right: 0;
}

#mosaic li:hover .ticketType {
	opacity: 1;
}

#mosaic li .ticketType.pdf {
	background: url(../img/interface/pdf-25.png) 10px 10px no-repeat;
}

#mosaic li .ticketType.image {
	background: url(../img/interface/image-25.png) 10px 10px no-repeat;
}

#mosaic li.selected {
	border: 10px solid #1abc9c;
	width: 205px;
	height: 205px;
}

#footerSelected {
	background: #1abc9c;
	position: fixed;
	bottom: 0;
	height: 40px;
	padding: 10px;
	display: none;
	text-align: center;
}

#footerSelected li {
	display: inline-block;
	padding: 0 20px;
	cursor: pointer;
}

#selected-options-counter {
	position: absolute;
	left: 150px;
	top: 6px;
	color: white;
	font-size: 25px;
}

#selected-options-changedate-days {
	display: none;
	background: #3399cc;
	z-index: 1;
	position: absolute;
	bottom: 60px;
}

#selected-options-changedate-days li {
	display: block;
	width: 100px;
	list-style: none;
	padding: 8px 10px;
	cursor: pointer;
	color: white;
	font-size: 16px;
}

#selected-options-changedate-days li:hover {
	background: white;
	color: black;
}

#selected-options-close {
	position: absolute;
	left: 120px;
	top: 8px;
	cursor: pointer;
}

/* Rounded avatars */
.avatar {
	margin: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgb(247, 146, 99);
	-moz-box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgb(247, 146, 99);
	box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgb(247, 146, 99);
}

#pdfsettings {
	text-align: left;
	display: inline-block;
}

/* Floating round button */
.btnfloat {
	cursor: pointer;
	margin: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #3399cc;
	position: fixed;
	bottom: 30px;
	right: 30px;

	-webkit-box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	z-index: 1001;
}

.btnfloat:hover {
	background-color: #2980b9;
	-webkit-box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
}

.btnfloat.btnok {
	right: 110px;
	background-color: #33cc99;
	-webkit-box-shadow: 0 0 0 3px #33cc99, 0 0 0 4px #33cc99, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #33cc99, 0 0 0 4px #33cc99, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #33cc99, 0 0 0 4px #33cc99, 0 2px 5px 4px rgba(0, 0, 0, .2);
}

.btnfloat.btncancel {
	background-color: #cc3333;
	-webkit-box-shadow: 0 0 0 3px #cc3333, 0 0 0 4px #cc3333, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #cc3333, 0 0 0 4px #cc3333, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #cc3333, 0 0 0 4px #cc3333, 0 2px 5px 4px rgba(0, 0, 0, .2);
}

.btnfloat-mini {
	cursor: pointer;
	margin: 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #3399cc;
	position: fixed;
	bottom: 42px;
	right: 42px;

	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;

	-webkit-box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	z-index: 1000;
}

.btnfloat-mini:hover {
	background-color: #2980b9;
	-webkit-box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
}

#floating-buttons {
	display: none;
}

#floating-menu {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 56px;
	height: 56px;
}

#floating-menu:hover {
	height: 210px;
}

#floating-menu:hover .btnfloat-mini.btnfloat1 {
	-webkit-transform: translate(0, -4em);
	-moz-transform: translate(0, -4em);
	-o-transform: translate(0, -4em);
	-ms-transform: translate(0, -4em);
	transform: translate(0, -4em);
}

#floating-menu:hover .btnfloat-mini.btnfloat2 {
	-webkit-transform: translate(0, -7em);
	-moz-transform: translate(0, -7em);
	-o-transform: translate(0, -7em);
	-ms-transform: translate(0, -7em);
	transform: translate(0, -7em);
}

#floating-menu:hover .btnfloat-mini.btnfloat3 {
	-webkit-transform: translate(0, -10em);
	-moz-transform: translate(0, -10em);
	-o-transform: translate(0, -10em);
	-ms-transform: translate(0, -10em);
	transform: translate(0, -10em);
}

/*Fin floating round buttons*/

/* Floating square button */
.btnfloat-square {
	color: #fff;
	cursor: pointer;
	margin: 5px;
	background-color: #3399cc;
	position: fixed;
	bottom: 20px;
	right: 30px;
	padding: 10px;
	text-align: center;

	-webkit-box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #3399cc, 0 0 0 4px #3399cc, 0 2px 5px 4px rgba(0, 0, 0, .2);
	z-index: 1001;
}

.btnfloat-square:hover {
	background-color: #2980b9;
	-webkit-box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 3px #2980b9, 0 0 0 4px #2980b9, 0 2px 5px 4px rgba(0, 0, 0, .2);
}

/*Fin floating square buttons*/


/*
 * Pure CSS Loader http://www.wifeo.com/code
 */
.contener_general {
	-webkit-animation: animball_two 1s infinite;
	-moz-animation: animball_two 1s infinite;
	-ms-animation: animball_two 1s infinite;
	animation: animball_two 1s infinite;
	width: 44px;
	height: 44px;
	margin: auto;
}

.contener_mixte {
	width: 44px;
	height: 44px;
	position: absolute;
}

.ballcolor {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.ball_1,
.ball_2,
.ball_3,
.ball_4 {
	position: absolute;
	-webkit-animation: animball_one 1s infinite ease;
	-moz-animation: animball_one 1s infinite ease;
	-ms-animation: animball_one 1s infinite ease;
	animation: animball_one 1s infinite ease;
}

.ball_1 {
	background-color: #cb2025;
	top: 0;
	left: 0;
}

.ball_2 {
	background-color: #f8b334;
	top: 0;
	left: 24px;
}

.ball_3 {
	background-color: #00a096;
	top: 24px;
	left: 0;
}

.ball_4 {
	background-color: #97bf0d;
	top: 24px;
	left: 24px;
}

@-webkit-keyframes animball_one {
	0% {
		position: absolute;
	}

	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}

	100% {
		position: absolute;
	}
}

@-moz-keyframes animball_one {
	0% {
		position: absolute;
	}

	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}

	100% {
		position: absolute;
	}
}

@-ms-keyframes animball_one {
	0% {
		position: absolute;
	}

	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}

	100% {
		position: absolute;
	}
}

@keyframes animball_one {
	0% {
		position: absolute;
	}

	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}

	100% {
		position: absolute;
	}
}

@-webkit-keyframes animball_two {
	0% {
		-webkit-transform: rotate(0deg) scale(1);
	}

	50% {
		-webkit-transform: rotate(360deg) scale(1.3);
	}

	100% {
		-webkit-transform: rotate(720deg) scale(1);
	}
}

@-moz-keyframes animball_two {
	0% {
		-moz-transform: rotate(0deg) scale(1);
	}

	50% {
		-moz-transform: rotate(360deg) scale(1.3);
	}

	100% {
		-moz-transform: rotate(720deg) scale(1);
	}
}

@-ms-keyframes animball_two {
	0% {
		-ms-transform: rotate(0deg) scale(1);
	}

	50% {
		-ms-transform: rotate(360deg) scale(1.3);
	}

	100% {
		-ms-transform: rotate(720deg) scale(1);
	}
}

@keyframes animball_two {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(360deg) scale(1.3);
	}

	100% {
		transform: rotate(720deg) scale(1);
	}
}

/* Fin css loader */

/*Estilos Photo selector/uploader */
#form-photos {
	display: none;
	position: fixed;
	width: 90%;
	height: 90%;
	background: white;
	z-index: 1012;
	top: 0;
	left: 5%;
	border: 1px solid #cbcbcb;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#form-photos header {
	text-align: center;
	padding-top: 15px;
	border-bottom: 1px solid #3399cc;
}

#form-photos header li {
	display: none;
	margin: 0 30px;
	padding: 0 10px 10px;
	cursor: pointer;
}

#form-photos header li:hover {
	border-bottom: 4px solid #3399cc;
}

#form-photos header li.active {
	border-bottom: 4px solid #3399cc;
}

#form-photos #photo-upload {
	display: none;
}

#form-photos #photo-select {
	display: none;
}

#form-photos #allphotos {
	cursor: default;
	height: 85%;
	overflow-y: scroll;
	text-align: center;
}

#form-photos #allphotos .loader {
	position: absolute;
	left: calc(50% - 22px);
	top: 50%;
}

#form-photos #allphotos .selectphotothumb {
	width: 150px;
	height: 150px;
	margin: 10px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

#form-photos #allphotos .selectphotothumb.active {
	margin: 6px;
	border: 4px solid #3399cc;
}

#form-photos #allphotos .selectphotothumb.active img {
	opacity: 0.6;
}

#form-photos #ticket-select {
	display: none;
}

#form-photos #alltickets {
	cursor: default;
	height: 85%;
	overflow-y: scroll;
}

#form-photos #alltickets .loader {
	position: absolute;
	left: calc(50% - 22px);
	top: 50%;
}

#form-photos #alltickets .selectphotothumb {
	width: 150px;
	height: 150px;
	margin: 10px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

#form-photos #alltickets .selectphotothumb.active {
	margin: 6px;
	border: 4px solid #3399cc;
}

#form-photos #alltickets .selectphotothumb.active img {
	opacity: 0.6;
}

#form-photos #uploaded {
	display: none;
	cursor: default;
	overflow: auto;
	text-align: center;
}

#form-photos #uploaded .imageuploaded {
	display: inline-block;
	margin: 5px;
	width: 150px;
	height: 150px;
	background: white;
	border: 1px solid #ddd;
	padding: 5px;
	vertical-align: top;
	text-align: center;
}

#form-photos #uploaded .imageuploaded:after {
	content: "";
	height: 100%;
	display: inline-block;
	vertical-align: middle;
}

#form-photos #uploaded .imageuploaded img {
	max-width: 150px;
	max-height: 150px;
	vertical-align: middle;
}

#form-photos #dragndrop-instructions {
	text-align: center;
	position: absolute;
	top: 50%;
	height: 200px;
	width: 100%;
	margin-top: -150px;
}

#dragndrop-instructions img {
	display: inline;
}

#form-photos footer {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

#holder,
#uploaded {
	/*border: 5px dashed #ccc; */
	width: 100%;
	/* min-height: 200px; */
	height: 85%;
	background: #eee;
	cursor: pointer;
}

#holder.hover {
	border: 10px dashed #0c0;
	width: calc(100% - 20px);
}

#holder img {
	display: block;
	margin: 10px auto;
}

#holder p {
	margin: 10px;
	font-size: 14px;
}

progress {
	-webkit-appearance: none;
	appearance: none;

	width: 250px;
	height: 20px;
}

progress[value]::-webkit-progress-bar {
	background-color: #eee;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

/*progress:after { content: '%'; }*/
.progress {
	border: 1px solid red;
	height: 10px;
	margin-top: 15px;
}

.progress p {
	display: block;
	width: 240px;
	padding: 2px 5px;
	margin: 2px 0;
	border: 1px inset #446;
	border-radius: 5px;
	background: #eee url("progress.png") 100% 0 repeat-y;
}

.progress p.success {
	background: #0c0 none 0 0 no-repeat;
}

.progress p.failed {
	background: #c00 none 0 0 no-repeat;
}

.hidden {
	display: none !important;
}

/*Fin Photo selector/uploader */

/*Videos*/
.video .playbtn {
	background: transparent url("//static.beta.myalbum.io/res/v-t6ie090k0o/img/core/albumview/sprite.png") no-repeat;
	background-size: 400px auto;
	width: 35px;
	height: 35px;
	background-position: -157px -284px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -17px;
	margin-top: -17px;
	cursor: pointer;
	z-index: 100;
	pointer-events: none;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.video.playing .playbtn {
	/*background: transparent url("//static.beta.myalbum.io/res/v-t6ie090k0o/img/core/albumview/sprite.png") no-repeat;*/
	background-size: 400px auto;
	width: 35px;
	height: 35px;
	background-position: -119px -284px;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
	opacity: 0;
}

/*Fin videos*/

/*Location form*/
#form-location {
	display: none;
	position: fixed;
	width: 50%;
	height: 50%;
	background: white;
	z-index: 1010;
	top: 25%;
	left: 25%;
	min-width: 300px;
	border: 1px solid #cbcbcb;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	box-sizing: border-box;
}

#form-location section {
	height: 100%;
}

#form-location section input {
	border: none;
	line-height: 22px;
	font-size: 20px;
	padding: 15px;
	width: calc(100% - 30px);
}

#form-location section #minimap {
	width: 100%;
	height: calc(100% - 120px);
}

#form-location section#location-select.withlocations {
	width: 60%;
	display: inline-block;
}

#form-location section#location-select-locations {
	width: calc(40% - 5px);
	display: inline-block;
	vertical-align: top;
	overflow: auto;
	height: calc(100% - 68px);
}

#form-location section#location-select-locations li {
	list-style: none;
	cursor: pointer;
	width: 100%;
	min-height: 50px;
	font-size: 14px;
	padding: 10px 10px 5px;
	box-sizing: border-box;
}

#form-location section#location-select-locations li.active,
#form-location section#location-select-locations li.active:hover {
	background-color: #16a085;
	color: white;
}

#form-location section#location-select-locations li:hover {
	background-color: #efefef;
}

#form-location footer {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 20px);
	text-align: center;
}

/*Fin location form*/

#mapmini_canvas {
	margin: auto;
	min-height: 100%;
}

.pac-container {
	z-index: 1010 !important;
}

/*Expense form*/
#form-expense {
	display: none;
	position: fixed;
	width: 60%;
	height: 50%;
	background: white;
	z-index: 1010;
	top: 25%;
	left: 20%;
	border: 1px solid #cbcbcb;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#form-expense h2 {
	padding: 10px;
	color: #444;
}

#form-expense h3 {
	color: #444;
}

#form-expense #col1 {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
}

#form-expense #col2 {
	display: inline-block;
	width: 50%;
	vertical-align: top;
}

#form-expense #expense-types {
	width: 350px;
	overflow: auto;
	height: 222px;
	display: inline-block;
}

#form-expense #expense-types li {
	display: inline-block;
	width: 70px;
	color: black;
	font-size: 10px;
	background: #efefef;
	padding: 10px;
	text-align: center;
	margin: 5px 3px;
	cursor: pointer;
	height: 40px;
	vertical-align: top;
}

#form-expense #expense-types li:hover {
	background: #dfdfdf;
}

#form-expense #expense-types li.selected {
	background: white;
	border: 2px solid #2980b9;
	padding: 8px;
}

#form-expense #expense-payments {
	width: 350px;
	overflow: auto;
	display: inline-block;
}

#form-expense #expense-payments li {
	display: inline-block;
	width: 70px;
	color: black;
	font-size: 10px;
	background: #efefef;
	padding: 10px;
	text-align: center;
	margin: 5px 3px;
	cursor: pointer;
}

#form-expense #expense-payments li:hover {
	background: #dfdfdf;
}

#form-expense #expense-payments li.selected {
	background: white;
	border: 2px solid #2980b9;
	padding: 8px;
}

#form-expense #expense-days {
	width: 350px;
	overflow: auto;
	height: 128px;
	display: inline-block;
}

#form-expense #expense-days li {
	display: inline-block;
	width: 70px;
	color: black;
	font-size: 10px;
	background: #efefef;
	padding: 10px;
	text-align: center;
	margin: 5px 3px;
	cursor: pointer;
	height: 28px;
	vertical-align: top;
}

#form-expense #expense-days li:hover {
	background: #dfdfdf;
}

#form-expense #expense-days li.selected {
	background: white;
	border: 2px solid #2980b9;
	padding: 8px;
}

#form-expense section {
	height: calc(100% - 50px);
	overflow: auto;
}

#form-expense section input {
	border: none;
	line-height: 22px;
	font-size: 20px;
	padding: 15px;
	width: calc(100% - 131px);
	border-top: 1px solid #cbcbcb;
}

#form-expense section select#expense-currency {
	border: none;
	line-height: 22px;
	font-size: 18px;
	padding: 13px;
	border-top: 1px solid #cbcbcb;
	width: 100px;
	max-width: 100px;
	margin-left: -4px;
}

#form-expense section textarea {
	border: none;
	line-height: 22px;
	font-size: 20px;
	padding: 15px;
	width: calc(100% - 30px);
	height: 100px;
	border-top: 1px solid #cbcbcb;
	border-bottom: 1px solid #cbcbcb;
	margin-bottom: 10px;
}

#form-expense footer {
	position: absolute;
	bottom: 20px;
	left: 20px;
}

/*Fin expense form*/

/*Weather form*/
#form-weather {
	display: none;
	position: fixed;
	width: 60%;
	background: white;
	z-index: 1010;
	top: 25%;
	left: 20%;
	border: 1px solid #cbcbcb;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

#form-weather footer {
	margin: 20px 0;
	text-align: center;
}

#form-weather h2 {
	text-align: center;
	padding: 10px;
	color: #444;
}

#form-weather #weather-types {
	overflow: auto;
	display: inline-block;
	text-align: center;
}

#form-weather #weather-types li {
	display: inline-block;
	width: 70px;
	color: black;
	font-size: 10px;
	background: #efefef;
	padding: 10px;
	text-align: center;
	margin: 5px 3px;
	cursor: pointer;
	height: 40px;
	vertical-align: top;
}

#form-weather #weather-types li:hover {
	background: #dfdfdf;
}

#form-weather #weather-types li.selected {
	background: white;
	border: 2px solid #2980b9;
	padding: 8px;
}

#btnchange-weather {
	cursor: pointer;
}

/*Fin weather form*/

/*PhotoViewer*/
.photoViewer {
	display: none;
	position: fixed;
	z-index: 1002;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.photoViewer-bg {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1002;
}

.photoViewer-main {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1003;
	overflow: hidden;
	color: black;
}

.photoViewer-main header {
	height: 40px;
	background: black;
	color: white;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.photoViewer-main header li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 8px 10px;
	cursor: pointer;
}

.photoViewer-main aside {
	background: white;
	color: black;
	width: 280px;
	padding: 10px;
	position: absolute;
	top: 40px;
	right: -300px;
	bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}

.photoViewer-main aside>div {
	padding: 20px;
}

.photoViewer-main aside div span {
	margin-right: 10px;
	font-size: 12px;
	color: #666;
}

.photoViewer-main section {
	position: absolute;
	top: 40px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}

.photoViewer-main section #photo img {
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	cursor: pointer;
}

.photoViewer-main #prevPhotoBtn {
	height: 100%;
	width: 20%;
	position: absolute;
	left: 0px;
	vertical-align: middle;
	z-index: 1;
	max-width: 50%;
	opacity: 0;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	background: rgba(0, 0, 0, 1);
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.47) 53%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 0, 0, 1)), color-stop(53%, rgba(0, 0, 0, 0.47)), color-stop(100%, rgba(0, 0, 0, 0)));
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.47) 53%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.47) 53%, rgba(0, 0, 0, 0) 100%);
	background: -ms-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.47) 53%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.47) 53%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
}

.photoViewer-main #prevPhotoBtn:hover {
	opacity: 1;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	cursor: pointer;
}

.photoViewer-main #prevPhotoBtn img {
	position: absolute;
	top: calc(50% - 16px);
	left: 40px;
}

.photoViewer-main #nextPhotoBtn {
	height: 100%;
	width: 20%;
	position: absolute;
	right: 0px;
	vertical-align: middle;
	z-index: 1;
	max-width: 50%;
	opacity: 0;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	background: rgba(0, 0, 0, 0);
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 47%, rgba(0, 0, 0, 1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(47%, rgba(0, 0, 0, 0.47)), color-stop(100%, rgba(0, 0, 0, 1)));
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 47%, rgba(0, 0, 0, 1) 100%);
	background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 47%, rgba(0, 0, 0, 1) 100%);
	background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 47%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.47) 47%, rgba(0, 0, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
}

.photoViewer-main #nextPhotoBtn:hover {
	opacity: 1;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	cursor: pointer;
}

.photoViewer-main #nextPhotoBtn img {
	position: absolute;
	top: calc(50% - 16px);
	right: 40px;
}

#photoViewer-options-close {
	position: absolute;
	right: 20px;
	top: 8px;
	cursor: pointer;
}

#photoViewer-options-changedate-days {
	display: none;
	background: #3399cc;
	z-index: 1;
	position: absolute;
}

#photoViewer-options-changedate-days li {
	display: block;
	width: 100px;
}

#photoViewer-options-changedate-days li:hover {
	background: white;
	color: black;
}

/*Fin photoViewer*/

/*Forms*/
.box {
	padding: 15px;
	border: 1px solid rgb(222, 227, 234);
	min-width: 288px;
	min-height: 288px;
	display: inline-block;
	position: relative;
	vertical-align: top;
	text-align: left;
	color: rgb(102, 112, 126);
	margin-bottom: 10px;
}

div .overlay {
	display: none;
	background-color: rgba(20, 20, 20, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.avatarbox:hover .overlay {
	cursor: pointer;
	display: block;
}

.avatarbox:hover .overlay .btnedit {
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
}

.box#worldmap {
	width: 800px;
	height: 404px;
}

.box#worldmap img {
	position: absolute;
	top: 15px;
}

.box#europe {
	width: 600px;
	height: 404px;
	border: none;
}

.box#africa {
	width: 600px;
	height: 600px;
	border: none;
}

.box#europe img,
.box#africa img {
	position: absolute;
	top: 15px;
}

#origForm {
	display: none;
}

.formfield {
	/*border: 1px solid #3399cc;*/
	padding: 10px;
	margin: 5px 0;
}

.formfield #date {
	color: #3399cc;
}

.formfield #date i {
	font-size: 32px;
	margin: 10px 0;
}

.formfield input {
	border: 1px solid rgb(222, 227, 234);
	padding: 5px;
	font-size: 16px;
}

select.formfield {
	padding: 5px;
	border: 1px solid rgb(222, 227, 234);
	width: 100px;
}

select.formfield:focus {
	border: 1px solid rgb(102, 112, 126);
	outline: none !important;
}

.formfield#textarea {
	height: calc(100% - 132px);
	width: 100%;
	border: none;
	resize: none;
	padding: 0px;
	font-size: 16px;
	margin-bottom: 20px;
	/*overflow: auto;*/
}

.formfield .textarea {
	/*height: calc(100% - 20px);*/
	padding: 10px;
	padding-bottom: 85px;
}

.formfield .textarea[placeholder]:empty:before {
	content: attr(placeholder);
	color: #bbb;
}

.formfield .textarea[placeholder]:empty:focus:before {
	content: "";
}

.formfield .textarea:focus {
	border: none;
	outline: none !important;
}

.formfield .textarea ul {
	list-style-type: disc;
	list-style-position: inside;
}

.formfield .textarea ol {
	list-style-type: decimal;
	list-style-position: inside;
}

.formfield .textarea ul ul,
.formfield .textarea ol ul {
	list-style-type: circle;
	list-style-position: inside;
	margin-left: 50px;
}

.formfield .textarea ol ol,
.formfield .textarea ul ol {
	list-style-type: lower-latin;
	list-style-position: inside;
	margin-left: 50px;
}

.formfield .textarea li {
	padding-left: 20px;
}

.formfield .textarea h1 {
	display: block;
	font-size: 2em;
	font-weight: bold;
}

.formfield .textarea h2 {
	display: block;
	font-size: 1.5em;
	font-weight: bold;
}

.formfield .textarea blockquote {
	margin-left: 50px;
}

.formfield .textarea img {
	margin: 25px;
	max-width: calc(100% - 50px);
}

#newnote {
	height: calc(100% - 25px);
	padding: 10px;
}

.note-location {
	display: inline;
	color: rgb(85, 171, 141);
	cursor: help;
	font-family: serif;
	/*"Roboto", sans-serif;*/
	font-weight: bold;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	/*-webkit-transform: translateZ(0); /* webkit flicker fix */
	/*-webkit-font-smoothing: antialiased; /* webkit text rendering fix */
}

.note-location .note-location-options {
	background: #1496bb;
	top: 100%;
	color: #fff;
	display: block;
	/*left: -25px;*/
	right: 0;
	margin-top: 5px;
	opacity: 0;
	padding: 20px;
	position: absolute;
	visibility: hidden;
	width: 100%;
	min-width: 200px;
	z-index: 1010;
	font-size: 15px;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	-ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	-o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

.note-location .note-location-options a {
	color: white;
}

.note-location .note-location-options .del-btn {
	display: none;
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.note-location .note-location-options:before {
	bottom: -20px;
	content: " ";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	width: 100%;
}

/* CSS Triangles - see Trevor's post */
.note-location .note-location-options:after {
	border-left: solid transparent 10px;
	border-right: solid transparent 10px;
	border-bottom: solid #1496bb 10px;
	top: -10px;
	content: " ";
	height: 0;
	/*left: 50%;*/
	right: 0;
	margin-left: -13px;
	position: absolute;
	width: 0;
}

.note-location:hover .note-location-options {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.note-foto {
	display: block;
	width: 100%;
}

/*Fin forms*/

/*Texteditor*/
#texteditor {
	border-radius: 5px;
	background: #3399cc;
	/*padding: 5px;*/
	text-align: center;
	display: none;
	position: fixed;
	width: calc(100% - 200px);
	top: 10px;
	z-index: 1009;
}

#texteditor button {
	border: none;
	background: none;
	font-size: 20px;
	color: white;
	cursor: pointer;
	padding: 10px 5px;
	width: 50px;
}

#texteditor button:hover,
#texteditor button.active {
	background: #ff7f46;
}

#texteditor button img {
	width: 24px;
	height: 24px;
}

/*Fin texteditor*/

#content.contentwithlocations {
	margin-left: 500px;
	width: calc(100% - 500px);
	height: calc(100% - 10px);
}

/*Estilos de las graficas circulares*/
.loaderStat {
	position: relative;
	width: 150px;
	height: 150px;
	user-select: none;
	box-sizing: border-box;
	margin: auto;
}

.loaderStat-bg {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 15px solid rgba(247, 146, 99, 0.3);
	box-sizing: border-box;
}

.spiner-holder-one {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 50%;
	height: 50%;
	background: transparent;
	box-sizing: border-box;
}

.spiner-holder-two {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: transparent;
	box-sizing: border-box;
}

.loaderStat-spiner {
	width: 200%;
	height: 200%;
	border-radius: 50%;
	border: 15px solid rgba(247, 146, 99, 1);
	box-sizing: border-box;
}

.animate-0-25-a {
	transform: rotate(90deg);
	transform-origin: 100% 100%;
}

.animate-0-25-b {
	transform: rotate(-90deg);
	transform-origin: 100% 100%;
}

.animate-25-50-a {
	transform: rotate(180deg);
	transform-origin: 100% 100%;
}

.animate-25-50-b {
	transform: rotate(-90deg);
	transform-origin: 100% 100%;
}

.animate-50-75-a {
	transform: rotate(270deg);
	transform-origin: 100% 100%;
}

.animate-50-75-b {
	transform: rotate(-90deg);
	transform-origin: 100% 100%;
}

.animate-75-100-a {
	transform: rotate(0deg);
	transform-origin: 100% 100%;
}

.animate-75-100-b {
	transform: rotate(-90deg);
	transform-origin: 100% 100%;
}

.text {
	text-align: center;
	padding-top: 32%;
	font-size: 42px;
	color: rgb(247, 146, 99);
}

/*Fin estilos de las graficas circulares*/


/*Checkboxes*/
.checkbox {
	display: inline-block;
	/*background: rgb(38, 195, 159);*/
	/*width: 64px;*/
	width: 10px;
	/*position: relative;
	height: 26px;*/
}

/*    .checkbox:before {
        content: "SI";
        padding: 9px;
        line-height: 26px;
        color: #fff;
        font-size: 14px;
    }
    .checkbox:after {
        content: "NO";
        padding: 5px 6px 5px 5px;
        line-height: 26px;
        color: #fff;
        font-size: 14px;
		background: rgb(255, 126, 126);
    }
    .checkbox input[type=checkbox] {
        display: none;
    }
    .checkbox input[type=checkbox]:checked + label.check {
        top: 0px;
        left: 32px;
        -webkit-animation-name: labelON;
        -webkit-animation-duration: .2s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-timing-function: ease-in;
		width: 32px;
    }
    .checkbox input[type=checkbox] + label.check {
        top: 0px;
        left: 0px;
        -webkit-animation-name: labelOFF;
        -webkit-animation-duration: .2s;
        -webkit-animation-iteration-count: 1;
        -webkit-animation-timing-function: ease-in;
    }
    .checkbox .check {
        padding: 0;
        display: block;
        width: 33px;
        height: 26px;
		background: #ddd;
        position: absolute;
        top: 0px;
        left: 0px;
    }*/
/*Fin Checkboxes*/

#form-exportdata .profile-field>label {
	text-align: left;
	width: calc(100% - 90px);
	line-height: 55px;
}

#form-exportdata .field {
	min-width: 68px;
}

#form-exportdata .subfield {
	padding-left: 25px;
}

/*Expenses*/
#listexpenses.box {
	min-width: 300px;
	width: 30%;
}

#listexpenses li {
	list-style: none;
	position: relative;
}

.expenseLine {
	min-height: 60px;
	padding: 10px 0;
	border-bottom: 1px dashed;
}

.expenseLine:last-child {
	border: none;
}

.noexpenses {
	text-align: center;
	line-height: 55px;
}

#listexpenses #sections>li>span {
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background: #16a085;
	color: white;
}

#listexpenses .expenseLine:hover .expenseLineHover {
	display: block;
}

#listexpenses .expenseLineHover {
	display: none;
	background: rgba(230, 230, 230, 0.6);
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
}

#listexpenses .expenseLine .expense-edit-disabled {
	position: absolute;
	left: calc(33% - 24px);
	top: 16px;
	background: #bdbdbd;
	height: 48px;
	width: 48px;
	text-align: center;
	border-radius: 24px;
}

#listexpenses .expenseLine .expense-edit-disabled img {
	float: none;
	margin-top: 4px;
	width: 40px;
	height: 40px;
}

#listexpenses .expenseLine .expense-edit {
	position: absolute;
	left: calc(33% - 24px);
	top: 16px;
	background: #bdbdbd;
	height: 48px;
	width: 48px;
	text-align: center;
	border-radius: 24px;
	cursor: pointer;
}

#listexpenses .expenseLine .expense-edit:hover {
	background: #20a2cb;
}

#listexpenses .expenseLine .expense-edit img {
	float: none;
	margin-top: 4px;
	width: 40px;
	height: 40px;
}

#listexpenses .expenseLine .expense-delete {
	position: absolute;
	left: calc(66% - 24px);
	top: 16px;
	background: #bdbdbd;
	height: 48px;
	width: 48px;
	text-align: center;
	border-radius: 24px;
	cursor: pointer;
}

#listexpenses .expenseLine .expense-delete:hover {
	background: #cb2025;
}

#listexpenses .expenseLine .expense-delete img {
	float: none;
	margin-top: 12px;
}

#listexpenses .expenseLine img {
	float: left;
	margin-top: 15px;
}

#listexpenses .expenseLine span {
	display: block;
}

#listexpenses .expenseLine .expense-left {
	display: inline-block;
	text-align: left;
	width: auto;
	max-width: calc(100% - 44px);
	margin-left: 20px;
}

#listexpenses .expenseLine .expense-left span {
	text-align: left;
}

#listexpenses .expenseLine .expense-left span.expense-category {
	font-size: 16px;
	font-weight: bold;
	padding: 0;
}

#listexpenses .expenseLine .expense-left span.expense-date {
	font-size: 12px;
	padding: 2px 0;
}

#listexpenses .expenseLine .expense-left span.expense-description {
	font-size: 12px;
	padding: 2px 0;
	margin-top: 15px;
}

#listexpenses .expenseLine .expense-right {
	display: inline;
	/*float: right;*/
	position: absolute;
	right: 0;
	top: 10px;
	text-align: right;
	width: auto;
	margin-right: 5px;
}

#listexpenses .expenseLine .expense-right span {
	text-align: right;
}

#listexpenses .expenseLine .expense-right span.expense-amount {
	font-size: 14px;
	font-weight: bold;
	padding: 0;
}

#listexpenses .expenseLine .expense-right span.expense-number {
	display: inline;
}

#listexpenses .expenseLine .expense-right span.expense-payment {
	font-size: 12px;
	font-weight: bold;
	padding: 2px 0;
	display: inline;
}

#listexpenses .expenseLine .expense-right span.expense-currency {
	font-size: 12px;
	padding: 2px 0;
	display: inline;
}

#listexpenses .expenseLine .expense-right span.expense-amountMyCurrency {
	font-size: 12px;
	padding: 2px 0;
}

#expensestotalinfo {
	margin-bottom: 20px;
}

#expensestotalinfo label {
	color: #444;
}

#graphexpenses {
	width: 470px;
	text-align: center;
}

#graphexpenses .bigtext {
	color: rgb(247, 146, 99);
	font-size: 48px;
	padding: 20px;
}

.btn.btn-text-danger {
	background: none;
	color: #e74c3c;
	box-shadow: none;
}

.btn.btn-danger {
	background-color: #cc3333;
	color: white;
}

/*Fin expenses*/

/* Main Dashboard */
.main-dashboard {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.stat-card {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
	border: 1px solid rgb(222, 227, 234);
}

.stat-card h4 {
	margin: 0 0 10px;
	color: #3399cc;
	font-size: 16px;
}

.stat-card .stat-value {
	font-size: 36px;
	font-weight: bold;
	color: rgb(247, 146, 99);
	margin: 0;
}

.world-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 20px;
}

.progress-card {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
}

.progress-card h4 {
	margin: 0 0 15px;
	color: #333;
	text-align: center;
}

.progress-bar-container {
	background-color: #e0e0e0;
	border-radius: 10px;
	height: 20px;
	width: 100%;
}

.progress-bar {
	background-color: #3399cc;
	height: 100%;
	border-radius: 10px;
}

.progress-label {
	text-align: center;
	margin-top: 10px;
	font-weight: bold;
	color: #666;
}

/*Feedback form*/
#form-feedback {
	z-index: 1011;
	position: fixed;
	top: 50%;
	right: 0;
	padding: 10px;
	border: 1px solid #ccc;
	background-color: white;
	border-right: none;
	width: 24px;
	height: 28px;
	font-size: 12px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#form-feedback.active {
	width: 300px;
	height: auto;
}

#form-feedback h2 {
	display: inline-block;
	margin-bottom: 10px;
	color: #2980b9;
}

#form-feedback p {
	margin: 10px 0;
}

#form-feedback textarea {
	width: calc(100% - 20px);
	padding: 10px;
	margin: 10px 0;
	height: 75px;
	resize: none;
	border: 1px solid #cbcbcb;
}

#form-feedback #feedback-btn {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 10px 0;
	cursor: pointer;
}

#form-feedback footer {
	text-align: center;
}

/*Fin feedback form*/

/*Search box*/
.searchbox {
	margin: 5px 10px 5px 25px;
	height: 50px;
}

.searchbox .container-2 {
	width: 360px;
	vertical-align: middle;
	white-space: nowrap;
	position: relative;
}

.searchbox .container-2 input#search {
	width: 50px;
	height: 50px;
	background: #3399cc;
	border: none;
	font-size: 12pt;
	float: left;
	color: #fff;
	padding-left: 45px;
	padding-right: 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
	-webkit-transition: width .55s ease;
	-moz-transition: width .55s ease;
	-ms-transition: width .55s ease;
	-o-transition: width .55s ease;
	transition: width .55s ease;
}

.searchbox .container-2 input#search::-webkit-search-decoration,
.searchbox .container-2 input#search::-webkit-search-cancel-button,
.searchbox .container-2 input#search::-webkit-search-results-button,
.searchbox .container-2 input#search::-webkit-search-results-decoration {
	color: white !important;
	background-color: white;
	filter: brightness(0) invert(1);
}

.searchbox .container-2 input#search::-webkit-input-placeholder {
	color: #ddd;
}

.searchbox .container-2 input#search:-moz-placeholder {
	/* Firefox 18- */
	color: #ddd;
}

.searchbox .container-2 input#search::-moz-placeholder {
	/* Firefox 19+ */
	color: #ddd;
}

.searchbox .container-2 input#search:-ms-input-placeholder {
	color: #ddd;
}

.searchbox .container-2 .clear-search {
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	color: #fff;
	cursor: pointer;
	display: none;
	z-index: 2;
	font-size: 14px;
}

.searchbox .container-2.is-active .clear-search {
	display: block;
}

.searchbox .container-2 .icon {
	position: absolute;
	top: 50%;
	margin-left: 17px;
	margin-top: 14px;
	z-index: 1;
	color: #fff;
}

.searchbox .container-2.is-active input#search,
.searchbox .container-2:hover input#search,
.searchbox .container-2 input#search:focus {
	outline: none;
	width: 360px;
}

.searchbox .container-2:hover .icon {
	color: #ddd;
}

/*Fin search box*/

/*Flecha abajo-derecha*/
.arrow {
	position: relative;
	width: 100px;
	height: 35px;
	border-bottom: 10px solid rgb(247, 146, 99);
	border-left: 10px solid rgb(247, 146, 99);
	background: transparent;
	margin-top: 20px;
	margin-left: 200px;
}

.arrow:after {
	content: "";
	position: absolute;
	top: 20px;
	left: 80%;
	height: 0;
	width: 0;
	border-left: 30px solid rgb(247, 146, 99);
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

/*Fin flecha*/

/*.publicidad {
	width: 160px;
	height: 600px;
	position: fixed;
	right: 0;
	border: 1px solid red;
}*/

.hidden {
	display: none;
}

.mobile-header {
	display: none;
	height: 55px;
	text-align: center;
	background: white;
	color: var(--text-color);
	line-height: 55px;
	font-size: 18px;
	font-weight: 600;
	padding: 0 15px;
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.mobile-header .burguerbtn {
	float: left;
	display: flex;
	align-items: center;
	height: 100%;
	cursor: pointer;
}

.mobile-header .burguerbtn img {
	width: 24px;
	opacity: 0.7;
}

.mobile-header .locationsbtn {
	float: right;
	display: flex;
	align-items: center;
	height: 100%;
}

/*Ajustes para otras resoluciones*/
@media screen and (max-width: 768px) {
	.mobile-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		z-index: 1010;
		right: 0;
		left: 0;
	}

	#menulateral {
		margin-top: 55px;
		left: -80px;
		transition: var(--transition);
		border: none;
		z-index: 1002;
	}

	#menulateral.active {
		left: 0;
	}

	#content {
		margin-left: 0;
		margin-top: 55px;
		width: 100%;
		padding: 15px;
	}

	#content.contentwithdays {
		margin-left: 0;
		width: 100%;
	}

	body>footer {
		position: relative;
		text-align: center;
		background: white;
		margin-top: 20px;
	}

	#menulocations {
		right: -328px;
		left: auto;
		z-index: 1001;
		margin-top: 55px;
		transition: var(--transition);
	}

	.main-dashboard {
		padding: 0;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.world-stats {
		grid-template-columns: 1fr;
	}

	.box#worldmap {
		width: 100%;
		height: auto;
		min-height: 165px;
	}

	.box#worldmap img {
		width: 100%;
	}

	#data {
		left: 0;
		padding: 60px 15px 15px;
	}
}

@media screen and (max-width: 1024px) {
	#menulateral ul#sections {
		max-height: calc(100% - 240px);
	}

	#menulateral ul#sections li {
		padding: 15px;
	}

	#menulateral ul#general li {
		padding: 5px;
	}
}

@media screen and (max-width: 2864px) and (min-width: 1025px) {}

/* Modern Travel Cards */
.travels-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	padding: 20px 0;
}

.travel-card-modern {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	position: relative;
}

.travel-card-modern:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-color: var(--primary-color);
}

.travel-card-modern .card-image {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.travel-card-modern .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.travel-card-modern:hover .card-image img {
	transform: scale(1.05);
}

.travel-card-modern .card-image.no-cover-image {
	background-color: #f0f2f5;
}

.travel-card-modern .card-image.no-cover-image .nocover {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.travel-card-modern .card-image.no-cover-image .nocover img {
	opacity: 0.3;
}

.travel-card-modern .card-image.no-cover-image .nocover img {
	width: 60%;
	object-fit: contain;
}

.travel-card-modern .card-overlay-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	display: flex;
	justify-content: space-between;
}

.travel-card-modern .card-image.no-cover-image .card-overlay-info {
	background: none;
	padding: 10px;
	color: var(--text-muted);
}

.travel-card-modern .card-date {
	font-size: 13px;
	font-weight: 600;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.travel-card-modern .card-image.no-cover-image .card-date {
	text-shadow: none;
	border: 1px solid var(--border-color);
	padding: 5px 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
}

.travel-card-modern .card-actions-top {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	gap: 8px;
	opacity: 0;
	transition: opacity 0.3s;
}

.travel-card-modern:hover .card-actions-top {
	opacity: 1;
}

.btn-icon-glass {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--secondary-color);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: var(--transition);
}

.btn-icon-glass:hover {
	background: white;
	color: var(--primary-color);
	transform: scale(1.1);
}

.travel-card-modern .card-body {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.travel-card-modern .title {
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 0 10px 0;
	color: var(--secondary-color);
	line-height: 1.3;
}

.travel-card-modern .descrip {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 15px;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.travel-card-modern .card-meta-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid var(--border-color);
}

.status-badge {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	background: #f1f5f9;
	color: var(--text-muted);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.status-badge.status-0 {
	background: #dcfce7;
	color: #166534;
}

/* Public */
.status-badge.status-1 {
	background: #f1f5f9;
	color: #475569;
}

/* Private */
.status-badge.status-2 {
	background: #dbeafe;
	color: #1e40af;
}

/* Shared */
.status-badge.status-3 {
	background: #ffedd5;
	color: #9a3412;
}

/* Link */

.travel-card-modern .card-photos-preview {
	display: flex;
	gap: 5px;
	margin-top: 15px;
	height: 40px;
	overflow: hidden;
}

.travel-card-modern .mini-thumb {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	overflow: hidden;
}

.travel-card-modern .mini-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Improved Pager */
.pager {
	margin-top: 40px;
	justify-content: center;
	gap: 8px;
}

.pager .pager-num {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	font-weight: 600;
	border: none;
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	text-decoration: none;
}

.pager .pager-num:hover {
	background: var(--bg-color);
	color: var(--primary-color);
}

.pager .pager-num-this {
	background: var(--primary-color);
	color: white;
	box-shadow: 0 4px 10px rgba(247, 146, 99, 0.3);
}

.pager .pager-btn {
	border-radius: 10px;
	border: 1px solid var(--border-color);
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	font-weight: 600;
	text-decoration: none;
}

.pager .pager-btn-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: #f8fafc;
}

/* --- Profile Page Modern --- */
.profile-dashboard {
	max-width: 1100px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.profile-top-header {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 30px;
	padding: 30px;
	background: var(--card-bg);
	border-radius: 24px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border-color);
}

.profile-top-header::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
	opacity: 0.05;
	pointer-events: none;
}

.avatar-wrapper {
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
}

.main-avatar {
	width: 120px;
	height: 120px;
	border-radius: 32px;
	object-fit: cover;
	border: 4px solid white;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.avatar-wrapper:hover .main-avatar {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.avatar-edit-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	opacity: 0;
	transition: var(--transition);
	font-size: 24px;
	backdrop-filter: blur(2px);
}

.avatar-wrapper:hover .avatar-edit-overlay {
	opacity: 1;
}

.profile-main-meta h2 {
	font-size: 2.2rem;
	color: var(--secondary-color);
	font-weight: 800;
	margin-bottom: 5px;
	letter-spacing: -1px;
}

.profile-main-meta p {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 15px;
	max-width: 600px;
}

.profile-badges-strip {
	display: flex;
	gap: 8px;
}

.mini-badge {
	width: 32px;
	height: 32px;
	transition: var(--transition);
	cursor: help;
}

.mini-badge:hover {
	transform: scale(1.2) rotate(5deg);
}

.mini-badge img {
	width: 100%;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.profile-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.profile-card {
	padding: 30px;
	border-radius: 24px;
	background: white;
	border: 1px solid var(--border-color);
	position: relative;
	transition: var(--transition);
	box-shadow: var(--shadow);
	height: fit-content;
	margin-bottom: 30px;
}

.profile-card:hover {
	border-color: var(--primary-color);
}

.card-header-icon {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.card-header-icon i {
	color: var(--primary-color);
	font-size: 20px;
	background: rgba(247, 146, 99, 0.1);
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.card-header-icon h3 {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--secondary-color);
	margin: 0;
}

.data-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.data-row {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f1f5f9;
}

.data-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.row-icon {
	width: 36px;
	height: 36px;
	background: var(--bg-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 14px;
	flex-shrink: 0;
}

.row-content {
	flex-grow: 1;
}

.data-row label {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 2px;
}

.data-val {
	font-size: 15px;
	color: var(--secondary-color);
	font-weight: 600;
}

.data-val.editable {
	cursor: text;
}

.notif-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f1f5f9;
}

.notif-toggles {
	display: flex;
	gap: 15px;
}

.toggle-switch {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	cursor: pointer;
	font-weight: 600;
	color: var(--text-muted);
}

.toggle-switch input {
	display: none;
}

.toggle-switch .slider {
	position: relative;
	width: 34px;
	height: 20px;
	background-color: #ccc;
	border-radius: 10px;
	transition: .4s;
}

.toggle-switch .slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	border-radius: 50%;
	transition: .4s;
}

.toggle-switch input:checked+.slider {
	background-color: var(--primary-color);
}

.toggle-switch input:checked+.slider:before {
	transform: translateX(14px);
}

.accent-card {
	background: linear-gradient(135deg, var(--secondary-color), #242b4d);
	color: white;
	border: none;
}

.accent-card .card-header-icon i {
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

.accent-card .card-header-icon h3,
.accent-card .usage-head span,
.accent-card .btn-ghost {
	color: white;
}

.accent-card .usage-head strong {
	color: var(--primary-color);
	font-size: 1rem;
}

.plan-badge {
	display: inline-block;
	padding: 6px 14px;
	background: var(--primary-color);
	border-radius: 10px;
	font-weight: 800;
	font-size: 12px;
	margin-bottom: 20px;
	color: white;
	box-shadow: 0 4px 10px rgba(247, 146, 99, 0.2);
}

.usage-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 14px;
}

.premium-progress {
	background: rgba(255, 255, 255, 0.1);
	height: 8px;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 20px;
}

.premium-progress .bar {
	background: var(--primary-color);
	height: 100%;
	border-radius: 4px;
}

.export-desc {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.export-checkbox-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}

.custom-export-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	background: var(--bg-color);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
}

.custom-export-check:hover {
	background: #f8fafc;
}

.custom-export-check input {
	display: none;
}

.check-box {
	width: 32px;
	height: 32px;
	background: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e1;
	border: 1px solid #e2e8f0;
	font-size: 14px;
	transition: var(--transition);
}

.custom-export-check input:checked+.check-box {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.check-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--secondary-color);
}

.card-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.danger-zone {
	margin-top: 20px;
	text-align: center;
}

.btn-text-danger {
	background: transparent;
	border: none;
	color: #e74c3c;
	font-weight: 600;
	cursor: pointer;
	padding: 10px;
	box-shadow: none;
}

.btn-text-danger:hover {
	background: #fff1f0;
	transform: none;
}

@media (max-width: 900px) {
	.profile-content-grid {
		grid-template-columns: 1fr;
	}

	.profile-top-header {
		flex-direction: column;
		text-align: center;
	}

	.profile-badges-strip {
		justify-content: center;
	}
}