@import url("https://fonts.googleapis.com/css2?family=Grandstander:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap");
/* CSS RESET */

/***
    The new CSS reset - version 1.4.7 (last updated 27.1.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
	display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
	cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
	list-style: none;
	padding-inline-start: 0px;
}

/* For images to not be able to exceed their container */
img {
	max-width: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	appearance: revert;
}

a {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block-start: 0px;
	margin-block-end: 0px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-family: "Grandstander", cursive, Arial, Helvetica, sans-serif;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
	-webkit-user-drag: element;
}
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
p {
	margin-block: auto;
}

button {
	border: none;
}
body {
	margin: auto;
}

/* fim do reset de css */

:root {
	--branco: #fff;
	--preto: #000;
	--cinza: #747474;
	--cinza-claro: #ebebeb;
	--cinza-escuro: #666666;

	--amarelo-cebrac: #fcd12d;
	--amarelo-arraia: #eed624;
	--amarelo-claro: #ffec59;
	--amarelo-escuro: #7a6c00;
	--azul-cebrac: #002f70;
	--verde-cebrac: #007d47;
	--verde-escuro-arraia: #229f88;
	--verde-destaque: #00ffa2;
	--verde-escuro-arraia: #067922;
	--verde-destaque-arraia: #025f48;
	--cinza-xclaro: #e2e2e2;
	--sombra-leve: rgba(0, 0, 0, 0.4);
}

.container-principal {
	max-width: 1233px;
	margin: auto;
}
.header .topo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 24px;
}

/* Header */

.header {
	top: 0;
	width: 100%;
	padding: 10px 0px;
	background: var(--branco); /* Amarelo */
	overflow-x: hidden;
}

.header_menu ul li {
	display: inline-block;
}

.header_menu ul li a {
	text-decoration: none;
}

.header_menu ul li a:hover {
	text-decoration: none;
}
.btn-1 {
	background: var(--verde-escuro-arraia);
	color: var(--branco);
	border-radius: 45px;
	text-align: center;
	font-weight: bold;
	padding: 16px 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-size: 0.875rem;
	line-height: 20px;
}
.btn-1:hover {
	color: #6e4f02;
	background: var(--amarelo-cebrac);
}

.btn-2 {
	margin-right: 24px;
	color: #0f2766;
	text-align: center;
	font-weight: bold;
}
.btn-2:hover {
	color: #0051ca;
}

.logo {
	max-width: 580px;
	
}
.container-principal .row .logo {
	margin: auto;
	padding-top: 62px;
}
/* modal cadastro */
/* modal msg cadastro */
#modal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.35);
	display: none;
	justify-content: center;
}

#fecharModal {
	background-color: var(--amarelo-cebrac);
	color: var(--preto);
	margin-top: 16px;
	padding: 12px 24px;
	cursor: pointer;
	font-weight: 800;
	border-radius: 12px;
}

.msg-erro {
	color: var(--preto);
	background: var(--branco);
	max-width: 550px;
	padding: 48px;
	font-size: 1.15rem;
	border-radius: 12px;
	margin: auto;
	text-align: center;
	box-shadow: 0 6px 8px -6px var(--sombra-leve);
}
#msgErro {
	font-size: 1.15rem;
}

.img-alert {
	margin: auto;
	width: 100%;
	max-width: 32px;
}
/* /modal cadastro */
/* botao voltar ao topo */

#voltarTopo {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 15px;
	z-index: 9997;
	border: none;
	outline: none;
	background-color: var(--verde-cebrac);
	color: #fff;
	cursor: pointer;
	padding: 15px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
	text-align: center;
}

#voltarTopo:hover {
	background-color: var(--amarelo-cebrac);
	transform: translateY(-5px);
	color: var(--marrom-contraste);

	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

/*  fim do botao voltar ao topo */

#msgInputTelefone {
	display: none;
	padding: 0px 6px;
	color: var(--branco);
	background-color: var(--azul-cebrac);
	font-size: 0.85rem;
	max-width: 166px;
	text-align: center;
	margin-top: -6px;
	border-radius: 8px;
}
/*  bloco roleta */

.bloco-roleta {
	display: flex;
	justify-content: center;
	gap: 0 24px;
	flex-wrap: wrap;
}
.roleta-controle {
	display: flex;
}
.power_controls {
	max-width: 340px;
}

