:root {
	--color-theme:       #ec6d1b;
	--color-theme-dark:  #da5720;
	--color-theme-light: #ed8254;
	--color-theme-lighter: #ed825414;
	--color-theme-light-alpha25: rgba(237, 130, 84, .25);
	--color-gray:        #888;
	--color-gray-light:  #f4f6f8;

	--bs-border-radius: 0.375rem;

	--bs-spacing-6: 4rem;
	--bs-spacing-7: 5rem;
}

@font-face {
	font-family: 'Bubbleboddy Neue';
	font-weight: 100;
	src: url('/font/bubbleboddy-neue-thin.woff2') format('woff2'),
        url('/font/bubbleboddy-neue-thin.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Bubbleboddy Neue';
	font-weight: 200;
	src: url('/font/bubbleboddy-neue-light.woff2') format('woff2'),
        url('/font/bubbleboddy-neue-light.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Bubbleboddy Neue';
	font-weight: 400;
	src: url('/font/bubbleboddy-neue.woff2') format('woff2'),
        url('/font/bubbleboddy-neue.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Bubbleboddy Neue';
	font-weight: 700;
	src: url('/font/bubbleboddy-neue-bold.woff2') format('woff2'),
        url('/font/bubbleboddy-neue-bold.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Bubbleboddy Neue';
	font-weight: 900;
	src: url('/font/bubbleboddy-neue-extra.woff2') format('woff2'),
        url('/font/bubbleboddy-neue-extra.woff') format('woff');
	font-display: swap;
}


/** **********************
 *      HTML ELEMENTS    *
 *********************** */
html,
body {
	font-family: "Bubbleboddy Neue";
	font-size: 20px;
	color: #333;
	font-weight: 200;
	min-height: 100%;
}


@media only screen and (min-width: 991px) {
	#staff-html, 
	#staff-body, 
	#ac-html, 
	#ac-body {
		max-height: 100%;
		height: 100%;
	}
}

@media print {
	html,
	body,
	#menu-and-content,
	#content-body-container {
		max-height: unset !important;
		height: unset !important;
	}
	body {
		margin: 0;
		padding: 0 !important;
		min-width: 992px; /* lg */
	}
	.container,
	.container-fluid {
		width: auto;
		padding: 0;
		min-width: 992px; /* lg */
	}
}

.skip-to-content-link {
	width: 300px;
	left: calc(50% - 75px);
	position: absolute;
	z-index: 999;
	transform: translateY(-500%);
	transition: transform 0.1s;
	top: 0px;
}

.skip-to-content-link:focus {
	transform: translateY(0%);
}

a {
	color: var(--color-theme)
}
a:not(.btn) {
	text-decoration: none;
}
a:hover,
a:active {
	color: var(--color-theme);
	text-decoration: none;
}

.cursor-pointer {
	cursor: pointer;
}

.card {
	flex-direction: row;
	padding: 1rem;
	margin: 1rem 0px;
}

.page-item:not(.disabled) .page-link {
	color: var(--color-theme);
	cursor: pointer;
}

.h-0 {
    height: 0px !important;
    padding: 0px !important;
    margin: 0px !important;
    line-height: 0px;
    overflow: hidden;
	position: relative;
}


.burger-button {
    margin-right: 0;
    transition: .25s ease-in-out;
    margin-left: 0;
}
.burger-button span {
    width: 25px;
    height: 2px;
    transition: .25s ease-in-out;
    transform: rotate(0deg);
    opacity: 1;
    border-radius: 9px;
    position: relative;
    display: block;
}
#fixed-menu.white-header .burger-button span {
    background: black;
}
#fixed-menu.transparent-header .burger-button span {
    background: white;
}

