/*base*/

:root {
	--btn-color-text: #fff;
	--btn-color-border: #fff;
	--black: #333333;
	--white: #fff;
	--small-title: 30pt;
	--rose: #FF65B8;
	--green: #27AE60;
	--primary: #eff2f7;
	--bg: #f9fafc;
	--titles-color: #000000;
	--link: #2F80ED;
	--link-hover: rgb(37, 112, 209);
	--darken: #ccc;
	--danger: #EB5757;
}

@font-face {
	font-family: 'Avenir W01';
	src: url("fonts/849bc5b9-a2ff-4343-977b-26ba8bd24a60.ttf");
}

@font-face {
	font-family: 'Avenir W01';
	src: url("fonts/c33278bc-988e-440b-b4be-6acc095e6044.ttf");
	font-weight: 900;
}

@font-face {
	font-family: 'Beloved W00';
	src: url("fonts/324fa9dc-66ca-49e0-b6d6-23d932d5ffd1.ttf");
	font-weight: 900;
}

html,
body {
	box-sizing: border-box;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #fff;
	/*background-color: var(--bg);*/
}

[type="file"] {
	display: none;
}

*,
*:after,
*:before {
	box-sizing: inherit;
	-webkit-overflow-scrolling: touch;
	/*user-select: none;*/
}

a,
pre {
	text-decoration: none;
	outline: none;
	margin: 0;
	border: 0;
	border-color: transparent;
}

img[data-src] {
	opacity: 0;
	transition: all .25s linear;
}

img[data-src].visible {
	opacity: 1;
}

upper {
	text-transform: uppercase;
}

relative {
	display: block;
	position: relative;
}

button {
	background-color: transparent;
}


/*api location */

.pac-container {
	background-color: #ffffff;
	/*position: absolute !important;*/
	z-index: 1000;
	border-radius: 0 0 5px 5px;
	border: none;
	font-family: inherit !important;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
	-moz-box-sizing: border-box !important;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	overflow: hidden;
	padding: 1rem 1rem 0.25rem 1rem;
	/*transform: translateY(-130px);*/
}

.pac-logo:after {
	content: "";
	padding: 0;
	height: 18px;
	box-sizing: border-box;
	text-align: center;
	display: block;
	background-image: url(//test.osgohome.com/website-images/logo/osgo-b.svg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 80px 12px;
}

.hdpi.pac-logo:after {
	background-image: url(//test.osgohome.com/website-images/logo/osgo-b.svg)
}

.pac-item {
	cursor: pointer !important;
	padding: 0.5rem !important;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	line-height: 30px;
	text-align: left;
	border: none;
	font-size: 11px;
	color: #999
}

.pac-item:not(:last-child) {
	border-bottom: 1px solid rgb(216, 216, 216);
}

.pac-item:hover {
	background-color: #fafafa
}

.pac-item-selected,
.pac-item-selected:hover {
	background-color: #ebf2fe
}

.pac-matched {
	font-weight: normal !important;
	background-color: rgb(212, 212, 212);
	padding: 0.2rem 0.5rem;
	border-radius: 5rem;
	margin-right: 0.5rem;
	font-size: 1rem !important;
}

.pac-item-query {
	font-size: 1rem !important;
	padding-right: 3px;
	color: #000
}

.pac-icon {
	width: 15px;
	height: 20px;
	margin-right: 7px;
	margin-top: 6px;
	display: inline-block;
	vertical-align: top;
	background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
	background-size: 34px
}

.hdpi .pac-icon {
	background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png)
}

.pac-icon-search {
	background-position: -1px -1px
}

.pac-item-selected .pac-icon-search {
	background-position: -18px -1px
}

.pac-icon-marker {
	background-position: -1px -161px
}

.pac-item-selected .pac-icon-marker {
	background-position: -18px -161px
}

.pac-placeholder {
	color: gray !important;
	margin-left: 2px;
	font-size: 1rem !important;
}


/*general styles*/

.body-wrapper>* {
	width: 100%;
}

@media screen and (min-width: 1024px) {
	/* .body-wrapper-container {
			padding: 0 2rem;
	} */
}

.error {
	margin-top: 1rem;
	color: var(--danger);
	background-color: rgba(255, 0, 0, 0.15);
	padding: 0.5rem 2rem;
	border-radius: 8rem;
	user-select: none;
	pointer-events: none;
	opacity: 0;
	transition: opacity .25s ease;
}

.error.active {
	opacity: 1;
}

uploads {
	position: fixed;
	top: 0;
	left: 50%;
	transform-origin: 0 0;
	transform: translate(-50%, -100%);
	opacity: 0;
	z-index: -1;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
	transition: all .25s ease-in-out;
	overflow: hidden;
	min-height: 100vh;
}

uploads.open {
	transform: translate(-50%, 0%);
	opacity: 1;
	z-index: 800;
}

uploads * {
	font-weight: normal;
}

overlay {
	position: fixed;
	display: block;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 102%;
	z-index: -1;
	opacity: 0;
	transform-origin: 0 0;
	transform: translate(-50%, -50%);
	transition: all .25s ease-in-out;
}

overlay.open {
	z-index: 549;
	opacity: 1;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 0, 0, 0.5);
}

