.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.container::before, .row::before, .row::after {
	display: table;
	content: " ";
}
.container::after, .row::after {
	clear: both;
}

.row {
	margin-right: -15px;
    	margin-left: -15px;
}
.row:before,.row:after, {
	display: table;
  	content: " ";
}
.row:after {
	clear: both;
}
.col2, .col4, .col6, .col8, .col12 {
	float: left;
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}
.col2 {
	width: 12.5%;
}
.col4 {
	width: 25%;
}
.col6 {
	width: 50%;
}
.col8 {
	width: 75%;
}
.col12 {
	width: 100%;
}


.heading {
	text-align:left;
	margin:10px auto 5px;
	padding:0px;
	color:#052D5A;
	font-size:20px;
	font-weight:400;
	font-family: "Segoe UI",Arial,Helvetica,sans-serif;
	//border-bottom: 1px solid #ccc;
}
.divider { 
	margin:5px 0px 15px 0px;
	border-bottom:1px solid #ddd;
}

.paymentcontainer {
	overflow:hidden;
	width:90%;
	margin: 0px auto;
	//border:1px solid #ddd;
	//box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.panel {
	overflow:hidden;
	width:100%;
	background:#fff;
	margin: 0px auto;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border:1px solid #ddd;
	box-shadow: 5px 0px 5px -5px rgba(0, 0, 0, 0.2), 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
}
.panel-header {
	overflow:hidden;
	width:100%;
	text-align:left;
	padding: 10px;
	font-family: "Segoe UI",Arial,Helvetica,sans-serif;
	font-size:26px;
	font-weight:300;
	color: #052D5A;
	background:#f0f0f0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	//border-bottom:1px solid #1B7A9F;
}
.panel-body {
	overflow:hidden;
	margin: 5px auto;
	padding: 5px 15px;
	//border-top: 1px solid #333;

}
.panel-footer {
	overflow:hidden;
	width:100%;
	padding:15px 40px;
	background: #fff;
	color: #1B7A9F;
}


.paynav  {
	overflow:hidden;
	margin-bottom:20px;
	background:#fff;
	border-bottom:1px solid #f0f0f0;
	//box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}
.paynav > ul{
	margin: 0;
    	padding: 0;
}
.paynav ul > li {
	cursor:pointer;
	width:50%;
	float:left;
	text-align:center;
	list-style:none;	
	padding:25px 5px 10px 5px;
	color:#1B7A9F;
	border-bottom: 2px solid transparent;
}

.paynav > ul > li:hover {
	background:#f8f8f8;
}
.paynav-active {
	border-bottom:2px solid #BE202E !important;
	color:rgba(190,32,46,1.0) !important;
}

.underline-from-center {
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: hidden;
	
	&:before {
		
		
	}
	
}


/********************************************** Checkbox,RadioButton Styles **********************************************/

 /* Customize the label (checkbox,radio container) */
.cntrl-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 5px;
	cursor: pointer;
	padding-top:5px;
	user-select: none;
	-webkit-user-select: none;
    	-moz-user-select: none;
    	-ms-user-select: none;
}

/* Hide the browser's default control */
.cntrl-container input {
	position: absolute;
	opacity: 0;
}

/* Create a custom control */
.chkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: #fff;
	border:1px solid #1B7A9F;
}
.rdomark {
	position: absolute;
	top: 0;
	left: 0;
	height: 19px;
  	width: 19px;
	background-color: #fff;
	border:1px solid #1B7A9F;
	border-radius: 50%;
}


/* On mouse-over, add a grey background color */
.cntrl-container:hover input ~ .chkmark, .cntrl-container:hover input ~ .rdomark {
	background-color: #fafafa;
}

/* When the checkbox is checked, add a blue background */
.cntrl-container input:checked ~ .chkmark {
	background-color: #2196F3;
	border:none;
}
/* When the radio button is checked, add a blue background */
.cntrl-container input:checked ~ .rdomark {
	background-color: #fff;
	border:1px solid #1B7A9F;
}

/* Create the checkmark/indicator (dot/circle - hidden when not checked) */
.chkmark:after, .rdomark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.cntrl-container input:checked ~ .chkmark:after, .cntrl-container input:checked ~ .rdomark:after {
	display: block;
}

/* Style the checkmark/indicator */
.cntrl-container .chkmark:after {
	left: 9px;
	top: 2px;
	width: 5px;
	height: 13px;
	border:1px solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
} 

/* Style the indicator (dot/circle) */
.cntrl-container .rdomark:after {
 	left: 4px;
  	top: 4px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #1B7A9F;
}

/************************ Checkbox as rounded *************************/



/* Customize the label (the container) */
.cntrl-circle {
	width:95px;
	height:95px;
	border-radius:50%;
	border:1px solid #ddd;
	margin: 5px 20px;
	padding: 33px 0px;
	font-size:16px;
	font-weight:100;
	text-align:center;
}

/* Create a custom checkbox */
.circelmark {
	box-sizing: border-box;
	position: absolute;
	left: 0%;
	top: 0%;
	display: block;
	cursor: pointer;
	float:left;
}

/* On mouse-over, add a grey background color */
.cntrl-circle:hover input ~ .circelmark {
	width:95px;
	height:95px;
	border-radius:50%;
	
	border:1px solid #1B7A9F;
}

/* When the checkbox is checked, add a blue background */
.cntrl-circle input:checked ~ .circelmark {
	width:95px;
	height:95px;
	border-radius:50%;
	border:2px solid #152245;
	background:rgba(21,34,69,0.1);
}