:root {
	/** Basic sizes */
	--soMainContainerSize: 2.5rem;
	--soInnerContainerSize: 4rem;
	/** Colors */
	--soColorBlue: #004990;
	--soColorOrange: #d93d00;
	--soColorBlack: #000000;
	--soColorRed: #ff0000;
	--soColorWhite: #ffffff;
	/** Fonts */
	--soFont: Arial, Helvetica, sans-serif;
}

* {
	scroll-behavior: smooth;
}

body {
	font-size: 1.125rem;
	overflow-x: hidden;
	max-width: 100vw;
	width: 100%;
}

a {
	color: inherit;
	-webkit-transition: color 0.1s linear;
	transition: color 0.1s linear;
}

a:active,
a:focus,
a:hover,
a:hover:focus {
	text-decoration: none;
	color: inherit;
}

li {
	margin-bottom: 1rem;
}

.slds-rich-text-editor__output {
	line-height: 1.5;
}

.spinner {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 80px;
	background-color: inherit;
}

/*-------container-------*/
.main-container {
	padding-right: 2.5rem;
	padding-left: 2.5rem;
}

.inner-container {
	padding-right: 4rem;
	padding-left: 4rem;
}

/*--------- text -----------*/
.text-lvl60 {
	font-size: 3.75rem;
	/*60px*/
	line-height: 1.5;
}

.text-lvl48 {
	font-size: 3rem;
	/*48px*/
	line-height: 1.5;
}

.text-lvl35 {
	font-size: 2.1875rem;
	/*35px*/
}

.text-lvl32 {
	font-size: 2rem;
	/*32px*/
}

.text-lvl30 {
	font-size: 1.875rem;
	/*30px*/
}

.text-lvl28 {
	font-size: 1.75rem;
	/*28px*/
}

.text-lvl25 {
	font-size: 1.5625rem;
	/*25px*/
}

.text-lvl24 {
	font-size: 1.5rem;
	/*24px*/
}

.text-lvl23 {
	font-size: 1.438rem;
	/*23px*/
}

.text-lvl18 {
	font-size: 1.125rem;
	/*18px*/
}

.text-lvl16 {
	font-size: 1rem;
	/*16px*/
}

.text-lvl15 {
	font-size: 0.9375rem;
	/*15px*/
}

.text-lvl14 {
	font-size: 0.875rem;
	/*14px*/
}

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

.text-normal {
	font-family: var(--soFont);
}

.text-bold {
	font-family: var(--soFont);
}

.text-very-bold {
	font-family: var(--soFont);
	font-weight: bold;
}

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

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

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

/*--------color----------*/
.text-white {
	color: #ffffff;
}

.text-black {
	color: #000000;
}

.text-blue {
	color: #004990;
}

.text-blue-light {
	color: #007bff;
}

.text-orange {
	color: #d93d00;
}

.text-grey {
	color: #c7c7c7;
}

.text-grey-dark {
	color: #797f80;
}

.text-grey-dark2 {
	color: #343434;
}

.text-red {
	color: #ff0000;
}

/*-----margin bottom--------*/
.mb16 {
	margin-bottom: 1rem;
}

.mb28 {
	margin-bottom: 1.75rem;
}

.mb40 {
	margin-bottom: 2.5rem;
}

/*-----background--------*/
.bg-blue {
	background-color: #004990;
}

.bg-light-blue {
	background-color: #f8f8f8;
}

.bg-white {
	background-color: #ffffff;
}

.bg-orange {
	background-color: #d93d00;
}

.bg-red {
	background-color: #ea001e;
}

/*------- buttons --------*/
.regular-button {
	min-width: 275px;
	min-height: 50px;
	display: inline-block;
	text-align: center;
	padding: 0.625rem 1.25rem;
	font-size: 1.125rem;
	font-family: var(--soFont);
	border: 2px solid;
	border-color: transparent;
	border-radius: 36px;
	outline: none;
	cursor: pointer;
	transition: -webkit-filter 0.15s ease-in-out;
	-webkit-transition: -webkit-filter 0.15s ease-in-out;
	transition: filter 0.15s ease-in-out;
	transition: filter 0.15s ease-in-out, -webkit-filter 0.15s ease-in-out;
}