.rodaInativa {
	display: none;
}

.cadastrese a {
	text-decoration: none;
	color: var(--branco);
}

#btnEnviar:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: translate(0, 0);
	color: var(--roxo-comeceagora);
	background: var(--verde-escuro-arraia);
	color: var(--branco);
	box-shadow: none;
}
#btnEnviar {
	display: flex;
	justify-content: center;
	margin: 24px auto;
	padding: 8px 24px;
	border-radius: 250px;
	color: var(--branco);
	background: var(--verde-escuro-arraia);
	font-size: 1.5rem;
	text-transform: uppercase;
	font-weight: 900;
	cursor: pointer;
}

.recuoTopo {
	margin-top: -48px;
}

.bloco-titulo {
	text-align: center;
	justify-content: center;
	display: flex;
}
.baloes {
	margin-bottom: -124px;
	min-width: 44px;
	max-width: 124px;
	animation: float 8s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}
.texto-cta {
	max-width: 780px;
	margin-bottom: 48px;
}
#subir {
	color: var(--branco);
}
.img-fluid {
	max-width: 100%;
	height: auto;
}

.bloco-titulo h1 {
	color: var(--amarelo-arraia);
	font-size: 2.4rem;
	text-transform: uppercase;
	font-weight: bolder;
	margin-top: 48px;
	text-shadow: 1px 1px 0px var(--amarelo-escuro),
		-1px -1px 0px var(--amarelo-claro),
		-2px -0px 0px var(--verde-destaque-arraia),
		2px 0px 0px var(--verde-destaque-arraia),
		0px -2px 0px var(--verde-destaque-arraia),
		0px 2px 0px var(--verde-destaque-arraia),
		-3px 0px 0px var(--verde-destaque-arraia),
		3px 0px 0px var(--verde-destaque-arraia),
		0px -3px 0px var(--verde-destaque-arraia),
		0px 3px 0px var(--verde-destaque-arraia),
		-3px 3px 0px var(--verde-destaque-arraia),
		3px 3px 0px var(--verde-destaque-arraia),
		3px -3px 0px var(--verde-destaque-arraia), 4px 6px 8px rgba(40, 2, 66, 0.8);
}

.bloco-titulo p {
	font-size: 1.3rem;
	font-weight: 600;
	text-shadow: 1px 2px 2px rgba(70, 6, 87, 0.4);
}

.bloco-1 {
	margin-bottom: 48px;
}

.bloco-2 {
	background: #F8AE09;

	background: linear-gradient(0deg,rgba(248, 174, 9, .4) 0%, rgba(248, 213, 68, .4) 100%), url('../../../../img/campanhas/2025/arraia-cebrac/otrembao.png') repeat left top, url('../../../../img/campanhas/2025/arraia-cebrac/bg-serrado.jpg') no-repeat center center;
	
	background-size: cover, auto, cover;
	margin-top: -5px;
}


.bloco-2 h1 {
	color: var(--amarelo-arraia);
	text-transform: uppercase;
	font-size: 2.45rem;
	font-weight: bolder;
	text-shadow: 1px 1px 0px var(--amarelo-escuro),
		-1px -1px 0px var(--amarelo-claro),
		-2px -0px 0px var(--verde-destaque-arraia),
		2px 0px 0px var(--verde-destaque-arraia),
		0px -2px 0px var(--verde-destaque-arraia),
		0px 2px 0px var(--verde-destaque-arraia),
		-3px 0px 0px var(--verde-destaque-arraia),
		3px 0px 0px var(--verde-destaque-arraia),
		0px -3px 0px var(--verde-destaque-arraia),
		0px 3px 0px var(--verde-destaque-arraia),
		-3px 3px 0px var(--verde-destaque-arraia),
		3px 3px 0px var(--verde-destaque-arraia),
		3px -3px 0px var(--verde-destaque-arraia), 4px 6px 8px rgba(2, 66, 45, 0.8);
}
.bloco-2 p {
	font-size: 1.2rem;
}
.conteudoDireita p {
	margin-top: 16px;
}

.form-row label {
	font-size: 0.9rem;
	font-weight: 600;
}

