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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*,
*::after,
*::before {
	box-sizing: inherit;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 1.2;
	width: 100%;
	min-height: 100vh;
	color: #fff;
	position: relative;
	background-image: url(./image/bg.jpg);
	background-size: cover;
	box-sizing: border-box;
}

.fill {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #1879ca;
	opacity: 0.66;
}

.container {
	max-width: 1200px;
	width: 100%;
	height: 650px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
}

.form {
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 25px;
	padding: 30px;
	color: #111;
}

.form1 {
	flex-basis: 650px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-right: 50px;
}

.form2 {
	flex-grow: 1;
	flex-shrink: 1;
}

.form .form__item {
	margin-bottom: 40px;
}

.form .heading {
	margin-bottom: 30px;
	font-size: 18px;
	color: #111;
}

.switcher {
	display: flex;
}

.switcher__item input {
	display: none;
}

.switcher__item label {
	display: inline-block;
	padding: 20px 30px;
	font-size: 18px;
	color: #111;
	border: 2px solid #f5ba10;
	cursor: pointer;
}

.switcher__item label:hover {
	background-color: rgba(245, 186, 16, 0.15);
}

.switcher__item label:not(:first-child) {
	margin-left: -2px;
}

.switcher__item input:checked + label {
	background-color: #f5ba10;
	color: #fff;
}

#time {
	-webkit-appearance: none;
	width: 500px;
	height: 10px;
	background-color: #eee;
	border-radius: 20px;
	outline: none;
}

#volume {
	font-size: 48px;
	margin-left: 30px;
	color: #282b31;
}

.slider {
	display: flex;
	align-items: center;
}

#time::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 25px;
	height: 25px;
	background-color: #068323;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.option__item {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.option__item input {
	display: none;
}

.option__item .checkmark {
	display: block;
	width: 30px;
	height: 30px;
	background-color: #eee;
	margin-right: 15px;
	cursor: pointer;
	position: relative;
}

.option__item .checkmark::after {
	display: none;
	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #0c76ee;
}

.option__item input:checked + .checkmark::after {
	display: block;
}

.form2 .order {
	margin-bottom: 15px;
}

.form2 .order output {
	margin-left: 10px;
	font-size: 18px;
}

.form2 .total {
	font-size: 40px;
	font-weight: 400;
	color: #282b31;
	position: relative;
}

.form2 .total::after {
	content: "\20BD";
	margin-left: 10px;
}