/* CSS Document */
body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	background-position: top;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #000;
	margin: 0;
	padding: 0;
}

.marginTop5 {
	margin-top: 5px;
}

form {
	margin: 0 0 0 0px;
	padding: 0 0 0 0px;
}

input.hpInput {
	border: none;
	height: 1px;
	padding: 0;
	pointer-events: none;
	width: 1px;
}

input:focus,
select:focus,
textarea:focus {
	outline: 1px solid #6ebd43;
}

input.feeForm {
	border: 2px solid #71041d;
}
.specialHazard {
	color: #fff;
	background-color: #71041d;
}

.quoteTR1 {
	padding: 2px;
	background-color: #e5e5e5;
}

.quoteTR2 {
	padding: 2px;
	background-color: #ffffff;
}

div#cover {
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	width: 100%;
	height: 100% !important;
	background-color: #000000;
	z-index: 15;
	text-align: center;
}

.pad {
	padding: 3px;
}

.fontSmall {
	font-size: 13px;
}

.pad.fontSmall {
	padding: 5px 3px;
}

.flexColumn {
	display: flex;
	flex-direction: column;
}

.hidden {
	display: none;
}

.verticalBuffer {
	height: 0;
	padding: 6px 0;
}

.full_width {
	width: 100%;
}

.w_75 {
	width: 75%;
}

.margin_2 {
	margin: 2px !important;
}

textarea.resize_vertical {
	resize: vertical;
}

div.new-user-message {
	display: grid;
	width: 100%;
	justify-items: center;
	align-items: center;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: auto auto;
	grid-template-areas:
		"header"
		"description";
}
div.new-user-message h1.header {
	margin-top: 35px;
	text-align: center;
}
div.new-user-message div.description p:first-child {
	margin-top: 10px;
}
div.new-user-message div.description p:last-child {
	margin-bottom: 20px;
}

body.hideDatepicker .datepicker {
	opacity: 0 !important;
}

ol.noListStyle,
ul.noListStyle {
	list-style: none;
}

.highRiskListItem {
	display: grid;
	font-size: 11px;
	grid-template-columns: 1fr;
	white-space: nowrap;
}
/*****************************************************/
/*                 Tab Navigation                    */
/*****************************************************/
ul#tabs {
	position: relative;
	margin: 20px 0 0 40px;
	padding: 0;
	list-style: none;
}
ul#tabs li {
	float: left;
	margin: 0 0 0 8px;
	padding: 0;
	width: 99px;
	height: 28px;
	line-height: 27px;
	color: #8385ab;
	text-align: center;
	font-size: 12px;
	background: url(../images/tab-inactive.png) no-repeat;
	cursor: pointer;
}
ul#tabs li.active {
	margin-bottom: -2px;
	height: 31px;
	line-height: 31px;
	color: #1d1f45;
	font-weight: bold;
	background: url(../images/tab-active.png) no-repeat;
}
ul#tabs li:hover {
	color: #25561d;
}

/*****************************************************/
/*                  Progress Bar                     */
/*****************************************************/

/* div.progressbar
{
	border-radius: 5px 5px 0 0;
	color: 		   #999;
	font-size: 	   24px;
	height:   	   100px;

	margin:   	   20px 0 0 0;
	position: 	   relative;
	width:    	   100%;

	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;
} */

div.progressbar {
	border-radius: 5px 5px 0 0;
	color: #999;
	font-size: 24px;
	height: 100px;

	grid-area: progressbar;
	width: 100%;

	display: grid;
	justify-items: center;
	align-items: center;
	grid-template-columns: repeat(14, 1fr);
	grid-template-rows: auto auto;
	grid-template-areas:
		"title"
		"progressbar-completion"
		"stepcircle";
}

/* div.progressbar .title
{
	padding-top: 5px;
} */

div.progressbar .title {
	grid-area: title;
	grid-column: 1 / 15;
	padding-bottom: 7px;
}

div.whitespace {
	height: 20px;
	background-color: #ffffff;
	width: 100%;
}

