<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal-open{
	padding: 4px 4px;
	background: #f45b09;
	color: white;
	border-radius:4px;
	outline:none;
	border: none;
}

.modal{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5); 
	z-index: 2;
	display: none;
	}

.modal-content{
	background: #fff;
	margin-top: 100px;
	width: 95%;
	max-width:500px;
	margin-left: auto;
	margin-right: auto;
	padding: 8px 24px;
	border-radius: 4px;
	z-index: 4;
	}
.modal-header{
	font-weight: 500;
	padding: 10px 0;
	font-size: 26px;
	
	}	
.modal-header .modal-close{
	float:right;
	font-size:20px;
	background:#efefef;
	border:0;
	outline: 0;
	padding: 5px 8px;
	border-radius: 50%;
}

.modal-body{
	color: #7b7b7b;
	padding: 15px 0;
}

.modal-footer{
	padding: 15px 0;
}

.modal-footer .modal-close{
	padding: 8px 16px;
	font-size: 14px;
	border: none;
	outline:none;
	border-radius: 4px;
	color: #1a73e8;
}

.table{
	width: 100%;
	border-collapse: collapse;
}

.table td,.table th{
  padding:12px 15px;
  border:1px solid #ddd;
  text-align: center;
  font-size:16px;
}

.table th{
	background-color: darkblue;
	color:#ffffff;
}

.table tbody tr:nth-child(even){
	background-color: #f5f5f5;
}

/*responsive*/

@media(max-width: 500px){
	.table thead{
		display: none;
	}

	.table, .table tbody, .table tr, .table td{
		display: block;
		width: 100%;
	}
	.table tr{
		margin-bottom:15px;
	}
	.table td{
		text-align: right;
		padding-left: 50%;
		text-align: right;
		position: relative;
	}
	.table td::before{
		content: attr(data-label);
		position: absolute;
		left:0;
		width: 50%;
		padding-left:15px;
		font-size:15px;
		font-weight: bold;
		text-align: left;
	}
}

				</pre></body></html>