@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url("img.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	color: #333;
}

.wrapper {
	position: fixed;

	height: 80%;
	max-width: 800px;
	width: 90%;
	max-width: 800px;
	overflow: auto;

	background: rgba(223, 245, 255, 0.8);
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(50px);
	border-radius: 10px;
	color: #333;
	padding: 40px 35px 55px;
	margin: auto;
}

.wrapper h1 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 20px;
}
.wrapper .input-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.input-box .input-field {
	position: relative;
	width: 48%;
	height: 50px;
	margin: 13px 0;
}
.input-box .input-field input {
	width: 100%;
	height: 100%;
	background: transparent;
	border: 2px solid rgba(19, 12, 215, 0.2);
	outline: none;
	font-size: 16px;
	color: #333;
	border-radius: 6px;
	padding: 15px 15px 15px 40px;
}

.input-box .input-field input::placeholder {
	color: #333;
}

@media screen and (min-width: 550px) {
	h2 {
		font-size: 25px;
	}
}
@media screen and (max-width: 549px) {
	h2 {
		font-size: 16px;
	}
}

.input-box .input-field i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
}

.wrapper label {
	font-size: 10px;
	margin-left: 20px;
}

.wrapper label input {
	accent-color: #333;
	margin-right: 5px;
}

.wrapper .btn {
	width: 100%;
	height: 45px;
	background: #fff;
	border: none;
	outline: none;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

@media (max-width: 576px) {
	.input-box .input-field {
		width: 100%;
		margin: 5px 0px 30px 0px;
	}
}

.input-box .input-field select {
	width: 100%;
	height: 100%;
	background: transparent;
	border: 2px solid rgba(19, 12, 215, 0.2);
	outline: none;
	font-size: 16px;
	color: #333;
	border-radius: 6px;
	padding: 12px 15px 12px 15px;
}

.input-box .radio-field input[type="radio"] {
	width: auto;
	height: auto;
	padding: 0;
	margin: 0 10px 0 0;
}

.input-box .radio-field label {
	margin-left: 0px;
	display: inline;
	font-size: 16px;
	color: #333;
}
.required {
	color: red;
}

details {
	cursor: pointer;
}

summary::-webkit-details-marker {
	display: none;
}

#accordian_arrow {
	margin-right: 5px;
}

details > summary {
	list-style: none;
}

.payments {
	width: 50%;
	margin: auto;
}

.children {
	display: none;
	border: 2px solid rgba(15, 46, 160, 0.806);
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 20px;
}

.info {
	border: 2px solid rgba(160, 15, 15, 0.806);
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 20px;
}

.payment-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0px 10px 0px;
}

.payment-table th {
	border: 2px solid rgba(19, 12, 215, 0.2);
	padding: 10px;
	text-align: center;
	background-color: #f2f2f2;
}

.payment-table td {
	border: 2px solid rgba(19, 12, 215, 0.2);
	padding: 10px;
	text-align: left;
}

.payment-table td:first-child {
	width: 75%;
}

.payment-table td:last-child {
	width: 25%;
	text-align: right;
}

.payment-table tr:nth-child(even):not(.total-row) {
	background-color: rgb(223, 245, 255);
}

.payment-table tr:nth-child(odd) {
	background-color: rgb(169, 226, 252);
}

.payment-table .total-row {
	background-color: rgb(255, 99, 71) !important;
	color: white;
	font-weight: bold;
}

.untouchable {
	pointer-events: none;
	border: 2px solid grey;
	color: grey;
}

.payment-message-bad {
	text-align: center;
	margin: 20px 0;
	color: red;
}

.payment-message-good {
	text-align: center;
	margin: 20px 0;
	color: green;
}

.payment-table-container {
	overflow-x: scroll;
}

#costTable {
    display: none;
}