:root{
	--color-background-input: #fff;
	--color-background-select-option: #fff;
	--color-font: #0094FF;
	--color-header: #50B2FA;
	--color-background-header: #BEE4FF;
	--color-body: #fff;
	--color-button-font: #fff;
	--color-button-background: #0094FF;
	--color-button-background-hover: #CCCC42;
	--color-icon-background-hover: #1D2F56; /*#5a95f5;*/
	--color-link-card: rgb(12, 38, 87);
	--color-link-card-after: rgb(1, 107, 248);
	--section-border: 2px solid var(--color-font);
	--bg: #fff;
	--bg-body: #f5f5f5;
	--color-font-light: #50B2FA;
	--card-shadow: rgba(0, 0, 0, 0.3);
	--color-button-background1: #CCCC42;
	--color-button-font1: #1D2F56;
	--color-disabled-background: #737373;
	--color-calendar: #70757a;
	--color-item-hover: #6f768d;
	--color-price-included: #324158;
	--color-benefit: #E4552D;
	--color-teaser: rgba(93, 93, 93, 0.8);
}

.icon, .close-icon{
	cursor: pointer;
}

.close-icon{
	height: 14px;
	padding: 8px;
	border-radius: 100%;
}

.close-icon:hover{
	background: var(--card-shadow);
}

.icon svg{
	fill: var(--color-font);
	height: 40px;
}

body{
	color: var(--color-font);
	background: var(--bg);
	font-family: 'Arial';
}

.index-body{
	background: var(--bg-body);
}

.body{
	margin: 20px;
	text-align: center;
}

.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	box-shadow: 4px 4px 4px var(--card-shadow);
}

.menu-wrapper{
	position: relative;
}

.motto-cont{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}   

.motto{
	font-size: 1.3rem;
	font-weight: 600;
}

.motto-cont .name{
    font-size: 0.7rem;
}

.menu{
	position: absolute;
	width: fit-content;
	right: 0px;
	box-shadow: 4px 4px 4px var(--card-shadow);
	padding: 20px;
	z-index: 99;
	background: var(--bg);
}

.menu > div{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hidden{
	display: none !important;
}

.hierarchy-node .item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.hierarchy-node .item a:hover{
	color: var(--color-item-hover);
}

.hierarchy-node .item a{
	text-decoration: none;
}

a{
	color: var(--color-font);
}

.hierarchy-node #arrow svg{
	display: block;
	height: 4px;
}

.hierarchy-node[data-expanded="false"] .item #arrow svg{
	transform: rotate(180deg);
}

.hierarchy-node .item #name, .hierarchy-node .item #cp{
	padding-left: 8px;
}

.hierarchy-node .grey-out{
	opacity: 0.6;
	cursor: default;
}

.hierarchy-node .has-children{
	font-weight: 600;
}

.hierarchy-item{
	display: flex;
	height: 32px;
}

.h-line{
	border-bottom: 2px solid;
}

.h-line > td{
	padding: 6px;
}

.flex{
	display: flex;
}

.section-header{
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 20px;
	cursor: pointer;
	transition: 0.2s ease;
}

.arrow-expanded svg{
	transform: rotate(180deg);
}

.section-header svg{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	height: 1ex;
}

.register-body{
	background-image: url("bgregister.jpg");
	background-size: cover;
	padding: 100px 0px;
	margin: 5px 0;
}

.register-form{
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	padding: 15px;
}

@media only screen and (max-width: 400px){
	.register-form{
		max-width: unset;
	}
}

.comp-input, .comp-input1{
	background: var(--color-background-input);
	height: fit-content;
	min-height: 56px;
	position: relative;
	display: flex;
	grid-gap: 5px;
	border-radius: 16px;
	border: 1.5px solid;
	color: var(--color-font);
	margin: 8px 0px;
}

.comp-input1 input{
	width: 100%;
        height: 56px;
        border: none;
        outline: none;
        padding-left: 10px;
        margin: auto;
        font-size: 14px;
        color: var(--color-font);
        border-radius: 16px;
        background: var(--color-background-input);
}

.comp-input2{
	margin: auto 10px;
	font-size: 14px;
}

