
.cprofit-forms {
    align-items: center;
}

.form-page {
	width: 100%;
	max-width: 800px !important;
}

.my-subscriptions-dialog h1,.my-subscriptions-dialog a, .my-subscriptions-dialog p {
	margin: 0;
	font-family: var(--ff2);
	text-decoration: none;
	color: var(--color-b);
}

.my-subscriptions-dialog .content-box {
    border-radius: 4px;
}

.my-subscriptions-dialog .icon-wrapper {
    width: max-content;
    line-height: 0;
    margin-right: var(--large);
}

.my-subscriptions-dialog .icon-wrapper img {
	width: 100%;
	max-width: 150px !important;
	max-height: 150px;
	min-width: 120px;
}


.my-subscriptions-dialog .subscription-item {
	display: flex;
	justify-content: space-between;
}

.my-subscriptions-dialog .headline-wrapper {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
}

.my-subscriptions-dialog .subscription-headline {
    font-size: var(--font-large);
    font-weight: 400;
}

.my-subscriptions-dialog .control-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.my-subscriptions-dialog .toggle-wrapper {
    width: max-content;
}

.my-subscriptions-dialog .status-wrapper {
    display: flex;
    justify-content: flex-end;
}

.my-subscriptions-dialog .status-wrapper .subscription-status.active {
	color: var(--color6);
}

.my-subscriptions-dialog .status-wrapper .subscription-status {
	color: #d33a3a;
}


.my-subscriptions-dialog .sub-item.status-active {
    width: max-content;
    display: flex;
    font-size: var(--font-small);
    column-gap: 4px;
}

.my-subscriptions-dialog .sub-item.status-active .sub-item-value.active {
	color: var(--color6);
}

.my-subscriptions-dialog .sub-item.status-active .sub-item-value {
	color: #d33a3a;
}

.my-subscriptions-dialog .sub-item.status-active .sub-item-name {
	font-weight: 400;
}


.my-subscriptions-dialog .subscription-sub-items {
    display: flex;
    flex-flow: column;
}

.my-subscriptions-dialog .subscription-sub-items .sub-item-row:not(:last-child) {
    border-bottom: 1px solid var(--color-s);
    margin-bottom: var(--large);
    padding-bottom: var(--large);
}


.my-subscriptions-dialog .sub-item-row {
	display: flex;
	justify-content: space-between;
}

.my-subscriptions-dialog .sub-item-row .sub-item-col {
	width: 50%;
	display: flex;
	flex-flow: column;
	row-gap: var(--large);
}

.my-subscriptions-dialog .sub-item-name {
	font-weight: 600;
}

.my-subscriptions-dialog a.sub-button {
	display: flex;
	background: var(--color-dept);
	color: var(--color-w);
	justify-content: center;
	padding: var(--small);
	border-radius: 4px;
}

.my-subscriptions-dialog .sub-item-row:last-child {
	column-gap: var(--large);
}

.my-subscriptions-dialog .subscription-sub-items .sub-item-row:first-child {
    margin-top: var(--large);
    padding-top: var(--large);
    border-top: 1px solid var(--color-s);
}

.my-subscriptions-dialog .control-wrapper .toggle-button {
    display: flex;
	cursor: pointer;
}

.my-subscriptions-dialog .control-wrapper .toggle-button:after {
	content: '';
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 32a224 224 0 1 1 0 448 224 224 0 1 1 0-448zm0 480A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM208 352c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V240c0-8.8-7.2-16-16-16H216c-8.8 0-16 7.2-16 16s7.2 16 16 16h24v96H208zm48-168a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"/></svg>');
	width: 16px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-left: 4px;
}


.my-subscriptions-dialog .subscription-sub-items {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}

html.dark .my-subscriptions-dialog .control-wrapper .toggle-button:after {
    filter: invert(1);
}



