
@media handheld, screen and (max-width: 549.98px) {
	.card.third {
		width: calc(100% - 24px) !important;
	}

}


button.btn {
	padding: 8px 12px;
	font-size: 1rem;
	border-radius: 12px;

	transition: color 0.5s ease, background-color 0.5s ease, filter 0.25s ease;
}
button.primary {
	background-color: var(--btn-primary);
	color: white;
	border: none;
}
button.primary:hover {
	background-color:  var(--btn-primary);
	color: white;
	filter: brightness(1.1);
}
button.btn-large {
	padding: 12px 18px;
}
button.secondary {
	background-color: var(--btn-secondary);
	color: white;
	border: none;
}
button.secondary:hover {
	color: white;
	filter: brightness(1.1);
}


b, strong {
    font-weight: bold;
}


.text-small {
	font-size: 0.8rem;
}
.faded {
	opacity: 0.8;
}


.divider {
	width: 100%;
	height: 1px;

	margin: 24px 0;

	background-color: #eeeeee66;
}
.divider.faded {
	background: radial-gradient(#eeeeee66, #eeeeee66 25%, #eeeeee00 60%);
}
.divider.no-border {
	background: none;
}




ul.horizontal {
	margin: 0;
	padding: 0;
}
ul.horizontal li {
	display: inline-block;
	list-style-type: none;
	padding: 4px 10px;
}

strong {
	font-weight: 600;
}


.card {
	min-width: 210px;
	margin: 12px;
	display: inline-block;
	vertical-align: top;
	padding: 24px;

	border-radius: 12px;

	box-shadow: 4px 4px 20px 14px rgba(0, 0, 0, .065);

	text-align: center;
}

.card.third {
	width: calc(32% - 24px);
}

.card-icon {
	width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
	border-radius: 12px;

	/* background: linear-gradient(180deg, rgb(80, 51, 130), rgb(117, 37, 192)); */
	background-color: var(--btn-secondary);
	box-shadow: 2px 2px 18px 8px rgba(0, 0, 0, 0.1);
}
.card-icon::after {
	position: absolute;
	display: block;
	content: '';
	width: 60%;
	height: 60%;
	left: 20%;
	top: 20%;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.card-icon.brightness::after {
	background-image: url('../images/icons/brightness-alt-high-white.svg');
}
.card-icon.scale::after {
	background-image: url('../images/icons/scale-white.svg');
}
.card-icon.alert::after {
	background-image: url('../images/icons/alert-bell.svg');
	background-size: 30px;
}
.card-icon.toggles::after {
	background-image: url('../images/icons/toggles-white.svg');
	background-size: 24px;
}

.card-header.image-header {
	padding: 0;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center top !important;
	height: 150px;
}
.card-title {
	margin-bottom: 1rem;
}

.purple {
	color: var(--btn-primary);
}


.white-bottom-gradient::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #FFFFFF00 0%, #FFFFFFFF 80%);
	z-index: 0;
}
.white-bottom-gradient.light::after {
	opacity: .9;
	background: linear-gradient(to bottom, #FFFFFF00 50%, #FFFFFFFF 100%);
}

.pb-10 {
	padding-bottom: 160px;
}

.white-shadow  {
	/* box-shadow: 0 0 20px 10px white; */
	background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 24px 32px;
	text-shadow: 0 0 15px rgba(255, 255, 255, .35);
}

.faq-list ul {
	margin-top: 16px;
	margin-bottom: 16px;
}

.faq-list li {
	list-style-type: disc;
    margin-bottom: 8px;
}

.accordion-container {
	border-radius: 12px;
	border: 1px solid #ccc;

	margin-bottom: 64px;

	overflow: hidden;
}

.accordion {
	background-color: #e6e6e6;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	/* font-size: 15px; */
	transition: 0.4s;

	/* border-radius: 12px; */
	/* border-width: 1px;
	border-style: solid;
	border-color: #ccc #ccc transparent #ccc; */
}
/* .accordion.active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
} */

.accordion:focus,
.accordion:active,
.accordion:hover,
.accordion:visited {
	outline: none !important;
}


.active, .accordion:hover {
	background-color: #f2f2f2;
}

/* .accordion:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: "\2212";
} */


.accordion:after {
	content: '';
	border-color: transparent black;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	display: block;
	height: 0;
    width: 0;
    top: calc(50% - 3px);
    right: 24px;
    cursor: pointer;
    opacity: 0.5;
    position: absolute;

	transform: rotate(0deg);
	transition: transform 0.25s ease;
}
.accordion.active:after {
	transform: rotate(90deg);
}



.panel {
	padding: 0 18px;
	margin: 0;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;



	/* border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px; */

	/* border-width: 1px;
	border-style: solid;
	border-color: transparent #ccc #ccc  #ccc; */
}

.panel p {
	padding: 0 0 12px 0;
	margin: 0;
}

.panel p:first-of-type {
	padding: 12px 0;
}

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

table th {
	background-color: #f6f6f6;
}

table th, td {
	text-align: left;
	border: 1px solid #ccc;
	padding: 4px 8px;
	vertical-align: top;


}

table td p {
	margin-top: 0;
	margin-bottom: 1rem;
	word-wrap: break-word;
}

table td p a {
	word-break: break-all;
}



#cookie-consent {
	position: fixed;
	display: none;
	bottom: 0;
	/* height: 150px; */
	width: 100%;
	background: white;
	border: 1px solid #ccc;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, .1);

	padding: 16px;

	z-index: 9999;
}

#cookie-consent .cookie-consent-text {
	position: relative;
	display: block;
	width: calc(100% - 110px);
}

#cookie-consent .cookie-consent-button-holder {
	display: block;

	position: absolute;
	right: 16px;
	top: 50%;
	text-align: center;
	width: 110px;

	text-align: right;

	transform: translateY(-50%);
}

#cookie-consent h5 {
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 8px 0;
}

#cookie-consent p {
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 0;
}


.gear-icon {
	display: inline-block;
	width: 1.1em;
	height: 1.1em;
	/* margin-left: 0.25em;
	margin-right: 0.25em; */

	background-image: url('../images/icons/gear.svg');
	background-size: contain;
	background-repeat: no-repeat;
}