.cmnstr{
	display: none;
	width: 100%;
	background-color: #FFF;
	color: #000;
	font-size: .75em;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10000;
	box-shadow: 0 -5px 10px rgba(0,0,0,.3);
}

.cmnstr-activated{
	display: block;
}

.cmnstr-inner {
	padding: .5rem .5rem 1.5rem;
	margin: auto;
	max-width: 800px;
}

@media all and (min-width: 786px) {
	.cmnstr {
		font-size: .875rem;
	}
	.cmnstr-inner {
		padding: 1.5rem 2rem 3rem;
	}
}

.cmnstr-title {
	font-weight: bold;
	margin-bottom: .5em;
	font-size: .875rem;
}

.cmnstr-body{
	padding: 0;
	margin: 0 1.5em 0 0;
}

.cmnstr-options {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	border: 1px solid #DDD;
	border-radius: 4px;
	margin: .5em 0;
	padding: .25em;
}

.cmnstr-options input[type=checkbox] {
	display: inline-block;
	width: auto;
	height: auto;
	border: unset;
	border-radius: 0;
	margin: 0;
	padding: 0;
	background: unset;
	-webkit-appearance: checkbox;
	-webkit-text-fill-color: inherit;
}

.cmnstr-options label {
	display: inline;
}

.cmnstr-options li {
	margin-right: 1em;
}


@media all and (min-width: 786px) {
	.cmnstr-options li label {
		margin-left: 1px;
		font-size: .875rem;
	}	
}


.cmnstr-options li:last-child{
	margin-right: 0;
	margin-left: auto;
}


.cmnstr-button{
	width: 100%;
	display: inline-block;
	color: #9e9995;
	background-color: transparent;
	padding: .25em 3.5em;
	cursor: pointer;
	border: 1px solid #9e9995;
	border-radius: 4px;
}

.cmnstr-button:not(:last-of-type){
	margin-bottom: .5em;
}

.cmnstr-button:hover,
.cmnstr-button:focus {
	color: white;
	background-color: #9e9995;
}


.cmnstr-button.highlight {
	color: #FFF;
	background-color: #73c4e9;
	border-color: #73c4e9;
}

.cmnstr-button.highlight:hover,
.cmnstr-button.highlight:focus {
	background-color: #f2699d;
	border-color: #f2699d;
	text-decoration: none;
}


@media all and (min-width: 786px) {
	.cmnstr-button {
		width: auto;
		font-size: .875rem;
		padding: .5em 2.5em;
		margin-bottom: 0 !important;	
	}
	
	.cmnstr-button.highlight {
		padding: .5em 3.5em;
		margin-left: .5em;
	}
}


.cmnstr-tabs {
	margin-top: 1em;
}

.cmnstr-tabs-nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	position: relative;
	z-index: 2;
}

.cmnstr-tabs-nav li {
	border-top: 1px solid #9e9995;
	border-left: 1px solid #9e9995;
}

.cmnstr-tabs-nav li:last-child {
	border-right: 1px solid #9e9995;
}

.cmnstr-tabs-nav li a{
	display: block;
	padding: .25em 1em;
	background-color: #EEE;
	border-bottom: 1px solid #9e9995;
}

.cmnstr-tabs-nav li a.is-active {
	background-color: #FFF;
	border-bottom: 1px solid #9e9995;
}

.cmnstr-tabs-container {
	position: relative;
	z-index: 1;
	top: -1px;
	border-top: 1px solid #9e9995;
}

.cmnstr-tabs-container > div {
	padding: .5em;
	border-bottom: 1px solid #9e9995;
	border-right: 1px solid #9e9995;
	border-left: 1px solid #9e9995;
	display: none;
}

.cmnstr-tabs-container > div.is-active {
	display: block;
}

.cmnstr-table {
	width: 100%;
}

.cmnstr-table th {
	font-weight: bold;
	text-align: left;
	border-bottom: 1px solid #9e9995;
	padding: .25em .5em;
}

.cmnstr-table th:first-child {padding-left: 0;}
.cmnstr-table th:last-child {padding-right: 0;}

.cmnstr-table td {
	vertical-align: baseline;
	padding: .25em .5em;
	border-bottom: 1px dotted #9e9995;
}

.cmnstr-table td:first-child {padding-left: 0;}
.cmnstr-table td:last-child {padding-right: 0;}

.cmnstr-details {
	margin-bottom: .625rem;
}

.cmnstr-details summary {
	cursor: pointer;
}