form input,
form select {
	max-width: 100%;
	width: 100%;
	margin: 8px auto;
	padding: 12px;
	border-radius: 6px;
	border: 1px solid var(--cinza-xclaro);
	background: var(--branco);
}
#check-regulamento {
	display: flex;
	justify-content: left;
	font-size: 0.92rem;
	line-height: 1rem;
	letter-spacing: -1px;
	font-weight: 400;
	padding-right: 16px;
	text-align: left;
	margin: 26px 0;
	color: var(--preto);
}

#check-regulamento input[type="checkbox"] {
	position: relative;
	cursor: pointer;
	width: auto;
	height: 100%;
	max-width: 24px;
	margin-right: 24px;
}

#check-regulamento input[type="checkbox"]:before {
	content: "";
	display: block;
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	left: 0;
	border: 2px solid var(--cinza-claro);
	border-radius: 3px;
	background-color: white;
}

#check-regulamento input[type="checkbox"]:checked:after {
	content: "";
	display: block;
	width: 7px;
	height: 18px;
	border: solid black;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 1px;
	left: 9px;
}

.bloco-2 .container-principal .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	gap: 24px;
	padding: 16px 24px 0;
}
.conteudoEsquerda {
	flex: 1;
}

.conteudoDireita {
	background-color: white;
	color: #0f2766;
	border-radius: 15px;
	padding: 24px;
	max-width: 480px;
	height: max-content;
	min-width: 340px;
	margin-top: 48px;
	flex: 1;
}

.conteudoDireita h2 {
	font-size: 1.19rem;
	line-height: 2rem;
	border-radius: 16px;
	font-weight: 600;
	text-align: justify;
	margin-bottom: 24px;
	color: var(--branco);
	background: var(--verde-escuro-arraia);
	padding: 24px;
	box-shadow: 0 3px 12px var(--sombra-leve);
}
.conteudoDireita h2 strong {
	font-weight: 800;
}

.chamada-promo {
	text-shadow: 1px 1px 1px rgba(35, 2, 66, 0.6);
	color: var(--branco);
	max-width: 440px;
	margin: auto;
}
.chamada-promo .texto-so{
	margin-top: -16%;
	max-width: 64px;
	float: right;
	right: -18px;
	position: relative;
	z-index: 2;
}

.chamada-promo p {
	margin-top: 24px;
	line-height: 2rem;
}

.form-row p {
	font-weight: 500;
	font-size: 1rem;
	color: #656565;
	margin-bottom: 16px;
}
.form-row {
	text-align: left;
	font-weight: 600;
}

.btCadastrar {
	padding: 16px 24px;
	border-radius: 35px;
	font-size: 1.2rem;
	text-shadow: 1px 1px 0 #1a008d;
	border: none;
	color: var(--branco) fff;
	margin-left: 16px;
	background: #03339c;
	font-weight: 900;
	box-shadow: inset 0 -20px 0px #0f2980, 2px 6px 8px #dbdbdb;
}

.btCadastrar:hover {
	background: #007a15;
	box-shadow: inset 1px 4px 9px #015e0f;
	text-shadow: 1px 2px 1px #004e00;
}

body {
	background-image: url(../../../../img/campanhas/2025/arraia-cebrac/pattern-bg.jpg);
	background-position: top;
	background-size: contain;
	background-color: var(--verde-escuro-arraia);
}

#conteudo-bg {
	background-image: url(../../../../img/campanhas/2025/arraia-cebrac/bg-logo.png);
	background-repeat: no-repeat;
	text-align: center;
	background-size: contain;
}

.bg-roleta {
	max-width: 100%;
}


#cadastrese h3 {
	font-size: 1.3rem;
	color: var(--amarelo-arraia);
}

.redessociais {
	float: right;
	display: flex;
	margin: auto 0;
}
.redessociais h3 {
	font-size: 0.9rem;
	padding: 0;
	color: var(--branco);
	margin: 0 -24px;
	text-shadow: 1px 2px 2px rgba(2, 66, 21, 0.6);
}
#redesSociais {
	display: flex;
	justify-content: space-between;
	max-width: 420px;
	margin: auto;
}

.sociais {
	margin: 24px;
}

.bg-rodape img {
	margin-bottom: -5px;
}