.regular-button:hover {
	-webkit-filter: brightness(120%);
	filter: brightness(120%);
	color: #ffffff;
}

.regular-button:focus {
	color: #ffffff;
}

.regular-button--small {
	min-width: 220px;
}

/*----------- table ---------------*/
.blue-table {
	overflow-x: auto;
}

.blue-table table {
	padding: 0.0625rem;
	border-spacing: 2px;
	border-collapse: separate !important;
	border-radius: 1em;
	overflow: hidden;
	border: 2px solid #febe10;
	text-align: center;
	font-family: var(--soFont);
	width: 100%;
}

.blue-table tr:first-child th:first-child,
.blue-table tr:first-child td:first-child {
	border-top-left-radius: 1em;
}

.blue-table tr:first-child th:last-child,
.blue-table tr:first-child td:last-child {
	border-top-right-radius: 1em;
}

.blue-table tr:last-child td:first-child,
.blue-table tr:last-child th:first-child {
	border-bottom-left-radius: 1em;
}

.blue-table tr:last-child td:last-child,
.blue-table tr:last-child th:last-child {
	border-bottom-right-radius: 1em;
}

.blue-table th,
.blue-table td {
	padding: 1em;
}

.blue-table th.blue,
.blue-table td.blue {
	background-color: #004990;
	color: #ffffff;
}

.blue-table tr:nth-child(2n + 2) {
	background: rgba(209, 209, 209, 0.17);
}

.blue-table tr:nth-child(2n + 3) {
	background: rgba(209, 209, 209, 0.4);
}

.blue-table .pad {
	padding-left: 2.1875rem;
}

.blue-table p:last-of-type {
	display: none;
}

.simple-table table {
	width: 100%;
}

.simple-table table tr {
	height: 50px !important;
}

.simple-table p:last-child {
	display: none;
}

/*------------- slds-rich-text-editor__output ---------------*/
.slds-rich-text-editor__output.references-bottom__text a:hover,
.section__heading .slds-rich-text-editor__output a:hover {
	text-decoration: underline;
}

.slds-rich-text-editor__output.references-bottom__text ol {
	margin-bottom: 0;
}

.slds-rich-text-editor__output a:hover {
	text-decoration: underline;
}

.slds-rich-text-editor__output.references-bottom__text li {
	margin-bottom: 0;
}

.event-card__description .slds-rich-text-editor__output a:hover {
	text-decoration: underline;
}

.slds-rich-text-editor__output ol {
	margin-left: 1.9rem;
}

.check-mark-list.slds-rich-text-editor__output li::marker {
	content: '\2713';
	font-size: 90%;
}

.check-mark-list.slds-rich-text-editor__output li {
	padding-left: 0.5rem;
}

.check-mark-list--orange.slds-rich-text-editor__output li::marker {
	color: #d93d00
}

.result-item__heading .slds-rich-text-editor__output p {
	display: inline;
}

.result-item__details-list-item .slds-rich-text-editor__output p {
	display: inline;
}

/*----------- loading-spinner ---------------*/
.loading-spinner {
	position: relative;
	width: 40px;
	height: 40px;
}

.loading-spinner lightning-spinner {
	background-color: inherit;
}

/*-------------------------------------------- Form ------------------------------------------*/
/*------------------inputs / selects -----------------*/
/*------------------inputs -----------------*/
.form__item .slds-form-element__label {
	position: relative;
	display: inline-block;
	padding-right: .7em;
	font-size: 12px;
	font-family: var(--soFont);
	margin-bottom: 5.5px;
	color: #3C3C3C;
}