.comp-input input{
	width: 100%;
	height: 56px;
	border: none;
	outline: none;
	padding-left: 10px;
	padding-top: 12px;
	font-size: 14px;
	color: var(--color-font);
	border-radius: 16px;
	background: var(--color-background-input);
}

.comp-input-label {
	position: absolute;
	left: 0%;
	width: 100%;
	height: 100%;
	bottom: 0px;
	pointer-events: none;
	overflow: hidden;
}

.comp-input-inner-label{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.comp-input input:focus + .comp-input-label .comp-input-inner-label,
.comp-input input.comp-input-filled + .comp-input-label .comp-input-inner-label,
.comp-input input[type="date"] + .comp-input-label .comp-input-inner-label,
.comp-input input[type="time"] + .comp-input-label .comp-input-inner-label{
	transform: translateY(-150%);
	font-size: 10px;
	white-space: nowrap;
}

.comp-input-label-symbol{
	position: relative;
	right: 3px;
	cursor: pointer;
}

.comp-input-label-symbol > div{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.comp-input-menu-icon svg {
	transform: rotate(180deg);
}

.comp-select-option{
	position: absolute;
	list-style: none;
	padding: 20px;
	background: var(--color-background-select-option);
	padding-inline-start: 10px;
	overflow-y: scroll;
	max-height: 130px;
	margin-top: 0px;
	width: calc(100% - 30px);
	z-index: 999;
	box-shadow: 4px 4px 4px var(--card-shadow);
}

.comp-select-option li {
	display: block;
	padding-bottom: 20px;
	cursor: pointer
}

.comp-select-option li:last-child {
	padding-bottom: 0px;
}

.comp-select-option li:hover {
	color: #6f768d;
}

.comp-anim-checkbox{
    position: relative;
    display: flex;
    align-items: center;
    --width-checkbox: 36px;
    --width-half-checkbox: calc(var(--width-checkbox)/2);
    --height-checkbox: 20px;
    --height-half-checkbox: calc(var(--height-checkbox)/2);
}

.comp-anim-checkbox input{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border-radius: var(--width-half-checkbox);
    width: var(--width-checkbox);
    height: var(--height-checkbox);
    vertical-align: middle;
    border: 1px solid var(--color-font);
    margin: 0px;
}

.comp-anim-checkbox input + label svg .tick{
    display: none;
}

.comp-anim-checkbox input + label{
    position: absolute;
    width: var(--height-checkbox);
    height: var(--height-checkbox);
    border-radius: var(--height-half-checkbox);
    transition: 0.5s;
    background: transparent;
    color: var(--color-button-background);
}

.comp-anim-checkbox input + label svg{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.comp-anim-checkbox input:checked + label{
    transform: translateX(calc(var(--width-half-checkbox) - 2px));
}

.comp-anim-checkbox input:checked + label svg .tick{
    display: block;
    stroke: var(--color-button-font);
}

.comp-anim-checkbox-expl{
	margin-top: 12px;
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	font-size: 10px;
	line-height: 125%;
	color: var(--color-font-light);
}

.footer{
        width: 100vw;
        background-color: var(--color-body);
}

.banner{
        border-top: var(--section-border);
        border-bottom: var(--section-border);
        padding-bottom: 2px;
        text-align: center;
        margin-bottom: 2px;
}

.banner > a{
        padding-left: 15px;
        padding-right: 15px;
        text-decoration: none;
}

.sep-r{
        border-right: var(--section-border);
}

.button{
	font-weight: 600;
	font-size: 15px;
	line-height: 15px;
	border-radius: 64px;
	padding: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-button-font);
	background: var(--color-button-background);
	margin: 8px 0px;
	transition: .3s ease;
	border: none;
	text-decoration: none;
	gap: 8px;
}

.button:hover{
	background: var(--color-button-background-hover);
	color: var(--color-button-font1);
}

.button a{
	color: var(--color-button-font) !important;
	flex-grow: 1;
}

.button button{
	display: none;
}

.button input{
	display: none;
}

.width100{
	width: 100%;
}

.button1{
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	border-radius: 64px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
        margin: 8px 0px;
	border: 1px solid;
}

.button1 a{
	text-decoration: none;
}

.button2{
	font-weight: 600;
	font-size: 15px;
	line-height: 15px;
	border-radius: 64px;
	padding: 12px;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 8px 0px;
	border: 1px solid;
	text-decoration: none;
}

.button2:hover{
	background: var(--color-button-background-hover);
	color: var(--color-button-font1);
	border: 1px solid var(--color-button-background-hover);
}

.button2 a{
	text-decoration: none;
}
.button2:hover a{
	color: var(--color-button-background-hover);
}

.button3{
	font-weight: 600;
	font-size: 15px;
	line-height: 15px;
	border-radius: 64px;
	padding: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-button-font);
	background: var(--color-benefit);
	margin: 8px 0px;
	transition: .3s ease;
	border: none;
	text-decoration: none;
	gap: 8px;
}

.button3:hover{
	background: var(--color-button-background-hover);
	color: var(--color-button-font1);
}

.chevron{
	padding: 5px;
	border-radius: 3px;
	cursor: pointer;
	color: var(--color-button-font);
	background: var(--color-button-background);
}

.chevron:hover{
	color: var(--color-button-font1);
	background: var(--color-button-background1);
}

.chevron svg{
	height: 25px;
}

.disabled{
	cursor: unset;
	color: var(--color-button-font);
	background: var(--color-disabled-background) !important;
}

.disabled:hover{
	color: var(--color-button-font);
}

.selected{
	background: var(--color-button-background1);
	color: var(--color-button-font1);
}

.signin-signup-bar{
	display: flex;
	gap: 16px;
	justify-content: right;
}

@media only screen and (max-width: 500px){
	.signin-signup-bar{
	 display: grid;
	 gap: unset;
	}
}

.link{
	display: flex;
	gap: 4px;
	justify-content: center;
	cursor: pointer;
}

.error{
	display: flex;
	gap: 8px;
	justify-content: center;
	border-radius: 16px;
	border: 1px solid;
	color: #FF0C0C;
	margin: 8px 0px;
	padding: 20px;
}

.margin-8{
	margin: 8px 0px;
}

.margin-16{
	margin: 16px 0px;
}

.padding-8{
	padding: 8px;
}

.approval-code-expl{
	text-align: center;
}

.approval-code{
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 32px 0px;
}

.approval-code input{
	outline: none;
	border: 1px solid;
	font-size: 25px;
	border-radius: 4px;
	width: 2ex;
	background: var(--color-background-input);
	text-align: center;
	color: var(--color-font);
}

.approval-code input:invalid{
	color: #FF0C0C; 
}

.pointer{
	cursor: pointer;
}

.pointer:hover{
	color: var(--color-icon-background-hover);
}

.center-block{
	margin: 0 auto;
}

.captcha{
	margin: 16px auto;
	width: fit-content;
}

.delete-dialog, .input-dialog, .spinner{
	position: fixed;
	background-color: white;
	color: black;
	border: 1px solid;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 15px;
	z-index: 20;
	padding: 30px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: center;
}

.delete-dialog-header, .input-dialog-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 24px;
	width: 100%;
}