.banner-spotify {
	display: flex;
	justify-content: space-between;
	background: rgb(0, 125, 38);
	background: linear-gradient(
		0deg,
		rgba(0, 125, 38, 1) 0%,
		rgba(0, 155, 47, 1) 100%
	);
	color: var(--branco);
	padding: 8px;
	gap: 6px;
	border-radius: 15px;
	box-shadow: 3px 3px 6px rgba(4, 66, 2, 0.4);
	margin: auto;
	margin-top: -7px;
	max-width: 650px;
}
.banner-spotify .img-texto {
	display: flex;
	align-items: center;
}
.banner-spotify p {
	margin: auto;
	font-size: clamp(.75rem, 1.4vw, 1.1rem);
	margin: auto 24px;
	text-shadow: 1px 2px 2px #00441a;
}
.banner-spotify .linkSpotify {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.btSpotify {
	margin: 6px 0;

	display: flex;
	align-items: center;
	padding: 8px 20px;
	border-radius: 35px;
	font-size: clamp(.8rem, 1.4vw, 1rem);

	border: none;
	color: var(--branco);
	margin-left: 16px;
	cursor: pointer;
	background: #243ea1;
	font-weight: 700;
	box-shadow: inset 0 -20px 0px #1c307e, 2px 3px 3px #0d5e31;
}
.btSpotify:hover {
	transform: translateY(-2px);
	box-shadow: inset 0 0px 0px #6d2fcf, 3px 5px 5px #0d5e31;
}
.banner-spotify a {
	color: var(--branco);
	text-decoration: none;
}
.playing {
	width: 2rem;
	height: 2rem;
	border-radius: 0.3rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0.5rem;
	box-sizing: border-box;
}

.playing__bar {
	display: inline-block;
	background: white;
	width: 30%;
	height: 100%;
	animation: up-and-down 1.3s ease infinite alternate;
}

.playing__bar1 {
	height: 60%;
}

.playing__bar2 {
	height: 30%;
	animation-delay: -2.2s;
}

.playing__bar3 {
	height: 75%;
	animation-delay: -3.7s;
}

@keyframes up-and-down {
	10% {
		height: 30%;
	}

	30% {
		height: 100%;
	}

	60% {
		height: 50%;
	}

	80% {
		height: 75%;
	}

	100% {
		height: 60%;
	}
}

.personas {
	margin-top: 48px;
}
.spotify-bloco2{
display:none;
}
.spotify-bloco{
	display: block;
}

.icones-redes img {
	max-width: 12%;
	text-shadow: 1px 2px 2px rgba(66, 2, 2, 0.6);
}

/* mensagem premios */
#mensagemPremio h2 {
	font-size: 1.5rem;
	color: var(--azul-cebrac);
}
#mensagemPremio h3 {
	margin-top: auto;
	font-size: 2.25rem;
	color: var(--branco);
	padding-top: 10px;
	border-radius: 8px;
	margin-bottom: 16px;
	background-color: var(--verde-cebrac);
	box-shadow: 0 3px 0 var(--amarelo-arraia);
}
#mensagemPremio p {
	font-size: 1rem;
	color: var(--cinza);
}
#mensagemPremio p span {
	color: var(--azul-cebrac);
	font-weight: 800;
}

/*  footer */
.redesSociais {
	margin: 64px auto;
	text-align: center;
	max-width: 800px;
}

.redeIcon {
	flex: 1 0 4%;
	/* less than 25% but more or equal to 20% to account for margins - when 4 across is required */
	/* min-width on flex items not working in older ios so use media queries instead*/
	margin: auto 4px;
}

a.redeIcon object {
	max-width: 32px;
	pointer-events: none;
	box-shadow: 0px 8px 8px -8px rgba(255, 255, 255, 0.4);
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(55deg)
		brightness(106%) contrast(102%);
}

a.redeIcon:hover object {
	cursor: pointer;
	transform: translateY(-2px);
	filter: invert(81%) sepia(81%) saturate(526%) hue-rotate(333deg)
		brightness(122%) contrast(98%);
}

#titulo-redes {
	margin-top: 0px;
	margin-bottom: 16px;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--branco);
	text-transform: uppercase;
	text-shadow: 1px 3px 4px var(--sombra-leve);
}

.titulo-redes-sociais {
	margin: 48px 0 0;
}