.form__item .slds-input {
	display: block;
	width: 100%;
	height: 43px;
	color: #3C3C3C;
	font-size: 0.9375rem;
	background-color: transparent;
	border: 1px solid #D4D4D4;
	padding: 0 1rem;
	border-radius: .25rem;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.custom-styles {
	font-size: 15px;
	color: #000;
	margin-bottom: 25px;
}

.custom-input.form__item.form__input.custom-styles-27 {
	font-size: 15px;
	color: #000;
	margin-bottom: 25px;
}

.custom-input.form__item.form__input.combobox.combobox.slds-has-error>div:last-child {
	color: #DE3E00;
	position: absolute;
	left: 0;
	bottom: -18.5px;
	font: italic 10px var(--soFont);
}

.custom-input.form__item.form__input.slds-has-error.combobox-27.slds-has-error>div:last-child {
	color: #DE3E00;
	position: absolute;
	left: 0;
	bottom: -18.5px;
	font: italic 10px var(--soFont);
}

.form__item .slds-input::-webkit-input-placeholder {
	color: #3C3C3C;
	opacity: 0.7;
}

.form__item .slds-input::-moz-placeholder {
	color: #3C3C3C;
	opacity: 0.7;
}

.form__item .slds-input:-ms-input-placeholder {
	color: #3C3C3C;
	opacity: 0.7;
}

.form__item .slds-input::-ms-input-placeholder {
	color: #3C3C3C;
	opacity: 0.7;
}

.form__item .slds-input::placeholder {
	color: #3C3C3C;
	opacity: 0.7;
}

.form__item .slds-input:focus {
	color: #3C3C3C;
	border-color: #1b96ff;
	-webkit-box-shadow: 0 0 3px #2574A9;
	box-shadow: 0 0 3px #2574A9;
	outline: 0;
}

.form__item.slds-has-error .slds-input {
	border-color: #ea001e;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-clip: padding-box;
}

.form__item.slds-has-error .slds-input:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.custom-styles-27.slds-has-error>div:last-child {
	font-family: var(--soFont);
	font-style: italic;
	font-size: 10px;
	color: #DE3E00;
	position: absolute;
	left: 0;
	bottom: -18.5px;
}

.form__item.custom-evt-styles.custom-orange-focus.form__input>div>input:focus,
.custom-input.form__item.form__input.custom-styles-27>div>input:focus {
	border: 1px solid #DE3E00;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.custom-styles-27.slds-has-error>div>input {
	border: 1px solid #D1D1D1;
}

.custom-input.form__item.form__input.custom-styles-27.slds-has-error>div>input:focus {
	border: 1px solid #DE3E00;
}

.custom-input.form__item.form__input.custom-styles.slds-has-error>div:last-child {
	font-family: var(--soFont);
	font-style: italic;
	font-size: 10px;
	color: #DE3E00;
	position: absolute;
	left: 0;
	bottom: -18.5px;
}

.custom-input.form__item.form__input.custom-styles>div>input:focus {
	border: 1px solid #DE3E00;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.custom-styles.slds-has-error>div>input {
	border: 1px solid #D1D1D1;
}

.custom-input.form__item.form__input.custom-styles.slds-has-error>div>input:focus {
	border: 1px solid #DE3E00;
}

.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox div>lightning-base-combobox>div>div>button.slds-combobox__input:focus,
.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div>button.slds-combobox__input:focus {
	border: 1px solid #DE3E00;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.combobox.slds-has-error>div>lightning-base-combobox>div>div>button.slds-input_faux {
	border: 1px solid #D1D1D1;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

.custom-input.form__item.form__input.combobox.slds-has-error>div>lightning-base-combobox>div>div>button.slds-input_faux:focus {
	border: 1px solid #DE3E00;
}

.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div>button {
	height: 43px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--soFont);
	font-size: 15px;
	color: #3C3C3C;
}

.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div>div>lightning-icon>lightning-primitive-icon>svg {
	fill: #F47600;
}

.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item {
	height: 50px;
}

.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:hover,
.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:focus,
.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item.slds-has-focus {
	background-color: #FFF5EC;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:focus {
	outline: none;
}

.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div>button.slds-combobox__input:focus {
	border: 1px solid #DE3E00;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.combobox-27.slds-has-error>div>lightning-base-combobox>div>div>button.slds-input_faux {
	border: 1px solid #D1D1D1;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div>button {
	height: 43px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--soFont);
	font-size: 15px;
	color: #3C3C3C;
}