.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.steps-nav {
    display: flex;
    justify-content: space-around;
    padding: 0;
}
.steps-nav .step-nav {
    flex: 1 1 30%;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--color-s);
    background-color: var(--color-w);
    box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 3s;
    cursor: pointer;
}
.steps-nav .step-nav.active {
    box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.3) inset;
}
.steps-nav .step-nav.active p {
    font-weight: bold;
}
.steps-nav .step-nav p {
    color: var(--color-navlink);
    font-size: var(--font-medium);
}

.ag-form .step .price {
	font-weight: bold;
	margin-left: auto;
}

.ag-form .next_step {
    justify-content: flex-end;
    display: flex;
}

.ag-form .form-row{
	margin-bottom: 16px;
	position: relative;
}

.ag-form .form-row label {
	position: absolute;
	z-index: 1;
	top: 9px;
	left: 6px;
	padding: 0px 8px;
	transition: top .3s, left .3s, font-size .3s;
}

.ag-form .form-row textarea, .ag-form .form-row input {
	padding: 9px;
	border: 1px solid var(--color1);
	width: 100% !important;
	box-sizing: border-box;
	border-radius: 4px;
}

.ag-form .form-row select {
	padding: 9px;
	border: 1px solid var(--color-dept);
	width: 100% !important;
	box-sizing: border-box;
	border-radius: 4px;
}

.ag-form .form-row input::placeholder, .ag-form .form-row textarea::placeholder {
	opacity: 0;
	transition: 0.3s;
}

.ag-form .form-row.active label {
	top: -7px;
	left: 3px;
	font-size: 12px;
}

.ag-form .form-row.active input::placeholder, .ag-form .form-row.active textarea::placeholder {
	opacity: 1;
}

.ag-form .form-row.addr_street input {
	padding-right: 40px;
}

.ag-form .form-row.addr_street .address-correction {
	position: absolute;
	left: 0;
  font-family: var(--ff2);
  font-size: 15px;
	right: 0;
	top: calc(100% + 4px);
	z-index: 20;
	background-color: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	padding: 10px 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	cursor: pointer;
}

.ag-form .form-row.addr_street .address-correction:hover {
	background-color: #f7f7f7;
}

.ag-form .form-row.addr_street .address-correction-toggle {
	position: absolute;
	right: 8px;
	top: 8px;
	width: 22px !important;
	height: 22px;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.ag-form .form-row.addr_street .address-correction-toggle svg {
	fill: #c73535;
}


.ag-form button, .ag-form .button-wrapper input {
	border: 0;
	background: var(--color-dept);
	padding: 10px;
	width: calc(50% - 8px);
	color: var(--color-w);
	margin-bottom: 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	font-weight: 500;
	font-family: var(--ff2);
}

.form-row.create_account a {
  border: 2px solid var(--color-dept);
  padding: 10px 20px;
  width: max-content;
  color: var(--color-dept);
  margin-bottom: 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  font-family: var(--ff2);
  text-decoration: none;
}

.form-row.create_account a:hover {
  text-decoration: underline;
}

.ag-form  .same-row {
	display: inline-flex;
	width: 100%;
}
.ag-form  .same-row > .form-row {
	width: 50%;
}

.ag-form  .same-row  .form-row:first-child {
	margin-right: 8px;
}
.ag-form  .same-row  .form-row:last-child {
	margin-left: 8px;
}


.ag-form  .same-row .form-row.small-row {
	width: 25%;
}

.ag-form  .same-row .form-row.small-row ~ .form-row {
	width: 75%;
}

.max-row, .max-row > .form-row {
    width: 100%;
}

.max-row > .form-row > button {
	width: calc(100% - 8px);
}

.ag-form .form-subtitle {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.ag-form .form-subtitle:after {
  content: "";
  width: 70%;
  border-bottom: 2px solid var(--color3);
  position: absolute;
  top: 12px;
}

.ag-form .form-subtitle p {
  margin: 0;
  font-size: 16px;
  background: var(--color-w);
  z-index: 2;
  padding: 0 10px;
  color: var(--color-b);
  font-family: var(--ff2);
}

.ag-form .endDate {
  display: none;
}

.ag-form .show {
  display: block;
}

.ag-form .hide {
  display: none;
}

.ag-form .info-row:empty {
  display: none;
}

.ag-form .form-row.terms {
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
  justify-content: flex-end;
  align-items: flex-start;
}

.ag-form .form-row.terms label {
  position: relative;
  font-size: var(--font-medium) !important;
  padding: 0;
  background: none;
  left: 0;
  top: 0;
  font-family: var(--ff2);
  line-height: 1.3;
  color: var(--color-b);
  transition: none;
}

.ag-form .form-row.terms label a {
  color: var(--color-dept);
  text-decoration: underline;
  display: inline;
}

.ag-form .form-row.terms input {
  width: max-content !important;
  margin-right: var(--small);
  cursor: pointer;
}

.ag-form button[type="submit"] {
  margin-bottom: 0;
}

.ag-form .form-row.reset_password {
  margin: var(--large) 0 0;
}

.ag-form .form-row {
  /* Styles for textarea, input, select */
}

.ag-form .form-row textarea,
.ag-form .form-row input,
.ag-form .form-row select {
  background: transparent;
  color: var(--color-b);
  font-family: var(--ff2);
}

.ag-form .form-row label {
  background: var(--color-w);
  color: var(--color-b);
  font-family: var(--ff2);
}

.ag-form .form-row select option {
  color: #1c2326;
}

.ag-form .step {
  display: none;
  margin-top: 30px;
}

.ag-form .step.visible {
  display: block;
}

.ag-form .box-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--agflexgap);
  --agflexgap: 40px;
}