.footer-info {
	margin: 48px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
.footer-info .logo-cebrac {
	background-color: var(--branco);
	border-radius: 12px;
	padding: 8px 16px;
	align-self: center;
	max-width: 200px;
}
.footer-info .encontre-seu-futuro {
	max-width: 300px;
}
.footer-info .chancela {
	max-width: 234px;
	width: 100%;
	filter: invert(100%) brightness(800%);
}
.assinatura-footer {
	margin: auto;
	font-weight: 400;
	text-align: center;
	background-color: var(--azul-cebrac);
	padding: 16px;

	color: var(--branco);
}
.assinatura-footer p{
	font-size: 0.9rem;
}
/* /footer */

@media (max-width: 589px) {
	.header {
		padding: 2px 0;
	}
	.header .topo {
		padding: 0 6px;
	}
	.header_menu ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		gap: 4px;
	}
	.header_menu ul li {
		text-align: center;
	}
	.btn-1 {
		padding: 8px 16px;
		letter-spacing: normal;
		font-size: 0.75rem;
	}
	.btn-2 {
		margin-right: 6px;
		font-size: 0.8rem;
	}
	.logo {
		min-width: 130px;
	}
	.msg-erro {
		max-width: 90%;
		padding: 16px;
	}
	.bloco-2 .container-principal .row {
		padding: 14px;
	}
	.conteudoDireita {
		padding: 14px;
		min-width: 260px;
	}.bloco-2 {
		background-size: cover, contain,cover;
	}
	.conteudoDireita h2 {
		font-size: 1rem;
		line-height: 1.15rem;
	}
	.chamada-promo .texto-so{
		max-width: 48px;
		right: -14px;
	}
}
@media (max-width: 559px) {
	.bg-roleta {
		max-width: 105%;
	}
	#mensagemPremio h3 {
		padding: 8px 8px 0;
		font-size: 1.6rem;
	}
	.texto-cta {
		max-width: 85%;
	}
	.power_controls {
		max-width: 90%;
	}
	table.power th {
		font-size: 1.1rem;
	}
	.bloco-titulo p {
		font-size: 1.1rem;
	}
	.bloco-titulo h1,
	.bloco-2 h1 {
		font-size: 2rem;
	}
	.chamada-promo p {
		font-size: 1.25rem;
	}
	.divisor-bandeirinhas {
		margin: auto;
	}
	#btnEnviar {
		font-size: 1rem;
	}
}
@media (max-width: 400px) {
	.bg-roleta {
		max-width: 104.6%;
	}
	.baloes {
		min-width: none;
		position: absolute;
		z-index: -1;
		max-width: 100px;
		opacity: 0.8;
	}
	.balao2 {
		right: 0;
	}
	.mtop {
		font-size: 1.2rem !important;
	}
	.banner-spotify {
		flex-wrap: wrap;
	}
	.btSpotify {
		margin: auto;
	}
}

/* ========================================= */
/* FLOATING BALLOONS WITH PARALLAX EFFECT   */
/* ========================================= */

.balloon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.balloon {
    position: absolute;
    width: 70px;
    height: auto;
    opacity: 0.9;
    animation: float 8s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

.balloon-left {
   left: -.5%;
    top: 12%;
    animation-delay: 0s;
}

.balloon-right {
    right: -.5%;
    top: 80%;
    transform: scaleX(-1); /* Flip horizontally */
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(2deg);
    }
    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}



/* Enhanced floating for right balloon (flipped) */
.balloon-right {
    animation: floatRight 8s ease-in-out infinite 4s;
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scaleX(-1);
    }
    25% {
        transform: translateY(-20px) rotate(-2deg) scaleX(-1);
    }
    50% {
        transform: translateY(-30px) rotate(1deg) scaleX(-1);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg) scaleX(-1);
    }
}

/* Responsive adjustments for balloons */
@media (max-width: 768px) {
    .balloon {
        display: none;
    }
    
    .balloon-left {
        left: 2%;
        top: 10%;
    }
    
    .balloon-right {
        right: 2%;
        top: 20%;
    }
	.spotify-bloco2{
		display: block;
		
	}.bloco-2 .container-principal .row{
		flex-direction: column;
		align-items: center;
		padding: 48px 48px 0;
	}
	.spotify-bloco{
		display: none;
	}
}

@media (max-width: 400px) {
    .balloon {
        width: 60px;
        opacity: 0.3;
    }
    
    .balloon-left {
        left: 1%;
        top: 8%;
    }.bloco-2 .container-principal .row{

		padding: 48px 24px 0;
	}
    
    .balloon-right {
        right: 1%;
        top: 15%;
    }
}