confirm {
	position: fixed;
	top: 50%;
	left: 50%;
	transform-origin: 0 0;
	transform: scale(0) translate(-50%, -50%);
	border-radius: 5px;
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
	z-index: 800;
	pointer-events: none;
	opacity: 0;
	transition: all .25s ease-in-out;
}

confirm h3 {
	font-weight: normal;
}

confirm.open {
	pointer-events: all;
	opacity: 1;
	transform: scale(1) translate(-50%, -50%);
}

notify {
	position: fixed;
	right: 2rem;
	bottom: -5rem;
	background-color: var(--white);
	max-width: 250px;
	overflow: hidden;
	opacity: 0;
	z-index: 5000;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
	transition: all .2s ease-in-out;
}

notify .background {
background-color: var(--black);
}

notify.visible {
	opacity: 1;
	bottom: 2rem;
}


notify.danger .background {
	background-color: red;
}

notify.success .background {
	background-color: #00c360;
}

notify.danger {
	animation: shake 1s linear;
}

@keyframes shake {
0% { transform: translate(30px); }
20% { transform: translate(-30px); }
40% { transform: translate(15px); }
60% { transform: translate(-15px); }
80% { transform: translate(8px); }
100% { transform: translate(0px); }
}

.body-wrapper {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	/*flex-direction: column;*/
	margin-top: 50px;
	width: 100%;
	align-items: flex-start;
	background-color: var(--bg);
}

chip {
	display: inline-flex;
	height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 5rem;
	background-color: var(--primary);
	flex-wrap: nowrap;
	flex-shrink: 0;
	padding: 0 1rem;
	cursor: pointer;
	border: 1px solid var(--primary);
	font-size: 0.8rem;
}

[relative] {
	position: relative;
}

chip,
chip-label,
close {
	transition: all .2s ease;
}

chip:hover {
	background-color: #fff;
	border-color: #bbb;
}

chip-label {
	opacity: 0.7;
}

chip:hover chip-label {
	opacity: 1;
}

chip-label {
	display: block;
	padding-right: 1rem;
}

