

::selection {
	color: #fff;
	background-color: var(--primary);
}
::-moz-selection {
	color: #fff;
	background-color: var(--primary);
}


/* #Navigation
================================================== */

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 20px 0;
	/*box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);*/ /*turn it on, it will look good*/
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 10px 0;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
	height: 45px;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	position: fixed;
	font-family: var(--menu_font);
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.q-main-menu-navbar{
	padding: 0;
}
.q-main-menu-navbar-brand img{
	height: 55px; /*was 28px then 40px now we use svg..*/
	width: auto;
	display: block;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.q-main-menu-navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.q-main-menu-navbar-toggler:active,
.q-main-menu-navbar-toggler:focus {
	outline: none;
}
.q-main-menu-navbar-light .q-main-menu-navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	/*border-bottom: 1px solid #000;*/
    transition: all 300ms linear;
}
.q-main-menu-navbar-light .q-main-menu-navbar-toggler-icon:after,
.q-main-menu-navbar-light .q-main-menu-navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.q-main-menu-navbar-light .q-main-menu-navbar-toggler-icon:after{
	top: 8px;
}
.q-main-menu-navbar-toggler[aria-expanded="true"] .q-main-menu-navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.q-main-menu-navbar-toggler[aria-expanded="true"] .q-main-menu-navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.q-main-menu-navbar-toggler[aria-expanded="true"] .q-main-menu-navbar-toggler-icon {
	border-color: transparent;
}
.q-main-menu-nav-link{
	text-align: right;
	font: normal normal 600 16px/22px Source Sans Pro;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	opacity: 1;
	cursor: pointer;
    transition: all 200ms linear;
	position: relative;
	display: inline-block;
}

.navbar-light .navbar-nav .active > .nav-link {
	color: var(--primary);
}

.navbar-light .navbar-nav .nav-link {
	color: var(--primary);
}
.navbar-light .navbar-nav .nav-link:hover {
	color: var(--quaternary);
	transition: all 200ms linear;
}

.q-main-menu-nav-item:hover .menu-dropdown-arrow-holder, .menu-dropdown-arrow-holder:hover {
	transform: matrix(-1, 0, 0, -1, 0, 0);
	filter: invert(38%) sepia(44%) saturate(1315%) hue-rotate(187deg) brightness(89%) contrast(90%);
	transition: all 200ms linear;
}

.q-main-menu-nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	/*height: 2px;*/
	content: '';
	background-color: var(--primary);
	opacity: 0;
    transition: all 200ms linear;
}
.q-main-menu-nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.q-main-menu-nav-item.active:hover:after{
	opacity: 0;
}
.q-main-menu-nav-item{
	position: relative;
    transition: all 200ms linear;
}

.menu-dropdown-arrow-holder {
	position: absolute;
	right: 8px;
	top: 8px;
}
.menu-dropdown-arrow {
	background: transparent url(../img/dropdown_arrow.svg) 0 0 no-repeat padding-box;
	height: 8px;
	width: 8px;
	display: inline-block;
}

/* #Tabbed Navigation
================================================== */

.main-menu {
	padding: 20px 20px 0 20px;
	background: #f2f5f9;
	border-bottom: 1px solid #e5e5e5;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 20px;
}

.main-menu .title .logo {
	display: flex;
}

.main-menu .title .icon {
	background: #ffffff;
	width: 48px;
	height: 48px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	margin-right: 12px;
	padding: 4px;
}

.main-menu .title .icon img {
	height: 100%;
	width: 100%;
}

.main-menu .title .label {
	color: #333333;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 48px;
	height: 48px;
}

.main-menu .notifications .dropdown-toggle {
	line-height: 48px;
}

.main-menu .notifications {
	position: relative;
}

.nav-tabbed {
	display: flex;
	margin: 16px auto 0 auto;
	height: 40px;
}

.nav-tabbed .nav-item {
	cursor: pointer;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	padding-left: 24px;
	padding-right: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	color: #7e8596;
}

.nav-tabbed .nav-item.active {
	color: #1d87c8;
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	border-bottom: 0 none;
	border-radius: 4px 4px 0 0;
	margin-bottom: -1px;
}

/* #Primary style
================================================== */

.bg-light {
	background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    /* position: relative;  */
	/*
	zakomentirano jer otvaranje userOnboardingBootstrapModala bi imalo overflow sa padding 17px jer se dodaje default scrollbar..
	fix je znaci bio zakomentirati ovo gore te nadodati u userOnboardChecklist.css ->overwrite bootstrap issue-a

	.modal-open {
    	overflow-y: scroll!important;
	}
	*/
	width: 100%;
	display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 10%; /*50*/
	left: 0;
	width: 100%;
  	margin-top: 40px;
	/*transform: translateY(-50%);*/
	z-index: 20;
}