.ag-form .box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ag-form .box {
  flex: 1 1 calc(30% - ((3 - 1) * var(--agflexgap)));
  margin: 0;
  min-width: 240px;
}

.ag-form .box img {
  width: 75%;
}

.ag-form .box .sub-name {
  text-align: center;
  margin: 0;
  height: 100px;
}

.ag-form .box .icon-wrapper {
  text-align: center;
}

.ag-form .box button {
  width: 100%;
  margin-bottom: 0;
}

.ag-form .radio-wrapper label {
  position: relative !important;
  top: initial !important;
  left: initial !important;
  background: transparent !important;
  padding: var(--small);
  display: inline-flex;
  width: calc(100% - 30px);
  cursor: pointer;
}

.ag-form .radio-wrapper input[type="radio"] {
  width: initial !important;
  margin-left: var(--medium);
  cursor: p;
}

.ag-form .radio-wrapper {
  background: var(--color3);
  margin-bottom: var(--small);
}

.ag-form .half-row .form-row {
  width: 100%;
}

.ag-form .half-row {
  width: 50%;
  padding: var(--medium);
}

.ag-form .steps-nav {
    display: flex;
    justify-content: space-around;
    padding: 0;
}


.cprofit-forms div[class*="-dialog"] {
  display: none;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.cprofit-forms div[class*="-dialog"] > div {
  width: 100%;
}

.cprofit-forms .info-box {
  padding: var(--xlarge);
  background: #bbbbbb55;
  border: 1px solid #bbb;
  border-radius: 4px;
  margin-bottom: var(--medium);
  display: none;
font-family: var(--ff1);
}

.cprofit-forms .info-box.success {
  background: #00cc0055;
  border: 1px solid #00cc00;
  display: flex;
}

.cprofit-forms .info-box.waiting {
  background: #e6e71c55;
  border: 1px solid #e6e71c;
  display: flex;
}

.cprofit-forms .info-box.fail {
  background: #cc000055;
  border: 1px solid #cc0000;
  display: flex;
}

.form-page {
  padding: 20px;
  min-height: 250px;
}

.form-page .newRegister,
.form-page .subscription-true,
.form-page .subscription-false,
.form-page .modify-true,
.form-page .modify-false,
.form-page .loginFalse,
.form-page .password-change,
.form-page.forgot-password-text p {
  display: none;
  font-size: 16px;
  background: var(--color2);
  color: #000;
  padding: 10px 20px;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 0px 0px 20px 0px;
}

.form-page .modify-false,
.form-page .subscription-false,
.form-page .loginFalse,
.form-page.forgot-password-text p.email-false,
.form-page.forgot-password-text p.password-false {
  border: 1px solid #c3674a;
  background: #c35f4ab5;
}

.form-page p.active {
  display: flex !important;
}

.form-page a.forgot-password {
  display: flex;
  width: 100%;
  color: var(--color-b);
  font-size: var(--font-small);
}


.select-action {
  display: inline-flex;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--color3);
  position: relative;
  width: 100%;
}