.curtain{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
}

.info-box{
	margin: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.paypal-box{
	margin: 0 auto;
	max-width: 750px;
}

ul, ol{
	text-align: left;
	width: fit-content;
	margin: 10px auto;
}

.checkbox-wrapper{
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	text-align: center;
}

h3{
	font-weight: 500;
	font-family: Roboto;
}

.button-pair{
	display: flex;
	width: fit-content;
	border: 1px solid;
	border-radius: 64px;
	padding: 0px 8px;
	margin: 0 auto;
}

.second-button{
	font-weight: 600;
	font-size: 15px;
	line-height: 15px;
	border-radius: 64px;
	padding: 12px;
  cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 8px 0px;
	transition: .3s ease;
	border: none;
	text-decoration: none;
	gap: 8px;
}

.card{
	border-radius: 16px;
	box-shadow: 0 2px 15px 0 var(--card-shadow);
	padding: 16px;
}

.icon-card{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.icon-card .icon svg{
	height: 200px;
}

.expl-card, .expl-card-collapsed{
	display: flex;
	gap: 32px;
	text-align: left;
	background: var(--bg);
	flex-direction: column;
	text-decoration: unset;
	transition: .4s ease;
}

.expl-card-collapsed svg{
	height: 250px;
	max-width: 100%;
}

.expl-card-collapsed img{
	max-height: 300px;
	max-width: 100%;
}

.expl-card-img{
	display: flex;
	justify-content: center;
}

.expl-card svg, .expl-card img{
	height: 100px;
}

.expl-card svg.fa-arrow-up-right-from-square{
	height: 1em;
}

.expl-card .close-icon svg{
	height: unset;
	color: black;
}

.expl-card a{
	text-decoration: none;
	color: #333 !important;
}

.expl-card .title, .expl-card-collapsed .title{
	font-weight: 500;
	font-size: 1.2rem;
	padding-bottom: 16px;
}

.expl-card .expl{
	text-align: justify;
	line-height: 1.4;
	color: #333;
}

.expl-card-collapsed .expl{
	display: flex;
	justify-content: space-between;
}

.expl-card .expl svg{
	height: 1em;
}

.expl-card .expl ol{
	color: var(--color-font);
	font-weight: 600;
	margin: 8px 0;
	list-style: none;
}

.expl-card .expl ol li{
	padding: 4px 0px;
}

.teaser{
	color: var(--color-teaser);
}

.more{
	cursor: pointer;
	text-align: right;
	color: black;
}

.more:hover{
	color: unset;
}

.sd-grid{
	display: grid;
	gap: 32px;
	justify-content: center;
}

@media
only screen and (min-width: 1000px) and (max-width: 1500px){
	.sd-grid{
		grid-template-areas: 'A B';
	}
}

@media
only screen and (min-width: 1501px){
	.sd-grid{
		grid-template-areas: 'A B C';
	}
}

.sd-card{
	cursor: pointer;
	text-align: left;
	max-width: 400px;
	overflow: scroll;
	position: relative;
	scrollbar-width: none;
	text-decoration: none;
}

.sd-card svg{
	height: 20px !important;
	width: unset !important;
}

.sd-card .currency-sym{
	font-size: 20px;
}

.sd-card-asset{
	max-height: 400px;
}

.sd-card-job-title{
	color: var(--color-teaser);
}

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

.state{
	border-radius: 16px;
	background: var(--color-button-font1);
	color: var(--color-button-font);
}

.state .bar{
	height: 20px;
	font-size: 12px;
	display: flex;
	gap: 8px;
	padding-right: 5px;
	align-items: center;
	line-height: 1;
	font-weight: 600;
}

.state .bar svg{
	color: var(--color-benefit);
	width: 20px !important;
	height: 20px !important;
	top: 1px;
	position: relative;
	stroke: var(--color-button-font);
}

.sd-card-curtain{
	position: absolute;
	z-index: 2;
	background: rgba(0, 0, 0, 0.5);
	left: -16px;
	width: calc(100% + 16px);
	top: -16px;
	height: calc(100% + 16px);
}

.sd-card-info{
	position: absolute;
	background: white;
	border: 1px solid;
	color: black;
	font-size: 15px;
	z-index: 20;
	padding: 30px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 16px;
	white-space: nowrap;
}

.sd-card-info svg{
	height: 50px;
	color: var(--color-benefit);
}

.blog-cards{
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

@media
only screen and (max-width: 800px){
	.index-benefits{
		display: flex;
		flex-direction: column;
		gap: 32px;
		margin: 8px 0px;
	}
}

@media
only screen and (min-width: 801px){
	.index-benefits{
		display: grid;
		grid-template-areas: 'A B' 'C D' 'E F';
		gap: 32px;
		margin: 8px 0px;
	}

	.index-benefits .ib-a{
		grid-area: A;
	}

	.index-benefits .ib-b{
		grid-area: B;
	}

	.index-benefits .ib-c{
		grid-area: C;
	}

	.index-benefits .ib-d{
		grid-area: D;
	}

	.index-benefits .ib-e{
		grid-area: E;
	}

	.index-benefits .ib-f{
                grid-area: F;
        }
}

.price{
	font-size: 40pt;
}

.price-included{
	padding: 16px;
	border-radius: 8px;
	display: flex;
	gap: 8px;
	flex-direction: column;
	background: var(--color-price-included);
	justify-content: center;
}

.price-include{
	border-radius: 10px;
	height: 20px;
	font-size: 12px;
	display: flex;
	gap: 8px;
	background: var(--bg);
	color: var(--color-price-included);
	padding-right: 5px;
	align-items: center;
	line-height: 1;
	font-weight: 600;
	box-shadow: 2px 4px rgba(255, 255, 255, 0.15);
}

.price-include svg{
	color: var(--color-benefit);
	width: 20px !important;
	height: 20px !important;
	top: 1px;
	position: relative;
}

.price-include .tick{
	stroke: var(--bg);
}

.time-buttons{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.twoPairDate{
	display: flex;
	gap: 8px;
	justify-content: center;
}

.invoice-icon svg, .asset-icon svg{
	height: 70px;
}

.info-box1{
	border-radius: 16px;
	position: relative;
	color: var(--color-link-card);
	margin-top: 24px;
	margin-bottom: 24px;
	border: 2px solid;
	overflow: hidden;
}

.info-box1 a:not(.button){
	color: var(--color-link-card);
}

.info-box1::after{
	background: linear-gradient(to left, transparent 9px, var(--color-link-card-after) 9px);
	content: "";
	position: absolute;
	width: 16px;
	left: -2px;
	top: -2px;
	bottom: -2px;
	border-radius: 16px 0px 0px 16px;
}

.info-box1-title{
	padding: 12px 24px 12px 52px;
	position: relative;
	text-transform: uppercase;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	font-weight: bold;
	line-height: 16px;
	color: inherit;
	letter-spacing: 0.6px;
}

.info-box1-title svg{
	left: 20px;
	position: absolute;
}

.info-box1-content{
	padding: 16px 24px 16px 52px;
	font-weight: 400;
}

.share-icons{
	display: flex;
	gap: 16px;
	justify-content: center;
	margin: 16px;
	flex-wrap: wrap;
}

.share-icons svg, .share-icons img{
	height: 35px;
}

.share-icons svg:hover{
	color: var(--color-button-background);
}

.account-signin-buttonbar{
	margin: 8px;
}

.tiles-campaign{
	display: grid;
	gap: 32px;
}

@media
only screen and (min-width: 900px){
.tiles-campaign{
	grid-template-areas: 'A B C' 'D E F';
}
}

.tiles-vertical{
	display: flex;
	gap: 32px;
	flex-direction: column;
}

.tiles-horizontal{
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: center;
}

.tiles-vertical1{
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
}

.tiles-horizontal1{
	display: flex;
	gap: 4px;
}

.tiles-horizontal2{
	display: flex;
	gap: 4px;
	width: 100%;
}

.tiles-horizontal2 > div{
	flex-grow: 1;
}

.expandable-header{
	display: flex;
	margin: 8px;
	justify-content: space-between;
	align-items: center;
}

.expandable-header svg{
	transform: rotate(180deg);
}

.arrow-expanded svg{
	transform: rotate(0deg);
}

.feedback{
	display: grid;
	grid-template-areas: 'A B' 'A C';
	gap: 8px;
	border-bottom: .5px solid var(--color-font-light);
	padding: 8px 0px;
}

.stars{
	display: flex;
	gap: 8px;
	justify-content: center;
}

.feedback1{
	padding: 8px 0px;
	position: relative;
}

.feedback1 .stars{
	cursor: pointer;
}

.feedback1 .comment{
	position: absolute;
	background: #fff;
	z-index: 1;
	box-shadow: 4px 4px 4px var(--card-shadow);
	padding: 16px;
	width: calc(100% - 32px);
}

.feedback1 .comment .from{
	font-size: .7em;
}

.feedback .stars{
	grid-area: A;
}

.feedback .creator{
	grid-area: B;
	font-size: 0.6em;
	color: var(--color-font-light); 
}

.feedback .comment{
	grid-area: C;
	text-align: left;
}

.pdf-preview{
	height: 80vh;
	margin: 16px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.pdf-preview .upload-button{
	position: absolute;
}

.pdf-preview .preview{
	width: 100%;
	height: 100%;
	border: 1px dotted;
}

.pdf-preview .preview-filled{
	overflow: scroll;
}

.pdf-preview .preview-filled img{
  width: 100%;	
}

.pdf-preview .ver-center{
	position: relative;
	top: 50%;
	transform: translateY(-100%);
}

.settings-bar{
	display: flex;
	justify-content: space-between;
	padding: 8px 0px;
	cursor: pointer;
}

.textbox-wrapper{
	border-radius: 16px;
	border: 1.5px solid;
	color: var(--color-font);
	margin: 8px 0px;
}

.textbox-wrapper .textbox-title{
	margin: 10px;
}

.textbox-wrapper .textbox-bottom{
	height: 1.5px;
	background: var(--color-font);
}

.textbox-wrapper .textarea{
	padding: 10px;
}

.textbox-wrapper textarea{
	max-width: 100%;
	width: 100%;
	border: medium;
	height: 7em;
}

.contract-preview{
	border: none;
	width: 100%;
	height: 80vh;
}

.month-select-option{
	position: absolute;
	background: var(--color-body);
	z-index: 10;
}

.year-selector{
	display: flex;
	gap: 8px;
	padding: 16px;
}

.year-selector input{
	width: 5ex;
}

.email-composer{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.recipient-box{
	width: 1700px;
}

.message-body{
	height: 20em;
	background: var(--color-background-input);
	border: 1px solid;
	text-align: left;
	margin: 8px 0px;
}

.comp-input-ul{
	border-bottom: 1px solid;
	background: var(--color-background-input);
	line-height: 2;
}

.comp-input-ul input{
	width: 100%;
	border: none;
	outline: none;
	font-size: 14px;
	color: var(--color-font);
}

.comp-input-ul-label{
	padding: 8px;
	text-align: right;
}

@media
only screen and (max-width: 800px){
	.li{
		display: flex;
		flex-direction: column;
	}
}

.fa-arrow-up-right-from-square{
	margin-right: 4px;
}

.right{
	text-align: right;
}

.subtext{
	font-size: .8em;
}

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


.index-bar1{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 16px 0;
}

.index-bar1 img{
	border-radius: 8px;
}

.label-with-descr{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.label-with-descr .descr{
	font-size: .7em;
}

.avatar-label{
	height: 100px;
	width: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 100%;
	margin: 8px auto;
	overflow: hidden;
}

.avatar-label1 img{
	max-width: 200px;
	max-height: 200px;
	border-radius: 100%;
	overflow: hidden;
}

.avatar-label1 svg{
	height: 50px !important;
	width: 50px !important;
	color: #fff;
}

.sd-card::-webkit-scrollbar {
	display: none;
}

.unvisible{
	visibility: hidden;
}

.page-nav-bar{
	display: flex;
	gap: 16px;
	justify-content: center;
	margin: 16px;
}

.city{
	font-weight: 600;
}

.popover{
	position: absolute;
	background: black;
	color: white;
	transform: translateY(-100%);
	z-index: 2;
	padding: 8px;
	top: -8px;
	box-shadow: 4px 4px 4px var(--card-shadow);
	white-space: nowrap;
}

.popover::before{
	content:"";
	border-style: solid;
	border-width: 10px 8px 8px 8px;
	border-color: black transparent transparent transparent;
	position: absolute;
	left: 11px;
	top: 32px;
}

.relative{
	position: relative;
}

.checkbox-subtitle{
	font-size: .8em;
	text-align: left;
}

.blog-post{
	color: #333;
}

.blog-post img{
	max-height: 300px;
}

.blog-post svg.fa-arrow-up-right-from-square{
	height: 1em;
}

.center{
	text-align: center;
}

.cal-week{
	display: flex;
	flex-wrap: wrap;
	/*overflow-y: scroll;*/
	color: var(--color-calendar);
}

.cal-day{
	width: 100px;
}

.cal-day .cal-day-header{
	padding: 10px;
	border: 1px solid;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.cal-day .cal-day-header .date-number{
	font-size: 1.5em;
}

.cal-day .cal-time-slot{
	border: 1px solid;
	min-height: 50px;
}

.cal-day .cal-time-slot .visit{
	border-radius: 8px;
	padding: 8px;
	font-weight: 600;
	text-overflow: hidden;
	overflow: hidden;
}

.cal-week-wrapper{
	display: flex;
	justify-content: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0 30px var(--color-background-input) inset !important;
	-webkit-text-fill-color: var(--color-font) !important;
}
