:root{
	--colorPrimario: #1B8BEC;
	--colorSecundario: #041897;

	--colorGris: #eee;
	--colorVerde: #17B963;
	--colorRojo: #DE2746;


	--colorCeleste: #50a3ff; 
	--colorCelesteFade: #e8f3ff;

	--colorMoradoFade: #F1EEFF;
	--colorMorado: #2E109E;

	--colorAzul: #0068DF;

	--colorBorder: #eee;
	--colorDetails: #585a5b;
}

body{
	font-family: 'Inter', sans-serif;
}

.body-container{
	position: relative;
	min-height: 100vh;
	width: 100%;
	overflow: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bc-box{
	position: relative;
	display: inline-block;
	margin: auto;
	width: 720px;
}

.bcb-head{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.bcb-head span.bcb-title{
	font-family: 'Satisfy', cursive;
	font-size: 34px;
	margin-right: 15px;
	color: #2E109E;
}
.bcb-head img.bcb_logo{
	width: 128px;
	margin-right: 10px;
}
.bcb-head img.bcb_bandera{
	width: 80px;
}


.bcb-head .bcb-flags{
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.bcb-head .bcb-flags .flag-icon{
	margin-right: 8px;
}
.bcb-head .bcb-flags .flag-icon:last-child{
	margin-right: 0px;
}
.bcb-head .bcb-flags .flag-icon img{
	width: 16px;
}
/* Tooltip container */
.tooltip-content {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip-content .tooltiptext {
  visibility: hidden;
  width: 120px;
/*  background-color: rgba(0, 0, 0, 1);*/
	background: var(--colorPrimario);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;

  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-content .tooltiptext:after{
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	background: var(--colorPrimario);
	border-radius: 3px;
	z-index: -1;

}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-content:hover .tooltiptext {
  visibility: visible;
}




.bcb-content{
	position: relative;
	margin-bottom: 30px;
}
.bcc-box{
	position: relative;
	border: 1px solid var(--colorBorder);
	border-radius: 30px;
	padding: 20px;
}
.bcc-title{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 2px 20px;
	background: #fff;
	color: var(--colorMorado);
	font-size: 18px;
}
.bcc-title span{
	font-weight: 600;
	margin-right: 8px;
}
.bcc-title i{
	font-size: 16px;
}
.bcc-body{
	position: relative;
	padding: 15px;

}
.bb-title{
	position: relative;
	color: var(--colorDetails);
	letter-spacing: 5px;
	text-align: center;
	margin-bottom: 20px;
}
.bb-items{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
}
.bb-items.bbi-ventas .bi-content{
	display: flex;
	align-items: center;
	justify-content: center;
}
.bb-items.bbi-ventas .bi-content img{
	margin-bottom: 0px;
	margin-right: 8px;
}
.bb-items .bb-item{
	flex: 1;
	width: auto;
	text-align: center;
	cursor: pointer;
}
.bi-content{
	position: relative;
	padding: 10px;
}
.bi-content img{
	width: 38px;
	height: 38px;
	object-fit: contain;
	margin-bottom: 10px;
}
.bi-content span{
	display: block;
	font-size: 12px;
}



.bcb-foot{
	position: relative;
}
.bf-box{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--colorMorado);
}
.bf-box span{
	margin-right: 15px;
	font-weight: 600;
}

.bf-social{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bf-social a{
	margin-right: 15px;
	color: var(--colorMorado);
	text-decoration: none;
}



@media (max-width: 920px){
	.bcb-head{
		flex-wrap: wrap;
		text-align: center;
		margin-bottom: 60px;
	}
	.bcc-title{
		width: 240px;
		text-align: center;
	}
	.bc-box{
		padding: 8px;
	}
	.bb-items .bb-item{
		min-width: 140px;
		margin-bottom: 16px;
	}
	.bcc-body{
		padding: 8px;
	}
	.bf-box{
		display: block;
		text-align: center;
	}
	.bf-social{
		margin-top: 16px;
	}
	.f-content .f-objeto2{
		margin-bottom: 16px;
	}
}