@import url( https://fonts.googleapis.com/css?family=Open+Sans:400,300,700 );

@font-face {
	font-family: 'tt travels';
	src: url('..//fonts/tttravels/fonts/TT Travels Regular.ttf');
}

html {
	font-family: "tt travels", Verdana,sans-serif;
}
body {
	font-family: "tt travels" ,Verdana,sans-serif; 
}
.primary-logo {
    margin: 8px 0px 8px 0;
}
.secondary-logo {
	float: right;
}
.background-dark {
	background-color: rgb(78, 77, 79);
}
.foreground-dark {
	color: rgb(255, 255, 255);
}
.foreground-dark:active {
	color: rgb(255, 255, 255);
}
.foreground-dark:visited {
	color: rgb(255, 255, 255);
}
.background-mid {
	background-color: rgb(187, 187, 187);
}
.foreground-mid {
	color: rgb(34, 34, 34);
}
.foreground-mid:active {
	color: rgb(34, 34, 34);
}
.foreground-mid:visited {
	color: rgb(34, 34, 34);
}
.background-light {
	background-color: rgb(239, 239, 239);
}
.panel-info {
	border-color: #e1e1e1;
}
.panel-info>.panel-heading {
    color: #333;
	background-color: #e1e1e1;
    border-color: #e1e1e1
}
.foreground-light {
	color: rgb(34, 34, 34);
}
.foreground-light:active {
	color: rgb(34, 34, 34);
}
.foreground-light:visited {
	color: rgb(34, 34, 34);
}
#spree-navbar {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1030;
}
.offcanvas {
	left: auto; right: -80%;
}
.offcanvasActive {
	top: 0px; right: 0%;
}
#offCanv {
	position: relative;
}
.offcanvasBody {
	transition:0.25s ease-out; left: -80%; top: 0px; -webkit-transition: all .25s ease-out; -o-transition: all .25s ease-out;
}
.button-holder {
	padding: 20px; width: 100%; text-align: center;
}
.btn-default {
  border-color: var(--cc_bg_dk, rgb(0, 0, 0));
	color: var(--cc_fg_dk, rgb(255, 255, 255));
	background-color: var(--cc_bg_dk, rgb(0, 0, 0));
}

.btn-default:hover {
	border-color: var(--cc_bg_dk, rgb(0, 0, 0));
	color: var(--cc_fg_dk, rgb(255, 255, 255));
	background-color: var(--cc_bg_dk, rgb(0, 0, 0));
}

@-webkit-keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
    .btn,
	button,
	input[type="button"],
	input[type="submit"],
	input[type="reset"] {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		line-height: 1.2;
		transition: filter 120ms ease, box-shadow 120ms ease;
	}

	.btn.btn-block,
	button.btn-block,
	input.btn-block[type="button"],
	input.btn-block[type="submit"],
	input.btn-block[type="reset"] {
		display: flex;
		width: 100%;
	}

	.btn:not(.disabled):not([disabled]):active,
	.btn:not(.disabled):not([disabled]).active,
	button:not(:disabled):active,
	input[type="button"]:not(:disabled):active,
	input[type="submit"]:not(:disabled):active,
	input[type="reset"]:not(:disabled):active {
		filter: brightness(0.92);
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
	}

	.btn.is-clicked,
	button.is-clicked,
	input[type="button"].is-clicked,
	input[type="submit"].is-clicked,
	input[type="reset"].is-clicked,
	.btn[aria-pressed="true"],
	button[aria-pressed="true"] {
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.15);
		filter: brightness(0.94);
	}

	.menubutton .glyphicon,
	.menubutton .fa,
	.menubutton [class^="icon-"],
	.menubutton [class*=" icon-"] {
		margin-left: 8px;
	}

	.menubutton .glyphicon:first-child,
	.menubutton .fa:first-child,
	.menubutton [class^="icon-"]:first-child,
	.menubutton [class*=" icon-"]:first-child {
		margin-left: 0;
		margin-right: 8px;
	}

	.btn-default:active,
 .btn-default:focus {
     border-color: var(--cc_bg_dk, rgb(0, 0, 0));
		color: var(--cc_fg_dk, rgb(255, 255, 255));
		background-color: var(--cc_bg_dk, rgb(0, 0, 0));
	}