.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div>div>lightning-icon>lightning-primitive-icon>svg {
	fill: #F47600;
}

.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item {
	height: 50px;
}

.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:hover,
.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:focus,
.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item.slds-has-focus {
	background-color: #FFF5EC;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.combobox-27>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:focus {
	outline: none;
}

/*--------------------checkboxes --------------------*/
.form__item .slds-checkbox .slds-form-element__label {
	font-size: 1.125rem;
	margin-left: 0.625rem;
	color: #3c3c3c;
}

.form__item.text-orange .slds-form-element__label {
	color: #d93d00;
}

.form__item.form-checkbox-required .slds-checkbox abbr.slds-required {
	position: absolute;
	left: 32px;
	top: 0;
}

.form__item .slds-checkbox .slds-checkbox__label .slds-checkbox_faux {
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	background-color: #ffffff;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	-webkit-transition: border .1s linear, background-color .1s linear;
	transition: border .1s linear, background-color .1s linear;
}

.form__item .slds-checkbox [type="checkbox"]:checked+.slds-checkbox__label .slds-checkbox_faux {
	background-color: #D93D00;
}

.form__item.slds-has-error .slds-checkbox [type="checkbox"][disabled]+.slds-checkbox__label .slds-checkbox_faux {
	border: 1px solid #d4d4d4;
}

.form__item .slds-checkbox [type="checkbox"]:checked+.slds-checkbox__label .slds-checkbox_faux:after {
	border-color: #ffffff;
	height: 7px;
	width: 17px;
	top: 45%;
}

/*-------checkboxes not slds----------------*/
.checkbox-item {
	-webkit-appearance: none;
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	background-color: #ffffff;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	margin-right: .5rem;
	vertical-align: middle;
	-webkit-transition: border 0.1s linear, background-color 0.1s linear;
	transition: border 0.1s linear, background-color 0.1s linear;
	position: relative;
}

.checkbox-item:checked {
	background-color: #d93d00;
}

.checkbox-item:focus {
	-webkit-box-shadow: 0 0 3px #2574A9;
	box-shadow: 0 0 3px #2574A9;
	border-color: #1b96ff;
}

.checkbox-item:checked::after {
	display: block;
	content: "";
	position: absolute;
	top: 45%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	border-bottom: 2px solid #fff;
	border-radius: 0;
	border-left: 2px solid #fff;
	height: 7px;
	width: 17px;
}

.checkbox-label {
	margin-left: 0.625rem;
	font-size: 1.125rem;
	color: #3c3c3c;
	display: inline;
	vertical-align: middle;
	padding: .25rem .7rem 0.4375rem 0;
}

/*--------------------radios --------------------*/
.form__radio .slds-form-element__control .slds-radio {
	margin-bottom: .9rem;
}

.form__radio .slds-form-element__control .slds-radio:last-child {
	margin-bottom: 0;
}

.form__radio.form__radio-request .slds-form-element__control .slds-radio {
	margin-bottom: 0;
}

.form__radio .slds-radio .slds-radio__label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.form__radio .slds-radio__label .slds-radio_faux {
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	background-color: #ffffff;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	-webkit-transition: border .1s linear, background-color .1s linear;
	transition: border .1s linear, background-color .1s linear;
	border-radius: 50%;
}

.form__radio.slds-has-error .slds-radio [type="radio"][disabled]+.slds-radio__label .slds-radio_faux {
	border: 1px solid #d4d4d4;
}

.form__radio .slds-radio [type="radio"]:checked+.slds-radio__label .slds-radio_faux {
	background-color: #D93D00;
}

.form__radio .slds-radio [type="radio"]:checked+.slds-radio__label .slds-radio_faux:after {
	height: 5px;
	width: 15px;
	top: 45%;
	-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	transform: translate3d(-50%, -50%, 0) rotate(-45deg);
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	border-radius: 0;
	background-color: transparent;
}

