<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.woocommerce-checkout #main{
	background: #f2f5f9;
}
#mcshk-cehckout-section {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 30px;
}
.mcshk-cehckout {
	border: 1px solid #ccc;
	padding: 10px 20px;
	border-radius: 4px;
	box-shadow: 0px 0px 9px 0px #ccc6c6;
	height: max-content;
	background: #fff;
}
.mschk-checkout-section{
	display: none;
}
.mschk-checkout-section.active{
	display: block;
}
#mschk-image-upload-form{
	display: none;
}
.mschk_required {
	border: 1px solid #c36;
	box-shadow: 0px 0px 7px #c36;
}
/*progress bar navigation styling*/
.mschk-breadcrumb {
	width: 100%;
	display: inline-block;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	counter-reset: flag;
	margin-bottom: 20px;
}

.mschk-breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	padding: 0 10px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
	width: 20%;
	text-align: center;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.mschk-breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.mschk-breadcrumb a:first-child:before {
	left: 14px;
}
.mschk-breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.mschk-breadcrumb a.active, .mschk-breadcrumb a:hover{
	background: #2760b0;
	background: linear-gradient(#2760b0, #000);
}
.mschk-breadcrumb a.active:after, .mschk-breadcrumb a:hover:after {
	background: #2760b0;
	background: linear-gradient(135deg, #2760b0, #000);
}

/*adding the arrows for the mschk-breadcrumbs using rotated pseudo elements*/
.mschk-breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .mschk-breadcrumb a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.mschk-breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.mschk-breadcrumb a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	color: #2760b0;
}


.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #2760b0;
	color: #fff;
}

/*extra fields design*/
.billing-extra-fields.license-classes label {
	font-size: 16px;
	font-weight: 400;
}
.billing-extra-fields.license-classes .form-row.form-row-first,
.billing-extra-fields.license-classes .form-row.form-row-last {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 10px;
}
#height_field .height-inputs{
	display: flex;
	gap: 10px;
}
#shipping-checkbox {
	border: 1px solid #ccc;
	margin: 25px auto;
	padding: 10px;
	border-radius: 4px;
	font-size: 18px;
}
#shipping-checkbox label{
	margin: 0;
}
#mschk-upload-image img {
	cursor: pointer;
	border: 1px solid #7b9ebc;
	border-radius: 4px;
}
.mschk-image-upload-section {
	display: flex;
	gap: 20px;
}
#mschk-img-separator {
	width: 5px;
	background: #ccc;
	border-radius: 4px;
}
#mschk-passport_size-img {
	width: 501px;
	/*margin: 20px auto;*/
	border-radius: 37px;
}
.mschk-cl-image img {
	height: 210px;
	width: 400px;
}
.mschk-cl-image{
	margin: 20px auto;
}
.mschk-img-upload-notice {
	border: 1px solid #00a629;
	border-radius: 4px;
	padding: 4px;
	text-align: center;
	margin: 10px auto;
	color: #00a629;
	background: #41ff702e;
	display: none;
}
.mschk-img-upload-notice.error {
	border: 1px solid #c36;
	color: #c36;
	background: #f751887a;
}
#mschk-uploading {
	background: #fbf7f78c;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 1000;
	display: none;
}
#mschk-uploading .lds-facebook {
	position: relative;
	width: 80px;
	height: 80px;
	left: 48%;
	top: 32%;
}
#mschk-uploading .lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #1d84ac;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
#mschk-uploading .lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
#mschk-uploading .lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
#mschk-uploading .lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 134px;
  }
  50%, 100% {
    top: 24px;
    height: 72px;
  }
}</pre></body></html>