.golden-button{
	touch-action: manipulation;
	display: inline-block;
	outline: none;
	font-family: inherit;
	font-size: 1em;
	box-sizing: border-box;
	border: none;
	border-radius: 0.3em;
	height: 2.75em;
	line-height: 2.5em;
	text-transform: uppercase;
	padding: 0 1em;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4), inset 0 -2px 5px 1px rgba(139, 66, 8, 1), inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
	background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
	border: 1px solid #a55d07;
	color: rgb(120, 50, 5);
	text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	background-size: 100% 100%;
	background-position: center;
}
	
.golden-button:focus, .golden-button:hover{
	background-size: 150% 150%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
	border: 1px solid rgba(165, 93, 7, 0.6);
	color: rgba(120, 50, 5, 0.8);
}

.golden-button:active{
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

.button23 {
	--color: #0077ff;
	font-family: inherit;
	display: inline-block;  
	line-height: 2.5em;
	overflow: hidden;
	cursor: pointer;
	margin: 20px;
	font-size: 17px;
	z-index: 1;
	color: var(--color);
	border: 2px solid var(--color);
	border-radius: 6px;
	position: relative;
}

.button23::before {
	position: absolute;
	content: "";
	background: var(--color);
	width: 150px;
	height: 200px;
	z-index: -1;
	border-radius: 50%;
}

.button23:hover {
	color: white;
}

.button23:before {
	top: 100%;
	left: 100%;
	transition: 0.3s all;
}

.button23:hover::before {
	top: -30px;
	left: -30px;
}
	
.loader33{
	width:12em;
	height:1em; 
	border-radius:8px;
	background-color:#47a7ff44;
}

.loader33 div{
	height:100%; 
	width:100%;
	border-radius:8px;
	background-color:#47a7ff;
	animation:width7435 5s linear infinite; 
	transition: all;
}

@keyframes width7435{
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.bin-button{
	display:flex; 
	flex-direction:column;
	align-items:center; 
	justify-content:center;
	width:43px;
	height:43px;
	border-radius:10px;
	background-color:rgb(255, 95, 95);
	cursor: pointer;
	border:3px solid rgb(255,201,201);
	transition-duration:0.3s;
}

.bin-bottom{
	width:15px;
}

.bin-top{
	width:17px; 
	transform-origin:right;
	transition-duration:0.3s;
}

.bin-button:hover .bin-top{
	transform:rotate(45deg);
}
	
.bin-button:hover{
	background-color:rgb(255,0,0);
}

.bin-button:active{
	transform:scale(0.9);
}

.button12{
	text-decoration-line: none;
	font-family:inherit; 
	background:#0082FC;
	color:white;
	padding:0.35em 0;
	font-size:17px; 
	border:none;
	border-radius:0.7em;
	letter-spacing:0.08em;
	position:relative;
	display:flex;
	align-content:center;
	align-items:center;
	overflow:hidden;
	height:2.5em;
	padding-left:2.8em;
	padding-right:0.92em;
}

.button12 .icon12{
	background:#fff;
	height:2em;
	width:2em;
	border-radius:2em;
	position:absolute;
	display:flex; 
	align-items:center;
	justify-content:center;
	left:0.4em;
	transition:all 0.5s;
}

.icon12 i{
	margin-left:0.1em;
	transition:all 0.5s;
	color:#2CA0D9;
	width:1.2rem;
	height:1.2rem;
}

.button12:hover .icon12 i{
	transform:rotate(360deg);
}

.button12:hover .icon12{
	width: calc(100% - 0.85rem);
	border-radius: 0.5em;
}

.editBtn21b{
	width:38px;
	height:38px;
	border-radius:10px;
	border:1px solid rgb(0,130,252);
	background-color:rgb(255,255,255);
	display:flex;
	align-items:center; 
	justify-content:center; 
	box-shadow:0px 5px 10px rgba(0,0,0,0.123);
	cursor:pointer;
	position:relative; 
	overflow:hidden;
	transition:all 0.3s;
}

.editBtn21b::before{
	content:"";
	width:200%; 
	height:200%;
	background-color:rgb(0,130,252);
	position:absolute;
	z-index:1;
	transform:scale(0);
	transition:all 0.3s;
	border-radius:50%;
	filter:blur(10px);
}

.editBtn21b:hover::before{
	transform:scale(1);
}

.editBtn21b:hover{
	box-shadow: 0px 5px 10px rgba(0,0,0,0.336);
}

.editBtn21b svg{
	height:17px; 
	fill:black; 
	z-index:3; 
	transition:all 0.2s;
	transform-origin:bottom;
}
	
.editBtn21b:hover svg{
	transform:rotate(-15deg) translateX(5px);
	fill:white;
}

.editBtn21b::after{
	content:"";
	width:16px;
	height:1px; 
	position:absolute;
	bottom:8px;
	left:-5px;
	background-color:white;
	border-radius:2px;
	z-index:2;
	transform:scaleX(0);
	transform-origin:left; 
	transition:transform 0.5s ease-out;
}

.editBtn21b:hover::after{
	transform:scaleX(1);
	left:0px;
	transform-origin:right;
}

.Btn21c{
	width:42px; 
	height:42px;
	border:2px solid rgb(214,214,214);
	border-radius:15px;
	background-color:rgb(255,255,255);
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	position:relative;
	transition-duration:0.3s;
	box-shadow:2px 2px 10px rgba(0,0,0,0.11);
}

.svgIcon21c{
	fill:rgb(70,70,70);
}

.icon21c{
	width:18px;
	height:5px;
	border-bottom:2px solid rgb(70,70,70);
	border-left:2px solid rgb(70,70,70);
	border-right:2px solid rgb(70,70,70);
}

.Btn21c:hover{
	background-color:rgb(0,130,252);
	transition-duration: 0.3s;
}

.Btn21c:hover .icon21c{
	border-bottom:2px solid rgb(235,235,235);
	border-left:2px solid rgb(235,235,235);
	border-right:2px solid rgb(235,235,235);
}

.Btn21c:hover .svgIcon21c{
	fill:rgb(255,255,255);
	animation:slide-in-top 1s linear infinite;
}

@keyframes slide-in-top{
	0%{
		transform:translateY(-10px);
		opacity:0;
	}
	100%{
		transform:translateY(0px);
		opacity:1;
	}
}

.loaderClock{
	--c1:#673b14;
	--c2:#f8b13b; 
	width:20px;
	height:30px;
	border-top:4px solid var(--c1);
	border-bottom:4px solid var(--c1);
	background:linear-gradient(90deg, var(--c1) 2px, var(--c2) 0 5px,var(--c1) 0) 50%/7px 8px no-repeat;
	display:grid;
	overflow:hidden;animation:l5-0 2s infinite linear;
}

.loaderClock::before, .loaderClock::after{
	content:"";
	grid-area:1/1;
	width:75%;
	height:calc(50% - 4px);
	margin:0 auto;
	border:2px solid var(--c1);
	border-top:0; 
	box-sizing:content-box;		
	border-radius:0 0 40% 40%;
	-webkit-mask:linear-gradient(#000 0 0) bottom/4px 2px no-repeat, linear-gradient(#000 0 0);
	-webkit-mask-composite:destination-out;
	mask-composite:exclude; 
	background:linear-gradient(var(--d,0deg),var(--c2) 50%,#0000 0) bottom /100% 205%, linear-gradient(var(--c2) 0 0) center/0 100%;
	background-repeat:no-repeat;
	animation:inherit;
	animation-name:l5-1;
}

.loaderClock::after{
	transform-origin:50% calc(100% + 2px);
	transform:scaleY(-1); --s:3px;
	--d:180deg;

}

@keyframes l5-0{
	80% {
		transform: rotate(0)
	}
	100% {
		transform:rotate(0.5turn)
	}
}

@keyframes l5-1{
	10%,70%{
		background-size:100% 205%,var(--s,0) 100%
	}
	70%,100%{
		background-position: top,center
	}
}

.imggira:hover{
	-webkit-transform: rotate(360deg);
}

.button17a {
	position: relative;
	width: 200px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	border: 1px solid #007bff;
	background-color: #17a2b8;
	overflow: hidden;
}

.button17a, .button__icon, .button__text {
	transition: all 0.3s;
}

.button17a .button__text {
	transform: translateX(15px);
	color: #fff;
}

.button17a .button__icon {
	position: absolute;
	transform: translateX(153px);
	height: 100%;
	width: 45px;
	background-color: #007bff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button17a:hover {
	background: #007bff;;
}

.button17a:hover .button__text {
	color: transparent;
}

.button17a:hover .button__icon {
	width: 198px;
	transform: translateX(0);
}

.button17a:active .button__icon {
	background-color: #146c54;
}

.button17a:active {
	 border: 1px solid #146c54;
}

@media (max-width: 1920px) {
  h1 {
    font-size: 2.5rem; /* Tamaño para pantallas medianas */
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 2.0rem; /* Tamaño para pantallas medianas */
  }
}

media (max-width: 600px) {
  h1 {
    font-size: 1.5rem; /* Tamaño para pantallas pequeñas */
  }
}

@media (max-width: 450px) {
  h1 {
    font-size: 1rem; /* Tamaño para pantallas pequeñas */
  }
}