.select-action > span {
  padding: 10px 0px;
  color: var(--color-b);
  font-family: var(--ff2);
  line-height: 1.7;
}

.select-action a {
  font-size: 18px;
  font-weight: 500;
  width: 50%;
  text-align: center;
  padding: 10px;
  display: block;
  color: var(--color-b);
  font-family: var(--ff2);
}

.select-action:before {
  background: var(--color-dept);
  content: "";
  width: 50%;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -2px;
}

.select-action.left:before {
  left: 0;
}

.select-action.right:before {
  right: 0;
}


.user-profile {
  position: relative;
  margin: 0 !important;
  color: black;
  fill: var(--color-navlink);
  justify-content: center;
}

.user-profile #user-name {
  padding-right: var(--small);
}

.user-profile .profile-link-wrap {
  position: absolute;
  width: initial;
  padding: var(--large);
  top: 32px;
  right: -16px;
  background: var(--color-dept);
  box-shadow: var(--bs);
  row-gap: var(--small);
  border-radius: 4px;
  min-width: 170px;
  z-index: 1000;
  display: flex;
  flex-flow: column;
}

.user-profile .profile-link-wrap:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--color-dept);
  position: absolute;
  top: -8px;
  right: 13px;
}

.user-profile .profile-link-wrap div {
  justify-content: end;
  line-height: 1;
  transition: all 0.2s;
  min-height: 21px;
}

.user-profile .profile-link-wrap a {
  display: flex;
  cursor: pointer;
  width: 100%;
  justify-content: flex-end;
}

.user-profile .profile-link-wrap.none {
  display: none !important;
}

.user-profile .user-logout {
  margin-top: -3px;
}

.user-profile .user-logout input {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--color-w);
  font-size: var(--font-medium);
  font-family: var(--ff2);
  line-height: 1.3;
}

.user-profile .user-logout svg {
  margin-right: 4px;
  fill: var(--color-w);
  font-size: 12px;
}

.user-profile form {
  display: flex;
  align-items: center;
}

.user-profile .profile-btn {
  cursor: pointer;
  user-select: none;
  display: flex;
}

.user-profile .profile-name {
  padding-right: var(--small);
}

.user-profile .profile-link-wrap p {
  color: black;
  font-size: var(--font-medium);
  margin: 0;
  font-family: var(--ff2);
  cursor: pointer;
  user-select: none;
}

.user-profile .avatar-svg svg {
  fill: var(--color-dept);
}

.user-profile .user-logout {
  display: flex;
}



.steps-nav {
    display: flex;
    justify-content: space-around;
    padding: 0;
}

.steps-nav .step-nav {
    flex: 1 1 30%;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--color-s);
    background-color: var(--color-w); 
    box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.1); 
    transition: box-shadow 3s;
    cursor: pointer;
}

.steps-nav .step-nav.active {
    box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.3) inset;
    
}
.steps-nav .step-nav.active p {
    font-weight: bold;
}
.steps-nav .step-nav p {
    color: var(--color-b);
    font-size: var(--font-medium);
}