close {
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

close:hover {
	color: var(--danger);
}

.buho-container {
	background-color: var(--primary);
	width: 100px;
	height: 100px;
	border-radius: 100%;
	display: inline-flex;
	margin-bottom: 3rem;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.buho-container img {
	object-fit: contain;
	user-select: none;
	pointer-events: none;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 2rem;
}

ol,
ul,
p {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--titles-color);
	margin: 0;
}

.myteam_image {
	width: 100px;
	height: 100px;
	min-width: 100px;
	min-height: 100px;
	object-fit: cover;
	border-radius: 100%;
	box-shadow: 0 0 0 5px #fff;
}

.myteam_image.small {
	width: 50px;
	height: 50px;
	min-height: 50px;
	min-width: 50px;
}

[footer] small {
	margin: auto;
}

[footer] {
	height: 30px;
	background-color: var(--bg);
	display: flex;
	align-self: flex-end;
	width: 100%;
	text-align: center;
	font-size: 0.7rem;
	user-select: none;
	color: #aaa;
}

listbox[disabled] {
	pointer-events: none;
	opacity: 0.6;
}

.logo img {
	width: 35px;
	height: 35px;
}


/* [navbar] button {
	outline: none;
	border: none;
	background-color: transparent;
	display: inline-flex;
	padding: 0 1rem;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	transition: color .2s ease;
}
[navbar] button:hover,
[navbar] button:hover span {
	color: #1e2d3d;
} */


/*layout css*/

layout {
	height: 100%;
}

[menu] {
	background-color: #eff2f7;
}

[menu],
[views] {
	height: 100%;
	overflow-y: auto;
}

.badge {
	display: inline-flex;
	border-radius: 5rem;
	background-color: var(--black);
	color: var(--white);
	padding: 0.25rem;
	min-width: 25px;
	min-height: 15px;
	font-size: 0.8rem;
	text-align: center;
	justify-content: center;
}

.white {
	background-color: var(--white);
}

.sign-wrapper-p:after {
	content: "";
	width: 88%;
	border: 1px solid white;
	border-width: 2px 0 0 0;
	float: left;
	position: relative;
	bottom: -167px;
	left: 24px;
}

.signature-pad-p {
	position: absolute;
	left: 0;
	top: 0;
	width: 400px;
	height: 200px;
	background-color: #F7F7F7;
	border-radius: 8px;
	touch-action: none;
	-webkit-touch-callout: none;
	overflow: hidden;
}

.sign-wrapper-p {
	margin: 0 auto;
	position: relative;
	width: 400px;
	height: 200px;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
	user-select: none;
	touch-action: none;
	-webkit-touch-callout: none;
}


/*Validation Input-File*/

.file-container {
	width: 400px;
}

.input-container {
	box-sizing: border-box;
	padding: 25px;
	font-size: 14px;
	background: #eee;
	text-align: center;
	width: 500px;
}

.file-input {
	display: inline-block;
	text-align: left;
	background: #fff;
	padding: 16px;
	width: 450px;
	position: relative;
	border-radius: 3px;
}

.file-input>[type='file'] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 10;
	cursor: pointer;
}

.file-submit-btn {
	display: inline-block;
	cursor: pointer;
	background: #eee;
	padding: 8px 16px;
	border-radius: 2px;
	margin-top: 20px;
	width: 80%;
}

.file-submit-btn:hover {
	background: black;
	color: white;
}

.file-input>.add-btn {
	display: inline-block;
	cursor: pointer;
	background: #eee;
	padding: 8px 16px;
	border-radius: 2px;
	margin-right: 8px;
}

.file-input:hover>.add-btn {
	background: #ccc;
}

.file-input>.add-label {
	color: #333;
	white-space: nowrap;
	opacity: .3;
	width: 100%;
	margin-top: 40px;
	width: 400px;
}

.file-input.-chosen>.add-label {
	opacity: 1;
}


/*Upload Image Form*/

#drop-area,
#__dropper__ {
	border: 1px dashed #bbb;
	border-radius: 10px;
	font-family: sans-serif;
	padding: 1rem;
	cursor: pointer;
}

#drop-area.highlight,
#__dropper__.highlight {
	border-color: #7292fc;
	background: var(--primary);
}

.p-img-upload {
	margin-top: 0;
}

.img-upload-form {
	margin-bottom: 10px;
}

#gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(5%,1fr));
	grid-auto-rows: 200px;
	width: 100%;
	grid-gap: 1rem;
	margin-bottom: 1rem;
	justify-content: center;
	overflow-y: auto;
}