.q-main-menu-nav-item .q-main-menu-dropdown-menu {
	border: none;
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.q-main-menu-nav-item.show .q-main-menu-dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
	width: 180px;
}
.q-main-menu-dropdown-menu {
	background: var(--white) 0 0 no-repeat padding-box;
	border: 1px solid var(--border);
	box-shadow: 0 8px 16px #33374629;
	border-radius: 6px;
	opacity: 1;
    transition: all 200ms linear;
}
.q-main-menu-dropdown-toggle::after {
	display: none;
}

.q-main-menu-dropdown-item {
	color: var(--primary);
	text-align: left;
	font: normal normal normal 16px/32px Source Sans Pro;
	letter-spacing: 0.4px;

	padding: 3px 15px;
}
.q-main-menu-dropdown-item:hover,
.q-main-menu-dropdown-item:focus {
	font-weight: 600;
}

.q-main-menu-dropdown-item:focus, .q-main-menu-dropdown-menu {
	font-weight: 600;
}

.q-main-menu-dropdown-item.active, .q-main-menu-dropdown-item:active {
	text-decoration: none;
	/* background-color: var(--quaternary); */
	background-color: var(--text_field_fill);
	color:black;
}


/* #Media
================================================== */

@media (max-width: 767px) {
	.q-main-menu-nav-item:after{
		display: none;
	}
	.q-main-menu-nav-item::before {
		position: absolute;
		display: block;
		top: 15px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
	}
	.q-main-menu-dropdown-toggle::after {
		position: absolute;
		display: block;
		top: 10px;
		left: -23px;
		width: 1px;
		height: 11px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
		transition: all 200ms linear;
	}
	.q-main-menu-dropdown-toggle[aria-expanded="true"]::after{
		transform: rotate(90deg);
		opacity: 0;
	}
	.q-main-menu-dropdown-menu {
		padding: 0 !important;
		background-color: transparent;
		box-shadow: none;
		transition: all 200ms linear;
	}
	.q-main-menu-dropdown-toggle[aria-expanded="true"] + .q-main-menu-dropdown-menu {
		margin-top: 10px !important;
		margin-bottom: 20px !important;
	}

}

/*when the menu is collapsed*/
.font_size_16{
	font-size:16px!important;
}
/* used on mobile collapsed menu*/
.pl-4-custom{
	padding-left:1.66rem;
}


/*Notifications*/

#notification-count {
	padding: 0px 6px 0px 6px;
	background: #cc0000;
	color: #ffffff;
	font-weight: bold;
	margin-left: 11px;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	position: absolute;
	font-size: 11px;
	z-index: 100;
}

#notification-button {
	cursor: pointer;
}

#notifications-body {
	padding: 33px 0px 0px 0px !important;
}


.notificationContainerSm{
	position: absolute;
	/*min-height: 413px;*/
	/* height: 186px; */
	width: 400px;
	-webkit-animation: fadeinout 0.5s linear forwards;
	animation: fadeinout 0.5s linear forwards;
	height:200px!important;
}
.notificationContainerLg{
	position: absolute;
	/*min-height: 413px;*/
	/* height: 186px; */
	width: 400px;
	-webkit-animation: fadeinout 0.5s linear forwards;
	animation: fadeinout 0.5s linear forwards;
	height:413px!important;
}