#new-subscription-payment-form, 
#new-subscription-payment-form form {
    width: 100%;
}

#new-subscription-payment-form form .steps {
    /* width: max-content; */
    margin: 0 auto;
    max-width: 1500px;
}

.register_here p {
    margin: 0;
}

.register_here a {
    color: var(--color4);
}


@media (max-width: 640px) {

	.my-subscriptions-dialog .sub-item-row {
		flex-flow: column;
		row-gap: var(--large);
	}

	.my-subscriptions-dialog .sub-item-row:last-child {
		align-items: center;
	}

	.my-subscriptions-dialog .sub-item-row:last-child .sub-item-col {
		width: 100%;
	}

	.my-subscriptions-dialog .subscription-headline {
		font-size: var(--font-medium);
	}

	.my-subscriptions-dialog .status-wrapper .subscription-status, .my-subscriptions-dialog .control-wrapper .toggle-button {
		font-size: var(--font-small);
	}

	.my-subscriptions-dialog .icon-wrapper img {
	    max-width: 70px !important;
	    min-width: 70px;
	}

	.my-subscriptions-dialog .control-wrapper {
	    min-width: 95px;
	    align-items: flex-end;
	}

	.my-subscriptions-dialog .sub-item-row div.sub-item-col {
	    width: 100%;
	}

}

.profile-link-wrap {
    border: 1px solid var(--color-dept);
    background: white !important;
}

.content-box {
    padding: 10px;
    margin-bottom:  20px;
}

.user-profile .user-logout svg {
    fill: var(--color-dept);
}

.user-profile .user-logout input {
    color: black;
	width: 100%;
}

.navigation form, .mobNavContent form {
    width: 100%;
}

.login-dialog, .register-dialog, .reset-password-dialog {
    flex-direction: column;
	margin: 0 auto 100px auto;
}

.profile-name, h2.sub-name, .info-headline, .info-list li, .content-box p, .content-box h3, .content-box h2, .content-box h1 {
    font-family: var(--ff2);
}

button[disabled="disabled"]  {
	opacity: .5;
}

.cprofit-forms p, h1, h2, h3 {
    font-family: var(--ff2);
}

.cprofit-forms .orders-description {
    margin: 10px 0 20px 0;
}

.cprofit-forms .step-description {
    margin-bottom: 20px;
}

.navigation.navigationSide .login-wrapper {
    padding: 0px;
}

.navigation.navigationSide .login-wrapper p, .navigation.navigationSide .login-wrapper p:hover {
    font-weight: normal;
    color: #000;
}

.navigation.navigationSide .login-wrapper svg {
    margin-right: 5px;
    fill: var(--color-dept);
}

.new-subscription-payment-dialog {
    max-width: 100% !important;
}

.selected_product {
    padding-left: var(--medium);
    margin: 0 !important;
}

.selected_product h2 {
    margin: 0;
}

.box.content-box.box-srk {
    flex-direction: row;
    display: flex !important;
    flex-wrap: wrap;
}

.box-srk h2.sub-name {
    width: 100%;
    height: 40px !important;
    aspect-ratio: auto !important;
    text-align: left !important;
    margin-bottom: 10px !important;
}

.box-srk button.next {
    width: 150px;
    margin-top: auto;
}

.box-srk .info {
    width: calc(100% - 300px);
}

.box-srk .icon-wrapper {
    width: 150px;
}

.login-dialog > p, .register-dialog > p {
    width: 100%;
}

.row-padding {
    padding-top: 35px;
}

.button_payment {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
}

a.sub-button.sub-button-inverse {
    background: var(--color-w);
    color: var(--color-dept);
    border: 1px solid var(--color-dept);
}

.mobNavContent .profile-link-wrap {
    position: relative;
    width: 100%;
    top: 10px;
    right: 0;
}

.mobNavContent .account-menu {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 5px;
}

.mobNavContent .profile-link-wrap:after {
    left: 20px;
}