gallery-controls {
	display: flex;
	position: absolute;
	padding: 0.5rem;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background: rgb(2, 0, 36);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.513) 0%, rgba(0, 0, 0, 0) 100%);
}

loader {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	display: flex;
	align-items: center;
	justify-content: center;
}

loader:after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid white;
	border-top-color: rgba(255, 255, 255, 0.2);
	border-right-color: rgba(255, 255, 255, 0.5);
	border-bottom-color: rgba(255, 255, 255, 0.7);
	animation: spin .5s linear infinite;
}

@media screen and (min-width: 980px) {
	.body-wrapper {
			margin-top: 0;
	}
}

#gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s ease-out;
}

#gallery .gallery-item {
grid-column: span 5;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	transition: opacity .2s ease-in;
	width: 100%;
	height: 100%;
	background-color: #000;
}

#gallery .gallery-item.invalid {
	border: 2px solid red;
}

#gallery .gallery-item.hide {
	opacity: 0;
}

#gallery .gallery-item:hover img {
	transform: scale(1.05);
	opacity: 0.8;
}

.gallery-item .error {
	margin: 0;
	color: white;
	background-color: #ff0b0b;
}

.largeImages {
	margin: 0;
	margin-right: 1rem;
}

#gallery .gallery-item close,
#gallery .gallery-item icon-3d,
#gallery .gallery-item star {
	display: inline-flex;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	align-items: center;
	align-content: center;
	justify-content: center;
	z-index: 5;
	transition: all .2s ease-out;
	cursor: pointer;
	color: var(--white);
}

#gallery .gallery-item:hover icon-3d.active {
	color: var(--black);
	background-color: var(--white);
}

#gallery .gallery-close,
#gallery .gallery-replace {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 2;
}
#gallery .gallery-tooltip {
	font-family: 'Avenir W01' !important;
	font-size: 0.85rem;
	white-space: nowrap;
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	transform: scale(0);
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5rem;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	align-content: center;
	padding: 0.25rem 1rem;
	line-height: 1.4rem;
	z-index: 1;
	box-shadow: 0 5px 10px -1px rgba(0, 0, 0, 0.3);
	transition: transform .3s ease;
}

#gallery .gallery-item:hover .gallery-tooltip {
	transform: scale(1);
}

.img-upload-btn {
	display: inline-block;
	padding: 10px;
	background: #ccc;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid #ccc;
}

.img-upload-btn:hover {
	background: #ddd;
}

#fileElem {
	display: none;
}

#drop-area {
	min-height: 50vh;
}

label,
h2 {
	font-weight: normal;
}

