*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

:root {
	--dark-blue: #262e38;
	--light-grey: #969fad;
	--orange: #fc7614;
	--white: #fff;
	--very-dark-blue: #131518;
	--black-gradient-start: #232a34;
	--black-gradient-end: #181e27;
	--radial: radial-gradient(
		circle at top,
		var(--black-gradient-start) 0%,
		var(--black-gradient-end) 100%
	);
}

body {
	font-family: 'Overpass';
}

main {
	background-color: var(--very-dark-blue);
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

main > section {
	max-width: 412px;
	max-height: 416px;
	width: 100%;
	height: 100%;
	min-height: 360px;
	min-width: 327px;
	border-radius: 30px;
	background-image: var(--radial);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	margin: 24px;
	padding: 32px;
}

.rating {
}

.rating .rating__estrella {
	max-height: 48px;
	height: 100%;
	max-width: 48px;
	width: 100%;
	min-height: 40px;
	min-width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: var(--radial);
	border-radius: 50%;
	margin-bottom: 30px;
}

.rating h1 {
	font-weight: bold;
	font-size: 28px;
	margin-bottom: 15px;
}

.rating p {
	font-size: 15px;
	line-height: 24px;
	color: var(--light-grey);
	margin-bottom: 24px;
}

.rating .rating__buttons {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.rating .rating__buttons button {
	height: 51px;
	width: 51px;
	border-radius: 50%;
	border: none;
	font-weight: bold;
	line-height: 51px;
	letter-spacing: 0.2px;
	margin-bottom: 32px;
}

.rating .rating__buttons .normal {
	color: var(--light-grey);
	background-image: var(--radial);
}

.rating .rating__buttons .seleccionado {
	background-color: white;
	background-image: 'none';
}

.rating .rating__buttons .normal:hover {
	background-color: var(--orange);
	color: var(--very-dark-blue);
	background-image: none;
}

.rating .rating__buttons button:active {
	background-color: var(--white);
	color: var(--very-dark-blue);
	background-image: none;
}

.rating > button {
	width: 100%;
	height: 45px;
	border-radius: 30px;
	border: none;
	background-color: var(--orange);
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 2px;
	font-weight: bold;
	color: var(--very-dark-blue);
	line-height: 45px;
}

.rating > button:hover {
	background-color: var(--white);
	color: var(--very-dark-blue);
	background-image: none;
}

.thank {
	text-align: center;
	padding: 45px 40px 45px 32px;
	display: none;
}

.thank img {
	margin: auto;
	margin-bottom: 32px;
}

.thank p:nth-of-type(1) {
	background-color: var(--dark-blue);
	color: var(--orange);
	width: fit-content;
	margin: auto;
	padding: 0.4rem 1.5rem;
	border-radius: 30px;
	margin-bottom: 32px;
}

.thank h2 {
	font-size: 28px;
	margin-bottom: 15px;
}

.thank p:last-child {
	font-size: 15px;
	line-height: 24px;
	color: var(--light-grey);
}