div.progressbar div.progressbar-completion {
	grid-area: progressbar-completion;
	grid-column: 1 / 15;
	grid-row: 2 / 2;

	height: 6px;
	width: 100%;
	background-color: #999;

	display: grid;
	justify-items: center;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto;
	width: 100%;

	position: relative;
	overflow: hidden;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-1.hide-left-half:before {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: 0;
	height: 100%; /* Set height to cover the full height */
	background-color: #f2f2f2; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-1.done-right:after {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 1);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-1.done-right:after {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-2.done-left:before {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 2);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-2.done-left:before {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-2.done-right:after {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 3);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-2.done-right:after {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-3.done-left:before {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 4);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-3.done-left:before {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-3.done-right:after {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 5);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-3.done-right:after {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-4.done-left:before {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 6);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-4.done-left:before {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-4.done-right:after {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 7);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-4.done-right:after {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-5.done-left:before {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 8);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-5.done-left:before {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-5.done-right:after {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 9);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-5.done-right:after {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-6.done-left:before {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	left: calc((100% / 12) * 10);
	height: 100%; /* Set height to cover the full height */
	background-color: #569833; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}
div.progressbar
	div.progressbar-completion.broker
	div.bar-completion.bar-6.done-left:before {
	background-color: #71041d;
}
div.progressbar
	div.progressbar-completion
	div.bar-completion.bar-6.hide-right-half:after {
	content: ""; /* Add an empty pseudo-element */
	position: absolute; /* Set position to absolute */
	top: 0; /* Align at the top */
	width: calc(100% / 12);
	right: 0;
	height: 100%; /* Set height to cover the full height */
	background-color: #f2f2f2; /* Set background color to match the container's background */
	z-index: 1; /* Ensure the pseudo-element is below grid items */
}

div.progressbar div.stepcircle {
	grid-area: stepcircle;
	grid-column: 1 / 15;
	grid-row: 2 / 2;

	height: 6px;

	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto;
	width: 100%;
	justify-items: center;
	color: #fff;
	font-size: 28px;
	text-align: center;
	z-index: 2;
}
div.progressbar div.stepcircle div.circle-container div.circle {
	background-color: #999;
	border-radius: 50%;
	color: #fff;
	content: "";
	font-size: 20px;
	font-weight: normal;
	height: 28px;
	line-height: 28px;
	margin-top: -10px;
	text-decoration: none;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 28px;
	z-index: 2;
}
div.progressbar div.stepcircle div.circle-container.current div.circle {
	background-color: #569833;
}
div.progressbar div.stepcircle.broker div.circle-container.current div.circle {
	background-color: #71041d;
}
div.progressbar div.stepcircle div.circle-container div.circle:hover {
	cursor: default;
}
div.progressbar div.stepcircle div.circle-container.current div.circle:hover {
	transform: scale(1.5);
	cursor: pointer;
}
div.progressbar div.stepcircle div.circle-container.current a {
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	text-decoration: none;
}

div.progressbar-spacer {
	display: none;
	height: 64px;
	margin: 10px 0;
	width: 100%;
}

div.progressbar ul.progressbar-positions,
div.progressbar ul.progressbar-track {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%;
}

div.quoteProcess {
	grid-area: quoteProcess;
	display: grid;
	grid-template-columns: repeat(14, 1fr);
	grid-template-rows: auto;
	grid-template-areas: "quoteProcessContainer";
	padding-bottom: 15px;
	width: 100%;
}

div.quoteProcess div.quoteProcessContainer {
	grid-area: quoteProcessContainer;
	grid-column: 2 / 14;
}

html.responsive div.tabContainer div.progressbar ul {
	padding: 0;
}

div.progressbar ul.progressbar-positions li,
div.progressbar ul.progressbar-track li {
	float: left;
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

div.progressbar ul.progressbar-positions li {
	color: #fff;
	font-size: 28px;
	/*line-height:   73px;*/
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;

	/*-webkit-transition: color 0.25s;
		 -moz-transition: color 0.25s;
					transition: color 0.25s;*/
}

div.progressbar ul.progressbar-positions li:after {
	background-color: #569833;
	border-radius: 0px;
	bottom: 33px;
	content: "";
	height: 0px;
	left: 50%;
	margin: 0 0px;
	overflow: hidden;
	position: absolute;
	width: 0px;

	-webkit-transition: width 0.25s, height 0.25s, border-radius 0.25s,
		bottom 0.25s, margin 0.25s;
	-moz-transition: width 0.25s, height 0.25s, border-radius 0.25s, bottom 0.25s,
		margin 0.25s;
	transition: width 0.25s, height 0.25s, border-radius 0.25s, bottom 0.25s,
		margin 0.25s;
}

div.progressbar.broker ul.progressbar-positions li:after {
	background-color: #71041d;
}

div.progressbar ul.progressbar-positions li.done:after {
	border-radius: 14px;
	bottom: 31px;
	height: 29px;
	margin: 0 -14px;
	width: 29px;
	z-index: 1;
}

div.progressbar ul.progressbar-positions li.done:hover:after {
	border-radius: 19px;
	bottom: 36px;
	height: 39px;
	margin: 0 -19px;
	width: 39px;
}

div.progressbar ul.progressbar-positions li a,
div.progressbar ul.progressbar-positions li span {
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	line-height: 73px;
	padding: 0 8px;
	position: relative;
	top: -9px;
	text-decoration: none;
	z-index: 2;

	-webkit-transition: font-size 0.25s, line-height 0.25s, top 0.25s;
	-moz-transition: font-size 0.25s, line-height 0.25s, top 0.25s;
	transition: font-size 0.25s, line-height 0.25s, top 0.25s;
}

div.progressbar ul.progressbar-positions li.done:hover a {
	font-size: 30px;
	line-height: 83px;
	top: -16px;
}

div.progressbar.android ul.progressbar-positions li span {
	top: -7px;
}
div.progressbar.ios ul.progressbar-positions li span {
	top: -11px;
}

@-moz-document url-prefix() {
	div.progressbar ul.progressbar-positions li.done:after {
		bottom: 33px;
	}

	div.progressbar ul.progressbar-positions li a {
		top: -12px;
	}
	div.progressbar ul.progressbar-positions li span {
		top: -9px;
	}

	div.progressbar ul.progressbar-positions li:hover a {
		top: -16px;
	}

	div.progressbar.android ul.progressbar-positions li span {
		top: -10px;
	}
}

div.progressbar ul.progressbar-positions li span {
	cursor: default;
}

div.progressbar ul.progressbar-positions li a:after,
div.progressbar ul.progressbar-positions li span:after {
	border-radius: 14px;
	bottom: 28px;
	content: "";
	display: block;
	height: 28px;
	left: 50%;
	margin: 0px -14px;
	position: absolute;
	width: 28px;
	z-index: 1;
}

div.progressbar ul.progressbar-positions li br {
	display: none;
}

div.progressbar ul.progressbar-positions li span.progressbar-position-text {
	padding: 2% 6%;
	background-color: transparent;

	-webkit-transition: background-color 0.25s;
	-o-transition: background-color 0.25s;
	transition: background-color 0.25s;
}

div.progressbar ul.progressbar-track {
	background-color: #999;
	bottom: 35px;
	height: 6px;
	left: 0px;
}

div.progressbar ul.progressbar-track li:after {
	background-color: #999;
	border-radius: 14px;
	content: "";
	height: 28px;
	left: 50%;
	margin: 0 -14px;
	position: absolute;
	top: -11px;
	width: 28px;
	z-index: 2;
}

div.progressbar ul.progressbar-track li.done:after {
	width: 0;
}

div.progressbar div.progressbar-progress {
	background-color: #569833;
	border-radius: 3px;
	bottom: 35px;
	height: 6px;
	left: 0px;
	overflow: hidden;
	position: absolute;

	-webkit-transition: width 1s linear;
	-moz-transition: width 1s linear;
	transition: width 1s linear;
}

div.progressbar.broker div.progressbar-progress {
	background-color: #71041d;
}

div.progressbar div.progressbar-progress.done {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

div.progressbar ul.progressbar-track:before,
div.progressbar ul.progressbar-track:after,
div.progressbar div.progressbar-progress:before,
div.progressbar div.progressbar-progress:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;

	width: 8.33%;
	width: -webkit-calc(100% / 12 - 10px);
	width: -moz-calc(100% / 12 - 10px);
	width: calc(100% / 12 - 10px);
}

div.progressbar ul.progressbar-track:before,
div.progressbar div.progressbar-progress:before {
	left: 0px;
}
div.progressbar ul.progressbar-track:after,
div.progressbar div.progressbar-progress:after {
	right: 0px;
}

div.progressbar div.progressbar-progress:after {
	display: none;
}

div.progressbar.complete div.progressbar-progress:after {
	display: block;
}

div.progressbar,
div.progressbar ul.progressbar-track:before,
div.progressbar ul.progressbar-track:after,
div.progressbar div.progressbar-progress:before,
div.progressbar div.progressbar-progress:after {
	background-color: #f2f2f2;
}

/* Edge fix */
@supports (-ms-ime-align: auto) {
	div.progressbar ul.progressbar-positions li.span_1_6,
	div.progressbar ul.progressbar-track li.span_1_6 {
		width: 16.66%;
	}
}

/*****************************************************/
/*               Containing Panel                    */
/*****************************************************/
/* .panel {
	background-color: #e5e5e5;
	padding: 		  16px 12px;
} */
.panel {
	background-color: #e5e5e5;

	display: grid;
	justify-items: center;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: auto auto auto;
	grid-template-areas:
		"whitespace"
		"progressbar"
		"quoteProcess";
}

/*.panel-top {
	margin-top: 0;
	padding:0;
	width: 750px;
	height: 6px;
	background: url(../images/main-top.png) bottom left no-repeat;
}

.panel-bottom {
	margin: 0;
	padding: 0;
	width: 750px;
	height: 6px;
	background: url(../images/main-bottom.png) bottom left no-repeat;
}
.panel-content {
	padding: 12px 16px 12px 16px;
	width: auto;
}*/
/*****************************************************/
/*               Admin Styles                        */
/*****************************************************/
.gold {
	/*background-color:#8e7915;*/
	background-color: #226587;
}

.goldBorder {
	background-color: #6ebd43;
	border-right: 1px solid #e5e5e5;
}

.burgundy {
	background-color: #71041d;
}

.adminHead {
	color: #000000;
	font-size: 11px;
	font-weight: bold;
	margin: 0px;
	padding: 2px 2px 2px 2px;
}
.ltGrey {
	background-color: #c5c5c5;
}
.ltGrey2 {
	background-color: #e5e5e5;
}
.formL {
	font-size: 11px;
	font-weight: bold;
	padding: 2px 2px 2px 2px;
}

.formR {
	font-size: 11px;
	padding: 2px 2px 2px 2px;
}

td > textarea.full_width {
	box-sizing: border-box;
	resize: vertical;
}

.border {
	/*border:1px solid #8e7915;*/
	border: 1px solid #226587;
}

.padBorder {
	padding: 3px;
	border-right: 1px solid #e5e5e5;
}

.contentPad {
	padding: 20px 0;
}

.contentPadTop {
	padding: 20px 0 0 0;
}

.contentPadHome {
	padding: 270px 0 85px 0;
}

.padL {
	padding: 3px 3px 3px 8px;
	font-size: 11px;
}

.padLBorder {
	padding: 3px 3px 3px 8px;
	border-right: 1px solid #c5c5c5;
	font-size: 11px;
}

.desc-limit {
	max-width: 300px;
	word-wrap: break-word;
	text-wrap: wrap;
}

.desc-header-limit {
	min-width: 300px;
	word-wrap: break-word;
	text-wrap: wrap;
}

.title-limit {
	max-width: 300px;
	word-wrap: break-word;
	text-wrap: wrap;
}

.title-header-limit {
	min-width: 300px;
	word-wrap: break-word;
	text-wrap: wrap;
}

.padGrey {
	padding: 3px;
	color: #666666;
	background-color: #e5e5e5;
}

.tall_text_area {
	height: 130px;
}

#clientSearch table,
#brokerSearch table {
	border-spacing: 0;
}

#clientSearch .search,
#brokerSearch .search {
	width: 500px;
	margin-bottom: 30px;
	border: solid 1px #b1b1aa;
	text-align: center;
}

#clientSearch .search tr:first-child td,
#brokerSearch .search tr:first-child td {
	color: #fff;
}