.succ-wrapper {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.info-wrapper {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.err-wrapper {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.warn-wrapper {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.succ-wrapper,
.info-wrapper,
.err-wrapper,
.warn-wrapper {
	padding: 15px;
	margin-top: 20px;
	border-radius: 4px;
}

.db-submit-btn {
	display: inline-block;
	cursor: pointer;
	background: #eee;
	padding: 8px 16px;
	border-radius: 2px;
	margin-left: auto;
	margin-right: auto;
}

.db-submit-btn:hover {
	background: black;
	color: white;
}


/*Generales*/

.form-item {
	display: flex;
	align-items: center;
	position: relative;
}

.arrow-drop {
	position: absolute;
	right: 1rem;
	top: 30%;
	transform-origin: center;
	pointer-events: none;
	transform: rotate(90deg) translateY(-50%);
}

strong {
	display: flex;
	width: 100%;
	padding: 0.25rem 0;
}

br {
	display: none;
}


/*form update intem controls*/

.form-item-controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	padding: 0.25rem 1rem;
	border-radius: 5rem;
	background-color: var(--primary);
	cursor: pointer;
	opacity: 0;
	z-index: 3;
	pointer-events: none;
	transition: all .25s ease;
	overflow: hidden;
}

.form-item-controls:hover {
	background-color: #e7edf7;
}

.form-item-controls .labelBtn {
	z-index: 2;
	font-size: 0.99rem;
	opacity: 0.7;
}

.form-item-controls.visible {
	opacity: 1;
	pointer-events: all;
}

.form-item-controls [is-icon-large]:not(:last-child) {
	margin-right: 0.5rem;
}

.checkStyle::before {
	content: '';
	display: block;
	width: 9px;
	height: 18px;
	border: 2px solid #34ab22;
	margin-top: -5px;
	border-left: 0;
	border-top: 0;
	transform: rotate(45deg);
	transition: all .25s ease-out;
}


/*others css*/


/*header*/

burger {
	display: inline-flex;
	width: 2.7rem;
	height: 2rem;
	justify-content: space-around;
	background-color: var(--primary);
	align-items: center;
	border: none;
	flex-direction: column;
	outline: 0;
	padding: 0;
	margin: 0;
	border-radius: 2px;
	padding: 0.25rem;
	position: relative;
	cursor: pointer;
}

burger span {
	display: block;
	pointer-events: none;
	width: 1.3rem;
	height: 1px;
	background-color: #000;
	transition: all .2s linear;
}

burger.open {
	justify-content: center;
}

burger.open span {
	position: absolute;
}

burger.open span:nth-child(2) {
	opacity: 0;
}

burger.open span:nth-child(1) {
	transform-origin: center center;
	transform: rotate(-45deg);
}

burger.open span:nth-child(3) {
	transform-origin: center center;
	transform: rotate(45deg);
}

@media screen and (max-width: 769px) {
	.logo-pyramid {
			margin: 0;
	}
	.header {
			margin: 0;
			padding: 0 1rem;
			overflow: auto;
			height: auto;
			border: none;
	}
	.header.open-mible-menu {
			box-shadow: 0 30px 40px -10px rgba(0, 0, 0, 0.05);
	}
	.header-icon {
			margin: 0;
			width: auto;
			height: 20px;
	}
	.tab-permanent {
			flex-wrap: wrap;
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.5s linear;
	}
	.tab-permanent.show {
			max-height: 500vh;
	}
	h1 {
			padding: 0 1rem;
			text-align: center;
	}
}

@media screen and (min-width: 768px) {
	.dashboardTitle {
			margin: 0;
			padding: 0;
	}
	.buho-container {
			width: 200px;
			height: 200px;
	}
	notify {
			position: fixed;
	}
	burger.side {
			background-color: var(--white);
			border: 1px solid #000;
	}
}

widget {
	border-radius: 5px;
	border: 1px solid var(--primary);
}



#load-label {
	width: 100%;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

#load-label span {
	display: none;
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	border-radius: 100%;
	border: 1px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.2);
	border-right-color: rgba(0, 0, 0, 0.5);
	border-bottom-color: rgba(0, 0, 0, 0.7);
	animation: spin .3s linear infinite;
}

#load-label.visible {
	display: flex;
}

#load-label span.visible {
	display: inline-block;
}

@keyframes spin {
	from {
			transform: rotate(0deg);
	}
	to {
			transform: rotate(360deg);
	}
}

.icon-left,
.icon-right {
	position: absolute;
	top: 50%;
	width: 1.5rem;
	height: 1.5rem;
	object-fit: contain;
	transform: translateY(-50%);
}

.icon-left {
	left: 1rem;
}

.icon-right {
	right: 1rem;
}


/*oh-file*/

.oh-file [type=file] {
	display: none;
}

.oh-file label {
	display: flex;
	width: 100%;
	height: 35px;
	font-weight: normal;
	background-color: whitesmoke;
	border: 1px solid whitesmoke;
	overflow: hidden;
}

.oh-file .oh-file-label,
.oh-file .oh-file-name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	padding: 0.5rem 1rem;
	opacity: 0.4;
}