.mobNavContent .user-profile .profile-link-wrap a {
    justify-content: flex-start;
}

.mobNavContent .user-profile .profile-link-wrap div {
    justify-content: flex-start;
}

@media only screen and (max-width: 980px) {
	.step-2 .same-row {
		flex-direction: column;
	}

	.step-2 .same-row .half-row {
		width: 100%;
	}

    .step-buttons {
        flex-direction: row !important;
    }

	.ag-form button {
		width: 100% !important;
	}

	.box-srk {
		flex-direction: column !important;
	}
}


.box.content-box {
    background: white;
}

h2.sub-name {
    width: 100%;
}

.box.content-box {
    flex-wrap: wrap;
    flex-direction: row;
	display: flex;
}

.icon-wrapper {
    width: 100%;
}

.info {
    width: 100%;
}


button.next {
    max-width: 150px;
    margin-left: auto;
}

.step-1 button.next {
	margin: auto;
}

.step-1 .box-srk button.next {
	margin-right: initial;
	margin-bottom: initial;
}

/* Säädöt */

.landing-background .Image {width: 200px !important;height: auto !important;}

.landing-background .crop_container {
    width: auto !important;
    height: auto !important;
}

/* Tilaustiedot popup */

h3.info-headline {
    text-align: center;
}

.info > .info-headline {
    cursor: pointer;
}

.info > .info-headline:hover {
	text-decoration: underline;
}

.info-list-wrapper {
    display: none;
}

.info-list-container {
    background: white;
    border:  1px solid #999;
    padding: 20px;
    position: relative;
    width: 800px;
}

.info-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

ul.info-list {}

.info-list-wrapper.active {
    display: flex;
    position: static;
    background: initial;
    justify-content: flex-start;
}

.info-list-wrapper.active .info-list-container {
    border: 0;
}

.info-list-wrapper.contents-expandable {
    display: none;
}

/* Vain expandable + show = overlay (ei koske active-tilaa) */
.info-list-wrapper.contents-expandable.show {
    display: flex;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

h3.info-headline.contents-trigger {
    cursor: pointer;
}

h3.info-headline.contents-trigger:hover {
    text-decoration: underline;
}

.info-close.contents-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: 0;
}

.info-close svg {
    pointer-events: none;
}

.info-headline svg {
    width: 20px;
    pointer-events: none;
}

.gift-row {
	display: none;
}

.ag-form .form-row.gift label {
    position: relative;
    top: 0;
    left: 0;
}

.ag-form .form-row.gift input[type="checkbox"] {
    width: initial !important;
}

.mobNavContent .account-menu svg {
    margin-right: 5px;
    fill: var(--color-dept);
}

.mobNavContent .account-menu p {
    font-family: "Open Sans";
    font-weight: 700;
    font-weight: normal;
    color: #000;
}

/*  Mobiili navigaation tyylit */

.mobNavContent .user-profile div.profile-link-wrap.none {
    display: flex !important;
    border: none;
    box-shadow: none;
    padding: 0;
}

.mobNavContent .user-profile div.profile-link-wrap.none:after {
    display: none;
}

.mobNavContent .user-profile .profile-btn {
    display: none;
}

.mobNavContent .account-menu {
    padding: 0;
}

.mobNavContent .user-profile div.profile-link-wrap.none a p {
    color: var(--color-dept);
    color: #FBB800;
    font-size: 16px;
    margin: 0px;
    font-family: "Open Sans";
    font-weight: 700;
    text-transform: uppercase;
}

.mobNavContent .user-profile div.profile-link-wrap.none a p:hover {
    color: white;
}

.mobNavContent .user-profile div.profile-link-wrap.none > div {

}

.form-row.capaId_radio {
    margin-bottom: 8px;
}

.pricId_radio, .capaId_radio {
    margin-left: 0 !important;
}

.pricelist-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-family: var(--ff2);
    font-size: 12px;
    margin: 0 5px 0 5px;
}