/* app css stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

html {
	/*disabling-ios-&-android-pull-down-to-refresh-feature*/
	overscroll-behavior: none;
}

body {
	background: #ECF7F9 url("image/te_logo.svg");
	background-size: 510px;
	background-repeat: no-repeat;
	background-position: 65% 100%;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 400;
	font-style: normal;

	/*disabling-ios-&-android-pull-down-to-refresh-feature*/
	overscroll-behavior-y: contain;
}

.modal-dialog {
	width: 600px;
	max-width: 95vw;
}

.modal-title {
	color: #2B3887;
}

.modal-title.bookmark-help-title {
	margin: 20px 0;
}

a:link {
	color: #B3248D;
	text-decoration: none;
}

a:visited {
	color: #B3248D;
}

a:hover {
	color: darkslategrey;
}

a:active {
	color: darkslategrey;
}

.alert {
	display: block;
}

.button:hover {
	color: #FFFFFF;
	box-shadow: 2px 8px 15px 0 #aaaaaa;
}

.button:focus {
	color: #FFFFFF;
	text-decoration: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	line-height: 1.2;
	min-width: 130px;
	padding: 12px 20px;
	color: #FFFFFF;
}

.btn-blue {
	background: #2B3887;
}

.btn-magenta {
	background: #B3248D;
}

.btn-magenta-border {
	background: #FFFFFF;
	color: #B3248D;
	border: solid 1px #B3248D;
}

.btn-magenta-border:hover,
.btn-magenta-border:focus {
	color: #B3248D;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
	outline-offset: unset;
}

.button {
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.01em;
	outline: none;
	transition-duration: 0.3s;
}

.form-control {
	height: 45px;
	border: solid 1px #9da1a5;
	transition: box-shadow 0.3s;
	-webkit-transition: box-shadow 0.3s;
}

.form-control:focus {
	border: solid 1px #5EC4D0;
	box-shadow: 0px 1px 2px 0px #45A9E91A,
		0px 4px 4px 0px #45A9E917,
		0px 9px 5px 0px #45A9E90D,
		0px 16px 7px 0px #45A9E903,
		0px 25px 7px 0px #45A9E900;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	opacity: 0.6;
}

.form-horizontal .control-label {
	cursor: pointer;
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
	text-align: unset;
}

form label {
	cursor: pointer;
}

.wrapper,
form[name="mainForm"] {
	min-height: 100vh;
	display: flex;
	box-sizing: border-box;
	justify-content: flex-start;
	flex-flow: column;
}

.wrapper>.main-container,
form[name="mainForm"]>.main-container {
	flex-grow: 1;
	position: relative;
}

.dt-main-frame.home>.wrapper,
.header {
	border-top: solid 10px #2B3887;
}