#spree-navbar ul {
	margin: 0px; padding: 0px;
    /*margin: 0px; padding: 0px;white-space: nowrap; THIS WILL STOP THE MENU WRAPPING BUT MAY TAKE IT TOO FAR RIGHT*/
}
#spree-navbar ul > li {
	list-style: none; margin: 0px; display: block;
}
#spree-navbar ul > li > a {
	padding: 10px; text-decoration: none; display: block;
}
#spree-navbar ul > li > a:active {
	padding: 10px; text-decoration: none; display: block;
}
#spree-navbar ul > li > a:visited {
	padding: 10px; text-decoration: none; display: block;
}
#spree-navbar ul > li > a:hover {
	color: rgb(0, 0, 0);
    /*ANT - Stop Pierre moaning*/
    background-color: #fff;
}

div .userNav a:hover {
    text-decoration: none;
	color: rgb(0,0,0) !important;
}
div .userNav:hover {
    color: rgb(0,0,0) !important;
}

.menubutton {
	margin: 5px; padding: 10px; height: 40px;
}
#spree-navbar ul > li > a > img {
	height: 25px;
}
#spree-navbar h2 {
	margin: 0px; padding: 4%;
}
#user-info {
	padding: 10px;
}
#user-info h2 {
	margin: 10px 0px 0px; padding: 0px; font-weight: 300;
}
#balance-box {
	width: 100%; margin-bottom: 20px;
}
.outer-circle {
	margin: 10px auto; border-radius: 50%; border: 2px solid rgb(78, 77, 79); border-image: none; width: 130px; height: 130px; overflow: hidden; position: relative;
}
.inner-circle {
	margin: 3%; border-radius: 50%; width: 94%; height: 94%; overflow: hidden; position: relative; background-color: rgb(255, 255, 255);
}
.circle-copy {
	top: 21%; width: 100%; text-align: center; color: rgb(34, 34, 34); position: absolute;
}
.circle-value {
	width: 100%; font-size: 120%; font-weight: bold; display: block; position: relative;
}
.circle-text {
	width: 100%; text-transform: uppercase; font-size: 70%; display: block; position: relative;
}
.circle-foot {
	width: 100%; height: 35%; text-align: center; bottom: 0px; color: rgb(255, 255, 255); text-transform: uppercase; padding-top: 3%; padding-right: 10%; padding-left: 10%; font-size: 80%; font-weight: bold; position: absolute; background-color: rgb(78, 77, 79);
}
.circle-foot a {
    color: #fff;
}
.liftShadow {
	position: relative;
}
.liftShadow::before {
	background: rgb(119, 119, 119); left: 10px; top: 80%; width: 50%; bottom: 15px; position: absolute; z-index: -1; max-width: 300px; content: ""; box-shadow: 0px 15px 10px #999999; transform: rotate(-3deg);
}
.liftShadow::after {
	background: rgb(119, 119, 119); left: 10px; top: 80%; width: 50%; bottom: 15px; position: absolute; z-index: -1; max-width: 300px; content: ""; box-shadow: 0px 15px 10px #999999; transform: rotate(-3deg);
}
.liftShadow::after {
	left: auto; right: 10px; transform: rotate(3deg);
}
.logo-slider {
	margin: 10px auto 0px; padding: 1%; width: 90%; background-color: rgb(255, 255, 255);
}
.logo-slider img {
	padding: 10px; height: 50px;
}
.feature-item {
	display: block;
}
.feature-footer {
	display: block;
	margin: 0px 5px 0px 5px; padding: 11px; display: inline-block; background-color: rgba(0, 0, 0, 0); letter-spacing: 0.4px;
}
.feature {
	margin: 0px auto 0px; width: 90%; position: relative;
}
.feature > img {
	width: 100%;
}
.feature > .text {
	top: 0px; position: absolute;
}
.feature > .text > span {
	margin: 5px; padding: 10px; color: rgb(255, 255, 255); letter-spacing: 2px; font-weight: 300; display: inline-block; background-color: rgba(0, 0, 0, 0);
}
.feature > .description {
	padding: 10px; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);
}
.offersTitle {
    margin: 0px 0px 0px 5px; padding: 11px; background-color: rgba(0, 0, 0, 0); letter-spacing: 1.5px;
}
.footer {
	padding-top: 20px; padding-bottom: 10px;
}
.footer ul {
	margin: 10px 0px 0px; padding: 0px;
}
.footer ul > li {
	margin: 0px; padding-top: 5px; padding-bottom: 5px; display: block;
}
.footer ul > li > a {
	padding: 10px;
	text-align: center;
	color: rgb(255, 255, 255);
	display: block;
	text-decoration: none !important;
}
.footer ul > li > a:hover,
.footer ul > li > a:focus {	
	color: inherit !important;
	font-weight: bold;
	text-decoration: underline !important;
}