@-webkit-keyframes fadeinout {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes fadeinout {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.notification-date-header {
	font-size: 20px;
	font-weight: 400;
}

.notification-item:nth-child(1) {
	background-color: black !important;
}

.section-notif {
	display: flow-root;
}

.notifications ul {
	list-style-type: none;
	display: inline-block;
}
.notifications ul li {
	display: block;
	padding: 4px;
}

.notification-list {
	float: right;
	background: white;
	position: absolute;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 3px 5px lightgrey;
	/*visibility: hidden;*/
	z-index: 10001;
	right: -66px;
	margin: 9px 83px 35px 0;
}
.notification-list .notification-list-header {
	border-bottom: 1px solid #E8E8E8;
	font-weight: 600;
	font-size: 18px;
}
.notification-list .notification-list-header .notification-list-total {
	float: right;
}
.notification-list .notification-list-items {
	padding-top: 20px;
}
.notification-list .notification-list-items li {
	margin-bottom: 18px;
}
.notification-list .notification-list-items img {


}
.notification-list .notification-list-items .item-name {
	display: block;
	padding-top: 10px;
	font-size: 16px;
}
.notification-list .notification-list-items .item-price {
	color: #6394F8;
	margin-right: 8px;
}


/*Notification item*/
.notification-item{
	border-style: solid;
	border-width: 1px;
	border-color: rgb(242, 242, 242);
	background-color: white;
	border-radius: 5px;
	padding-left: 12px;
	margin-left: 0px;
	margin-bottom: 10px;
	cursor: pointer;
}

.notification-item:hover{
	box-shadow: 0px 2px 1px rgb(242,242,242);
	transition: .4s;
	transform: translate(0, -1px);
	transform: translate3d(0, -1px, 0);
}

.notification-item .notification-item-header{
	position: relative;
	color: rgb(80, 80, 80);
	font-size: 14px;
	font-weight: 600;
	top: -12px;
	width: 225px;
}

.notification-item .notification-item-date{
	position: relative;
	color: rgb(80, 80, 80);
	font-size: 12px;
	font-weight: 600;
	top: -10px;
}

.notification-item .trash-icon{
	position: relative;
	font-size: 12px;
	top: -22px;
	left: 290px;
	color: rgb(112, 112, 112)
}

.notification-item .trash-icon:hover{
	color: red;
	cursor: pointer;
}

.notification-sender {
	font-size: 12px;
	color: rgb(160, 160, 160);
	position: relative;
	left: 276px;
	top: 9px;
	width: fit-content;
}

.notification-date {
	font-size: 14px;
	color: rgb(160, 160, 160);
	position: relative;
	left: 0px;
	top: -5px;
}

.notification-list:after {
	bottom: 100%;
	left: 89%;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border: 8px solid transparent;
	border-bottom-color: white;
	margin-left: -8px;
}

.trash-icon {
	color: #515783;
	font-size: 24px;
	margin-right: 7px;
	float: left;
}

/* Version */
.changelog-title {
	/*font-weight: 500;*/
	color: var(--primary);
	/*font-size: 36px;*/
	display: block;
	padding-bottom: 20px;
	font: normal normal 500 28px/40px Source Sans Pro;
}

.version span {
	border-radius: 2px;
	padding: 2px 8px;
	font-size: 14px;
	color: white;
	background: #5CB85C;
	font-weight: 700;
}

.version {
	margin-top: 15px;
	margin-bottom: 5px;
	color: #333;
	font-weight: 800;
	font-size: 19px;
	display: inline;
}

.changelog-li {
	letter-spacing: -.5px;
	padding: 2px;
	border-radius: 3px;
	margin-left: 45px;
}

.version-icon {
	margin-right: 6px;
}

.version-date {
	font-weight: 600;
	font-size: large;
}

.title-li {
	font-weight: 600;
}


/*.button_close {*/
/*	background: rgb(14, 80, 136);*/
/*	color: white;*/
/*	text-align: center;*/
/*	padding-bottom: 5px;*/
/*	text-decoration: none;*/
/*	display: block;*/
/*	font-weight: bold;*/
/*	border-radius: 5px;*/
/*	padding-top: 5px;*/
/*	margin: 25px 60px 0 60px;*/
/*	cursor: pointer;*/
/*	font-size: 20px;*/
/*}*/

.button_close:after {
	content: 'x';
	color: #fff;
	font-weight: 300;
	font-family: Arial, sans-serif;
}


.tgl {
	display: none;
}
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
	box-sizing: border-box;
}
.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {
	background: none;
}
.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
	background: none;
}
.tgl + .tgl-btn {
	outline: 0;
	display: block;
	position: relative;
	cursor: pointer;
	width: 36px;
	height: 21px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
	position: relative;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
}
.tgl + .tgl-btn:after {
	left: 0;
}
.tgl + .tgl-btn:before {
	display: none;
}
.tgl:checked + .tgl-btn:after {
	left: 50%;
}

.tgl-light + .tgl-btn {
	background: #44EF88;
	border-radius: 2em;
	padding: 2px;
	margin-top: 9px;
	/*transition: all .2s ease;  -- was affecting order of ops*/
}
.tgl-light + .tgl-btn:after {
	border-radius: 50%;
	background: #fff;
	transition: all .2s ease;
}
.tgl-light:checked + .tgl-btn {
	background: #44BCEF;
}

.clear {
	color: rgb(180, 180, 180);
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	margin-top: 9px;
}

.clear:hover {
	color: red;
}

#rec {
	font-size: 15px;
	padding-left: 15px;
	padding-right: 10px;
	margin-top: 9px;
}

#type {
	font-size: 15px;
	font-weight: 400;
	padding-left: 12px;
	padding-right: 10px;
	margin-top: 7px;
	color: rgb(180, 180, 180);
}

.breadcrumb {
	padding-left: 0;
	background-color: inherit;
	font-size: 12px;
}
.breadcrumb-item a {
	color: #7e8596;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: '';
}
.breadcrumb-item.active {
	color: #5c6374;
}

.breadcrumb .arrow {
	border: solid #C0C4CC;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
}

.breadcrumb .right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
