html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
html {
	font-size: 62.5%;
}.link-group-editor {
	
}

.link-group-editor-parameters-box {
	box-sizing: border-box;
	border: 0.1rem solid #D1D1D1;
}

.link-group-editor-parameters-box-padding {
	padding: 1rem;
}/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

.reset applet, .reset object, .reset iframe,
h1, .reset h2, .reset h3, .reset h4, .reset h5, .reset h6, .reset p, .reset blockquote, .reset pre,
a, .reset abbr, .reset acronym, .reset address, .reset big, .reset cite, .reset code,
del, .reset dfn, .reset em, .reset img, .reset ins, .reset kbd, .reset q, .reset s, .reset samp,
small, .reset strike, .reset strong, .reset sub, .reset sup, .reset tt, .reset var,
b, .reset u, .reset i, .reset center,
dl, .reset dt, .reset dd, .reset ol, .reset ul, .reset li,
fieldset, .reset form, .reset label, .reset legend,
table, .reset caption, .reset tbody, .reset tfoot, .reset thead, .reset tr, .reset th, .reset td,
article, .reset aside, .reset canvas, .reset details, .reset embed, .reset 
figure, .reset figcaption, .reset footer, .reset header, .reset hgroup, .reset 
menu, .reset nav, .reset output, .reset ruby, .reset section, .reset summary,
time, .reset mark, .reset audio, .reset video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
.reset article, .reset aside, .reset details, .reset figcaption, .reset figure, .reset 
footer, .reset header, .reset hgroup, .reset menu, .reset nav, .reset section {
	display: block;
}
.reset ol, .reset ul {
	list-style: none;
}
.reset blockquote, .reset q {
	quotes: none;
}
.reset blockquote:before, .reset blockquote:after,
.reset q:before, .reset q:after {
	content: '';
	content: none;
}
.reset table {
	border-collapse: collapse;
	border-spacing: 0;
}
.image.background-cover {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.image.background-contain {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.image.background-center {
	background-position: center center;
	background-repeat: no-repeat;
}

.image.background-top-left {
	background-position: top left;
	background-repeat: no-repeat;
}

.full-size {
	width: 100%;
	height: 100%;
}

.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.centered-block {
	margin: auto;
}

.center-align-items {
	align-items: center;
}

.absolute-container {
	position: relative;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.absolute-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.absolute-for-transform {
	position: absolute;
	left: 0;
	top: 0;
}

.absolute-right {
	position: absolute;
	right: 0;
}

.top-right {
	top: 0;
	right: 0;
}

.top-left {
	top: 0;
	left: 0;
}

.right-0 {
	right: 0;
}

.bottom-negative-1-8 {
	bottom: -1.8rem;
}

.no-pointer-events {
	pointer-events: none;
}

.all-pointer-events {
	pointer-events: all;
}

.cursor-pointer {
	cursor: pointer;
}

.display-block {
	display: block;
}

.display-inline {
	display: inline;
}

.display-inline-block {
	display: inline-block;
}

.no-overflow {
	overflow: hidden;
}

.float-right {
	float: right;
}

.clear-both {
	clear: both;
}

.clear-left {
	clear: left;
}

.clear-right {
	clear: right;
}

.no-margins {
	margin: 0;
}

.no-paddings {
    padding: 0;
}

.hidden-space {
	width: 0;
	display: inline-block;
}

.layer-order-high {
	z-index: 3;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-hidden {
	overflow-x: hidden;
}

.overflow-x-auto {
	overflow-x: auto;
}

.overflow-auto {
	overflow: auto;
}

.border-box-sizing {
	box-sizing: border-box;
}

.text-decoration-none {
	text-decoration: none;
}

a.custom-styled-link {
	text-decoration: none;
	color: inherit;
}

.transform-origin-top-center {
	transform-origin: center top;
}

.turned-180 {
	transform: rotate(180deg);
}

.ease-out-transformations {
	transition-property: transform;
	transition: 0.3s;
	transition-timing-function: ease-out;
}

.no-size {
	width: 0;
	height: 0;
}

@media print {
	.no-print, .no-print * {
		display: none !important;
	}
}

.vertical-align-top {
	vertical-align: top;
}

.text-overflow-ellipsis {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fit-content {
	width: fit-content;
}

.bottom-05 {
	bottom: 0.5rem;
}

.top-05 {
	top: 0.5rem;
}

.display-none {
	display: none;
}

.text-decoration-underline {
	text-decoration: underline;
}

.fit-content-width {
	min-width: fit-content;
}

.centered-block-for-overflow {
	width: fit-content;
	margin: auto;
}

.white-space-nowrap {
    white-space: nowrap;
}.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-shrink0 {
	flex-shrink: 0;
}

.flex-row.justify-between,
.flex-column.justify-between {
	justify-content: space-between;
}

.flex.justify-center,
.flex-row.justify-center,
.flex-column.justify-center {
	justify-content: center;
}

.flex-row.justify-end,
.flex-column.justify-end {
	justify-content: flex-end;
}

.flex-row.vertically-center-items {
	align-items: center;
}

.flex-row.align-items-end {
	align-items: flex-end;
}

.flex-row .flex-row-item {
	
}

.flex-row .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.singles > .flex-row-item {
	width: 100%;
}

.flex-row.halfs > .flex-row-item {
	width: 50%;
}

.flex-row > .flex-row-item.half {
	width: 50%;
}

.flex-row.thirds > .flex-row-item,
.flex-row-item.third {
	width: 33.33%;
}

.flex-row.quarters > .flex-row-item {
	width: 25%;
}

.flex-row > .flex-row-item.quarter {
	width: 25%;
}

.flex-column.halfs > .flex-column-item {
	height: 50%;
}

.flex-row .flex-row-item .reset-flex-row-item-size .flex-row-item {
	width: initial;
}

.flex-column.all-grow .flex-column-item {
	height: 0%;
}

.flex-column .flex-column-item:first-of-type {
	margin-top: 0rem;
}

.flex-column .flex-column-item:last-of-type {
	margin-bottom: 0rem;
}

.flex-vertical-line {
	width: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-horizontal-line {
	height: 0.1rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-no-resize {
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-resize {
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-90 {
	width: 90%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-80 {
	width: 80%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-70 {
	width: 70%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-60 {
	width: 60%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-50 {
	width: 50%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-40 {
	width: 40%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-30 {
	width: 30%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-25 {
	width: 25%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-20 {
	width: 20%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row-item.width-10 {
	width: 10%;
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-row.align-end .flex-row-item {
	align-self: flex-end;
}

.flex-row.uniform-item > .flex-row-item {
	width: 1%;
	flex-grow: 1;
	flex-shrink: 1;
}

.centered-cell-holder {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-column-desktop {
	display: flex
}

.flex-row-desktop {
	display: flex;
	flex-direction: column;
}

.align-items-mobile {
	align-items: center;
}

@media (min-width: 800px) {
	.flex-column-desktop {
		flex-direction: column;
	}

	.flex-row-desktop {
		flex-direction: row;
	}
	
	.align-items-mobile {
		align-items: normal;
	}
}

.flex-grow-1 {
	flex-grow: 1;
}

.flex-mobile-row {
	display: flex;
	flex-direction: row;
}

.flex-mobile-wrap {
	flex-wrap: wrap;
}

@media (min-width: 600px) {
	.flex-mobile-row {
		display: flex;
		flex-direction: column;
	}

	.flex-mobile-wrap {
		flex-wrap: nowrap;
	}
}

@media(min-width: 1024px) {
	.flex-desktop {
		display: flex;
	}
}

.align-items-start {
	align-items: flex-start;
}

.flex-basis-130 {
	flex: 0 0 13rem;
}

.justify-evenly {
	justify-content: space-evenly;
}

.align-self-end {
	align-self: flex-end;
}

.content-space-between {
	justify-content: space-between;
}

.flex-row.align-items-baseline {
	align-items: baseline;
}

.flex-row.justify-around {
	justify-content: space-around;
}.inline-list {
	
}

.inline-list .inline-list-item {
	display: inline-block;
}

.inline-list .inline-list-item:first-of-type {
	margin-left: 0rem;
}

.inline-list .inline-list-item:last-of-type {
	margin-right: 0rem;
}

.row-list {
	
}

.row-list .row-list-item {
	
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}

.inline-list .row-list-item {
	display: inline-block;
}

.row-list .row-list-item:first-of-type {
	margin-top: 0rem;
}

.row-list .row-list-item:last-of-type {
	margin-bottom: 0rem;
}.text-align-center {
	text-align: center;
}

.text-align-left {
	text-align: left;
}

.text-align-right {
	text-align: right;
}

.vertical-text-top {
	vertical-align: text-top;
}

.font-italic {
	font-style: italic;
}

.text-uppercase {
	text-transform: uppercase;
}

.no-paragraph-margins p {
	margin: 0;
}

.no-paragraph-margins-around p:first-of-type {
	margin-top: 0;
}

.no-paragraph-margins-around p:last-of-type {
	margin-bottom: 0;
}.border-box {
	border-width: 0.1rem;
	border-style: solid;
	border-color: #333333;
}.date-with-details {
	
}

.date-with-details .primary {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}

.date-with-details .secondary {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-with-details .details {
	font-size: 0.9rem;
	color: #7e7e7e;
}

.spacing.date-with-details-spacing {
	
}

.flex-row.date-with-details-item-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-with-details-item-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}.date-selection-overlay {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}

.date-selection-overlay-padding {
	padding: 1rem;
}

.date-selection-button {
	box-sizing: border-box;
	border: 1px solid #073988;
	background-color: #FFFFFF;
}

.date-selection-button-padding {
	padding: 1rem;
}

.date-selection-button.invalid,
.invalid .date-selection-button {
	border-color: #880707;
}.calendar-week:not(:first-of-type) {
	margin-top: 0.2rem;
}

.flex-row.calendar-week > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.calendar-week > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}

.calendar-day {
	font-weight: bold;
	border: 1px solid rgb(7, 57, 136);
	padding: 1.3rem 0.5rem;
	text-align: center;
	cursor: pointer;
}

.calendar-day.today {
	background-color: rgb(7, 57, 136, 0.2);
}

.calendar-day.other-month {
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}

.calendar-day.selected {
	background-color: rgb(7, 57, 136);
	color: #FFFFFF;
}

.calendar-day.unselectable {
	pointer-events: none;
	background-color: rgb(221, 221, 221, 0.5);
	border: 1px solid rgb(221, 221, 221, 0.5);
	color: rgb(92, 92, 92, 0.5);
}.item-list .field {
	width: 30rem;
}

.item-list .field-type-select,
.item-list .field-type-options,
.item-list .auto-width-field {
	width: auto;
}

.standard-flag {
	background-color: #C0C0C0;
	border-radius: 0.3rem;
	box-sizing: border-box;
}

.id-flag {
	font-size: 1.2rem;
	width: 6rem;
	text-align: center;
	
	background-color: #C0C0C0;
	color: #FFFFFF;
}

.status-flag {
	font-size: 0.9rem;
	text-align: center;
	background-color: #feffce;
}

.start-at-flag {
	background-color: #cbe2bf;
}

.end-at-flag {
	background-color: #d4af96;
}

.standard-flag-padding {
	padding: 0.2rem;
}

.date-selection-number {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 600;
	margin-right: 0.2rem;
}

.date-selection-month {
	font-size: 1.2rem;
	font-weight: 600;
}

.date-selection-weekday {
	font-size: 0.9rem;
	color: #7e7e7e;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:first-of-type) {
	margin-left: 0.1rem;
}

.flex-row.date-selection-spacing > .flex-row-item:not(:last-of-type) {
	margin-right: 0.1rem;
}.validation-error-popup .up-arrow:before {
	position: absolute;
	top: 0;
	left: 0.7rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 11px 12px;
	border-color: transparent transparent #e94b35 transparent;
}

.validation-error-popup .up-arrow:after {
	position: absolute;
	top: 0;
	left: 0.8rem;
	transform: translateY(-100%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 11px 10px 11px;
	border-color: transparent transparent #ffffff transparent;
}

.validation-error-popup .down-arrow:before {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 12px 0 12px;
	border-color: #e94b35 transparent transparent transparent;
}

.validation-error-popup .down-arrow:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 11px 0 11px;
	border-color: #ffffff transparent transparent transparent;
}

.validation-error-popup {
	background-color: #fff;
	text-align: center;
	position: relative;
	color: #e94b35;
	border: 1px solid #e94b35;
	padding: 2rem 2.6rem;
	font-size: 2rem;
	border-radius: 0.5rem;
	width: 37rem;
	margin-bottom: 11px;
}

.validation-error-popup-centered-over-position {
	left: 50%;
	transform: translate(-50%, -100%);
}.custom-selection-menu {
	box-sizing: border-box;
	background-color: #FFFFFF;
}

.custom-selection-menu-padding {
	padding: 1rem;
}

.dropdown-selection-popup {
	min-width: 20rem;
}

.custom-dropdown.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}

.icon-dropdown.dropdown-from-right .dropdown-selection-popup {
	right: 0;
}.image.standard-icon {
	width: 24px;
	height: 24px;
}.drop-area {
	border-radius: 0.6rem;
	border: 1px solid #CCCCCC;
	background-color: rgba(204, 204, 204, 0.15);
}

.drop-area-padding {
	padding: 2.4rem;
}

.drop-area-drop-label {
	color: #CCCCCC;
}

.drop-area.drop-file-highlight {
	border: 1px solid #92e88c;
	background-color: rgba(146, 232, 140, 0.15);
}

.drop-area.drop-file-highlight .drop-area-drop-label {
	color: #92e88c;
}.standard-field {
	border: 1px solid rgb(133, 133, 133);
	background-color: #FFFFFF;
}

.uploaded-file-field {
	border: solid 1px #DDDDDD;
	background-color: #FFFFFF;
}
	
.standard-field-padding {
	padding: 10px;
}
* {
    box-sizing: border-box;
}

.centered-content-text {
	max-width: 70rem;
	margin: auto;
	padding: 0rem 2rem;
}

.page-title-background {
	background-color: #FCEFEE;
}

.center-button-if-field-label {
    position: relative;
    top: 0.9rem;
}

.margin-left-auto {
    margin-left: auto;
}

.list-style-none {
    list-style: none;
}

.cursor-move {
  cursor: move;
}

.questions-edit-link {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #313131;
}

.questions-centered-container {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.dnd-item__icon {
    width: 2.6rem;
}

.layer-order-dropdown-portal {
	z-index: 1000;
}

.section__padding {
    padding: 3rem 2rem;
}

.icons-section__li {
    max-width: 30rem;
}

@media(min-width: 768px) {
    .icons-section__li {
        max-width: 21rem;
        margin: 0 1.5rem;
    }
}

@media(min-width: 980px) {
    .icons-section__li {
        max-width: 25rem;
        margin: 0 1.5rem;
    }
}

@media (min-width: 1150px) {
    .icons-section__li {
        max-width: 20rem;
        margin: 0 1.5rem;
    }
}

.image-text__content--padding {
    padding: 5rem 2rem;
}

.image-text__content {
    max-width: 40rem;
}

.image-text__title {
    margin-top: 0;
    margin-bottom: 3.5rem;
}

.standard__paragraph-primary.image-text__paragraph {
    color: #000000;
    margin: 0;
}

.icon-with-text {
   width: 15rem;
    font-family: 'Roboto Mono', monospace;
}

.icon-text__img {
	height: 3.2rem;
    width: 3.2rem;
    margin-right: 1rem;
}

.icon-text__img--margin-right {
    margin-right: 0.5rem;
}

.icon-text__text {
    font-style: normal;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8rem;
    color: #000000;
}

@media(min-width: 375px) {
    .icon-with-text {
        width: 16.8rem;
    }

    .icon-text__text {
        font-size: 1.4rem
    }

    .icon-text__img--margin-right {
        margin-right: 2rem;
    }
}

.team__section {
    height: 50rem;
    padding-top: 6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;

    background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}

.icon-with-text__section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

.icon-with-text__title--margin {
    margin-bottom: 6.5rem;
}

.icon-with-text__icon--margin {
    margin-bottom: 10.5rem;
}

.link-btn-small--margin-top {
    margin-top: 4rem;
}

.product-slider {
    padding: 2rem;
}

.product__img-container {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background-color: #ffffff;
}

.product__img-container.small {
    width: 6rem;
    height: 6rem;
}

.product-slider__container {
    height: 30rem;
}

.product-slider__item-title {
    font-size: 1.8rem;
    color: #41535D;
    margin: 1.5rem 0;
}

.product-slider--left,
.product-slider--right {
    position: absolute;
    top: 37%;
}

.product-slider--left {
    left: 1.5rem;
}

.product-slider--right {
    right: 1.5rem;
}

.quiz-image {
	width: auto;
	height: 22rem;
}

.quiz-image-height {
	height: 22rem;
}

.width-progress-bar.quiz-progress {
	height: 0.5rem;
	background-color: #EEEEEE;
	width: 20rem;
}

.width-progress-bar.quiz-progress .indicator {
	background-color: #485C68;
}

@media(min-width: 327px) {
    .product-slider--left,
    .product-slider--right {
        top: 35%
    }
}

@media(min-width: 535px) {
    .product-slider--left,
    .product-slider--right {
        top: 33%
    }

    .product-slider--left {
        left: 2rem;
    }
    
    .product-slider--right {
        right: 2rem;
    }
}

@media (min-width: 768px) {
    .product-slider {
        padding: 2rem 4rem;
    }
}

.custom-selection-menu {
	border: 1px solid #313131;
	background-color: #F7EDE2;
}

.woocommerce-checkout #dibs-wrapper #dibs-order-review {
	float: none;
	width: 100%;
}

.woocommerce-checkout #dibs-wrapper #dibs-iframe {
	float: none;
	width: 100%;
}

.woocommerce-checkout-review-order-table {
	display: none;
}

.woocommerce-form-coupon-toggle {
	display: none;
}

.product-hero-circle {
	width: 25rem;
	height: 25rem;
	border-radius: 9999px;
	overflow: hidden;
	background-color: #FFFFFF;
}

.cart-count {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 9999px;
	overflow: hidden;
	background-color: rgb(196, 212, 208);
	box-sizing: border-box;
}

.cart-count-padding {
	padding: 0.2rem;
}

.cart-count-number {
	color: #FFFFFF;
	font-size: 0.9rem;
}

.basket-icon {
	width: 21px;
	height: 21px;
}

.menu-basket-icon-margin {
	margin-left: 20px;
	margin-right: 5px;
}

.cart-price-summary-row {
	border-bottom: 1px solid #BBBBBB;
}.main-font-setting {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #313131;
}

.page-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 3.2rem;
    color: #41535D;
}

.question-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 2.4rem;
    color: #41535D;
}

.standard__title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 2.4rem;
  color: #41535D;
}

.standard__paragraph-primary {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #41535D;
}

.standard__paragraph-secondary {
  font-family: 'Arsenal', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #41535D;
}

.wp-rich-text-formatting {
	line-height: 2.4rem;
}

.woocommerce-MyAccount-content {
	line-height: 2.4rem;
}

.small-description {
    font-size: 1.2rem;
    color: #41535D;
}

.result-line-height {
	line-height: 2rem;
}

.small-label {
    font-size: 1.2rem;
    color: #41535D;
	font-weight: bold;
}

.small-text {
	font-size: 1.2rem;
}

.question-as-label {
    font-size: 1.2rem;
    color: #41535D;
	font-weight: bold;
}

a:not(.skip-default):not(.custom-styled-link) {
	text-decoration: none;
	color: #41535D;;
}

a:not(.skip-default):not(.custom-styled-link):hover {
	text-decoration: underline;
}.spacing.double {
  height: 4rem;
}

.spacing.standard {
  height: 2rem;
}

.spacing.medium {
  height: 1.5rem;
}

.spacing.small {
  height: 1rem;
}

.spacing.micro {
  height: 0.5rem;
}

.spacing.none {
  height: 0rem;
}

.standard-box {
	border-radius: 3px;
	border: 1px solid #AAAAAA;
	background-color: #FFFFFF;
}

.warning-box {
	border: 1px solid #e91e63;
	background-color: #ffe7e7;
}

.standard-box-padding {
	padding: 2rem;
}

.info-box-padding {
	padding: 4rem 2rem;
}

.spacing.site-header {
	height: 2rem;
}

.spacing.site-footer {
	height: 8rem;
}.standard-field-label {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: normal;
    color: #313131;
}

.label-text-small {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: normal;
    color: #313131;
}

.spacing.small.field-label-spacing {
    height: 0.5rem;
}

.standard-field {
    border: solid 1px #dddddd;
    background-color: #ffffff;

    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #313131;
}

.standard-field-ellipsis-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.standard-field::placeholder {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #a1a1a1;
}

/* safari fallback */
input[draggable='true'].standard-field {
    user-select: text;
}

.standard-field-padding {
    padding: 1rem 2.1rem 1rem 1.5rem;  
}

.standard-area-field {
    height: 13.8rem;
    width: 100%;
    border: solid 1px #dddddd;
    background-color: #ffffff;
}

.standard-area-field-padding {
    padding: 1rem 1.5rem;
}

.standard-category-title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    color: #606060;
}

.standard-category-title-margin {
    margin-top: 0;
    margin-bottom: 1rem;
}

.standard-title {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    color: #313131;
}

@media (min-width: 600px) {
    .standard-field, .standard-field::placeholder {
        font-size: 2rem;
    }
}

.form-search-box {
    height: 3.6rem;
    border: solid 1px #dddddd;
    background-color: #ffffff;
    padding: 0 1rem;
}

.form-search-box::placeholder {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #a1a1a1;
}

.form-search-input {
    border: none;
    background-image: none;
    background-color: transparent;
    box-shadow: none;
    outline: none;
}

.form-search-icon {
    height: 1.3rem;
    margin-right: 0.8rem;
}.margin-bottom-s {
    margin-bottom: 1rem;
}

.margin-top-s {
    margin-top: 1rem;
}

.margin-bottom-m {
    margin-bottom: 2rem;
}

.margin-right-m {
    margin-right: 2rem;
}

.margin-bottom-ml {
    margin-bottom: 2.5rem;
}

.margin-bottom-ls {
    margin-bottom: 4.5rem;
}

.margin-bottom-l {
    margin-bottom: 5rem;
}

.standard-button {
	border: .2rem solid #383838;
	border-radius: 2.25rem;
	background-color: #ffffff;
	color: #313131;
	text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
	
}

.standard-button:not(.inactive) {
	cursor: pointer;
}

.standard-button.inactive {
	opacity: 0.5;
	cursor: not-allowed;
}

.standard-button:not(.inactive):hover {
	background-color: #383838;
	color: #ffffff;
}

.standard-button-padding {
	padding: 1rem 3rem;
}

.match-field-size-padding {
	padding: 1rem 3rem;
}

.add-button {
	border: solid 1px #d3d3d3;
	border-radius: 2.25rem;
	background-color: #ffffff;
    color: #d3d3d3;
	text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    cursor: pointer;
}

.add-button:hover {
	background-color: #d3d3d3;
	color: #ffffff;
}

.add-button-padding {
	padding: 0.2rem 2.8rem;
}

.edit-button {
	background-color: transparent;
	border: none;
	height: 2.4rem;
	cursor: pointer;
}

.edit-button-padding {
    padding: 0;
}

.menu-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	padding: 7px 0;
	margin: 0;
	background: transparent;
	border: none;
}

.menu-btn__burger {
	width: 34px;
	height: 3px;
	background: #4f4f4f;
	border-radius: 1.5px;
	transition:  all .5s ease-in-out;
	transform: translateY(-5px);
}

.menu-btn__burger::before,
.menu-btn__burger::after {
	display: block;
	content: "";
	position: absolute;
	width: 25px;
	height: 3px;
	background: #4f4f4f;
	border-radius: 1.5px;
	transition:  all .5s ease-in-out;
}

.menu-btn__burger::after { 
	transform: translateY(10px);
}

.menu-btn.open .menu-btn__burger {
	transform: rotate(45deg) translate(4px, 0);
	background: transparent;
}

.menu-btn.open .menu-btn__burger::after {
	transform: rotate(-90deg);
}

.link-btn {
	border: 2px solid #41535D;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	text-decoration: none;
	color: #41535D;
	min-width: 28rem;
	height: 6rem;
	border-radius: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (min-width: 375px) {
	.link-btn {
		min-width: 34rem;
	}
}

.link-btn-small {
	border: 2px solid #41535D;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	text-decoration: none;
	color: #41535D;
	border-radius: 3rem;
	padding: 1.3rem 3rem;
}

.hover-box {
	border: 1px solid transparent;
}

.hover-box-padding {
	padding: 1.3rem 3rem;
}

.hover-box:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
}.flex-row.big-item-spacing > .flex-row-item {
	margin-left: 2rem;
	margin-right: 2rem;
}

.flex-row.big-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.big-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.medium-item-spacing > .flex-row-item {
	margin-left: 1rem;
	margin-right: 1rem;
}

.flex-row.medium-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.medium-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.logo-item-spacing > .flex-row-item {
	margin-left: 6rem;
	margin-right: 6rem;
}

.flex-row.logo-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.logo-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.small-item-spacing > .flex-row-item {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.flex-row.small-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.small-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.small-item-spacing-vertically > .flex-row-item {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.flex-row.micro-item-spacing > .flex-row-item {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

.flex-row.micro-item-spacing > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.micro-item-spacing > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-row.calendar-week > .flex-row-item {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

.flex-row.calendar-week > .flex-row-item:first-of-type {
	margin-left: 0rem;
}

.flex-row.calendar-week > .flex-row-item:last-of-type {
	margin-right: 0rem;
}

.flex-1 {
	flex: 1;
}

.flex-row.flex-wrap,
.flex-column.flex-wrap {
	flex-wrap: wrap;
}

.flex-row.align-items-end {
  align-items: flex-end;
}

.flex-row.align-items-baseline {
	align-items: baseline;
}

.align-items-start {
	align-items: flex-start;
}

.align-content-center {
	align-content: center;
}

.flex-grow {
	flex-grow: 1;
	flex-shrink: 0;
}

.flex-row.first-item-flex-1 > .flex-row-item:nth-child(1) {
	flex: 1;
	min-width: 0;
}
.flex-row.first-item-flex-1.second-item-width > .flex-row-item:nth-child(2) {
	width: 14.6rem;
}

.flex-row.second-item-flex-1 > .flex-row-item:nth-child(2) {
	flex: 1;
	min-width: 0;
}

.flex-row.third-item-flex-1 > .flex-row-item:nth-child(3) {
	flex: 1;
	min-width: 0;
}

.flex-row.order-first {
	order: -9999;
}

.standard-row {
	box-sizing: border-box;
}

.standard-row-padding {
	padding: 0.5rem;
}

.standard-alternating-rows .standard-row:nth-of-type(2n+1) {
	background-color: rgba(0, 0, 0, 0.1);
}.header__container {
    padding: 0.8rem 1.3rem;
    background-color: #F7EDE2;
}

.header__menu-link {
	font-size: 1.8rem;
	text-decoration: none;
	margin: 0 20px;
	color: #41535D;
}

.header__menu-link:hover {
	color: #313131;
	text-decoration: underline;
}

.mobile-menu-link {
	font-size: 1.8rem;
	text-decoration: none;
	color: #41535D;
}

.woocommerce img.header__logo,
.woocommerce-page img.header__logo,
.header__logo {
    height: 4.5rem;
}.footer {
    background: #485C68;
    padding: 2.4rem 3.2rem 4.2rem 3.2rem
}

.footer__text {
    font-family: 'Arsenal', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #ffffff;
    margin-top: 0;
    max-width: 60rem;
}

.footer__link {
    font-style: normal;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #ffffff;
}

.footer__logo--margin {
    margin: 0.8rem;
}

.footer__logo--margin-right {
    margin-right: 1.5rem;
}

.footer__social-title {
    font-family: 'Arsenal', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer__logo--margin {
        margin: 0.8rem;
    }
}


.hero__header {
    padding: 30rem 1.6rem 2.2rem 1.6rem;
}

.hero__title {
    max-width: 26.9rem;
    font-style: normal;
    font-weight: bold;
    font-size: 3.6rem;
    margin-top: 0;
}

.hero__text {   
    max-width:  30.8rem;
    line-height: 2.4rem;
    margin-top: 0;
    margin-bottom: 4rem;
}

.hero__content-wrapper {
    margin-bottom: 4rem;
}

@media(min-width: 768px) {
    .hero__title,
    .hero__text {
        max-width: initial;
    }

    .hero__content-wrapper {
        max-width: 42rem;
    }

    .hero__header {
        padding: 30rem 10% 2.2rem 10%;
    }
}.bg-lime-green {
	background-color: #C4D4D0;
}

.bg-light-red {
	background-color: #F9C9C8;
}

.bg-yellow {
	background-color: #F7EDE2;
}

.bg-light-grey {
	background-color: #E5E5E5;
}.faq__ul {
    padding: 0 2rem;
}

.faq__li {
    border-bottom: 0.5px solid #41535D;
    padding: 2.2rem 0.2rem;
}

.faq__li:first-child {
    border-top: 0.5px solid #41535D;
}

.faq__content-container {
    margin-bottom: 6.5rem;
}

.faq__content {
    padding: 0 2rem;
    max-width: 31rem;
}

.faq__item-button {
    border: none;
    background-color: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    color: #41535D;
}

.faq__item-content {
    padding: 1rem;
}.sliderLine {
	height: 0.1rem;
	background-color: #000000;
	width: 100%;
	position: relative;
}

.sliderHandle {
	width: 6.4rem;
	height: 6.4rem;
	transform: translate(-50%, -50%);
	border: 1px solid #000000;
	background-color: #FFFFFF;
	border-radius: 50%;
	user-select: none;
	position: absolute;
}

.sliderHolder {
	max-width: 60rem;
	padding: 0rem 3rem;
	margin: auto;
}

.sliderButtonHolder {
	max-width: 40rem;
	margin: auto;
}#dibs-wrapper:after {
	content: "";
	display: table;
	clear: both;
}

.woocommerce-account .centered-content-text {
	max-width: 120rem;
}

.woocommerce-MyAccount-navigation-link {
	list-style: none;
	padding: 20px 10px;
	border-top: 1px solid #EEEEEE;
}

.woocommerce-result-count,
.woocommerce-ordering {
	display: none;
}

.woocommerce-additional-fields {
	display: none;
}

.woocommerce form .form-row label:not(.skip-default) {
	font-size: 12px;
}

.woocommerce form .form-row input.input-text:not(.skip-default) {
	font-size: 2rem;
	padding: 1rem 2.1rem 1rem 1.5rem;
    border: solid 1px #dddddd;
    background-color: #ffffff;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #313131;
	box-sizing: border-box;
}