.poweredbylogo {
	margin: 0px auto;
}
.carousel {
	height: auto; margin-bottom: 0px;
}
.carousel-caption {
	z-index: 10;
}
.carousel .item {
	margin: 0px auto; height: auto; padding-top: 10px;
}
.right.carousel-control {
	background: none;
}
.left.carousel-control {
	background: none;
}
.navbar-default {
	border: 0px currentColor; border-image: none; background-color: transparent;
}
.navbar {
	margin-bottom: 0px;
}
.userNav {
	font-size: 0.8em;
}
.userNav i {
	font-size: 3em; display: block;
}

#pswd_info {
        padding: 15px;
        background: #fefefe;
        font-size: .875em;
        box-shadow: 0 1px 3px #ccc;
        border: 1px solid #ddd;
    }

.pswd_infoinvalid {
        background: url(../images/invalid.png) no-repeat 0 50%;
        padding-left: 22px;
        line-height: 24px;
        color: #ec3f41;
    }

.pswd_infovalid {
        background: url(../images/valid.png) no-repeat 0 50%;
        padding-left: 22px;
        line-height: 24px;
        color: #3a7d34;
    }

#pswd_info { display: none; }
@media only screen and (min-width:480px)
{
.poweredbylogo {
	margin: auto; float: right;
}
.carousel .item {
	margin: 0px auto; height: auto; padding-top: 0px;
}
.right carousel-control {
	display: none;
}
.left carousel-control {
	display: none;
}
.feature-item {
	width: 33%; float: left; position: relative;
}
.footer ul {
	margin: 10px; padding: 0px;
}
.footer ul > li {
	margin: 0px; padding: 0px; display: inline;
}
.footer ul > li > a {
	padding: 10px;
	text-align: center;
	color: rgb(255, 255, 255);
	display: inline;
	text-decoration: none !important;
}
.footer ul > li > a:hover,
.footer ul > li > a:focus {		
	color: inherit !important;
	font-weight: bold;
	text-decoration: underline !important;
}
}
@media only screen and (max-width:767.98px)
{
    .navbar {
        position: relative;
        z-index: 1031;
        --bs-navbar-toggler-border-color: transparent;
    }

    .navbar .container {
        position: relative;
    }

    .navbar-toggler {
        border: 2px solid transparent !important;
        border-radius: 8px;
        padding: 6px 10px;
        background-color: transparent;
        box-shadow: none;
        margin: 4px 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        line-height: 1;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler:focus-visible,
    .navbar-toggler[aria-expanded="false"],
    .navbar-toggler.collapsed {
        border-color: transparent !important;
        box-shadow: none !important;
        filter: none !important;
        outline: none;
    }

    .navbar-toggler[aria-expanded="true"],
    .navbar-toggler[aria-expanded="true"]:hover,
    .navbar-toggler[aria-expanded="true"]:focus,
    .navbar-toggler[aria-expanded="true"]:active,
    .navbar-toggler[aria-expanded="true"]:focus-visible,
    .navbar-dark .navbar-toggler[aria-expanded="true"],
    .navbar.navbar-dark .navbar-toggler[aria-expanded="true"] {
        border-color: #fff !important;
        box-shadow: none !important;
        filter: none !important;
        outline: none;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% - 2px);
        right: 0;
        left: auto;
        width: max-content;
        max-width: calc(100vw - 16px);
        margin-top: 0;
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        transform-origin: top right;
        background-color: var(--cc_bg_dk, rgb(78, 77, 79));
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    }

    .navbar-collapse.collapse {
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .navbar-collapse.collapsing {
        display: block;
        height: auto !important;
        transition: opacity 0.2s ease, transform 0.2s ease;
        opacity: 0;
        transform: translateY(-6px) scale(0.96);
    }

    .navbar-collapse.collapse.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    #spree-navbar {
        position: relative;
        width: auto;
        height: auto;
        z-index: auto;
    }

    #spree-navbar ul > li > a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        white-space: nowrap;
        text-align: left;
        line-height: 1.2;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        transition: background-color 120ms ease, color 120ms ease;
    }

    #spree-navbar ul > li > a > i {
        width: 1.4em;
        min-width: 1.4em;
        height: 1.4em;
        text-align: center;
        font-size: 1.2em;
        line-height: 1;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-1px);
    }

    #spree-navbar ul > li > a > i::before {
        line-height: 1;
    }

    #spree-navbar ul > li:first-child > a {
        border-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar-collapse.collapsing,
    .navbar-collapse,
    .navbar-toggler,
    #spree-navbar ul > li > a {
        transition: none !important;
    }
}