.content-container {
	width: 840px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

@media (max-width: 767px) {
	.content-container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.content-container-two-col {
	display: flex;
	column-gap: 30px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: start;
}

.content-container-left-col {
	flex-basis: 395px;
	flex-grow: 9999;
}

.content-container-right-col {
	flex-basis: 300px;
	flex-grow: 1;
}

.content-container input[type="checkbox"],
.content-container input[type="radio"] {
	accent-color: #2B3887;
}

/*header*/

.header {
	padding: 0;
	margin-bottom: 30px;
}

.header-name {
	font-size: x-large;
	color: #2B3887;
	margin-right: 10px;
	margin-left: 2px;
}

.header-label {
	font-size: small;
	color: #B3248D;
}

.header-image-container {
	background: #FFFFFF;
	padding: 20px;
}

.header-image {
	width: 160px;
	display: block;
	margin: 0 auto;
}

.header-panel {
	padding: 8px 0;
	background: #5EC4D0;
}

.header-field-frame {
	display: none;
}

.header-field-frame.active {
	display: block;
}

.header-field {
	color: #2B3887;
	font-weight: 700;
	font-size: 16px;
}

.active {
	color: #FFFFFF;
}

.header-panel .content-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.button-calc {
	background: #2B3887;
	color: #FFFFFF;
	padding: 8px 26px;
}

.button-calc:hover {
	box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/*panels*/

.p-20 {
	padding: 20px;
}

.p-40 {
	padding: 40px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.p-20 {
		padding: 10px;
	}

	.p-40 {
		padding: 20px;
	}

	.m-mb-10 {
		margin-bottom: 10px;
	}
}

.panel-white {
	border-radius: 5px;
	background: #FFFFFF;
	box-shadow: 0px 0px 6px 2px #AAB8C240;
}

.info-panel>div+div {
	margin-top: 20px;
}

.dt-main-frame.home .panel-white {
	margin-top: 50px;
}

.main-container {
	position: relative;
}

.right-panel {
	font-size: 13px;
}

.right-panel-mobile {
	font-size: 14px;
}

.right-panel-mobile-top {
	margin-bottom: 20px;
}

.right-panel-mobile-bottom {
	margin-top: 20px;
}

.button-highlight-text {
	font-weight: 700;
}

.button-highlight-text::before {
	content: '«';
}

.button-highlight-text::after {
	content: '»';
}

.input-bottom-buttons {
	display: flex;
	gap: 10px 30px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.input-bottom-buttons>* {
	flex: 1;
	flex-basis: 46%;
}

.input-bottom-buttons .next-button-icon::before {
	content: "";
}

.input-bottom-buttons .next-page-button {
	display: block;
	width: 100%;
	transition: box-shadow 0.3s;
	-webkit-transition: box-shadow 0.3s;
}

.wrap-text {
	white-space: normal;
}

/*footer*/

.footer {
	background: #2B3887;
	border-top: solid 6px #FAA842;
	padding: 30px 10px;
	margin-top: 50px;
}

.footer-image-container {
	margin-bottom: 10px;
}

.footer-image {
	display: block;
	width: 120px;
	margin: 0 auto;
}

.footer-copyright p {
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}

/*input*/

.row-input {
	position: relative;
}

.row-input .dropdown-menu {
	width: 100%;
	max-height: 250px;
	overflow-y: scroll;
}

.input-row {
	clear: both;
	margin-bottom: 15px;
}

.next-button-text {
	display: inline-block;
}

.next-button-icon {
	float: right;
	margin-left: 1px;
	display: inline-block;
	padding: 0;
}

.vis-mod-icon {
	color: #B3248D;
	font-size: x-small;
}

input.true {
	background-color: pink;
}

.nonebullets {
	list-style-type: none;
	padding-inline-start: 20px;
	margin: 10px 0 20px 0;
}

.nonebullets li {
	display: flex;
	align-items: center;
	column-gap: 6px;
	line-height: 1.3;
	margin-bottom: 8px;
}

.help {
	margin: 5px 0;
}

.number {
	text-align: right;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

/*income-expenses*/

.post-it {
	display: flex;
	align-items: center;
	column-gap: 10px;
	background: #FFFFFF;
	border-left: 3px solid #B3248D;
	padding: 10px 20px 10px 15px;
	position: relative;
	box-shadow: 4px 0px 9px 0px #0000000A,
		16px 0px 16px 0px #00000008;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.post-it-text {
	font-size: 12px;
}

.row-label {
	display: block;
	margin: 0;
	color: #2B3887;
	line-height: 1.2;
	margin-bottom: 5px;
}

.row-label-label {
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.row-label-small {
	display: block;
	font-size: 10px;
	margin: 0;
	padding: 0;
}

.row-label-subtitle {
	font-weight: normal;
	font-size: 13px;
}

.inc-exp-period {
	display: inline-block;
}

.inc-exp-period-letter {
	font-size: 10px;
}

.inc-exp-input {
	width: 110px;
}

.inc-exp-input-curr {
	font-size: 15px;
	line-height: 1;
}

.inc-exp-info-sublabel {
	font-weight: normal;
	padding-left: 15px;
	display: inline-block;
}

.info-input {
	width: 100px;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	padding: 2px 5px;
	margin-left: 15px;
}

.info-input:focus {
	border: 1px solid #B3248D;
	outline: none;
}

.post-it-icon {
	font-size: 22px;
	color: #B3248D;
}

.bottom-btn-container {
	text-align: right;
	margin-top: 20px;
}

.income-row,
.expense-row {
	margin-bottom: 15px;
}

.income-row .row-container,
.expense-row .row-container {
	display: grid;
	grid-template-columns: 1fr 170px;
	gap: 20px;
	align-items: center;
}

.income-row .row-container .row-input,
.expense-row .row-container .row-input {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
}

.income-row .row-label.focused,
.expense-row .row-label.focused {
	color: #B3248D;
}

@media (max-width: 767px) {

	.income-row,
	.expense-row {
		margin-bottom: 20px;
	}

	.income-row.focused,
	.expense-row.focused {
		border: 1px solid #E0E0E0;
		border-radius: 10px;
		padding: 10px;
	}

	.income-row .row-label,
	.expense-row .row-label {
		margin-bottom: 10px;
	}

	.income-row .row-container,
	.expense-row .row-container {
		display: block;
	}

	.income-row .row-container .row-input,
	.expense-row .row-container .row-input {
		justify-content: flex-start;
	}

	.income-row.focused .source,
	.expense-row.focused .source {
		margin-bottom: 20px;
	}
}

.dorm>div {
	margin-bottom: 5px;
}

.label-mobil-info {
	font-size: 13px;
}

.label-mobil-info .no-data {
	display: block;
	margin-bottom: 10px;
}

.radioHomeTravelSeatTicket>div,
.radioHomeTravelPass>div {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	line-height: 1.2;
	margin-bottom: 6px;
}

.radioHomeTravelSeatTicket>div label,
.radioHomeTravelSeatTicket>div input[type="radio"],
.radioHomeTravelPass>div label,
.radioHomeTravelPass>div input[type="radio"] {
	margin: 0;
}

/*result*/

.result-table-container,
.loan-container {
	padding: 20px;
	border: 1px solid #E0E0E0;
	border-radius: 10px;
}

@media (max-width: 767px) {

	.result-table-container,
	.loan-container {
		padding: 10px;
	}
}

.result-row-a,
.result-row-b {
	display: grid;
	grid-template-columns: 3fr 4fr;
	min-height: 50px;
	padding: 5px 0;
	align-items: center;
	border-bottom: 1px solid #E0E0E0;
}


@media (max-width: 767px) {

	.result-row-a,
	.result-row-b {
		display: block;
	}
}

.result-row-a>div,
.result-row-b>div {
	padding: 0 5px;
}

.result-label,
.result-amount-label,
.result-balance-label {
	font-weight: 700;
}

.amount-value {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 10px;
	line-height: 1;
}

@media (max-width: 767px) {
	.amount-value {
		justify-content: space-between;
	}
}

.amount-value.negative .result-amount-cell,
.amount-value.positive .result-amount-cell {
	font-weight: 700;
	color: #FFFFFF;
	padding: 10px 10px 8px 10px;
	border-radius: 5px;
}

.amount-value.negative .result-amount-cell {
	background: #B3248D;
}

.amount-value.positive .result-amount-cell {
	background: #4FAF4B;
}

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

@media (max-width: 767px) {
	.result-value {
		text-align: left;
	}
}

.result-highlight-text {
	font-weight: bold;
	color: #B3248D;
}

.result-row-balance {
	background: #E3E7FC;
	margin-top: 5px;
	border-bottom: 0 none;
}

.amount-value .btn {
	min-width: unset;
	background: transparent;
	border: 1px solid #000000;
	width: 42px;
}

.result-text {
	color: #B3248D;
	margin-bottom: 20px;
	font-weight: 700;
}

.result-text-top {
	margin: 0;
	padding: 20px 20px 1px 20px;
}

@media (max-width: 767px) {
	.result-text-top {
		margin: 0;
		padding: 20px 10px 1px 10px;
	}
}

.result-text-bottom {
	margin-top: 20px;
}

.loan-container {
	margin-top: 10px;
}

.positive {
	color: green;
}

.negative {
	color: red;
}

.result-chart-title-income {
	color: #2B3887;
}

.result-chart-title-expenses {
	color: #B3248D;
}

.result-chart-subtitle {
	font-size: small;
	color: #8c8c8c;
}

.chart-glyphicon {
	color: #000000;
	;
}

.loan-frames {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 767px) {
	.loan-frames {
		grid-template-columns: 1fr;
	}
}

.loan-frame {
	font-size: 13px;
}

.loan-content {
	height: 100%;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0px 0px 6px 2px #AAB8C280;
}

.recalc-btn-container {
	margin-top: 20px;
	text-align: center;
}

.result-buttons {
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-evenly;
}

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

.felvi.result-felvi a {
	display: inline-block;
}

.felvi.result-felvi img {
	width: 150px;
	display: block;
}

.result-view-dk-1-2-container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.result-view-dk-1-2-container>* {
	flex: 1;
	margin: 0;
}

/*comparison-modal*/

.comp-mod-body {
	padding: 15px 5px;
}

.comp-mod-title {
	color: #2B3887;
	text-align: center;
}

.comparison-select-row {
	padding: 1px 13px;
	font-size: 12px;
}

.comparison-select-row.current {
	background: #e5e5e5;
}

.comp-vert-cent {
	margin-top: 6px;
}

.comp-mod-check {
	margin-top: 0;
	display: inline-block;
}

.comp-mod-label {
	margin: 0;
	display: inline-block;
}

.comp-modal-glyphicon {
	color: #B3248D;
	margin-left: 1px;
}

.comp-modal-glyphicons {
	display: flex;
	column-gap: 10px;
	float: right;
	margin-top: 5px;
}

.comp-modal-glyphicons>label {
	cursor: pointer;
}

.comp-mod-body .alert {
	margin-top: 20px;
}


.comp-panel .comp-table-frame .comp-row-a,
.comp-panel .comp-table-frame .comp-row-b {
	background: transparent;
}

.comp-panel .comp-table-frame .comp-row-a,
.comp-panel .comp-table-frame .comp-row-b,
.comp-header {
	border-bottom: 1px solid #E0E0E0;
}

.comp-row-balance {
	margin-top: 5px;
	background: #E3E7FC;
	font-weight: 700;
}

.comp-panel .comp-table-frame .comp-row-a,
.comp-panel .comp-table-frame .comp-row-b,
.comp-header,
.comp-row-balance {
	display: grid;
	grid-template-columns: 1fr 120px 120px 120px;
	min-height: 50px;
	padding: 5px 0;
	align-items: center;
}

@media (max-width: 767px) {

	.comp-panel .comp-table-frame .comp-row-a,
	.comp-panel .comp-table-frame .comp-row-b,
	.comp-header,
	.comp-row-balance {
		grid-template-columns: repeat(3, 1fr);
		padding: 10px 0;
	}
}

.comp-header {
	font-weight: 700;
}

.comp-panel .comp-field {
	font-size: 15px;
	padding: 0 5px;
	line-height: 1;
}

.all_expenses .comp-field,
.all_sources .comp-field,
.comp-row-balance .comp-field {
	font-size: 16px;
}

@media (max-width: 767px) {

	.all_expenses .comp-field,
	.all_sources .comp-field,
	.comp-row-balance .comp-field {
		font-size: 15px;
	}
}

.comp-row-label {
	padding: 0 10px;
}

@media (max-width: 767px) {
	.comp-row-label {
		padding: 0 5px 10px 5px;
		grid-column: 1 / -1;
	}
}

.comp-panel .row-label {
	margin: 0;
	color: unset;
}

.study-data {
	padding: 0 5px;
}

.study-data.first {
	grid-column: 2/3;
}

@media (max-width: 767px) {
	.study-data.first {
		grid-column: 1/2;
	}
}

.study-data.difference {
	text-transform: capitalize;
	text-align: center;
}

.study-data.last {
	text-align: right;
}

.study-data-icon {
	color: #B3248D;
}


.all_expenses,
.all_sources {
	font-weight: 700;
}

.all_expenses {
	color: #2B3887;
}

.all_sources {
	color: #B3248D;
}

.comp-panel [relation="onebetter"] .comp-field-frame-one,
.comp-panel [relation="otherbetter"] .comp-field-frame-other {
	color: #4FAF4B;
	font-weight: 700;
}

.comp-field-relation-frame.onebetter,
.comp-field-relation-frame.otherbetter {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 5px;
}

.comp-field-relation-frame.onebetter::before,
.comp-field-relation-frame.otherbetter::after {
	content: '';
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	transform: rotate(0deg);
}

.comp-field-relation-frame.onebetter::before {
	border-width: 5px 8.7px 5px 0;
	border-color: transparent #4FAF4B transparent transparent;
}

.comp-field-relation-frame.otherbetter::after {
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #4FAF4B;
}

.comp-field-frame.comp-field-frame-other {
	text-align: right;
}

/*survey*/


.survey-panel {
	margin-top: 50px;
}

.survey-line {
	margin: 40px 0;
	display: inline-block;
}

.centered {
	text-align: center;
}

.centered-img {
	display: block;
	margin: auto;
}

.survey-header {
	font-size: larger;
	font-weight: 700;
	margin-top: 30px;
	color: #B3248D;
}

.survey-heading {
	margin: 20px 0;
}

.survey-heading input[type="checkbox"],
.survey-heading input[type="radio"] {
	margin: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.survey-heading-text {
	font-weight: 700;
}

.survey-label {
	font-weight: normal;
	margin-bottom: 0;
	cursor: pointer;
}

.survey-send-btn-container {
	text-align: right;
}

.sending-text {
	font-weight: 700;
	text-align: center;
}

@media (max-width: 767px) {
	.dropdown-menu.ng-isolate-scope>li>a {
		white-space: normal;
	}
}

.comp-row-a {
	background-color: #FFFFFF;
	padding: 0;
}

.comp-row-b {
	background-color: #eeeeee;
	padding: 0;
}

.comparison-label {
	font-weight: 700;
}

.comp-button-container {
	margin-top: 30px;
	text-align: right;
}

.highlight {
	color: #B3248D;
}

.box {
	border-radius: 3px;
	border: 1px solid #e5e5e5;
	padding: 10px;
}

.box p:last-child {
	margin: 0;
}

.link-box {
	background-color: #B3248D;
	color: #FFFFFF;
	font-size: smaller;
	border-radius: 2px;
	border: 1px solid brown;
	padding: 15px 5px 15px 5px;
}

ol {
	list-style-type: lower-alpha;
}

.wrongdata {
	background-color: pink;
}

.customChartLegend {
	font-size: 11pt;
	text-align: center;
}

.legendItem {
	display: inline-block;
}

.legendColor.income {
	background: #2b287f;
	border-right-color: #635fcc;
}

.legendColor.expenses {
	background: #a50075;
	border-right-color: #db00b9;
}

.legendColor {
	display: inline-block;
	width: 30pt;
	height: 10pt;
	border-radius: 0;
	border-right-width: 15pt;
	border-right-style: solid;
	margin-right: 2pt;
}

.legendTitle {
	margin-right: 20pt;
	display: inline-block;
	vertical-align: top;
	line-height: 12pt;
}

.no-wrap {
	white-space: nowrap;
}

.no-padding {
	padding: 0;
}

.error-text {
	display: block;
	margin: 20px 0;
}

/*home*/

.dt-main-frame.home .panel-white {
	margin-top: 50px;
}

.home-header-image {
	margin-bottom: 30px;
}

.home-help-link-container {
	margin: 20px 0;
}

.home-help-link {
	font-weight: 700;
	color: #B3248D;
	cursor: pointer;
	display: inline-block;
}

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

.home-felvi a {
	display: inline-block;
}

.home-felvi img {
	width: 120px;
	display: block;
}

/*help*/

.home-help {
	padding: 20px;
}

.home-help ul {
	margin-bottom: 20px;
}

.home-help ul li {
	line-height: 1.3;
	margin-bottom: 10px;
}

.help-title {
	margin-bottom: 20px;
}

.help-title p {
	font-size: 20px;
	margin: 0;
	text-align: center;
	font-weight: 700;
	color: #2B3887;
}

.help-attention {
	display: block;
	font-weight: 700;
}

.help-highlight {
	font-weight: 700;
	text-decoration: underline;
}

/*new visitor*/

.slider-frame {
	background-color: #eeeeee;
	padding: 10px 15px;
	border-radius: 3px;
}

.slider-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #B3248D;
	box-shadow: 0 0 0 1px #a50075;
	border-radius: 100%;
	vertical-align: middle;
}

.slider .slider-track-low,
.slider .slider-track-high {
	background: #C1C9D2;
}

.slider .slider-selection {
	background: #B3248D;
	background-repeat: no-repeat;
	box-shadow: none;
}

.slider .slider-handle {
	background: #FFFFFF;
	border: 1px solid #2B3887;
	box-shadow: none;
}

.radioHomeTravelPass {
	margin-top: 12px;
}

.radioHomeTravelSeatTicket {
	margin: 15px 0 10px 0;
}

.tooltip.top .tooltip-arrow {
	border-top-color: #2B3887;
}

.tooltip.left .tooltip-arrow {
	border-left-color: #2B3887;
}

.tooltip.right .tooltip-arrow {
	border-right-color: #2B3887;
}

.tooltip.bottom .tooltip-arrow {
	border-bottom-color: #2B3887;
}

.tooltip-inner {
	background: #2B3887;
	font-weight: 600;
}