#clientSearch .search tr:last-child td,
#brokerSearch .search tr:last-child td {
	padding: 20px;
}

#clientSearch .search label,
#brokerSearch .search label {
	font-weight: bold;
}

#clientSearch .search span,
#brokerSearch .search span {
	font-style: italic;
}

#clientSearch .letter,
#brokerSearch .letter {
	width: 800px;
	margin-top: 20px;
	margin-bottom: 30px;
	border: solid 1px #226587;
}

#clientSearch .letter tr:last-child,
#brokerSearch .letter tr:last-child {
	text-align: center;
}

#clientSearch .letter tr:last-child td a,
#brokerSearch .letter tr:last-child td a {
	color: #000;
	cursor: pointer;
}

.admin_notes_cell {
	width: max-content;
	max-width: 300px;
	max-height: 300px;
	overflow: auto;
}

#MemberBoxTable td {
	width: 175px;
	font-size: 12px;
}

.brokerReportButton {
	width: 220px !important;
}

@media only screen and (max-width: 1200px){
	.highRiskListItem{
		font-size: 10px;
	}
}

/**************************************************************************
Tablet-specific Styles
**************************************************************************/

@media only screen and (max-width: 900px) {
	.highRiskListItem {
		white-space: unset;
	}
}

@media only screen and (max-width: 768px) {
	.progressbar .span_1_6 {
		width: 16.66%;
		width: -webkit-calc(100% / 6 * 1);
		width: -moz-calc(100% / 6 * 1);
		width: calc(100% / 6 * 1);
	}

	.progressbar .span_9_12 {
		width: 75%;
	}
	.progressbar .span_7_12 {
		width: 58.33%;
		width: -webkit-calc(100% / 12 * 7);
		width: -moz-calc(100% / 12 * 7);
		width: calc(100% / 12 * 7);
	}
	.progressbar .span_5_12 {
		width: 41.66%;
		width: -webkit-calc(100% / 12 * 5);
		width: -moz-calc(100% / 12 * 5);
		width: calc(100% / 12 * 5);
	}
	.progressbar .span_3_12 {
		width: 25%;
	}
	.progressbar .span_1_12 {
		width: 8.33%;
		width: -webkit-calc(100% / 12 * 1);
		width: -moz-calc(100% / 12 * 1);
		width: calc(100% / 12 * 1);
	}
}

/**************************************************************************
Wireless-specific Styles
**************************************************************************/

@media only screen and (max-width: 568px) {
	body {
		font-size: 12px;
	}
}
