

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: Raleway,Helvetica,sans-serif;
}

/* 
----------------------------------
	Linkello colors
----------------------------------
*/

body, a, a:hover, a:focus, a:active {
	color: var(--linkello-main-text-color);
}

.text-highlight {
	color: var(--linkello-main-hightlight);
}

.icon {
	color: var(--linkello-main-icon-color);
}

.url {
	vertical-align: text-bottom;
	font-size: 13px;
	color: #007bff !important;
}

.url-l {
	vertical-align: text-bottom;
	font-size: 18px;
	color: #007bff !important;
}

.text-small {
	font-size: .85rem;
}

.text-size-1 {
	font-size: 1em;
}

.text-size-2 {
	font-size: 2em;
}

.text-size-3 {
	font-size: 3em;
}

.text-smaller {
	font-size: 80%;
}

/* 
----------------------------------
	Top white arrow
----------------------------------
*/

.top-white-arrow {
	position: relative;
}

.top-white-arrow:after {
	/*bottom: 100%;*/
	top: 100%;
	left: 40%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.top-white-arrow:after {
	border-left-color: var(--linkello-main-bg-color);
	/*border-width: 60px 0px 0px 60px;*/
    border-width: 0px 0px 40px 60px;
	margin-left: -60px;
}

/* 
----------------------------------
	Breadcrumb
----------------------------------
*/

.nav-breadcrumb {
    background-color: var(--linkello-group-1-bg-color);
}

.breadcrumb {
	padding: 0.15rem 0.5rem;
	margin-bottom: 0;
	line-height: 23px;
	background-color: rgba(0,0,0,.2);
	border-radius: 0;
}

.breadcrumb-item.active,
.breadcrumb-item a {
    font-size: 0.9rem;
	color: var(--linkello-group-1-text-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    font-size: 0.9rem;
	color: var(--linkello-group-1-text-color);
	content: ">";
}

/* 
----------------------------------
	Default style rules
----------------------------------
*/


.form-control::-webkit-input-placeholder {
	color: #cacaca;
}
.form-control:-moz-placeholder {
	color: #cacaca;
}
.form-control::-moz-placeholder {
	color: #cacaca;
}
.form-control:-ms-input-placeholder {
	color: #cacaca;
}
.form-control::-ms-input-placeholder {
	color: #cacaca;
}

/* 
----------------------------------
	Utils
----------------------------------
*/

.width-inherit {
	width: inherit;
}

.linkello-card {
	margin: 0 auto;
	/*max-width: 250px;*/
	height: 100%;
}

.overflow-hidden {
	overflow: hidden;
}

.cursor-pointer {
	cursor: pointer !important;
}

/* 
----------------------------------
	Text utils
----------------------------------
*/

.text-no-wrap {
	white-space: nowrap !important;
}

/*
.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
*/
.link-underline a,
.text-underline {
	text-decoration: underline !important;
}

.text-info a,
.text-warning a,
.text-success a,
.text-danger a {
	color: var(--linkello-main-text-color);
}

/* 
----------------------------------
	Hover effect
----------------------------------
*/

.hover-effect {
	position: relative;
	cursor: pointer;
	z-index: 0;
}

.hover-effect::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: inherit;
	z-index: -1;
}

.hover-effect:hover::before {
	background-color:rgba(0,0,0,0.3);
}

/* 
----------------------------------
	Popover
----------------------------------
*/
.popover-body ol {
	margin-bottom: 0;
	padding-left: 20px;
}

.popover-body ol li {
	margin-bottom: 0;
}

/* 
----------------------------------
	Vertical and horizontal centering
----------------------------------
*/

.flex-v-align {
	display: -ms-flexbox;
	-ms-flex-align: center;
	-ms-flex-justify-content: center;
	display: flex;
	align-items: center;
}

.flex-h-align {
	display: flex;
	justify-content: center;
}

.flex-vh-align {
	display: -ms-flexbox;
	-ms-flex-align: center;
	-ms-flex-justify-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-vhr-align {
	display: -ms-flexbox;
	-ms-flex-align: center;
	-ms-flex-justify-content: center;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.flex-vh-align-bottom {
	display: -ms-flexbox;
	-ms-flex-align: center;
	-ms-flex-justify-content: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.inline-flex-vh-align {
	display: -ms-inline-flexbox;
	-ms-flex-align: center;
	-ms-flex-justify-content: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* 
----------------------------------
	Text wrapper
----------------------------------
*/

.text-wrapper {
	border: 1px solid #ced4da;
	box-shadow: 2px 2px 8px -4px inset #a0a0a0;
}

.text-wrapper-lg {
	padding: .5rem .5rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: .3rem;
}

.text-wrapper-md {
	padding: .375rem .75rem;
	line-height: 1.5;
	font-size: 1rem;
	border-radius: .25rem;
}

.text-wrapper-sm {
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5;
	border-radius: .2rem;
	box-shadow: 2px 2px 4px -2px inset #a0a0a0;
}

.text-wrapper-button {
	padding-left: inherit;
	padding-right: inherit;
	border-radius: inherit;
}

/* 
----------------------------------
	Icon sizes
----------------------------------
*/

.icon-sm {
	font-size: 1.2rem;
}

.icon-md {
	font-size: 1.6rem;
}

.icon-lg {
	font-size: 2rem;
}

/* 
----------------------------------
	Icon outlined
----------------------------------
*/

.icon-outline {
	display: inline-block;
}

.icon-outline:hover {
	display: inline-block;
	text-decoration: none;
}

.icon-outline i {
	border-width: 2px;
	border-style: solid;
}

.icon-outline-sm i {
	width: 31px;
	height: 31px;
	font-size: 1.1rem;
	border-radius: 15px;
}

.icon-outline-md i {
	width: 38px;
	height: 38px;
	font-size: 1.6rem;
	border-radius: 19px;
}

.icon-outline-lg i {
	width: 48px;
	height: 48px;
	font-size: 2rem;
	border-radius: 24px;
}


/* 
----------------------------------
	Advanced checkbox
----------------------------------
*/

.checkbox {
	margin: 0;
	display: inline-block;
	cursor: pointer;
}

.checkbox input {
	display: none;
	/*
		position: absolute;
	left: -10000px;
	top: -10000px;
	*/
}

.checkbox i {
	border-width: 2px;
	border-style: solid;
}

.checkbox input:checked + i:before {
	content: "\f00c";
}

.checkbox-outline-sm i {
	width: 31px;
	height: 31px;
	font-size: 1.1rem;
	border-radius: 15px;
}

.checkbox-outline-md i {
	width: 38px;
	height: 38px;
	font-size: 1.6rem;
	border-radius: 19px;
}

.checkbox-outline-lg i {
	width: 48px;
	height: 48px;
	font-size: 2rem;
	border-radius: 24px;
}


.input-group-w-100 {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.input-group-fake-input {
	box-shadow: 2px 2px 10px -3px inset #a0a0a0;
	background-color: #fff;
	border: 1px solid #ced4da;
}

/* 
----------------------------------
	Input group label
----------------------------------
*/

.input-group-label {
	display: flex;
	border-radius: 0;
	margin-left: -1px;
	margin-right: -1px;
}

.input-group-text-sm {
	padding: 0 .75rem;
	font-size: 75%;
}

.input-group-label .input-group-text {
	color: #a0a0a0;
	background-color: #fff;
}

.input-group-label .input-group-text {
	border-radius: 0;  
}

/* 
----------------------------------
	Stacked input group
----------------------------------
*/

.input-groups {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
}

.input-groups .input-group:last-child:not(.d-none) input,
.input-groups .input-group:last-child:not(.d-none) select,
.input-groups .input-group:last-child:not(.d-none) button,
.input-groups .input-group:last-child:not(.d-none) .input-group-text {
	border-top-width: 0;
}

.input-groups .input-group input,
.input-groups .input-group select,
.input-groups .input-group button,
.input-groups .input-group .input-group-text {
	border-radius: 0;
}

.input-group-prepend .input-group-dropdown {
	color: var(--linkello-main-text-color);
	background-color: #fff;
	border: 1px solid #ced4da;
}

.input-group-prepend:first-child .input-group-dropdown {
	border-radius: .25rem 0 0 .25rem;
}

/* 
----------------------------------
	Badge sizes
----------------------------------
*/

.badge-sm {
	position: absolute;
	left: -10px;
	top: 0;
	-moz-border-radius: 10px 0;
	-webkit-border-radius: 10px 0;
	border-radius: 10px;
	height: 20px;
	width: 20px;
	color: var(--linkello-group-2-text-color);
	background-color: var(--linkello-group-2-bg-color);
	font-size: 0.8rem;
}

.badge-md {
	position: absolute;
	left: -10px;
	top: 0;
	-moz-border-radius: 15px 0;
	-webkit-border-radius: 15px 0;
	border-radius: 15px;
	height: 30px;
	width: 30px;
	color: var(--linkello-group-2-text-color);
	background-color: var(--linkello-group-2-bg-color);
	font-size: 1rem;
}

/* 
----------------------------------
	Badge outlined
----------------------------------
*/

.badge-outlined {
	display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
	border-radius: .25rem;
	color: var(--linkello-main-text-color);
	border: 1px solid var(--linkello-main-text-color);
}

/* 
----------------------------------
	Outlined circle sizes
----------------------------------
*/

.circle {
	position: relative;
	margin: .5rem auto;
	border-width: 3px;
	border-style: solid;
}

.circle-outline-sm {
	-moz-border-radius: 26px 0;
	-webkit-border-radius: 26px 0;
	border-radius: 26px;
	height: 52px;
	width: 52px;
	font-size: 2rem;
}

.circle-outline-md {
	-moz-border-radius: 38px 0;
	-webkit-border-radius: 38px 0;
	border-radius: 38px;
	height: 76px;
	width: 76px;
	font-size: 3rem;
}

.circle-outline-lg {
	-moz-border-radius: 50px 0;
	-webkit-border-radius: 50px 0;
	border-radius: 50px;
	height: 100px;
	width: 100px;
	font-size: 4rem;
}

.text-outline-sm {
	display: inline-block;
	padding: 0 .2rem;
	font-size: 80%;
	border-radius: .3rem;
	border-width: 2px;
	border-style: solid;
}

/* 
----------------------------------
	Buttons
----------------------------------
*/

.btn.focus,
.btn:active,
input:active {
	outline: none;
	box-shadow: none;
}

.btn-linkello {
    overflow: hidden;
    text-overflow: ellipsis;
	color: var(--linkello-group-2-text-color) !important;
	background-color: var(--linkello-group-2-bg-color);
	/*border: 1px solid rgba(0,0,0,.1);*/
}

.btn-linkello-2 {
    overflow: hidden;
    text-overflow: ellipsis;
	color: var(--linkello-group-1-text-color) !important;
	background-color: var(--linkello-group-1-bg-color);
}

.btn-linkello-outline {
	color: var(--linkello-group-2-bg-color);
	border: 2px solid var(--linkello-group-2-bg-color);
	border-radius: 5px;
}

.btn-linkello-outline:hover {
	color: var(--linkello-group-2-text-color);
	border: 2px solid var(--linkello-group-2-bg-color);
	background-color: var(--linkello-group-2-bg-color);
	border-radius: 5px;
	transition: .33s ease-in-out;
}

.btn-linkello-toogle {
	/*color: #b2b2b2;
	border: 1px solid #ced4da;
	background-color: #f0f0f0;
	box-shadow: 3px 3px 2px 0px #fcfcfc inset;*/

	border-style: solid;
	border-color: #ced4da;
	border-width: 1px 0 1px 0;
	color: var(--linkello-group-1-text-color);
	background-color: var(--linkello-group-1-bg-color);
	cursor: pointer;
	/*box-shadow: 3px 3px 2px 0px rgba(255,255,255,.3) inset;*/
}

.btn-linkello-toogle.active {
	/*color: #fff;
	border-color: #b9b9b9;
	background-color: #b9b9b9;	
	box-shadow: 2px 2px 5px 0px #999 inset;*/

	box-shadow: 2px 2px 5px 0px rgba(0,0,0,.2) inset;
}

.btn-linkello-toogle.active::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: inherit;
	background-color:rgba(0,0,0,0.1);
	z-index: -1;
}

.btn-linkello-toogle.btn:hover {
	color: inherit;
}

.btn-linkello-toogle i {
	opacity: .8;
}

.btn-linkello-toogle.active i {
	opacity: 1;
}

.btn-linkello-toogle:first-child {
	border-width: 1px 0 1px 1px;
}

.btn-linkello-toogle:last-child {
	border-width: 1px 1px 1px 0;
}

.btn-linkello-lg {
	padding: 12px 40px;
    overflow: hidden;
    text-overflow: ellipsis;
	font-weight: bold;
	color: var(--linkello-group-2-text-color) !important;
	background-color: var(--linkello-group-2-bg-color);
	/*border: 1px solid rgba(0,0,0,.1);*/
	border-radius: 10px;
}

.btn-linkello-lg a {
	color: var(--linkello-group-2-text-color) !important;
	text-decoration: none;
}

/* 
----------------------------------
	Global form fields
----------------------------------
*/

.form-group .form-control {
	color: #586069;
	background-color: #fcfcfc;
}

.form-group .form-label {
	color: #476374;
}

/*
----------------------------------
	Opacity
----------------------------------
*/

.opacity-1 {
	opacity: .1;
}

.opacity-2 {
	opacity: .2;
}

.opacity-3 {
	opacity: .3;
}

.opacity-4 {
	opacity: .4;
}

.opacity-5 {
	opacity: .5;
}

.opacity-6 {
	opacity: .6;
}

.opacity-7 {
	opacity: .7;
}

.opacity-8 {
	opacity: .8;
}

.opacity-9 {
	opacity: .9;
}

/* 
----------------------------------
	Modal
----------------------------------
*/

.modal-header + .modal-footer {
	border-top: 0;
}

/* 
----------------------------------
	Modal group
----------------------------------
*/

.modal-group {
	pointer-events: auto;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* 
----------------------------------
	Linkello alert
----------------------------------
*/

.alert-linkello {
    color: var(--linkello-group-1-text-color);
    background-color: var(--linkello-group-1-bg-color);
}

.alert-adv {
	margin: 15px 0 0 0;
    padding: .75rem .75rem;
	font-size: 0.8rem;
	border-radius: .25rem;
    color: #818182;
    background-color: #eeeeee;
    border-color: #eeeeee;
}

/* 
----------------------------------
	Page header
----------------------------------
*/

.header-linkello .navbar-light a.nav-link {
	color: var(--linkello-header-text-color);
	text-transform: uppercase;
}

.header-linkello .navbar-light a.nav-link:hover {
	color: var(--linkello-header-text-color);
	filter: invert(0.50);
}

.header-linkello nav {
	padding: 0 5px;
	min-height: 94px;
	border-bottom-width: 0;
	background-color: var(--linkello-header-bg-color);
	transition: all 0.3s;
}

.header-linkello nav.thinner {
	height: 60px;
	min-height: auto;
}

.header-linkello nav > .container {
	height: 100%;
}

.header-linkello .navbar-nav .dropdown-menu {
	position: absolute;
}

.header-linkello img {
   max-height: 90px;
}

/*
.header-linkello nav.thinner .container > a {
	line-height: 60px;
}
*/

.header-linkello .thinner {
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.header-linkello .thinner img {
	max-height: 60px;
}

.nav-link {
	font-size: 1.1rem;
}

.nav-link.active {
	font-weight: bold;
}

.header-linkello .btn-linkello-outline {
	color: var(--linkello-group-2-bg-color);
	background-color: var(--linkello-header-bg-color);
	border-color: var(--linkello-group-2-bg-color);
	cursor: pointer;
}

.header-linkello .btn-linkello-outline:hover {
	color: var(--linkello-header-bg-color);
	background-color: var(--linkello-group-2-bg-color);
}

.navbar-lang a {
	text-transform: uppercase;
	color: var(--linkello-main-hightlight);
}

.lang-item a {
	margin: 1px 0 0 0;
	display: block;
	width: 30px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.header-linkello .navbar-collapse {
	background-color: var(--linkello-header-bg-color);
}

.header-linkello .navbar-collapse.collapsing,
.header-linkello .navbar-collapse.show {
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.header-linkello .navbar-toggler {
	border-width: 0;
}

.navbar-user > a {
	border: 1px solid;
	border-radius: 5px;
}

.header-linkello .navbar-collapse.collapsing .navbar-user > a,
.header-linkello .navbar-collapse.collapse .navbar-user > a {
	border: 0;

}

/* 
----------------------------------
	Page main container
----------------------------------
*/

main {
	min-height: calc(100vh - 128px);
	padding-top: 95px;
}

main.conference {
	min-height: calc(100vh - 72px);
	padding-top: 95px;
}

main.remote-cam {
	min-height: calc(100% - 132px);
	padding: 0;
}

.bg-main {
	background-color: var(--linkello-page-bg-color); 
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;	
	overflow: hidden;
}

.container-sm {
	margin: auto;
	padding: 1.5rem;
	width: 400px;
	color: var(--linkello-main-text-color);
	background-color: var(--linkello-main-bg-color);
	border-radius: 10px;
}

.container-sml {
	margin: auto;
	padding: 1.5rem;
	color: var(--linkello-main-text-color);
	background-color: var(--linkello-main-bg-color);
	border-radius: 10px;
}

.rating {
	font-size: 4rem;
	text-align: center;
}

.rating i.selected,
.rating i.rated {
	color: gold;
}

/* 
----------------------------------
	Page footer
----------------------------------
*/

.footer-linkello {
	width: 100%;
	min-height: 128px;
	color: var(--linkello-footer-text-color);
	background-color: var(--linkello-footer-bg-color);
}

.footer-linkello .bg-brand-logo {
	max-height: 65px;
	border-radius: 5px;
}

.footer-linkello a,
.footer-linkello a:hover {
	font-size: 0.8rem;
	color: var(--linkello-footer-text-color);
}

.footer-linkello ul {
	margin: 0;
	padding-left: 15px;
	height: 100%;
	border-left: 1px dotted rgba(220,220,220,.4);
}

.footer-linkello-light {
	min-height: 72px;	
}

@media (max-width: 767.98px) {
	.footer-linkello ul {
		padding-left: 73px;
		border-left: 0;
	}
}

/* 
----------------------------------
	Date/Time Picker
----------------------------------
*/

.bootstrap-datetimepicker-widget table td {
	height: 24px !important;
	line-height: 24px !important;
}

.bootstrap-datetimepicker-widget table td span {
    height: 24px !important;
	line-height: 24px !important;
}

.bootstrap-datetimepicker-widget .picker-switch table td span {
	background-color: var(--linkello-group-1-bg-color);
    color: var(--linkello-group-1-text-color);
}

.bootstrap-datetimepicker-widget .picker-switch table td span:hover {
	background-color: var(--linkello-group-1-bg-color);
}

.bootstrap-datetimepicker-widget .table td, 
.bootstrap-datetimepicker-widget .table th {
	border-top: 0;
	border-bottom: 0;
}

/* 
----------------------------------
	Alert
----------------------------------
*/

.alert ul {
	margin-bottom: 0;
}

/* 
----------------------------------
	Resolution breakpoints
----------------------------------
*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

	.circle-outline-max-xs,
	.circle-outline-max-sm,
	.circle-outline-max-md,
	.circle-outline-max-lg {
		-moz-border-radius: 26px 0;
		-webkit-border-radius: 26px 0;
		border-radius: 26px;
		height: 52px;
		width: 52px;
		font-size: 2rem;
	}

	.rating {
		font-size: 3rem;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (min-width: 576px) {

	.circle-outline-max-sm,
	.circle-outline-max-md,
	.circle-outline-max-lg {
		-moz-border-radius: 26px 0;
		-webkit-border-radius: 26px 0;
		border-radius: 26px;
		height: 52px;
		width: 52px;
		font-size: 1.7rem;
	}

}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) {

	.circle-outline-max-md,
	.circle-outline-max-lg {
		-moz-border-radius: 38px 0;
		-webkit-border-radius: 38px 0;
		border-radius: 38px;
		height: 76px;
		width: 76px;
		font-size: 2.7rem;
	}
}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) {

	.circle-outline-max-lg {
		-moz-border-radius: 50px 0;
		-webkit-border-radius: 50px 0;
		border-radius: 50px;
		height: 100px;
		width: 100px;
		font-size: 3.5rem;
	}
}