@media only screen and (min-width:768px)
{
#user-info h2 {
	padding-top: 10px; padding-left: 0px;
}
.navbar-right li {
	text-align: center; font-size: 0.8em;
}
.outer-circle {
	border-width: 8px; width: 240px; height: 240px;
}
.circle-text {
	font-size: 100%;
}
.circle-value {
	width: 100%; font-size: 250%; font-weight: bold; display: block; position: relative;
}
.circle-foot {
	padding-top: 5%; font-size: 100%;
}
#spree-navbar {
	width: 100%; position: relative;
}
#spree-navbar ul > li {
	width: 12%; display: inline-block;  
}

.nav_bar_9_items{
	width: 10% !important; display: inline-block; /*ANT*/
}
.nav_bar_10_items{
	width: 9.5% !important; display: inline-block; /*ANT*/
}
.nav_bar_11_items{
	width: 8.5% !important; display: inline-block; /*ANT*/
}
.nav_bar_12_items{
	width: 8% !important; display: inline-block; /*ANT*/
}

#spree-navbar ul > li > a {
	text-align: center; font-size: 0.7em;
}
#spree-navbar ul > li > a > i {
	font-size: 2em; display: block;
}
.offcanvas {
	left: auto; top: auto; right: auto; position: relative;
}
}
@media only screen and (min-width:992px)
{
#spree-navbar ul > li > a > i {
	font-size: 3em; display: block;
}
}

.well-done {
    background: lightseagreen;
    opacity: 0.9;
}

.well-current {
    border: lightseagreen 2px solid;
    opacity: 0.9;
}

.well-done-test {
	background: lightseagreen;
	opacity: 0.5;
}

.well-current-test {
	border: lightseagreen 5px solid;
	opacity: 0.9;
}

I.fa {
    padding-top: 9px;
    padding-bottom: 5px;
}

TABLE.legacyStatementTable {
    width: 100%;   
}

TABLE.statementTable tr:first-child {
    font-weight: bold;
}

TABLE.statementTable td:last-child {
    text-align: right;
}

TABLE.statementTable tr:not(:first-child) td:nth-child(4) {
    /*text-align: right;*/
    font-size: 150%;
}

.legacyStatementTable th {
    width: 14%;
    padding-bottom: 8px;
}

.legacyStatementTable td {
    text-align: left;
}

.legacyStatementTable th:nth-child(4) {
    width: 20%;
}

.legacyStatementTable th:nth-child(4), .legacyStatementTable td:nth-child(4),
.legacyStatementTable th:nth-child(6), .legacyStatementTable td:nth-child(6),
.legacyStatementTable th:nth-child(8), .legacyStatementTable td:nth-child(8)
{
    display: none;
}

.legacyStatementTable th:nth-child(7), .legacyStatementTable td:nth-child(7)
{
    text-align: right;
}

.SupplierLogo {
    padding: 15px 20px;
    border: 1px solid rgb(172, 172, 172);
    border-image: none;
    margin-left: 5px;
    margin-bottom: 4px;
    background-color: white;
}

TR.positive TD {
    color: green;
}

TR.failed TD {
    color: red;
}

#statementTable td {
    vertical-align: middle;
}

select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    width: 97% !important;
}

SELECT.with-addon
{
    width: 96% !important;
}