.burger-button.menu-open span:first-child {
    transform: rotate(-45deg);
    top: calc(50% - 1px);
}
.burger-button span:first-child {
    top: 0px;
}
.burger-button.menu-open span:last-child {
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
}
.burger-button span:last-child {
    bottom: 0px;
}
.burger-button.menu-open span:nth-child(2) {
    transform: translateX(60px);
    opacity: 0;
}
.burger-button {
    border: none;
    background-color: transparent;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Honey pots inputs */
form input[name=b_aa_n_b_00_ts] {
    position: absolute;
    left: -5000px;
}
form input[name=website] {
    display: none!important;
}

.menu-item {
    display: flex;
    align-items: center;
}
.menu-item-with-sub-menu {
    cursor: default;
}
.menu-item:not(.menu-item:hover) .sub-menu-container {
    opacity: 0;
    z-index: 0;
    animation: unset;
    pointer-events: none;
}

.profile-menu:not(.profile-menu:hover) .profile-submenu {
    opacity: 0;
    z-index: 0;
    animation: unset;
    pointer-events: none;
}

.profile-submenu {
    position: absolute;
    width: 215px;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    animation: faceInMenu;
    transition: opacity .25s;
    animation-duration: .25s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
}

@media (max-width: 576px) {
	.profile-submenu {
		left: 50%;
		transform: translateX(calc(-50% - 40px));
	}
}

.profile-menu {
    position: relative;
}

.svg-icon svg {
    max-height: 100%;
    width: auto;
	max-width: 100%;
}

.svg-icon {
	display: inline-block;
    text-align: center;
    vertical-align: middle;
	max-width: 100%;
}

.none-if-empty:empty {
    display: none;
}

/* ***** COLORS & BACKGROUNDS ***** */
.color-gray  { color: var(--color-gray); }
.color-theme { color: var(--color-theme); }

.bg-gray        { background-color: var(--color-gray); }
.bg-gray-light  { background-color: var(--color-gray-light); }
.bg-theme       { background-color: var(--color-theme); }


/* Formularios */
.form-control {
	font-weight: 200;
}
.form-check-input {
	min-width: 17.5px;
}
.form-check-input:checked {
	background-color: var(--color-theme);
	border-color: var(--color-theme);
}
.form-check-input:focus {
	border-color: var(--color-theme-light);
	outline: 0;
	box-shadow: 0 0 0 .25rem var(--color-theme-light-alpha25);
}


/* Borders */
.border-radius {
	border-radius: var(--bs-border-radius);
	overflow: hidden;
}

*[class*='border-'] {
	border-width: 0px; 
	border-style: solid; 
	border-color: var(--bs-border-color-translucent);
}
.border-top-1 {
	border-top-width: 1px !important;
}
.border-top-none {
	border-top-width: 0px !important;
}
.border-bottom-1 {
	border-bottom-width: 1px !important;
}
.border-bottom-none {
	border-bottom-width: 0px !important;
}
.border-start-1 {
	border-left-width: 1px !important;
}
.border-start-none {
	border-left-width: 0px !important;
}
.border-end-1 {
	border-right-width: 1px !important;
}
.border-end-none {
	border-right-width: 0px !important;
}
.table-no-bottom-border tr:last-child td {
    border-bottom: none !important;
}

/* Bootstrap size: sm */
@media (min-width: 576px) {
	.border-sm-top-1 {
		border-top-width: 1px !important;
	}
	.border-sm-top-none {
		border-top-width: 0px !important;
	}
	.border-sm-bottom-1 {
		border-bottom-width: 1px !important;
	}
	.border-sm-bottom-none {
		border-bottom-width: 0px !important;
	}
	.border-sm-start-1 {
		border-left-width: 1px !important;
	}
	.border-sm-start-none {
		border-left-width: 0px !important;
	}
	.border-sm-end-1 {
		border-right-width: 1px !important;
	}
	.border-sm-end-none {
		border-right-width: 0px !important;
	}
} 
/* Bootstrap size: md */
@media (min-width: 768px) {
	.border-md-top-1 {
		border-top-width: 1px !important;
	}
	.border-md-top-none {
		border-top-width: 0px !important;
	}
	.border-md-bottom-1 {
		border-bottom-width: 1px !important;
	}
	.border-md-bottom-none {
		border-bottom-width: 0px !important;
	}
	.border-md-start-1 {
		border-left-width: 1px !important;
	}
	.border-md-start-none {
		border-left-width: 0px !important;
	}
	.border-md-end-1 {
		border-right-width: 1px !important;
	}
	.border-md-end-none {
		border-right-width: 0px !important;
	}
} 
/* Bootstrap size: lg */
@media (min-width: 992px) {
	.border-lg-top-1 {
		border-top-width: 1px !important;
	}
	.border-lg-top-none {
		border-top-width: 0px !important;
	}
	.border-lg-bottom-1 {
		border-bottom-width: 1px !important;
	}
	.border-lg-bottom-none {
		border-bottom-width: 0px !important;
	}
	.border-lg-start-1 {
		border-left-width: 1px !important;
	}
	.border-lg-start-none {
		border-left-width: 0px !important;
	}
	.border-lg-end-1 {
		border-right-width: 1px !important;
	}
	.border-lg-end-none {
		border-right-width: 0px !important;
	}
} 
/* Bootstrap size: xl */
@media (min-width: 1200px) {
	.border-xl-top-1 {
		border-top-width: 1px !important;
	}
	.border-xl-top-none {
		border-top-width: 0px !important;
	}
	.border-xl-bottom-1 {
		border-bottom-width: 1px !important;
	}
	.border-xl-bottom-none {
		border-bottom-width: 0px !important;
	}
	.border-xl-start-1 {
		border-left-width: 1px !important;
	}
	.border-xl-start-none {
		border-left-width: 0px !important;
	}
	.border-xl-end-1 {
		border-right-width: 1px !important;
	}
	.border-xl-end-none {
		border-right-width: 0px !important;
	}
} 
/* Bootstrap size: xxl */
@media (min-width: 1400px) {
	.border-xxl-top-1 {
		border-top-width: 1px !important;
	}
	.border-xxl-top-none {
		border-top-width: 0px !important;
	}
	.border-xxl-bottom-1 {
		border-bottom-width: 1px !important;
	}
	.border-xxl-bottom-none {
		border-bottom-width: 0px !important;
	}
	.border-xxl-start-1 {
		border-left-width: 1px !important;
	}
	.border-xxl-start-none {
		border-left-width: 0px !important;
	}
	.border-xxl-end-1 {
		border-right-width: 1px !important;
	}
	.border-xxl-end-none {
		border-right-width: 0px !important;
	}
} 

.btn-empty {
	border: none;
	background: transparent;
}

.btn-theme:not([is]),
.btn-theme:visited:not([is]),
.btn-theme:not(:disabled):not(.disabled):active {
	color: white;
	background: var(--color-theme);
	background:
		linear-gradient(135deg, transparent 0px,  var(--color-theme) 0) top left,
		linear-gradient(225deg, transparent 10px, var(--color-theme) 0) top right,
		linear-gradient(315deg, transparent 0px,  var(--color-theme) 0) bottom right,
		linear-gradient(45deg,  transparent 10px, var(--color-theme) 0) bottom left;
}
.btn-theme:focus,
.btn-theme:hover:not([is]),
.btn-theme:not(:disabled):not(.disabled):active:focus {
	background: var(--color-theme-dark);
	background:
		linear-gradient(135deg, transparent 0px,  var(--color-theme-dark) 0) top left,
		linear-gradient(225deg, transparent 10px, var(--color-theme-dark) 0) top right,
		linear-gradient(315deg, transparent 0px,  var(--color-theme-dark) 0) bottom right,
		linear-gradient(45deg,  transparent 10px, var(--color-theme-dark) 0) bottom left;
}


.p-6 {
	padding: var(--bs-spacing-6);
}
.px-6 {
	padding-left: var(--bs-spacing-6);
	padding-right: var(--bs-spacing-6);
}
.py-6 {
	padding-top: var(--bs-spacing-6);
	padding-bottom: var(--bs-spacing-6);
}
.pb-6 {
	padding-bottom: var(--bs-spacing-6);
}
.pt-6 {
	padding-top: var(--bs-spacing-6);
}
.p-7 {
	padding: var(--bs-spacing-7);
}
.px-7 {
	padding-left: var(--bs-spacing-7);
	padding-right: var(--bs-spacing-7);
}
.py-7 {
	padding-top: var(--bs-spacing-7);
	padding-bottom: var(--bs-spacing-7);
}
.pb-7 {
	padding-bottom: var(--bs-spacing-7);
}
.pt-7 {
	padding-top: var(--bs-spacing-7);
}


a.color-theme:visited {
	color: var(--color-theme);
}
a.color-theme:hover,
a.color-theme:active {
	color: #000;
}

p {
	text-align: justify;
}
strong,
b {
	font-weight: bold;
}
img {
	max-width: 100%;
}
small {
	line-height: 1.1;
}
ul {
	-webkit-padding-start: 10px;
}
ul li {
	list-style-type: none;
}


/* Custom checkbox y radio */

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-control-label::before {
	box-sizing: border-box;
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}
.custom-control-label::after {
	box-sizing: border-box;
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before,
.custom-radio .custom-control-input:checked~.custom-control-label::before {
	background-color:var(--color-theme);
}
.custom-checkbox-with-bg .custom-control-input:checked~.custom-control-label,
.custom-radio-with-bg .custom-control-input:checked~.custom-control-label {
	background: #ffeedd;
}
.custom-checkbox .custom-control-label::before{
	border-radius:0; border: 2px solid var(--color-theme);
	background-color: #FFF3E5;
}

.custom-radio .custom-control-label::before{
	border: 2px solid var(--color-theme);
	background-color: #FFF3E5;
}
.custom-checkbox .custom-control-input:disabled~.custom-control-label::before,
.custom-radio .custom-control-input:disabled~.custom-control-label::before {
	border-color: #999999;
}


/* ***** BACKGROUNDS ***** */
.bg-light       { background-color: #eee !important; }
.bg-black       { background-color: #000; }
.bg-black-trans { background-color: rgba(0, 0, 0, 0.8); }

.bg-alt         { background-color: var(--color-theme); }
.bg-alt a       { color: #000; }
.bg-alt a:hover { color: #fff; }
.bg-alt-light   { background-color: #ffeedd; }

.bg-alt .bg-white a:hover:not(.btn) { color: var(--color-theme); }


.bg-purple      { background-color: rgba(100,   0, 162, 0.15); }


/* ***** COLORS ***** */

.text-danger  { color: #E00; }
.text-success { color: #2faa3f; }
.text-info    { color: #31b0d5; }
.alert-danger { color: #E00; background-color: #ffdede; }

/* Estilos del confirmar de tible */
.confirm-popup-container {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #474747ed;
    z-index: 999;
}

.popup-confirm-close-button {
    position: absolute;
	top: 4px;
    right: 12px;
    font-size: 21px;
    cursor: pointer;
}

@keyframes popupcancelpopup {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes closepopupcancelpopup {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

.confirm-popup-contents.close {
    animation-name: closepopupcancelpopup;
    animation-duration: .3s;
}
.confirm-popup-contents {
    animation-name: popupcancelpopup;
    animation-duration: .4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    width: 500px;
    max-width: 100%;
    min-height: 200px;
    background-color: white;
    display: flex;
    flex-direction: column;
}


/* ***** ANIMATIONS (EFFECTS) ***** */
.animation-card-hover:hover {
	background-color: var(--color-theme-lighter);
	border-color: var(--color-theme);
}

.scrollbar-hidden::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}
.scrollbar-hidden {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;     /* Firefox */
}

.bouncing-balls-canvas-container {
    position: relative;
}
.bouncing-balls-canvas {
	filter: blur(0.2rem);
    position: absolute;
    width: 100%;
    height: 100%;
}