.oh-file .oh-file-name {
	pointer-events: none !important;
	width: 100%;
	user-select: none;
}

.oh-file .oh-file-label {
	cursor: pointer;
	background-color: rgb(55, 153, 245);
	color: white;
	opacity: 1;
	flex-shrink: 0;
	transition: background-color .2s ease;
}

.oh-file .oh-file-label:hover {
	background-color: rgb(42, 141, 233);
}


/*RADIO BUTTON*/

check-button,
radio-button {
	display: inline-block;
}

check-button label,
radio-button label {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font-size: inherit;
	user-select: none;
	cursor: pointer;
	font-weight: normal;
}

check-button [type="checkbox"],
radio-button [type="radio"] {
	display: none;
}

check-button label:before,
radio-button label:before {
	content: '';
	display: inline-block;
	min-width: 15px;
	width: 15px;
	height: 15px;
	min-height: 15px;
	margin-right: 0.5rem;
	box-shadow: inset 0 0 0 1px black;
	border-radius: 2rem;
	transition: box-shadow .25s ease;
}

check-button label:before {
	border-radius: 2px;
}

check-button label:hover::before,
radio-button label:hover::before {
	box-shadow: inset 0 0 0 2px black, inset 0 0 0 4px white, inset 0 0 0 2rem black;
}

check-button [type="checkbox"]:checked+label:before,
radio-button [type="radio"]:checked+label:before {
	box-shadow: inset 0 0 0 2rem black;
}

@media screen and (max-width: 30rem) {
	* ::-moz-scrollbar {
			display: none !important;
	}
}

.nobold {
	font-weight: normal !important
}

.product-container-header,
.product-container-main {
	display: grid;
	grid-template-columns: repeat(50, 1fr);
	text-transform: capitalize;
	padding: 1rem;
}

.product-container-header .product-item,
.product-container-main .product-item {
	display: flex;
	align-content: flex-end;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	margin: 0;
	text-align: center;
	padding: 0.5rem;
	height: auto;
}

.product-container-main .product-item {
	align-items: center;
	align-content: center;
}


/*.product-container-header .product-item:not(:last-child),*/

.product-container-main .product-item:not(:last-child) {
	border-right: 1px solid #bbb;
}


/*borrar product border div*/

.border-prod-div {
	display: none;
}

.product-container {
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.applicationPdf {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	background-color: #FF0A32;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 2rem;
	letter-spacing: 5px;
	width: 100%;
	height: 100%;
}

[fullscreen] {
	min-height: 70vh;
}

[debug]>* {
	padding: 1px;
	border: 1px solid #00d7fd;
}

[debug]>[debug]>* {
	border: 1px solid #5f40e8;
}

[debug]>[debug]>[debug]>* {
	border: 1px solid #f50000;
}

[debug]>[debug]>[debug]>[debug]>* {
	border: 1px solid #f500f5;
}

[debug]>[debug]>[debug]>[debug]>[debug]>* {
	border: 1px solid #00f514;
}

.plus {
	position: relative;
}

.plus::before,
.plus::after {
	content: '';
	display: block;
	width: 16px;
	background-color: #000;
	height: 1px;
	transform-origin: center;
}

.plus::after {
	position: absolute;
	transform: rotate(-90deg) translate(0, 0);
}

[light] {
	font-weight: normal;
}



.oh-link {
	display: inline-flex;
	padding: 0.5rem 1rem;
	margin: 0.25rem;
	border: 1px solid #bbb;
	transition: all .25s ease;
	border-radius: 5px;
	color: #000;
	cursor: pointer;
}

.oh-link:hover {
	color: #069bff;
	border-color: #069bff;
}

.oh-link.small {
	padding: 0.5rem 1.5rem;
	font-size: 0.9rem;
}

.hide {
	transition: all .2s ease;
	pointer-events: none;
	opacity: 0;
	display: none;
}

.send {
	background-color: #000;
	color: #fff;
}