DIV.with-addon
{
    padding-left: 2px;
}

@media all and (min-width:768px) {
    .UibPaymentChoice {
        min-height:300px;
    }
}

/*Embed a 16 * 5 IFrame
*/
.embed-responsive-16_x_5_b4::before{
    padding-top: 31.25%;
}


/*
	STEPPED PROGRESS BAR - START
	https://devrecipes.net/step-progres-bar-with-pure-css/

	--cc_bg_mid: ##TOPSUBMENUBG##;
	--cc_bg_dk: ##TOPMENUBG##;
	--cc_fg_dk: ##TOPMENUFG##;
	--cc_fg_dk_act: ##TOPMENUFG##;

*/
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
/*margin-left: -5%;
margin-right: -5%;*/
}

.stepper-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;

	@media (max-width: 768px) {
		font-size: 12px;
	}
}

/*.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 4px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}*/

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 4px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
  color: var(--cc_fg_dk);
}

.stepper-item.active {
  font-weight: bold;
  font-size: 14px;
}

.step-counter.completed {
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--cc_bg_mid);
	margin-bottom: 6px;
}

.step-counter.active {
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--cc_bg_dk);
	margin-bottom: 6px;
	margin-top: -5px;
}

/*.step-counter.active > a:any-link{
	color: var(--cc_fg_dk) !important;
}*/

/stepper-item.completed::after {
	position: absolute;
	content: "";
	border-bottom: 4px solid var(--cc_bg_mid);	
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 3;
}

.stepper-item.completed::before {
	position: absolute;
	content: "";
	border-bottom: 4px solid var(--cc_bg_mid);
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 3;
}

/*.stepper-item.active::before {
	position: absolute;
	content: "";
	border-bottom: 4px solid var(--cc_bg_mid);
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 3;
}*/




.stepper-item.completeandactive::after {
	position: absolute;
	content: "";
	border-bottom: 4px solid var(--cc_bg_mid);
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 3;
}
*/


.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

.step-name{
	text-align: center;

}

/* Remove up/down arrows for all number inputs*/
/* Webkit: Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

.custom-checkbox {
	width: 20px;
	height: 20px;
	margin: 0px 5px !important;
}

input[type="checkbox"],
.form-check-input,
.custom-checkbox {
	accent-color: var(--cc_bg_dk);
	-webkit-appearance: checkbox !important;
	appearance: auto !important;
	background-image: none !important;
}

.form-check-input {
	border-color: var(--cc_bg_dk);
}

	.form-check-input:checked {
		background-image: none !important;
		background-color: var(--cc_bg_dk);
		border-color: var(--cc_bg_dk);
	}

input.form-check-input[type="checkbox"]:checked,
input.form-check-input[type="radio"]:checked,
input.form-check-input[type="checkbox"]:indeterminate {
	--bs-form-check-bg-image: none;
	background-image: none !important;
}

.form-check-input:focus {
	border-color: var(--cc_bg_dk);
	box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.15);
}

.privacy-policy-font {
	font-size: 13px;
}

.font-weight-normal {
	font-weight: normal !important;
}

.register-horizontal-margin {
	margin: 0;
}

@media (min-width: 992px) {
	.register-horizontal-margin {
		margin-left: auto;
		margin-right: auto;
		max-width: 800px;
	}
}






input[type="radio"],
.form-check-input[type="radio"] {
accent-color: var(--cc_bg_dk);
-webkit-appearance: radio !important;
appearance: auto !important;
background-image: none !important;
}

select.form-select,
.form-select {
--bs-form-select-bg-img: none !important;
-webkit-appearance: menulist !important;
-moz-appearance: menulist !important;
appearance: auto !important;
background-image: none !important;
padding-right: 0.75rem;
}

/* Remove Bootstrap SVG background from navbar toggler icon */
.navbar-toggler-icon {
--bs-navbar-toggler-icon-bg: none;
background-image: none !important;
}

@media only screen and (max-width:767.98px) {
    .navbar-toggler .fa {
        vertical-align: middle;
        line-height: 1;
        font-size: 1em;
        margin: 0;
        padding: 0;
    }
}


/* Override global I.fa padding for toggler icon */
.navbar-toggler .fa {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: middle;
    line-height: 1;
}