.form__radio .slds-radio__label .slds-form-element__label {
	font-size: 1.125rem;
	color: #3c3c3b;
	display: inline;
	margin-left: 0.625rem;
}

.quiz__radio .slds-radio__label .slds-radio_faux {
	border-radius: 6px;
}

.quiz__radio .slds-form-element__legend {
	display: none;
}

.custom-input.form__item.form__input.combobox.popup-register__input,
.custom-input.form__item.form__input.custom-styles.popup-register__input {
	margin-bottom: 26px;
}

.custom-input.form__item.form__input.custom-styles.popup-register__input .slds-input {
	background-color: var(--soColorWhite);
}

.custom-input.form__item.form__input.combobox.popup-register__input .slds-dropdown_length-with-icon-7 {
	max-height: 310px;
}

/*------------------stay-up-to-date -----------------*/
.so__stay-up-to-date-input .slds-form-element__label {
	display: none;
}

.so__stay-up-to-date-input .slds-required {
	display: none;
}

.so__stay-up-to-date-input .slds-input {
	display: block;
	width: 100%;
	height: 43px;
	background-color: transparent;
	color: #495057;
	font-size: 1.25rem;
	line-height: 1.3;
	font-family: var(--soFont);
	border: 1px solid transparent;
	border-bottom: 1px solid #797f80;
	padding: 0 1rem;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.so__stay-up-to-date-input .slds-input::-webkit-input-placeholder {
	font-size: 1.125rem;
	line-height: 1.5;
	font-family: var(--soFont);
	color: #000000;
	opacity: 35%;
}

.so__stay-up-to-date-input .slds-input::-moz-placeholder {
	font-size: 1.125rem;
	line-height: 1.5;
	font-family: var(--soFont);
	color: #000000;
	opacity: 35%;
}

.so__stay-up-to-date-input .slds-input:-ms-input-placeholder {
	font-size: 1.125rem;
	line-height: 1.5;
	font-family: var(--soFont);
	color: #000000;
	opacity: 35%;
}

.so__stay-up-to-date-input .slds-input::-ms-input-placeholder {
	font-size: 1.125rem;
	line-height: 1.5;
	font-family: var(--soFont);
	color: #000000;
	opacity: 35%;
}

.so__stay-up-to-date-input .slds-input::placeholder {
	font-size: 1.125rem;
	line-height: 1.5;
	font-family: var(--soFont);
	color: #000000;
	opacity: 35%;
}

.so__stay-up-to-date-input.form__item.slds-has-error .slds-input {
	border: none;
	border-bottom: 1px solid #797f80;
}

.so__stay-up-to-date-input.form__item.slds-has-error .slds-form-element__help {
	font-size: 10px;
	font-family: var(--soFont);
	font-style: italic;
	color: #DE3E00;
}

.so__stay-up-to-date-input.form__item.form__input.slds-has-error .slds-input:focus,
.so__stay-up-to-date-input.form__item.form__input .slds-input:focus {
	border: 1px solid #DE3E00;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.so-modal-newsletter--italic-label.form__item.form__input .slds-form-element__label::after {
	content: " This must be an NHS or professional practice related email address.";
	font: italic 12px var(--soFont);
	color: #3C3C3C;
}

.so__stay-up-to-date-input.form__item.form__input.slds-has-error>div:last-child {
	font: italic 10px var(--soFont);
	color: #DE3E00;
	position: absolute;
	left: 0;
	margin-top: 0;
	bottom: -18.5px;
}

.so-lgg-advantage-banner__heading h1 {
	font-size: 3rem;
	font-family: var(--soFont);
	margin: 0;
}

.so-cma-banner-section__heading h1 {
	font-size: 16px;
	line-height: 2;
	font-family: var(--soFont);
	margin: 0;
}

.so-diagnosis-banner-section__heading h1 {
	font-family: var(--soFont);
	line-height: 1.5;
	font-size: 16px;

}

.so-heading-and-text-section__description a {
	text-decoration: underline;
}

.so-management-banner-section__heading h1 {
	font-family: var(--soFont);
}

.so-product-banner-section__main-heading h1,
.so-siagnosis-banner-section__step-heading h1,
.so-management-banner-section__heading h1,
.so-event-banner-section__heading h1,
.so-resources-banner-sections__heading h1,
.so-product-banner-section_range-heading h1,
.so-resources-banner-sections__heading2 h1 {
	font-size: 3rem;
	line-height: 1.5;
}

.so-password-page.form__item.slds-has-error .slds-form-element__help {
	font: italic 10px var(--soFont);
	color: #DE3E00;
}

.so-password-page.form__item.slds-has-error .slds-input {
	border: 1px solid #D4D4D4;
}

.so-login.form__item {
	position: relative;
}

.so-login.form__item.slds-has-error .slds-form-element__help {
	position: absolute;
	left: 0;
	bottom: -18.5px;
	font: italic 10px var(--soFont);
	color: #DE3E00;
}

.so-login.form__item.slds-has-error .slds-input {
	border: 1px solid #D4D4D4;
}

.so-user-profile--italic-label.form__item .slds-form-element__label::after {
	content: " This must be an NHS or professional practice related email address.";
	font: italic 12px var(--soFont);
	color: #3C3C3C;
}

@media only screen and (max-width: 900px) {
	.overflow-y-hidden-mobile {
		overflow-y: hidden;
	}
}

@media only screen and (max-width: 767px) {
	:root {
		--soMainContainerSize: 1.5rem;
		--soInnerContainerSize: 0rem;
	}

	.main-container {
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}

	.inner-container {
		padding-right: 0rem;
		padding-left: 0rem;
	}

	.text-lvl60 {
		font-size: 2.1875rem;
	}

	.text-lvl48 {
		font-size: 1.875rem;
	}

	.text-lvl30 {
		font-size: 1.125rem;
	}

	.so__stay-up-to-date-input .slds-input {
		max-width: 540px;
		text-align: center;
		margin: 0 auto;
	}

	.so__stay-up-to-date-input .slds-form-element__help {
		max-width: 540px;
		margin: 0 auto;
	}

	.so-lgg-advantage-banner__heading h1,
	.so-product-banner-section__main-heading h1,
	.so-product-banner-section_range-heading h1,
	.so-event-banner-section__heading h1 {
		font-size: 2.1875rem;
		line-height: 1.5;
	}

	.so-lgg-advantage-banner__heading h1 {
		font-family: var(--soFont);
	}

	.so-product-banner-section__main-heading h1,
	.so-product-banner-section_range-heading h1 {
		font-family: var(--soFont);
	}

	.so-siagnosis-banner-section__step-heading h1,
	.so-management-banner-section__heading h1,
	.so-resources-banner-sections__heading h1,
	.so-resources-banner-sections__heading2 h1 {
		font-size: 35px;
		line-height: 1.5;
	}
}

.custom-input.form__item.form__input.custom-styles.slds-form-element {
	font-size: 15px;
	color: #000;
	margin-bottom: 25px;
}

.custom-input.form__item.form__input.custom-evt-styles {
	font-size: 15px;
	color: #000;
	margin-bottom: 45px;
}

.custom-input.form__item.form__input.custom-evt-styles.custom-evt-styles--small-mg {
	position: relative;
	margin-bottom: 26px;
}

.custom-input.form__item.form__input.custom-evt-styles.custom-evt-styles--small-mg.slds-has-error>div:last-child {
	font-family: var(--soFont);
	font-style: italic;
	font-size: 10px;
	color: #DE3E00;
	position: absolute;
	left: 15px;
	margin-top: 0;
	bottom: -18.5px;
}

.custom-input.form__item.form__input.custom-evt-styles.combobox.slds-has-error>div:last-child {
	position: static;
}

.custom-input.form__item.form__input.custom-evt-styles.custom-evt-styles--small-mg.combobox.slds-has-error>div:last-child {
	position: absolute;
}

.custom-input.form__item.form__input.custom-evt-styles.popup-register__input {
	margin-bottom: 26px;
}

.custom-input.form__item.form__input.custom-evt-styles.popup-register__input .slds-input {
	background-color: var(--soColorWhite);
}

.custom-input.form__item.form__input.custom-evt-styles>div {
	font-family: var(--soFont);
}

.custom-input.form__item.form__input.custom-evt-styles>div:last-child {
	font-family: var(--soFont);
	font-size: 10px;
	color: #DE3E00;
}

.custom-input.form__item.form__input.custom-evt-styles>div>input:focus {
	border: 1px solid #DE3E00;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.custom-input.form__item.form__input.custom-evt-styles.slds-has-error>div>input {
	border: 1px solid #D1D1D1;
}

.custom-input.form__item.form__input.custom-evt-styles.slds-has-error>div>input:focus {
	border: 1px solid #DE3E00;
}

.custom-input.form__item.form__input.custom-evt-styles {
	margin-bottom: 45px;
}

.so-request-sample.form__item.form__input .slds-form-element__label {
	font-size: 18px;
	font-family: var(--soFont);
	color: #3C3C3C;
}

.so-request-sample.form__item.form__input.slds-has-error>div:last-child {
	font-family: var(--soFont);
	font-style: italic;
	font-size: 10px;
	color: #DE3E00;
	position: absolute;
	left: 0;
	bottom: -18.5px;
}

.so-request-sample.form__item.form-checkbox-required.slds-has-error .slds-form-element__help {
	font-family: var(--soFont);
	font-style: italic;
	font-size: 10px;
	color: #DE3E00;
	position: absolute;
	left: 0;
	bottom: -18.5px;
}

.request-sample-radio.form__radio.patient-radio-btn .slds-radio_faux {
	border-radius: 6px;
}

.so-request-sample.form__item.form__input.slds-has-error .slds-input {
	border-color: #D4D4D4;
}

.so-request-sample.form__item.form__input.slds-has-error .slds-input:focus,
.so-request-sample.form__item.form__input .slds-input:focus {
	border: 1px solid #DE3E00;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.so-request-sample.form__item.form__input.custom-input.combobox.slds-has-error .slds-combobox__input {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-clip: padding-box;
}

.so-request-sample--special-label.form__item.form__input .slds-form-element__label::after {
	content: " This must be an NHS or professional practice related email address. If this is not provided, we will be unable to send samples.";
	font-size: 14px;
	font-family: var(--soFont);
	color: #3C3C3C;
	font-style: italic;
}

.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox>div>lightning-base-combobox>div>div>button {
	height: 43px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--soFont);
	font-size: 15px;
	color: #3C3C3C;
}

.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox>div>lightning-base-combobox>div>div>div>lightning-icon>lightning-primitive-icon>svg {
	fill: #F47600;
}

.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:hover,
.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item:focus,
.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item.slds-has-focus {
	background-color: #FFF5EC;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form__item.custom-evt-styles.custom-evt-styles--small-mg.form__input.combobox>div>lightning-base-combobox>div>div:nth-child(2)>lightning-base-combobox-item {
	height: 50px;
}

.checkbox-disabled .slds-form-element__control .slds-checkbox .slds-checkbox__label .slds-checkbox_faux,
.radio-disabled .slds-form-element__control .slds-radio .slds-radio__label .slds-radio_faux {
	border-color: rgb(201, 201, 201);
}

@media only screen and (max-width: 479px) {
	:root {
		--soMainContainerSize: 0.9375rem;
	}

	.main-container {
		padding-right: 0.9375rem;
		padding-left: 0.9375rem;
	}

	.regular-button {
		min-width: 240px;
		padding: 0.625rem 0.625rem;
	}

	.so-product-banner-section__main-heading h1,
	.so-product-banner-section_range-heading h1 {
		font-size: 2rem;
	}
}
