﻿/**************GENERAL CONSTRUCTION*****************/
html, body {
	height: 100%;
}

body {
	padding-top: 0;
	padding-bottom: 0;
	background: #f8f8f8;
}

.nav > li > a {
	display: inline-block !important;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
	white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
	max-width: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: none;
}

text {
	font-size: 14px !important;
}

.select2-selection {
	border-radius: 0px !important;
	height: 34px !important;
}

button.mkReport {
	border-radius: 0px;
	transition: all ease-in-out .3s;
}

.removePadding {
	padding: 0;
}

hr.style-test {
	height: 2px;
	border: 0;
	margin-left: 5px;
	margin-right: 5px;
}

.bodyContainer {
	overflow-x: hidden;
}

.body-content {
	padding-left: 0;
	padding-right: 0;
	overflow-x: hidden;
	padding-bottom: 20px;
}

@media (min-width: 1000px) and (max-width: 1244px) {
	.managementContainer {
		margin-top: 6vh !important;
	}
}

th, tr, td {
	border: 1px solid #eeeeea;
	padding: 5px;
	text-align: center;
}

.btn:hover {
	opacity: 0.9;
}

#loaderContainer {
	position: fixed;
	z-index: 1000;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 1;
	text-align: center;
	display: none;
}

	#loaderContainer h3 {
		color: #34495e;
		font-size: 20px;
		position: absolute;
		left: 50%;
		top: 40%;
		padding-top: 80px;
		transform: translate(-50%,-50%);
		animation-name: pulse;
		animation-duration: 2.5s;
		animation-timing-function: ease-out;
		animation-direction: alternate;
		animation-iteration-count: infinite;
	}

	#loaderContainer img {
		position: absolute;
		left: 50%;
		top: 40%;
		transform: translate(-50%,-40%);
		animation-name: pulse;
		animation-duration: 2.5s;
		animation-timing-function: ease-out;
		animation-direction: alternate;
		animation-iteration-count: infinite;
	}

@keyframes pulse {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 1;
	}
}

/* Graph Loading Overlay Styles */
.graph-loading-overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	backdrop-filter: blur(10px);
}

.graph-loading-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.graph-error-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.graph-spinner {
	width: 30px;
	height: 30px;
	border: 5px solid rgba(23, 104, 58, 0.2);
	border-top-color: #17683A;
	border-radius: 70%;
	animation: graph-spin 1s linear infinite;
}

@keyframes graph-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.graph-loading-text {
	margin-top: 15px;
	font-size: 15px;
	font-weight: 600;
	color: #17683A;
}

.graph-error-icon {
	font-size: 48px;
	color: #d9534f;
	margin-bottom: 10px;
}

.graph-error-text {
	font-size: 16px;
	color: #d9534f;
	margin-bottom: 15px;
	font-weight: 500;
}

.graph-retry-button {
	background-color: #17683A;
	border-color: #17683A;
	color: white;
	padding: 8px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.graph-retry-button:hover {
	background-color: #145230;
	border-color: #145230;
	opacity: 0.9;
}

/* Prediction Button Positioning */
.prediction-button-container {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 50;
}

.inlineLabel {
	display: inline;
}

.textSetup {
	text-align: center;
}

.no-padding {
	padding: 0 !important;
}

.no-padding-bottom {
	padding-bottom: 0 !important
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover {
	outline: 0 !important;
	-webkit-box-shadow: 0 !important;
	-moz-box-shadow: 0 !important;
	box-shadow: 0;
}

.boxShadow {
	display: block;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	-moz-box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 15px 0px rgb(0 0 0 / 10%);
	box-shadow: 0 0 10px 0px rgb(0 0 0 / 10%);
}


.boxShadowD3 {
	display: block;
	padding: 0;
	border: 3px solid #eee;
	border-radius: 0px;
	box-shadow: 4px 4px 10px #f8f8f8;
}


.boxShadowUnder {
	margin-top: 4px;
}

.customContainer {
	margin: auto;
}

.loaderPositioning {
	position: absolute;
	top: 37%;
	left: 47%;
}

.loaderPositioningIffirDashboard {
	position: relative;
}

.fullWidthBtn {
	display: block;
	width: 100%;
}

.darkBlue {
	color: #fff;
	background: #262f41;
}

table caption.darkBlue {
	padding: 10px;
	text-transform: uppercase;
}

/**************GENERAL CONSTRUCTION END*****************/
/**************NAV BARS AND MENUS*****************/
.firstheader {
	background-color: #17683a;
	color: white;
	border-bottom: 1px solid #17683a;
	margin-bottom: 0 !important;
	border: none;
	border-radius: 0;
}

#headline h2 {
	box-sizing: content-box;
	/*    display: inline-block;*/
	float: left;
	height: 58px;
	font-size: 1.7rem;
	letter-spacing: normal;
	line-height: 58px;
	margin: 0 0 0 -1px;
	padding: 0 22px 0 20px;
	font-weight: 800;
}

.headerDiv {
	background: #eeeeea;
	margin-bottom: 0 !important;
	border: none;
	border-radius: 0;
	width: 96%;
	float: right;
	left: 73px;
	margin: 0;
	position: fixed !important;
	right: 0;
}

	.headerDiv a {
		color: #262f41;
		padding: 0 !important;
	}

.headerNavbar {
	display: inline-block;
	width: 11%;
}

.sameNavbar {
	text-align: center;
	/*border-right: 1px solid rgba(255,255,255,0.4);*/
	width: 11%;
	padding-top: 0.9%;
	padding-bottom: 0.5%;
	display: inline-block;
	min-width: 130px;
}

#mainMenu {
	/*   width: 85%;
    float: right;*/
	min-height: 63px;
}

	#mainMenu li {
		position: relative;
		/*      width: 8%;*/
		text-align: center;
		max-width: 250px;
		border-bottom: 5px solid rgba(38, 47, 65, 0);
		line-height: 40px;
		margin-left: 5px;
		margin-right: 5px;
		padding-left: 25px;
		padding-right: 25px;
	}

		#mainMenu li a {
			font-size: 14px;
			font-weight: 500;
			line-height: 58px;
		}

		#mainMenu li:hover,
		#mainMenu li.active {
			border-bottom: 2px solid #17683a;
		}

.headerDiv .container {
	max-width: 100% !important;
}

.profilePartUser a {
	color: white;
}

	.profilePartUser a:hover,
	.profilePartUser a:focus,
	.profilePartUser a:active,
	.logOffList a:hover,
	.logOffList a:active,
	.logOffList a:focus {
		background: transparent !important;
	}

.logOffList {
	text-align: center;
	border-left: 1px solid rgba(255,255,255,0.4);
	padding-top: 6%;
	padding-bottom: 10%;
	width: 80px;
}

	.logOffList a {
		padding-top: 2px !important;
		padding-bottom: 0 !important;
	}

/*.logOffIcon {
    padding-top: 5px;
}*/

.appLogo {
	max-width: 121px !important;
	max-height: 44px !important;
}

/***mobile menu***/
.mobileMenuButton {
	font-size: 3rem;
	color: #262f41;
	width: 42px;
	height: 50px;
	text-align: center;
	margin-top: 8px;
	cursor: pointer;
	display: none;
}


.dropdownMenu #mainMenu {
	width: 200px;
	position: absolute;
	z-index: 9999;
	background: #262f41;
	right: 0;
	display: none;
	margin: 0;
}

	.dropdownMenu #mainMenu li {
		width: 100%;
		text-align: right;
		max-width: 250px;
	}

		.dropdownMenu #mainMenu li a {
			color: white;
			cursor: pointer;
		}

			.dropdownMenu #mainMenu li a:hover {
				background-color: transparent;
			}

		.dropdownMenu #mainMenu li:hover,
		.dropdownMenu #mainMenu li.active {
			border-bottom: 2px solid white;
		}

.dropdownMenu .linkMenuIcons {
	display: none;
}
/***mobile menu end***/
/***language select***/
.dashLanguage,
.bookLanguage {
	position: absolute;
	left: 11%;
	z-index: 1030;
	height: 56px;
}

	.bookLanguage select,
	.dashLanguage select {
		font-size: 16px;
		background: #17683a;
		border: #17683a !important;
		color: white !important;
		height: 100%;
		padding: 0 20% 0 10% !important;
	}

		.dashLanguage select:hover {
			background: #12502c;
		}

		.dashLanguage select:focus,
		.dashLanguage select:active {
			outline: none;
		}
/*language select end*/
/**************NAV BARS AND MENUS END*****************/
/**************LOGIN STYLE*****************/
.loginContentContainer {
	text-align: center;
	padding-top: 8%;
}

.loginUserData,
.loginExternalContainer {
	width: 75%;
	margin: auto;
}

.loginUserData {
	margin: 10% auto 0;
}

	.loginUserData > div {
		text-align: left;
	}

.loginSecondHeadline {
	margin-top: 0;
	font-weight: 300;
}

.loginDiv {
	padding-top: 10%;
	padding-bottom: 0;
	width: 75%;
	margin: auto
}

.loginBody {
	text-align: center;
	padding: 12%;
	border: 1px solid;
	border-radius: 5px;
	background-color: #eee;
}

.inputFieldLoginDiv {
	padding-bottom: 20px;
}

.loginButton {
	padding: 10px;
	width: 100%;
	background-color: #17683a;
	border-radius: 0 !important;
	border-color: #17683a !important;
	color: white;
	font-size: 18px;
	max-width: 100%;
}

	.loginButton:hover {
		background-color: #17683a;
		color: white;
	}

.loginImageDiv {
	background-image: url('../img/loginBackground.png');
	background-size: cover;
	background-repeat: no-repeat;
}

.loginError {
	color: red;
}

#henHouseTime {
	margin-bottom: 10px;
}


#loginEmail {
	max-width: inherit !important;
}

#loginPass {
	max-width: inherit !important;
}

.inputFieldLoginDiv input {
	background-color: #ffffff !important;
	font-size: 1.2em;
	border-radius: 0px;
	height: 52px;
	max-width: 100%;
}

	.inputFieldLoginDiv input:focus {
		outline: none !important;
		box-shadow: none;
		border: 1px solid black;
	}

.externalLogin {
	width: 30%;
	border-radius: 0px;
	border: 1px solid #ccc;
	color: black;
	font-size: 12px;
	font-weight: 700;
	background: white;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 35px;
}

	.externalLogin:last-child {
		margin-right: 0px;
	}

	.externalLogin:hover,
	.externalLogin:focus,
	.externalLogin:active {
		border: 1px outset #ccc;
		color: black;
	}

#socialLoginForm hr {
	background-color: #ccc;
}

#socialLoginList {
	display: flex;
	justify-content: space-between;
}

#Microsoft {
	background-image: url('../img/microsoft.png');
	background-repeat: no-repeat;
	background-position: 3% center;
}

#Google {
	background-image: url('../img/googlePlus.png');
	background-repeat: no-repeat;
	background-position: 3% center;
}

#Facebook {
	background-image: url('../img/faceLittle.png');
	background-repeat: no-repeat;
	background-position: 3% center;
}

.credentials {
	font-style: italic;
}

#contactSection {
	margin-top: 1.2em;
}

	#contactSection button {
		color: #17683a;
	}

#contactModal .form-control {
	max-width: 100%;
}

	#contactModal .form-control:focus {
		border-color: #262f41;
		box-shadow: none;
	}

#contactModal .full-button {
	float: right;
}
/**************LOGIN STYLE END*****************/
/**************ALL SERVICES HEADLINE STYLE*****************/
.allServicesHeadline {
	width: 100%;
	margin: 20px 0;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.allServicesHeadlineChange {
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 20px;
}

.messageSow {
	margin-left: 5%;
	margin-top: 7%;
}


/*.dropdownHeadlinePart {
    width: 40%;
}*/

.mapTrap .secondElementPart {
	width: 36%;
}

.trapHeadline .secondElementPart {
	width: 50%;
}

.input_names {
	float: left;
	font-size: 18px;
	font-weight: 500;
	margin: 5px 0px 5px 0px;
}

.input_names_label {
	float: left;
	font-size: 18px;
	font-weight: 200;
	margin: 5px 0px 5px 0px;
}

.objectHeadlineDropdown,
.recipeHeadlineDropdown,
.servicesHeadlineDropdown,
.servicesHeadlineDropdownFullWidth,
.alertsGraphHeadlineDropdown {
	-webkit-border-radius: 0 !important;
	-webkit-user-select: none !important;
	background-image: url('../../Content/images/arrow-down-blk.png');
	background-size: 20px !important;
	background-position: 95% center !important;
	background-repeat: no-repeat !important;
	cursor: pointer !important;
	padding: 0px 30px 0 10px !important;
	display: inline-block;
	border-radius: 4px !important;
	color: #555555;
	border: 1px solid #cccccc;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	font-size: 1.1em;
}

.servicesHeadlineDropdown {
	min-width: 160px;
	max-width: 200px;
	padding-left: 10px !important;
}

.objectHeadlineDropdown {
	min-width: 150px;
	max-width: 200px;
}

.lonlat {
	margin-left: 1%;
}

.recipeHeadlineDropdown {
	min-width: 150px;
	max-width: 300px;
}

.servicesHeadlineDropdownFullWidth {
	min-width: 148px;
	max-width: 200px;
	/*width: 100% !important;*/
	transition: box-shadow ease-in-out 0s;
}

.alertsGraphHeadlineDropdown {
	min-width: 160px;
	max-width: 250px;
}

.recipeDllLabel {
	float: left;
	padding-right: 10px;
	margin-top: 6px;
}

.droneDateTimePicker {
	text-align: center;
	max-width: 160px;
	display: inline-block;
}

.hasDatepicker {
	position: relative !important;
	z-index: 0 !important;
	cursor: pointer;
}

.specificFullWidthImageButton {
	text-align: center;
	display: inline-block;
	min-width: 80px;
	background: #262f41;
	color: white;
	border: 1px solid #262f41;
}

	.specificFullWidthImageButton:hover,
	.specificFullWidthImageButton:focus {
		background: #262f41;
		color: white;
		border: 1px solid #262f41;
		opacity: 0.9;
	}

.specificImageButton {
	text-align: center;
	display: inline-block;
	min-width: 120px;
	width: 10%;
	background: #262f41;
	color: white;
	border: 1px solid #262f41;
}

	.specificImageButton:hover,
	.specificImageButton:focus {
		background: #262f41;
		color: white;
		border: 1px solid #262f41;
		opacity: 0.9;
	}

.specificSmallImageButton {
	text-align: center;
	display: inline-block;
	min-width: 40px;
	background: #262f41;
	color: white;
	border: 1px solid #262f41;
}

	.specificSmallImageButton:hover,
	.specificSmallImageButton:focus {
		background: #262f41;
		color: white;
	}

.alertGraphsButtonsContainer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
}
/*#irigNetHeadline div {
        width:40%;
    }*/
/*#irigNetHeadline #btnSearch {
        width: 30%;
        margin: 0;
    }*/
#irigNetHeadline .timeline {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#irigNetHeadline .windowsInfo {
	display: inline-block;
	padding: 0;
}

#irigNetHeadline .windowInnerContent {
	display: inline-block;
	width: 80%;
}

.irigWindowsHeadline .dropdown {
	float: right;
}

.irigDashboardRowDiv .datatables-footer .col-md-6 {
	width: 100%;
	display: flex;
	justify-content: center;
}

.recipes .table-responsive {
	height: auto;
	max-height: 135px;
	overflow-y: auto;
	margin-bottom: 0 !important;
}

.irrig-header-div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.irigDashboardGridDiv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.checkbox-irrig {
	position: relative;
	top: 45px;
	display: flex;
	align-items: center;
	z-index: 2;
}

.calculator-irig {
	margin: 20px 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	gap: 10px;
	position: relative;
}

@media screen and (min-width: 1600px) {
	.irigDashboardGridDiv {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 1100px) {

	.irrig-header-div {
		grid-template-columns: 1fr;
	}

	.recipes {
		margin-top: -65px;
	}
}

/**************ALL SERVICES HEADLINE STYLE END*****************/
/**************SERVICES CONTAINER PART STYLING*****************/
#contentData {
	display: none;
}

.mainDataContainer {
	width: 95% !important;
	margin: auto;
}

/***Small windows styling***/
.windowsHeadline {
	background: #262f41;
	color: white;
	margin: 0;
	padding: 15px;
	font-size: 18px;
	margin-bottom: 10px;
	border-radius: 5px;
}

.windowsContent {
	background: #dfe5f1;
	color: #262f41;
}

.windowsInfo {
	position: relative;
}

	.windowsInfo img {
		position: absolute;
		top: 39%;
		right: 4%;
	}

	.windowsInfo:after {
		content: '';
		display: block;
		clear: both;
	}

.leftInfo {
	float: left;
}

.rightInfo {
	float: right;
	font-weight: 800;
}

	.rightInfo .fa {
		padding-right: 10px
	}

.windowInnerContent {
	padding: 0 5% 5% 5%;
}

.windowFormElements {
	text-align: center;
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 5px;
	border: 1px solid #cccccc;
	width: 160px;
}

.teCoolingHeadline {
	margin-top: 0% !important;
}

.teCoolingInput {
	width: 100% !important;
}

.teCoolingSaveBtn {
	margin-top: 15px;
}

.teCoolingDeviceCombobox {
	width: 40%
}

.littleWindowButtons {
	width: 30%;
	padding: 7px;
	background: #262f41;
	color: white;
}

	.littleWindowButtons:hover, .littleWindowButtons:focus {
		color: #fff;
	}

	.littleWindowButtons caret {
		border-top: 4px solid #fff;
		margin-left: 2px;
	}

#dropdownMenu1 .caret {
	margin-left: 5px;
	border-top: 4px solid #fff;
}

.windowDropdown {
	display: inline-block;
	width: 150px;
}

#goToActivityBook {
	border: none;
	background: none;
	padding-left: 20px;
}
/***Small windows styling end***/
/**************SERVICES CONTAINER PART STYLING END*****************/
/***home page***/
.selectAllButtonDiv {
	padding-right: 0;
	padding-bottom: 10px;
}

.deselectAllButtonDiv {
	padding-left: 0;
	padding-bottom: 20px;
}

.selectAllButton {
	width: 100%;
}

#deselectAllButton {
	width: 100%;
	display: none;
}

.legendText {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
}

#stationSelectBox_chosen {
	width: 100%;
}

#stationSelectBoxData_chosen {
	width: 100%;
}

.leftMenuButton {
	background-color: #262f41;
	border-color: #262f41;
	padding: 5px;
	width: 150px;
	color: white;
}

	.leftMenuButton:hover,
	.leftMenuButton:active,
	.leftMenuButton:focus {
		background-color: #262f41;
		border-color: #262f41;
		padding: 5px;
		color: #fff;
	}

/***********irrigNet*************************/
#irigNetCollapseBtn,
#currentStateSection {
	margin-top: 15px;
}

#irrigNetPrediction {
	height: 45px;
	background-color: #209dd8;
	border-color: #209dd8;
	width: 140px;
}

.irrigNavigationTabHeader {
	background: #209dd8 !important;
}

#silosPage .silosSearchSection {
	width: 80%;
	margin: 2em auto 1em;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}

	#silosPage .silosSearchSection .form-control {
		margin-right: 15px;
	}

	#silosPage .silosSearchSection #btnSearch {
		margin-right: 15px;
	}

#silosPage #graphSection {
	padding: 1em;
}

#siloNetHeadline {
	margin-top: 0px;
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: space-evenly;
	position: relative;
	align-items: center;
}

/*popup*/
.popup-trigger {
	display: block;
	right: 2rem;
	font-size: 14px;
	text-decoration: none;
	transition: 300ms all;
	cursor: pointer;
}

	.popup-trigger:hover {
		opacity: .8;
	}

.popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 1075;
	width: 100%;
	background-color: rgba(94, 110, 141, 0.9);
	opacity: 0;
	visibility: hidden;
	transition: 500ms all;
}

	.popup.is-visible {
		opacity: 1;
		visibility: visible;
		transition: 1s all;
		width: 100% !important;
	}

.popup-container {
	transform: translate(-50%);
	transition: 500ms all;
	position: relative;
	width: 40%;
	margin: 2em auto;
	top: 15%;
	padding: 5rem;
	background: #FFF;
	border-radius: .25em .25em .4em .4em;
	text-align: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.is-visible .popup-container {
	transform: translate(0);
	transition: 800ms all;
}

.popup-container .popup-close {
	position: absolute;
	top: 8px;
	font-size: 0;
	right: 8px;
	width: 30px;
	height: 30px;
}


	.popup-container .popup-close::before,
	.popup-container .popup-close::after {
		content: '';
		position: absolute;
		top: 12px;
		width: 14px;
		height: 3px;
		background-color: #8f9cb5;
	}

	.popup-container .popup-close::before {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		left: 8px;
	}

	.popup-container .popup-close::after {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
		right: 8px;
	}


	.popup-container .popup-close:hover:before,
	.popup-container .popup-close:hover:after {
		background-color: #35a785;
		transition: 500ms all;
	}

span.field-validation-valid.text-danger {
	width: 40% !important;
	max-width: fit-content !important;
	color: black !important;
}

/***********irrigNet end*************************/
/***********alertNet*************************/
.alertAllServicesHeadline {
	width: 84.5%;
}

.alertContent {
	background: #ecfcdf;
	padding: 2%;
}

.alertContentContainer {
	margin-bottom: 2%;
	background-color: white;
}

.alertPestContainer {
	background-image: url('../dashboardImages/leptir.png');
	background-repeat: no-repeat;
	background-position: 85% bottom;
}

.currentInfoList {
	list-style-type: none;
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	padding-left: 0;
	height: 7vw;
}

.alertList .currentInfoList li {
	background-color: #2cb049;
	margin: 1%;
	color: white;
	padding: 1%;
	width: 17%;
	background-position: bottom right;
	background-repeat: no-repeat;
}

	.alertList .currentInfoList li:first-child {
		background-image: url(../dashboardImages/alert1.png);
	}

	.alertList .currentInfoList li:nth-child(2) {
		background-image: url(../dashboardImages/alert2.png);
	}

	.alertList .currentInfoList li:nth-child(3) {
		background-image: url(../dashboardImages/alert3.png);
	}

	.alertList .currentInfoList li:nth-child(4) {
		background-image: url(../dashboardImages/alert4.png);
	}

.alertDropdownHeadline {
	align-items: center;
	display: flex;
	width: 30%;
	border-right: 1px solid #eee;
}

.alertSecondElementPart {
	width: 55%;
	border-right: 1px solid #eee;
}

.alertThirdElementPart {
	width: 15%;
	text-align: right;
}

#informationPart {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(38, 47, 65, 0.9);
	z-index: 999999;
	display: none;
}

.sitesAlertHeadline {
	padding: 5%;
	color: white;
	width: 80%;
	margin: auto;
	padding-bottom: 4%;
	font-weight: 900;
}

.monitoringIcon {
	padding-right: 15px;
}

.sitesAlertHeadline .fa-times-circle-o {
	float: right;
}

.hideAlerts:hover {
	transform: scale(1.1,1.1);
}

.alertContainer {
	width: 60%;
	margin: auto;
	overflow: auto;
	padding-right: 3%;
}

	.alertContainer h3 {
		color: white;
		font-weight: 400;
	}

.chartButton {
	width: 50%;
	text-align: left;
	padding: 4%;
	cursor: pointer;
	height: 6vw;
	margin: 5%;
	margin-right: 0;
	color: white;
	background-color: #262f41;
	background-image: url('../dashboardImages/chartAlert.png');
	background-repeat: no-repeat;
	background-position: center center;
}

	.chartButton:hover {
		transform: scale(1.1,1.1);
	}

.alertNetCurrentSection {
	width: 85%;
	margin: 0 auto;
}

#currentStateSection,
#alertNetCollapseBtn {
	margin-top: 15px;
}

#alertNetTopSection {
	margin: 20px 0;
}

#alertNetSearchSection {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: end;
	-moz-box-align: end;
	align-items: end;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	gap: 10px;
	flex-wrap: wrap;
}

.deleteSamplingButton {
	cursor: pointer;
}

.geoCledian-table {
	margin-top: 150px;
}

@media only screen and (min-width: 1500px) and (max-width: 1895px) {
	.alertGraphs .col-md-2 {
		width: 25.666667%;
	}
}

@media only screen and (max-width: 1599px) {

	#alertNetSearchSection .select2-container {
		max-width: 210px !important;
		width: 100% !important;
	}
}
/*----------------Media form data container ------------------------*/
@media only screen and (max-width: 1500px) {

	.irig-div {
		padding-right: 0px;
		width: 96%
	}

	.trapHeadline .secondElementPart {
		width: 70%;
	}
}


@media only screen and (max-width: 1366px) and (min-width: 992px) {
	/*        .irigDashboardRowDiv .col-md-6,
        #etoData .col-md-6 {
            width: 100%;
            padding-left: 15%;
            padding-right: 15%;
        }*/

	#tbodyDiv_wrapper > div.row.datatables-header.form-inline > div:nth-child(2) {
		padding-right: 15px;
	}
}

@media only screen and (max-width: 1279px) {
	.henHouseDiv {
		margin-top: 200px;
	}
}

@media only screen and (max-width: 1200px) {
	.mainDataContainer {
		padding-right: 0;
	}

	.greenHouseHeadline {
		flex-wrap: wrap;
	}

	.trapHeadline .secondElementPart {
		width: 100%;
	}
}
/*-------------------------------------------------------------------*/
@media only screen and (max-width: 1102px) {
	.alertGraphsButton {
		float: none !important;
	}
}

@media only screen and (max-width: 1100px) {
	/*        margin-top: 20px;*/
}



.ciricSearchBtn {
	float: none;
}

}

#diseasSelectFilter, #pestSelectFilter {
	margin-bottom: 10px;
	padding: 0;
}

#divDiseasTableBody table,
#divPestTableBody table {
	overflow-x: auto;
}

#tbodyPestNotification_info,
#tbodyDiseasNotification_info {
	margin-left: 10px;
}

#ciricTable {
	width: calc(100vw - 170px);
	margin: 40px 50px;
	display: none;
}

.ciricReportDiv {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 90px;
	padding-left: 70px;
}

.ciricSearchBtn {
	margin-top: 30px;
}

.ciricDatetimepicker {
	margin-top: 30px;
	margin-left: 50px;
}

.ciricPrintButton {
	margin-top: 30px;
	margin-right: 50px;
}

#ciricTable.dataTable thead th {
	padding: 10px 18px;
	border-bottom: 1px solid #b9c3c7;
	border-right: 1px solid #b9c3c7;
}

	#ciricTable.dataTable thead th:first-child {
		max-width: 135px;
	}

#ciricTable.dataTable tbody td {
	border-right: 1px solid #b9c3c7;
}

	#ciricTable.dataTable tbody td.meteoNameTD {
		font-weight: bold;
		max-width: 135px;
	}

	#ciricTable.dataTable tbody td:nth-last-child(1) {
		border-right: 1px solid #f8f8f8;
	}
/***********alertNet end*************************/
/************ovo je za sve netove***************/
.decorationImage {
	position: absolute;
	bottom: 5px;
	left: -10px;
	z-index: -1;
}

@media print {
	.decorationImage.ciricDecorationImage,
	select#ddlLanguage,
	#searchButton.ciricSearchBtn,
	#printTablePageBtn,
	#datetimepickerFrom.ciricDatetimepicker {
		display: none !important;
	}

	table#ciricTable {
		margin: 20px 10px 0 10px !important;
		border: 1px solid #262f41 !important;
	}
}

.ui-state-default .ui-icon {
	background-image: url(../images/arrow-down-black.png) !important;
	background-position: center 4px !important;
	background-size: 15px !important;
	background-repeat: no-repeat !important;
}

.townSelectDiv {
	padding-bottom: 20px;
}

.compareDiv {
	margin-top: 30px;
}

.ekoLogo img {
	float: right;
	width: auto;
	height: 40px;
	position: relative;
	top: -5px;
	left: -23px;
}

.irrigLogo img {
	float: right;
	padding-right: 1%;
	width: auto;
	height: 6%;
	padding-top: 6px;
}

.pestLogo img {
	float: right;
	padding-right: 1%;
	width: auto;
	height: 6%;
	padding-top: 6px;
}

.growLogo img {
	float: right;
	padding-right: 1%;
	width: auto;
	height: 35px;
	padding-top: 6px;
	margin-top: 7px;
}



.trapLogo img {
	float: right;
	padding-right: 1%;
	width: auto;
	height: 6%;
	padding-top: 3px;
}

#townSelect:focus {
	outline: none;
}

.collapseNav {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.navbar-default .navbar-nav > .active > a {
	background-color: transparent !important;
	color: #fff;
	font-weight: 700;
}

.navbar-default .navbar-nav > li > a {
	color: #fff;
}

/** visualisation **/
.reportsDiv .visualisationDropdowns {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	flex-wrap: wrap;
}

	.reportsDiv .visualisationDropdowns .vis-drop-down button[type=button] {
		background: #ffffff;
		border-radius: 4px !important;
		color: #555555;
		border: 1px solid #cccccc;
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	}

		.reportsDiv .visualisationDropdowns .vis-drop-down button[type=button] span.ui-icon {
			position: relative;
		}

#graphPlaceHolder {
	display: none;
}

	#graphPlaceHolder #graphId {
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-left: 22px;
		margin-right: 22px;
	}

		#graphPlaceHolder #graphId .graphReport {
			width: calc(50vw - 45px);
			box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.12);
		}

		#graphPlaceHolder #graphId .TEMP-class {
			order: 1;
		}

		#graphPlaceHolder #graphId .HUM-class {
			order: 2;
		}

		#graphPlaceHolder #graphId .LEAF_WET-class {
			order: 3;
		}

		#graphPlaceHolder #graphId .AMNT_PRECP-class {
			order: 4;
		}

		#graphPlaceHolder #graphId .aditionalParams-0-class {
			order: 5;
		}

		#graphPlaceHolder #graphId .aditionalParams-1-class {
			order: 6;
		}

		#graphPlaceHolder #graphId .WET-DRY-BULB-class {
			order: 100;
		}

.recipeGrid {
	padding: 10px;
}

@media screen and (max-width: 991px) {
	#graphPlaceHolder #graphId {
		flex-direction: column;
	}

	.fieldButton {
		float: unset;
	}

	.frostAlarmDiv {
		padding-left: 30px;
	}

	.fieldCenterDiv {
		text-align: center;
	}

	.fieldDiv {
		flex: 47%;
	}

	.buttonFieldDiv {
		flex: 100%;
		white-space: nowrap;
		margin-bottom: 10px;
	}

	.headerForEditz {
		text-align: center;
	}

	#graphPlaceHolder #graphId .graphReport {
		width: calc(100vw - 45px);
		position: relative;
		right: 10px;
	}

	#graphPlaceHolder #graphId .AMNT_PRECP-class {
		order: 5;
	}

	#graphPlaceHolder #graphId .aditionalParams-0-class {
		order: 4;
	}

	.teCoolingForm {
		text-align: -webkit-center;
	}

	.teCoolingCheckbox {
		margin-left: 0 !important;
		float: none !important;
	}
}

@media screen and (max-width: 670px) {

	.fieldDiv {
		padding: 0;
	}

	#map_canvas {
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media screen and (max-width: 568px) {
	.reportsDiv .visualisationDropdowns {
		display: block;
		margin-left: 0;
	}

		.reportsDiv .visualisationDropdowns .vis-drop-down button[type=button] {
			margin-left: 0;
		}

		.reportsDiv .visualisationDropdowns #datetimepickerFrom {
			margin-left: 0;
		}
}

@media screen and (max-width: 498px) {
	#graphPlaceHolder #graphId .graphReport {
		right: 5px;
	}

	.mainDataContainer {
		padding-right: 0;
	}
}

@media screen and (max-width: 425px) {
	.fieldDiv {
		flex: 100%;
	}

	.buttonFieldDiv {
		white-space: unset;
	}

	#irigNetHeadline .form-group {
		width: 100% !important;
	}
}

@media screen and (max-width: 340px) {
	.reportsDiv .visualisationDropdowns .specificImageButton {
		margin-left: 0;
	}
}

/****DATA PAGE STYLE*****/
#Data table td {
	background: white;
}

#Data .highcharts-background {
	fill: transparent !important;
}

#navigationTab .tab-content {
	height: 95%;
	overflow-x: hidden;
	overflow-y: auto;
}

#navigationTab > li > a {
	background-color: #dddee2;
	color: white !important;
	font-weight: bold;
	width: 100%;
	border-radius: 0 !important;
}

#navigationTab > li.active > a,
#navigationTab > li.active > a:hover,
#navigationTab > li.active > a:focus {
	background-color: #262f41;
}

.tableGraphSwitch {
	display: none;
	float: right;
}

#aboutStation {
	display: none;
	width: 30%;
	float: right;
}

#aboutStation24h {
	display: none;
}

.tabList {
	width: 24.7%;
	text-align: center;
	margin-right: 0.3%;
}

	.tabList:last-child {
		margin-right: 0 !important;
		width: 25%;
	}

.tabDiv {
	background: #f8f8f8;
}

.infoContainer {
	padding: 7px;
}

.timeSwitchDiv {
	margin: 0;
	padding: 1%;
	background: #f1f1f1;
}

.timeDiv {
	color: #262f41;
	font-weight: 600;
}

.checkBoxText {
	margin-top: 6px;
	float: right;
	display: none;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
	color: white !important;
	background-color: #428bca !important;
}

.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
	color: white !important;
}

.tableHeaderBlue {
	text-align: center;
	height: 30px;
	background-color: #262f41;
	color: white;
}

.tableHeader {
	text-align: center;
	height: 30px;
	background-color: #262f41;
	color: white;
}

.tableCell {
	width: 20%;
}

.tableRow {
	height: 30px;
	text-align: center;
}

.firstTableDiv {
	overflow-y: auto;
	padding-left: 0;
	# padding-right:0;
	margin-bottom: 1%;
}

	.firstTableDiv table {
		background: white !important;
	}

.secondTableDiv {
	padding-left: 0;
	padding-right: 0;
}

.secondTableDivUnder {
	padding-left: 0;
	padding-right: 0;
	overflow-y: visible;
	overflow-x: hidden;
}

.firstTableDivUnder {
	padding-left: 0;
	padding-right: 0;
}

.tableHeaderCell {
	text-align: center;
	width: 20%;
}

.tableSecondCell {
	width: 14%;
	text-align: center;
}

.tableFirstCell {
	text-align: center;
}

.tableSecondHeaderCell {
	text-align: center;
}

.tableFirstHeaderCell {
	text-align: center;
}

.firstWidgetDivUnder {
	height: 90%;
	width: 100%;
	text-align: center;
	margin: 0;
}

#graphContainer:not(:empty),
#secondGraphContainer:not(:empty),
#graphContainer1h:not(:empty),
#graphContainer24h:not(:empty),
#secondGraphContainer24h:not(:empty),
#secondGraphContainer1h:not(:empty) {
	min-height: 300px;
}

.underMapDiv {
	margin: 0 !important;
}

	.underMapDiv > div {
		padding: 0 !important;
	}

.legendDiv {
	background: #eeeeea;
	margin: 0;
}

.scaleParam {
	padding: 0;
}

.legendCell {
	text-align: center;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
}

.adjustPosition {
	margin-left: 3% !important;
}
/****END DATA PAGE STYLE*****/
/*****ALERT GRAPHS STYLE ACORDION*****/
#accordion.ui-accordion .ui-accordion-header {
	border-radius: 0;
	padding-left: 2.2em;
	border: 1px solid #262f41;
	color: #262f41;
	font-weight: 500;
	background: none;
	border-radius: 4px;
}

	#accordion.ui-accordion .ui-accordion-header:hover {
		color: #fff !important;
		background: #262f41;
		background-image: none;
	}

#accordion.ui-accordion .ui-accordion-header-active {
	background: #262f41;
	color: #fff !important;
}

#accordion.ui-accordion .highcharts-background {
	fill: white;
}

#accordion.ui-accordion .ui-accordion-content {
	position: relative;
}

#accordion .loaderBalls {
	position: absolute;
	z-index: 99999;
	top: 50%;
	left: 43%;
	text-align: center;
	display: inline-block;
	width: 19%;
	height: 45px;
}

#accordion .ballsWaveG {
	width: 20px;
	height: 20px;
}

.ui-datepicker.ui-widget {
	z-index: 10000 !important;
}
/*****ALERT GRAPHS STYLE ACORDION END*****/
/****PREDICTION CALCULATORS****/
.calculateDiv {
	margin-bottom: 10px;
	/*display: flex;*/
	align-items: center;
}

.dateBoxCalc {
	font-size: 14px;
	font-weight: 600;
	padding-right: 20px;
	color: #262f41;
	padding-left: 20px;
}

.calculatorInputField {
	text-align: center;
	padding: 10px;
	background: #f8f8f8;
}

input:focus::placeholder {
	color: transparent;
}

.calculatorButtonOS,
.calculatorButtonUS,
.calculatorButtonPO,
.calculatorButtonVET,
.calculatorButtonEN,
.calculatorButton {
	border-radius: 0;
	font-size: 20px;
	cursor: pointer;
}

	.calculatorButton:hover {
		transform: scale(1.1,1.1);
	}

.clearCalculate {
	margin-left: 15px;
}

.mesageContainer {
	margin: 55px 0 15px 0;
}

	.mesageContainer .loaderBalls {
		display: none;
	}

.infoCalculators {
	cursor: pointer;
	font-size: 1.5em;
	padding: 15px 15px 0 15px;
	color: #17683a;
}

.accordionInfo {
	/*display: none;*/
    padding: 15px 15px 0 15px;
    text-align: justify;
	width: 100% !important;
}

.calcNumContainer {
	padding: 10px;
	margin-left: 10px;
	text-align: center;
}

.calcNumber {
	margin: 0 5px;
	font-weight: 700;
}

@media screen and (min-width:1250px) {
	.calculators-grid-main-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.calculators-grid-container:last-child {
		margin-top: 30px;
	}
}
/****PREDICTION CALCULATORS END****/
/****WIDGETS SETTINGS****/
#ddlServices {
	padding: 8.1%;
	width: 100%;
	border: 1px solid #262f41;
	background: #262f41;
	color: white;
	-webkit-appearance: button;
	-webkit-padding-start: 24%;
	-webkit-user-select: none;
	background-image: url('../images/arrow-down.png');
	background-size: 15px;
	background-position: 85% center;
	background-repeat: no-repeat;
	font-size: 1.3em;
	cursor: pointer;
	min-width: 130px;
}

.inputClass select {
	width: 100% !important;
	border: 1px solid #262f41 !important;
	color: #262f41 !important;
	-webkit-border-radius: 0 !important;
	-webkit-appearance: button !important;
	-webkit-user-select: none !important;
	background-image: url('../images/arrow-down-black.png') !important;
	background-size: 15px !important;
	background-position: 95% center !important;
	background-repeat: no-repeat !important;
	cursor: pointer !important;
	padding: 5px !important;
	margin-left: 5px;
}

#ddlServices:hover,
#ddlServices:active {
	outline: none;
}

.ui-widget-header {
	width: 100% !important;
	background: #e6e6e6 !important;
	border-color: #e6e6e6 !important;
	color: #455c77 !important;
}

.ui-widget-content {
	background: white !important;
}

.ui-widget-header a {
	color: #455c77 !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #777777 !important;
	color: #777777 !important;
}

.firstTableDivUnder1h {
	overflow: auto;
	padding-left: 0;
	padding-right: 0;
	overflow-x: hidden;
	overflow-y: hidden;
}

.secondTableDivUnder1h {
	padding-left: 0;
	padding-right: 0
}

#selectAllButton {
	display: none;
}

hr {
	border: none;
	height: 1px;
	/* Set the hr color */
	color: #333; /* old IE */
	background-color: #333; /* Modern Browsers */
}

.firstTableDivUnder24h {
	padding-left: 0;
	padding-right: 0;
	overflow-x: hidden;
	overflow-y: hidden;
}

.secondTableDivUnder24h {
	padding-left: 0;
	padding-right: 0;
}

.firstTableDiv1h {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.secondTableDiv1h {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.firstTableDiv24h {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.secondTableDiv24h {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#graphContainer1h .highcharts-container {
	border: 1px solid black;
}

#graphContainer .highcharts-container {
	border: 1px solid black;
}

#secondGraphContainer1h .highcharts-container {
	border: 1px solid black;
}

#secondGraphContainer1h {
	overflow-y: auto;
	padding: 3px;
}

.Soil_acidity1h {
	margin-bottom: 10px;
}

#secondGraphContainer .highcharts-container {
	border: 1px solid black;
}

#graphContainer1h {
	padding: 3px;
	overflow-y: auto;
}

.tableSecondHeaderCell1h {
	text-align: center;
}

.tableSecondCell1h {
	text-align: center;
}

#secondGraphContainer {
	overflow: scroll;
	overflow-x: hidden;
}

.noData15Min {
	margin-top: 0 !important;
	font-size: 14px;
}

.tableFirstHeaderCell1h {
	text-align: center;
}

.tableFirstCell1h {
	text-align: center;
}

.tableFirstHeaderCell24h {
	text-align: center;
}

.tableFirstCell24h {
	text-align: center;
}

.tableSecondCell24h {
	text-align: center;
}

.tableSecondHeaderCell24h {
	text-align: center;
}

input[type=checkbox] {
	background: url(../img/icons.png) no-repeat;
}

.bootstrap-checkbox button.btn > span.cb-icon-check,
.bootstrap-checkbox.disabled button.btn:hover > span.cb-icon-check,
.bootstrap-checkbox.disabled button.btn:active > span.cb-icon-check {
	background-position: 0 -25px !important;
}

#graphContainer24h .highcharts-container {
	border: 1px solid black;
}

#secondGraphContainer24h .highcharts-container {
	border: 1px solid black;
}

#graphContainer24h {
	overflow: auto;
	padding: 3px;
}

#secondGraphContainer24h {
	overflow-y: auto;
	padding: 3px;
}

#aboutStation:disabled {
	background-color: #2F8300 !important;
	border-color: #2F8300 !important;
}

#aboutStation1h:disabled {
	background-color: #2F8300 !important;
	border-color: #2F8300 !important;
}

#aboutStation24h:disabled {
	background-color: #2F8300 !important;
	border-color: #2F8300 !important;
}

.btn-primary:disabled {
	background-color: #2F8300 !important;
	border-color: #2F8300 !important;
}

.blueBridRow {
	background-color: #E1F4FA !important;
}

.whiteGridRow {
	background-color: white;
}

.thinBorderGrid {
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

.borderTableStyle {
	margin-left: 200px;
	margin-right: 400px;
}

.cellTableStyle {
	width: 272px;
	border-bottom-color: #B9C3C7 !important;
}

.cellTableSowStyle {
	width: 180px;
	border-bottom-color: #B9C3C7 !important;
}

.recipeGrid #tbodyNotification_filter input {
	border: 1px solid #262f41;
}

.recipeGrid #tbodyNotification tbody tr {
	background: transparent;
	transition: all ease-in-out .3s;
}

	.recipeGrid #tbodyNotification tbody tr:hover {
		background: #fff;
		box-shadow: 3px 4px 8px 0px rgba(0,0,0,0.2);
		cursor: pointer;
	}

.recipeGrid #btnMarkAllAsRead {
	cursor: pointer;
	color: #fff;
	background: #262f41;
	border-radius: 4px;
	padding: 6px 12px;
	cursor: pointer;
}

	.recipeGrid #btnMarkAllAsRead:hover,
	.recipeGrid #btnMarkAllAsRead:focus {
		text-decoration: none;
		opacity: 0.9;
	}

.boldDate {
	font-weight: bold;
}

#notificationModal .modal-header,
#notificationModal .modal-footer {
	border: 0;
}

	#notificationModal .modal-header .modal-title {
		text-align: center;
	}

.detailsRecepiCloseBtn {
	background-color: #fff;
	border-color: #262f41;
	color: #262f41;
	transition: all ease-in-out .3s;
}

	.detailsRecepiCloseBtn:hover,
	.detailsRecepiCloseBtn:focus {
		background-color: #262f41;
		border-color: #262f41;
		color: #fff;
	}

.detailsRecepiBtn {
	background: url('../img/detalji.png');
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

	.detailsRecepiBtn:hover {
		background: url('../img/detalji_hover.png');
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}

.detailsNotificationBtn {
	background: url('../img/detalji.png');
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
}

	.detailsNotificationBtn:hover {
		background: url('../img/detalji_hover.png');
		background-repeat: no-repeat;
		width: 25px;
		height: 25px;
	}

.btn:focus,
.btn:active,
.btn:visited {
	color: #fff;
	text-decoration: none;
}

.mainRecipeDivClassHide {
	visibility: hidden;
}

.highlight,
.highlight_stay {
	color: #2F8300;
}

.backButton {
	text-align: center;
	margin-left: 6%;
	display: inline-block;
	width: 25%;
	background: #262f41;
	color: white !important;
}

	.backButton:hover,
	.backButton:focus {
		background: #262f41;
		color: white !important;
	}

.newStickyPlateButton {
	text-align: center;
	display: inline-block;
	width: 45%;
	color: #fff !important;
	background: #262f41;
}

	.newStickyPlateButton:hover {
		color: #fff !important;
		background: #262f41;
	}

.refillButton {
	text-align: center;
	display: inline-block;
	width: 100%;
	color: #fff !important;
	background: #262f41;
}

	.refillButton:hover {
		color: #fff !important;
		background: #262f41;
	}

	.refillButton[disabled],
	.newStickyPlateButton[disabled],
	.refillButton[disabled]:hover,
	.newStickyPlateButton[disabled]:hover {
		color: #fff !important;
		background: #262f41;
	}

.settingsButton {
	text-align: center;
	margin-left: 20px;
	display: inline-block;
	width: 50px;
	color: black !important;
}

.reportButton {
	text-align: center;
	display: inline-block;
	width: 45%;
	color: #fff !important;
	background: rgb(64, 78, 107);
}

	.reportButton:hover {
		color: #fff !important;
		background: rgb(64, 78, 107);
	}

.settingsDiv {
	margin-top: 10px;
	margin-left: 80px;
}

.reportsDiv {
	margin: 20px 0;
}

.imageMain {
	height: 85%;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.cbImg {
	float: left;
	cursor: pointer;
}

.imageMainTrap {
	max-height: 80vh;
	max-width: 100%;
}

.imageMainPoultry {
	max-height: 80vh;
	max-width: 100%;
}

.imageList {
	display: flex;
	gap: 10px;
	padding: 10px;
	background: #fff;
	border-radius: 10px;
	-moz-box-shadow: 0 0 15px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 15px 0px rgb(0 0 0 / 10%);
	box-shadow: 0 0 10px 0px rgb(0 0 0 / 10%);
	overflow-x: auto;
	height: 275px;
}

	.imageList > div {
		position: relative;
	}

#poultryImageSpecList {
	height: calc(80vh - 7vw);
}

.infoTrap {
	font-size: 25px;
	position: absolute;
	top: 3%;
	left: 14%;
	color: white;
}

	.infoTrap:hover {
		color: white;
		transform: scale(1.1,1.1);
		text-decoration: none;
	}

.historyDate {
	padding-left: 10px;
	background: #17683a;
	padding-right: 10px;
	position: absolute;
	bottom: 0 !important;
	left: 10px !important;
	color: white;
	font-weight: 700;
}

#imageMainTraphistoryDate.historyDate {
	direction: none;
	left: 25px;
	bottom: 70px;
}

.insectTrap #imageMainTraphistoryDate.historyDate {
	left: 5px;
	bottom: 125px;
}

.compareElements {
	width: 150px;
	color: black !important;
}

.imageListCB {
	max-height: 80vh;
}

.dataHeadlineContainer {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1%;
	margin-top: 2%
}

.dataContentContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

	.dataContentContainer > div {
		width: 100%;
	}

.numberOfInsectInfo {
	position: absolute;
	bottom: 0;
	left: 6%;
	color: white;
	font-size: 1.1em;
}


#aletCurrentMeasurings > div {
	margin-bottom: 10px;
}

.ui-multiselect.ui-widget {
	border-radius: 5px !important;
	background: white;
	color: black;
	font-weight: 200;
	padding: 5px 12px;
	max-width: 225px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: "Segoe UI","Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ui-multiselect-filter input {
	width: 75% !important;
}


#graphId .graphReport .highcharts-container {
	width: 100% !important;
}

.trapUpdateDiv {
	margin-top: 30px;
	text-align: center;
}

.trapUpdateInput {
	width: 50px;
	margin-left: 10px;
	border-radius: 4px;
}

.trapMainImage {
	margin-left: 20px;
}

.reportsChart {
	width: 100%;
	height: 200px;
}

.linkMenuIcons {
	vertical-align: middle;
	height: 30px;
	width: 30px;
	margin-top: 10px
}

.linkMenuIcons {
	/* height: 30px;
    width: 30px;*/
	margin-bottom: 5px;
	/*    margin-top: 5px;*/
}

.historyLabels {
	text-align: right;
	font-size: 16px;
}

.visualisationLink {
	margin-top: 10px;
	margin-left: 10px;
}

.reportDDL {
	float: left;
	max-width: 200px;
}

.visualisationButton {
	padding: 12px;
	margin-left: 10px;
}

.visualisationDiv {
	overflow-y: auto;
}

span.text-content {
	opacity: 0;
}

a:hover, a:hover span.text-content {
	opacity: 1;
}

.refillDate {
	margin-left: 20px;
}

.predictionFields {
	margin-top: 10px;
}

.predictionFieldsHeader {
	margin-top: 40px;
}

.btnSearch {
	text-align: center;
	display: inline-block;
}

	.btnSearch:hover, .btnSearch:focus {
		color: #fff;
	}

.ui-dialog.ui-widget.ui-widget-content {
	z-index: 99999;
}

.etoMessage {
	font-size: 14px;
	font-weight: bold;
}

.alertGraphCheckbox {
	width: 78%;
	margin: auto;
	margin-top: 3%;
	//display: flex;
	justify-content: space-between;
}
/****END WIDGETS SETTINGS - jos srediti****/

.trapDemoDate {
	background-color: #17683a;
	position: absolute;
	top: 10px !important;
	left: 10px !important;
}

.weightTestLink {
	background-color: #17683a;
	position: absolute;
	top: 10px !important;
	right: 10px !important;
}

#imageMainTraphistoryDate.historyDate {
	left: 20px !important;
	bottom: 20px !important;
}

.trapBadges {
	float: right;
}

.compareDiv .trapCompare {
	width: 100%;
}

/*map info container*/

.mapInfoContainer {
	position: relative;
}

#infoWindowDiv {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: #262f41;
	z-index: 9;
	width: 40%;
	color: white;
	display: none;
	overflow: auto;
}

.servicesInfoWindows {
	display: none;
}

#closeInfoWindow {
	font-size: 25px;
	font-weight: normal;
	cursor: pointer;
	position: absolute;
	top: 15px;
	left: 15px;
}

#infoWindowDiv h2 {
	text-align: center;
	margin-top: 0;
	font-weight: 800;
	background: #52647f;
	padding: 10px;
}

.firstInfo {
	text-align: center;
	margin: 5%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.57);
	padding-bottom: 3rem;
}

.infoHeadline {
	display: block;
	font-size: 1.5vw;
}

.infoData {
	display: block;
	font-size: 2vw;
	font-weight: bold;
}

.secondInfo {
	margin: 5%;
	text-align: center;
}

	.secondInfo .col-md-6:first-child,
	.firstInfo .col-md-6:nth-child(2) {
		border-right: 1px solid rgba(255, 255, 255, 0.57);
	}

.thirdInfo {
	text-align: center;
	margin: 5%;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.57);
}

.infoRecipe {
	text-align: justify;
	padding-top: 1rem;
	display: block;
}

.reInitMap {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

/*map info container end*/

/* global button styles */
.full-button {
	min-width: 150px;
	padding: 3px 6px;
	color: #fff;
	background: #262f41;
	border: 1px solid #262f41;
	border-radius: 4px;
	text-align: center;
	box-shadow: none;
}

	.full-button:hover {
		color: #fff;
	}

.outline-button {
	min-width: 150px;
	padding: 3px 6px;
	color: #262f41 !important;
	background: transparent;
	border: 1px solid #262f41;
	border-radius: 4px;
	text-align: center;
	box-shadow: none;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
	/*.dropdown-menu {
            left: 68% !important;
        }*/

	.ciricDatetimepicker {
		margin-top: 30px;
	}

	.mainDataContainer {
		padding-left: 80px;
		padding-right: 0;
	}
}

@media screen and (max-height: 600px) {
	/*.bodyContainer {
        height:115vh !important;
    }*/

	/*map info container*/
	#infoWindowDiv h2 {
		font-size: 25px;
	}

	.firstInfo,
	.thirdInfo {
		padding-bottom: 1rem;
	}
	/*map info container end*/
}

@media screen and (max-width: 600px) {
	.dropdown-menu {
		/*left: 62% !important;*/
		border: none !important;
		box-shadow: none !important;
	}
}

@media screen and (max-width: 480px) {
	/*NAV BARS AND MENUS*/
	.sameNavbar {
		display: none;
	}

	.dashLanguage {
		left: 0 !important;
	}
	/*NAV BARS AND MENUS END*/

	.windowFormElements {
		margin-left: 0;
	}

	.littleWindowButtons {
		margin-bottom: 5px;
	}

	.ciricSearchBtn,
	.ciricPrintButton {
		margin-top: 30px;
	}

	.specificFullWidthImageButton {
		margin-left: 2%;
		margin-top: 10px;
	}

	#btnNewSeasonStart, #btnPheromoneRefill, #newBoardButton {
		font-size: 12px;
		background-color: none;
	}
}

@media screen and (max-width: 400px) {
	#btnNewSeasonStart, #btnPheromoneRefill, #newBoardButton {
		font-size: 12px;
		background-color: none;
	}

	.dropdown-menu {
		/* left: 30% !important;*/
	}
}

@media screen and (max-width: 1021px) {
	#mainMenu {
		display: none;
	}

	.mobileMenuButton {
		display: inline-block;
	}
}

@media screen and (max-width: 961px) {
	/*NAV BARS AND MENUS*/



	.col-md-5.chartTrap {
		width: 100%;
		margin: auto;
		padding-left: 0px !important
	}

	.col-md-3.insectTrap {
		width: 100%;
		margin: auto;
		margin-top: 5%;
		padding-left: 0px !important
	}

	.col-md-4.imagesRowWindow {
		width: 100%;
		margin: auto;
		margin-top: 5%;
		padding-left: 0px !important
	}

	/*#irigNetHeadline {
            width: 100%;
            margin: 1%;
            display: inline-block;
            text-align: center;
        }*/

	#siloNetHeadline {
		width: 100%;
		margin: 1%;
		display: inline-block;
		text-align: center;
		margin-bottom: 2%;
	}

		#siloNetHeadline .dropdownHeadlinePart {
			width: 100%;
			margin-bottom: 15px;
		}

	#irigNetHeadline .dropdownHeadlinePart {
		width: 100%;
		margin-bottom: 15px;
	}


	#logoutForm {
		float: right;
	}

		#logoutForm .navbar-nav {
			margin: 0px;
			display: inline-flex;
			align-items: center;
			justify-content: center;
		}

	.dashLanguage {
		left: 155px;
		top: 0px;
	}

	.sameNavbar {
		margin-top: 10px;
		margin-left: 1em;
	}

	.headerNavbar {
		width: 17.1%;
	}



	.mobileMenuButton {
		display: inline-block;
		/*   margin-left: 15px;*/
	}

	#ddlServices {
		padding: 14.1%;
	}

	.trapHeadline .secondElementPart {
		width: 100% !important;
	}

	.col-md-4 .chartTrapwidth {
		width: 75%;
		margin: auto;
	}
	/*NAV BARS AND MENUS END*/
	/*ALL SERVICES HEADLINE*/
	.allServicesHeadline {
		/*         width: 100%;*/
		display: inline-block;
		margin-bottom: 0;
	}

	.dropdownHeadlinePart,
	.mapTrap .secondElementPart {
		width: 100%;
	}

	.thirdElementPart {
		margin-top: 2%;
	}

	.inlineLabel {
		display: block;
	}
	/*ALL SERVICES HEADLINE END*/
	/*MAP INFO CONTAINER*/
	#infoWindowDiv {
		width: 100%;
	}

	.infoData {
		display: block;
		font-size: 2em;
	}

	#infoWindowDiv h2 {
		font-size: 25px;
	}

	.firstInfo,
	.thirdInfo {
		padding-bottom: 1rem;
	}
	/*MAP INFO CONTAINER END*/
	.windowFormElements {
		margin-left: 0;
	}

	.dataContentContainer {
		display: block;
		text-align: center;
	}

	.leftMenuButton {
		margin-top: 10px;
		display: block;
		margin-left: 39%;
	}

	.recipeDllLabel {
		float: none;
	}

	.dataTables_wrapper .dataTables_filter {
		text-align: left;
	}



	.servicesHeadlineDropdown {
		width: 35% !important;
		max-width: 200px;
	}

	.dropdown-menu {
		padding: 0px !important;
		box-shadow: none !important;
		border: none !important;
		background-color: none !important
	}

	#btnNewSeasonStart, #btnPheromoneRefill, #newBoardButton {
		font-size: 13px;
	}
}

@media screen and (min-width: 962px) and (max-width: 992px) {

	.col-md-4.chartTrap {
		margin: auto;
		width: 75%;
	}

	.col-md-4.insectTrap {
		margin: auto;
		width: 75%;
		margin-top: 5%;
	}

	.col-md-2.imagesRowWindow {
		margin: auto;
		width: 75%;
		margin-top: 5%;
	}

	.servicesHeadlineDropdown {
		min-width: 150px !important;
	}
}

@media screen and (max-width: 963px) {
	.alertGraphs {
		padding-left: 0px;
	}
}

@media screen and (max-width: 960px) {
	.insectTrap #imageMainTraphistoryDate.historyDate {
		bottom: 85px;
	}
}

@media screen and (min-width: 960px) and (max-width: 1279px) {

	.dropdown-menu {
		/*   left: 87% !important;*/
		margin-right: auto;
		border: none !important;
		box-shadow: none !important;
		padding: 0px !important;
	}

	.refillButton {
		width: 96%;
	}

	#btnNewSeasonStart, #btnPheromoneRefill, #newBoardButton {
		font-size: 13px;
	}

	#viewPlaceHolder .chartTrap {
		float: inherit;
	}

	.smallResolutionFix-100 {
		width: 100%;
		margin: 0;
		margin-top: 5%;
	}

	.sameNavbar {
		width: 15%;
		padding-top: 1.4%;
		padding-bottom: 1.1%;
	}

	.dashLanguage {
		left: 15%;
	}

	.headerNavbar {
		width: 15%;
	}

	/* #mainMenu {
            width: 65%;
        }*/

	#ddlServices {
		padding: 10.9%;
	}

	.leftMenuButton {
		width: 115px;
	}

	.inputClass .col-md-1 {
		width: 0%;
	}

	.inputClass .col-md-4 {
		width: 100%;
		margin-bottom: 3%;
		text-align: left;
		margin-left: 2%;
	}

	.inputClass .recipeGrid.col-md-5 {
		width: 80%;
	}

	.inputClass .col-md-5 {
		width: 100%;
		text-align: left;
		margin-left: 2%;
	}

	.inputClass .col-md-2 {
		width: 93%;
		text-align: right !important;
		position: absolute;
	}

	#viewPlaceHolder .col-md-2:empty {
		width: 0%;
	}

	.imagesRowWindow.col-md-7 {
		width: 67%;
	}

	.imagesRowWindow.col-md-2 {
		width: 26%;
	}

	.trapContainer, .dataHeadlineContainer {
		width: 100%;
	}

		.trapContainer select {
			max-width: 150px;
		}

		.trapContainer .col-md-6:first-child {
			width: 34%;
		}

		.trapContainer .col-md-6:last-child {
			width: 66%;
		}

	.inputClass {
		margin-top: 22px;
	}

	.infoTrap {
		left: 26%;
	}

	.historyDate {
		left: 23%;
	}

	.mainDataContainer {
		width: 96%;
		/*    margin: auto;*/
	}


	.visualisationDropdowns {
		width: 100%;
	}


	/*map info container*/
	#infoWindowDiv h2 {
		font-size: 25px;
	}

	.firstInfo,
	.thirdInfo {
		padding-bottom: 1rem;
	}
	/*map info container end*/
}

@media screen and (min-width: 768px) and (max-width: 961px) {

	#reportButton {
		width: 12% !important;
	}

	/*        .dropdown-menu {
            left: 74% !important;
        }*/

	#btnNewSeasonStart, #btnPheromoneRefill, #newBoardButton {
		font-size: 13px;
	}

	.dropdown-menu {
		padding: 0px !important;
		box-shadow: none !important;
		border: none !important;
	}

	.row-graph1 {
	}
}


@media screen and (min-width: 1280px) and (max-width: 1365px) {
	.mainDataContainer {
		/*        width: 95%;*/
	}

	.dropdown-menu {
		left: 88% !important;
	}

	.teCoolingDateDiv .hasDatepicker {
		width: 20%
	}

	.sameNavbar {
		padding-top: 1.3%;
		padding-bottom: 0.7%;
	}

	#ddlServices {
		padding: 11.8%;
	}

	.inputClass input,
	.inputClass select,
	.inputClass textarea {
		max-width: 150px;
	}

	.inputClass .col-md-1 {
		width: 0%;
	}

	.inputClass .col-md-4 {
		width: 35%;
	}

	.inputClass .col-md-5 {
		width: 52%;
	}

	.inputClass .col-md-2 {
		width: 18%;
	}

	.imagesRowWindow.col-md-2 {
		width: 19%;
	}

	.trapContainer,
	.dataHeadlineContainer {
		width: 100%;
	}

		.trapContainer .dropdownTrap {
			width: 40%;
		}

		.trapContainer .timePeriodTrap {
			width: 60%;
		}


	.mapTrap select {
		max-width: 170px;
	}

	.mapTrap {
		width: 96%;
	}

		.mapTrap .col-md-5 {
			width: 34%;
		}

		.mapTrap .col-md-4 {
			width: 29%;
		}

	.mainDataContainer {
		/*           width: 96%;*/
		/*            margin: auto;*/
	}

	/***map info container****/
	#infoWindowDiv h2 {
		font-size: 25px;
	}

	.firstInfo,
	.thirdInfo {
		padding-bottom: 1rem;
	}
	/***map info container end***/

	.dropdown-menu {
		padding: 0px !important;
		box-shadow: none !important;
		border: none !important;
	}
}

@media screen and (min-width: 1366px) and (max-width: 1439px) {
	.sameNavbar {
		padding-top: 1.3%;
		padding-bottom: 0.6%;
	}

	#ddlServices {
		padding: 11.5%;
	}

	.inputClass input,
	.inputClass select,
	.inputClass textarea {
		max-width: 190px;
	}

	.inputClass .col-md-1 {
		width: 0%;
	}

	.inputClass .col-md-4 {
		width: 30%;
	}

	.inputClass .col-md-5 {
		width: 50%;
	}

	.inputClass .col-md-2 {
		width: 15%;
	}

	.imagesRowWindow.col-md-2 {
		width: 20%;
	}

	.trapContainer,
	.dataHeadlineContainer {
		width: 100%;
	}

	.inputClass {
		margin-top: 33px;
	}

	.backButton {
		width: 17%;
	}

	.mapTrap select {
		max-width: 170px;
	}

	.mapTrap {
		width: 96%;
	}

		.mapTrap .col-md-5 {
			width: 34%;
		}

	.mainDataContainer {
		/*            width: 96%;*/
		/*       margin: auto;*/
		/*            padding-top: 50px;*/
	}

	/***map info container***/
	#infoWindowDiv h2 {
		font-size: 18px;
	}

	#closeInfoWindow {
		font-size: 18px;
	}

	.reInitMap {
		width: 14px;
	}

	.infoHeadline {
		font-size: 16px;
	}

	.firstInfo,
	.thirdInfo {
		padding: 5px;
		margin: 0;
	}

	.infoData {
		font-size: 22px;
	}

	.infoRecipe {
		font-size: 12px;
	}
	/***map info container end***/

	.dropdown-menu {
		padding: 0px !important;
		box-shadow: none !important;
		border: none !important;
	}
}

@media screen and (min-width: 1440px) and (max-width: 1599px) {
	.sameNavbar {
		padding-top: 1.1%;
		padding-bottom: 0.7%;
	}

	#ddlServices {
		padding: 10.6%;
	}

	.windowFormElements {
		max-width: 160px;
	}
}

.inputClass .col-md-1 {
	width: 0%;
}

.inputClass .col-md-5 {
	width: 47%;
}

.imagesRowWindow.col-md-2 {
	width: 20%;
}

.trapContainer,
.dataHeadlineContainer {
	width: 100%;
}

.backButton {
	width: 100px;
}

.mapTrap select {
	max-width: 170px;
}

.mapTrap {
	width: 96%;
}

	.mapTrap .col-md-5 {
		width: 34%;
	}

#infoWindowDiv h2 {
	font-size: 24px;
}

.firstInfo {
	margin: 1%;
}

.infoData {
	font-size: 1.5vw;
}

.dropdown-menu {
	padding: 0px !important;
	box-shadow: none !important;
	border: none !important;
}

}

@media screen and (min-width: 1600px) and (max-width: 1680px) {

	.backButton {
		width: 100px;
	}

	.mapTrap select {
		max-width: 170px;
	}

	.mapTrap {
		width: 96%;
	}

		.mapTrap .col-md-5 {
			width: 34%;
		}

	.homeTrap .dropdownTrap {
		width: 40%;
	}

	.homeTrap .timePeriodTrap {
		width: 55%;
	}

	#ddlServices {
		padding: 9.5%;
	}

	.dashLanguage {
		top: -4px;
	}

	.dataHeadlineContainer {
		width: 99%;
	}

	.firstInfo {
		margin: 0%;
		padding-bottom: 2rem;
	}

	.infoData {
		font-size: 21px;
	}

	.infoHeadline {
		font-size: 16px;
	}

	.dropdown-menu {
		padding: 0px !important;
		box-shadow: none !important;
		border: none !important;
	}
}

/***************LOAD CONTAINER LEGEND DATA INDEX************/
#ballsWaveG {
	position: relative;
	width: 170px;
	height: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.ballsWaveG {
	position: absolute;
	top: 10px;
	background-color: rgb(38,47,65);
	width: 15px;
	height: 15px;
	animation-name: ballsWaveG;
	-o-animation-name: ballsWaveG;
	-ms-animation-name: ballsWaveG;
	-webkit-animation-name: ballsWaveG;
	-moz-animation-name: ballsWaveG;
	animation-duration: 2.47s;
	-o-animation-duration: 2.47s;
	-ms-animation-duration: 2.47s;
	-webkit-animation-duration: 2.47s;
	-moz-animation-duration: 2.47s;
	animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-direction: normal;
	-o-animation-direction: normal;
	-ms-animation-direction: normal;
	-webkit-animation-direction: normal;
	-moz-animation-direction: normal;
	border-radius: 11px;
	-o-border-radius: 11px;
	-ms-border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
}

#ballsWaveG_1 {
	left: 0;
	animation-delay: 0.99s;
	-o-animation-delay: 0.99s;
	-ms-animation-delay: 0.99s;
	-webkit-animation-delay: 0.99s;
	-moz-animation-delay: 0.99s;
}

#ballsWaveG_2 {
	left: 22px;
	animation-delay: 1.24s;
	-o-animation-delay: 1.24s;
	-ms-animation-delay: 1.24s;
	-webkit-animation-delay: 1.24s;
	-moz-animation-delay: 1.24s;
}

#ballsWaveG_3 {
	left: 44px;
	animation-delay: 1.48s;
	-o-animation-delay: 1.48s;
	-ms-animation-delay: 1.48s;
	-webkit-animation-delay: 1.48s;
	-moz-animation-delay: 1.48s;
}

#ballsWaveG_4 {
	left: 66px;
	animation-delay: 1.73s;
	-o-animation-delay: 1.73s;
	-ms-animation-delay: 1.73s;
	-webkit-animation-delay: 1.73s;
	-moz-animation-delay: 1.73s;
}

#ballsWaveG_5 {
	left: 88px;
	animation-delay: 1.98s;
	-o-animation-delay: 1.98s;
	-ms-animation-delay: 1.98s;
	-webkit-animation-delay: 1.98s;
	-moz-animation-delay: 1.98s;
}

#ballsWaveG_6 {
	left: 110px;
	animation-delay: 2.22s;
	-o-animation-delay: 2.22s;
	-ms-animation-delay: 2.22s;
	-webkit-animation-delay: 2.22s;
	-moz-animation-delay: 2.22s;
}

#ballsWaveG_7 {
	left: 132px;
	animation-delay: 2.47s;
	-o-animation-delay: 2.47s;
	-ms-animation-delay: 2.47s;
	-webkit-animation-delay: 2.47s;
	-moz-animation-delay: 2.47s;
}

#ballsWaveG_8 {
	left: 154px;
	animation-delay: 2.72s;
	-o-animation-delay: 2.72s;
	-ms-animation-delay: 2.72s;
	-webkit-animation-delay: 2.72s;
	-moz-animation-delay: 2.72s;
}


#graphCheckboxes {
	text-align: left;
	margin-top: 15px;
	margin-left: 10%;
	margin-right: 10%;
}


@keyframes ballsWaveG {
	0% {
		background-color: rgb(38,47,65);
	}

	100% {
		background-color: rgb(255,255,255);
	}
}

@-o-keyframes ballsWaveG {
	0% {
		background-color: rgb(38,47,65);
	}

	100% {
		background-color: rgb(255,255,255);
	}
}

@-ms-keyframes ballsWaveG {
	0% {
		background-color: rgb(38,47,65);
	}

	100% {
		background-color: rgb(255,255,255);
	}
}

@-webkit-keyframes ballsWaveG {
	0% {
		background-color: rgb(38,47,65);
	}

	100% {
		background-color: rgb(255,255,255);
	}
}

@-moz-keyframes ballsWaveG {
	0% {
		background-color: rgb(38,47,65);
	}

	100% {
		background-color: rgb(255,255,255);
	}
}
/***********END LOAD CONTAINER LEGEND DATA INDEX***********/
/****  TeCooling Index page  ***/
.teCoolingboxShadow {
	background-color: #dddee2;
}

.teCoolingIndexGraphId {
	height: 600px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px;
	overflow-y: auto;
	background-color: rgba(38, 47, 65, 0.1);
	scrollbar-width: initial;
	scrollbar-color: rgba(162, 175, 195, 0.9) #f1f1f1;
}

	.teCoolingIndexGraphId::-webkit-scrollbar {
		width: 15px;
	}

	.teCoolingIndexGraphId::-webkit-scrollbar-track {
		background: rgba(162, 175, 195, 1);
		-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
		border-radius: 3px;
	}

	.teCoolingIndexGraphId::-webkit-scrollbar-thumb {
		background: rgba(60, 73, 93, 0.9);
		-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
		border: 1px solid rgba(116, 130, 139, 0.8);
		border-radius: 3px;
	}

		.teCoolingIndexGraphId::-webkit-scrollbar-thumb:hover {
			background: rgba(40, 49, 62, 0.9);
		}

	.teCoolingIndexGraphId .trapListChart {
		margin-bottom: 15px;
	}

		.teCoolingIndexGraphId .trapListChart:last-child {
			margin-bottom: 0;
		}

/****  TeCooling Index page  *** end ***/
/****  FleetData Index page  *** start ***/

.fleetDataHeader {
	display: flex;
	margin-top: 20px;
}

.fletDataFieldsSelect {
	padding: 6px 20px;
}

.fleetDataMain #fleetDataMap {
	position: relative;
	margin: 1.5em;
	height: calc(70vh - 59px);
	border: 1px solid #dedede;
}
/****  FleetData Index page  *** end ***/
select {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

/*   select#ddlLanguage:before {
        content: "\f107";
    }*/

/*D3 start*/
.d3-tip {
	line-height: 1;
	font: 14px sans-serif;
	padding: 14px 12px 12px 12px;
	background: #fff;
	border-radius: 5px;
	max-width: 300px;
	-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
	z-index: 99999999999;
}



.overlay {
	cursor: default;
}

.disabled-selection, footer {
	user-select: none; /* supported by Chrome and Opera */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none;
}

/*D3 end*/


/*--------- SCROLL TOP -----------*/

.scroll-top-btn {
	right: 25px;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 25px;
	border-radius: 25px;
	display: none;
	background: #262F41;
	z-index: 3;
}

	.scroll-top-btn i {
		display: inline-block;
		color: #FFFFFF;
	}

/*--------- DROPDOWN MENU -----------*/
.menu-dropdown-content {
	display: none;
	position: absolute;
	width: 80%;
	background-color: #fff;
	/*    min-width: 160px;*/
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	text-align: left;
	padding: 0;
	z-index: 1;
}

	.menu-dropdown-content a {
		color: black;
		padding: 10px !important;
		text-decoration: none;
		display: block;
	}

		.menu-dropdown-content a:hover {
			background: rgba(38,47,65,0.2);
		}

.menu-dropdown:hover .menu-dropdown-content {
	display: block;
}

.export-button {
	min-width: 115px !important;
}
/*--------- SMALL SCREEN MENU -----------*/
#mobileMenu > ul {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	list-style-type: none;
	background: #333;
	width: 100%;
	overflow: hidden;
	transition: max-height 0.5s;
}

	#mobileMenu > ul li {
		display: block;
		margin-right: 50px;
		margin-top: 10px;
		margin-bottom: 10px;
	}

#mobileMenu ul li a {
	color: #fff;
	display: block;
	font-size: 15px;
	padding: 5px !important;
}

.no-event {
	pointer-events: none !important;
}

.alert-container {
	margin-top: 0 !important;
}

.visulasisationDataContainer {
	margin-top: 0;
}

.div-menu-button {
	background: #518E6B;
	border-radius: 100px;
	color: white;
	height: 40px;
	line-height: 38px;
	left: 15px;
	text-align: center;
	top: 8px;
	width: 40px;
	margin-right: 5px;
}

.arrow-down:before {
	content: "\f107";
}

.headline-content {
	width: 375px;
	cursor: pointer;
}

.headerDiv {
	position: fixed;
	z-index: 51;
	width: 100%;
}

.userbox .profile-info {
	margin: 0 3px 0 10px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 83%;
	background: none;
	margin-top: -4px;
}

#menuTextIrig,
#menuTextAlert,
#menuTextDataVisualization,
#menuTextGeo,
#menuTextTrap,
#menuTextPoultrySolver,
#menuTextBroiler,
#menuTextLayingHans,
#menuTextSilo,
#menuTextGreenHouse,
#menuTextMachineSound,
#menuTextParentalFlocks,
#menuTextFrostAlert,
#menuTextFrost{
	display: none;
}

.navbar.headerDiv.fixed-bar {
	/*    display: flex;*/
	flex-direction: column;
	justify-content: flex-start;
	gap: 10px
}

.fa-plus {
	margin-left: 10px !important;
	margin-right: 10px !important;
}

.fa-minus {
	margin-left: 10px !important;
	margin-right: 10px !important;
}

hr {
	background-color: #17683A;
}

.btnTrap {
	background-color: white;
}

	.btnTrap:hover {
		color: #17683a;
	}

table.dataTable td.dataTables_empty {
	min-width: 100% !important;
}

#mainNotificationDiseasDiv .table-responsive,
#mainNotificationPestDiv .table-responsive {
	overflow: hidden;
}

@media only screen and (max-width: 1680px) and (min-width: 1280px) {
	.insectTrap #imageMainTraphistoryDate.historyDate {
		bottom: 140px;
	}
}

@media only screen and (max-width: 1280px) {
	.teCoolingDateDiv .hasDatepicker {
		width: 20%;
	}

	.insectTrap #imageMainTraphistoryDate.historyDate {
		left: 5px;
		bottom: 105px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1400px) {
	.floatDiv {
		float: none !important;
		margin-left: auto;
		margin-right: auto;
	}

	.col-md-6.fieldDiv {
		width: 70% !important;
		margin-top: 20px;
	}
}
/*----------- media query for menu -----------*/
@media only screen and (min-width: 767px) and (max-width: 1024px) {
	.allServicesHeadline {
		display: flex;
		flex-wrap: wrap;
	}

	.dropdownTrap {
		margin-top: 30px;
	}

	.alertGraphsButtonsContainer {
		flex: 100%;
		margin-top: 20px;
	}
}

@media only screen and (min-width: 1022px) {
	#mobileMenu {
		display: none;
	}
	/*  .alertGraphs{
            padding-left: 20px;
        }*/
}



/*----------settings start----------*/
.inputElements {
	margin-top: 10px;
	text-align: left;
}

.createButtonDiv {
	margin-top: 10px;
}

#map_canvas {
	height: 600px;
	width: 90%;
	margin: 0px;
	padding: 0px;
	border: 2px solid #3872ac;
	margin-left: 50px
}

.graph-container {
	margin-top: 10px;
}

.headerForEdit {
	margin-left: 3%;
}
/*----------settings end------------*/

.table-button {
	padding-top: 20px;
}

.toggle.btn {
	max-height: 34px;
	margin-bottom: 12px;
}

@media only screen and (min-width: 768px) {
	.headerDiv {
		top: 59px;
	}
}

@media only screen and (max-width: 768px) {
	.body-content {
		margin-left: 0 !important;
		padding-top: 90px !important;
	}

	.teCoolingMainDataContainer {
		padding-left: 0;
		padding-right: 0;
	}

	.teCoolingDateDiv {
		display: flex;
		width: 100%;
	}

	.teCoolingDeviceCombobox h4 {
		text-align: center;
	}

	.teCoolingDeviceCombobox select {
		width: 100% !important;
		min-width: unset;
		max-width: unset;
	}

	.ciricDatetimepicker {
		margin-left: 0;
		min-width: unset !important;
	}

	.ciricPrintButton {
		max-height: 34px !important;
	}

	.alertGraphsObject {
		float: none;
	}

	#alertNetSearchSection {
		display: flex;
		flex-wrap: wrap;
	}

	.calculatorDiv {
		overflow: hidden;
		overflow-x: auto;
	}

	.selectObjects {
		width: 175px;
	}

	.nameFieldDiv button {
		width: 175px !important;
	}

	.reportsDiv .visualisationDropdowns {
		flex-wrap: wrap;
		display: flex !important;
		flex-direction: column;
	}

	#irigNetHeadline {
		display: flex;
		flex-wrap: wrap;
	}

	.form-group {
		width: auto;
	}

	.hasDatepicker {
		min-width: 41%;
	}

	.alertGraphsDatePicker {
		min-width: 35%;
	}

	.geoCledianDiv {
		margin-left: 70px;
		margin-right: 30px;
	}

	.panel .currentForm .form-group {
		width: 100%;
	}

	.silosTemperatureContainer .topSection {
		flex-wrap: wrap;
	}

	.silosDivData {
		margin-bottom: 100px;
	}
}

@media only screen and (max-width: 991px) {

	.titleMKDivMereNege {
		margin-top: 20px;
	}

	.silosTemperatureSecondDiv {
		margin-top: 70px;
	}

	td.dataTables_empty {
		min-width: 87.4vw !important;
	}
}

@media only screen and (max-width: 767px) {
	/*      .navbar-header {
            height: 0;
        }*/
	#logoutForm {
		/*           float:initial;*/
		text-align: center;
		top: -2px;
		right: 15px;
		position: absolute;
	}

	.alertGraphs .form-group {
		width: 85%;
	}

	table.dataTable td.dataTables_empty {
		min-width: 97.4vw !important;
	}

	.greenHouseHeadline {
		width: 100%;
	}

	#alertNetTopSection {
		padding-left: 0;
	}

	.henHouseDiv {
		margin-top: 150px;
		padding-left: 0;
	}

	.trapHeadline {
		padding-right: 0px;
	}

	.recipeGrid {
		padding-left: 0;
	}

	.headerDiv {
		left: 0;
		top: 37px;
		/*            border-bottom: 2px solid black !important;
*/
	}

	#mobileMenu > ul {
		top: 80px;
	}

	#logoutForm .navbar-nav {
		margin: 0;
	}

	.userbox .profile-info {
		margin: 0 0px 5px 10px;
	}

	.header-user-dropdown {
		margin-left: 0px;
	}

	.mainDataContainer {
		padding-left: 0;
	}

	.geoCledianDiv {
		margin-left: 0;
		margin-right: 0;
	}

	.silosTemperatureAcceptance {
		padding-left: 0 !important;
	}

	.acceptanceSection .buttonSection a {
		display: inline-block;
	}

	.pigMain {
		width: 90%;
		margin: 0 auto !important;
	}
}

@media only screen and (max-width: 650px) {
	.trapSearchButton {
		min-width: 118px;
	}
}

@media only screen and (max-width: 600px) {
	.firstIrigHeadline {
		flex-direction: column;
		align-items: flex-start !important;
	}

		.firstIrigHeadline > div {
			display: flex;
			flex-wrap: nowrap;
		}

		.firstIrigHeadline label {
			display: flex;
			flex-wrap: nowrap;
			justify-content: center;
			align-items: center;
			gap: 10px;
			padding-right: 15px;
		}

	.form-group {
		width: auto;
	}

	.irigDatePicker {
		min-width: 200px;
	}

	.irigSearch {
		min-width: 118px;
	}

	.dropdownTitleSection {
		display: block !important;
	}

	.vertical-text {
		writing-mode: vertical-lr;
		height: 282px !important;
	}
}

@media only screen and (max-width: 599px) {
	.teCoolingDateDiv {
		flex-flow: wrap;
	}

		.teCoolingDateDiv strong {
			width: 100%;
			text-align: center;
		}

		.teCoolingDateDiv input {
			margin-left: auto;
			margin-right: auto;
		}
}

@media only screen and (max-width: 1030px) {
	.accptanceAllBtn {
		justify-content: center !important;
	}
}

@media only screen and (max-width: 425px) {
	.mainDataContainer {
		padding: 0;
	}

	.nameFieldDiv button {
		width: 190px !important;
	}

	.trapSearchButton {
		margin-right: 0px;
	}

	.insectTrap #imageMainTraphistoryDate.historyDate {
		bottom: 101px;
	}

	.greenHouseButton {
		min-width: 118px;
	}

	.reportsDiv .visualisationDropdowns .vis-drop-down button[type=button] {
		margin-right: 0;
	}

	.table-div-container {
		overflow: hidden;
		overflow-x: auto;
	}

	#mobileMenu > ul {
		top: 80px;
	}

	.graph-container {
		margin-top: 50px;
		overflow: hidden;
		overflow-x: auto;
	}

	.ciricDatetimepicker {
		margin-top: 30px;
	}

	.ciricReportDiv {
		padding-left: 5px;
	}

	.userbox .profile-info {
		margin: 0 5px 5px 5px;
	}

	.body-content {
		/*         padding-right: 70px;*/
	}

	.export-button {
		min-width: 80px;
	}

	.trapDatePicker {
		min-width: 74%;
	}

	.col-md-5.chartTrap,
	.col-md-3.insectTrap,
	.col-md-4.imagesRowWindow {
		width: 100%;
	}

	.buttonSilo {
		margin-top: 5px;
	}
}

@media only screen and (max-width: 375px) {

	.nameFieldDiv button {
		width: 170px !important;
	}
}

@media only screen and (max-width: 374px) {
	#irigNetHeadline .form-group {
		width: 100%;
	}
}

@media only screen and (max-width: 320px) {
	.form-group {
		padding-left: 0;
	}

	.insectTrap #imageMainTraphistoryDate.historyDate {
		bottom: 120px;
	}

	.titleMKDivMereNege {
		margin-left: 10px;
	}

	.btnUpdateMap {
		margin-left: 70px;
		margin-bottom: 10px;
	}

	.nameFieldDiv button {
		width: 225px !important;
	}
}

.calculationPlanEdit {
	margin-top: 150px;
}

.broilerTable .reportContainer .reportStatistcs td input,
.broilerTable .incomeContainer .dailyStatistcs td input {
	width: 100% !important;
}

.pigTable {
	width: 100%;
}

.pigTableHeader {
	background-color: #262f41;
	color: white;
}

#tbodyDiseasNotification, #tbodyPestNotification {
	display: inline-table;
}

#pestSelectFilter, #diseasSelectFilter {
	padding-left: 2px !important;
}

.knjigaPoljaButtonsDiv .select2-selection__rendered {
	line-height: 32px !important;
	padding: 0px !important;
}

.fromToSection {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.pigsDashboardContainer {
	margin-top: 190px !important;
}

.datatables-footer {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px;
}

	.datatables-footer .col-md-6 {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
	}

.paginate_button.next::after {
	content: "\f054";
	font-family: FontAwesome;
}

.paginate_button.previous::after {
	content: "\f053";
	font-family: FontAwesome;
}

.book-container {
	margin-top: 80px;
}

.visualisation-charts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media screen and (max-width:1300px) {
	.visualisation-charts {
		grid-template-columns: 1fr;
	}
}

#ListId > option:first-child {
	display: none;
}

.OTIntegrationRowDiv {
	margin-top: 10px;
}

.OTIntegrationh5 {
	margin-left: 50px;
}

.OTIntegrationButtonMenu {
	margin-left: 10px;
	margin-top: 10px;
}

.deleteBtn, .editBtn, .detailBtn, .reportTurnusHealthDataBtn, .editTurnusHealthDataBtn, .editDailyStatisticsBtn {
	background: none !important;
}

.fa-pencil, .fa-times {
	color: #262f41 !important;
}

.fa {
	font-weight: normal !important;
	font-family: FontAwesome !important;
}

.modal-header {
	background: #17683a;
	color: #fff;
}

	.modal-header button, .modal-header button:hover {
		color: #fff;
		opacity: 1;
		text-shadow: none;
	}

.modal-body {
	padding: 20px 30px;
}

.two-columns-div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.trap-images {
	height: auto !important;
}

#viewPlaceHolder .container-two-columns {
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: 20px;
	margin-top: -50px;
	margin-bottom: 20px;
}

.cbImages {
	cursor: pointer;
}

@media screen and (max-width: 1000px) {
	#viewPlaceHolder .container-two-columns {
		grid-template-columns: 1fr;
	}
}

.status-box {
	display: flex;
	align-items: center;
	background-color: white;
	color: #1a1a1a;
	border-left: 5px solid;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	min-width: 260px;
	max-width: 90vw;
	font-size: 16px;
	font-weight: 500;
	position: fixed;
	top: 32px;
	right: 32px;
	z-index: 2000;
}

.status-icon {
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 16px;
	text-align: center;
	line-height: 24px;
	margin-right: 10px;
}

/* Success */
.status-success {
	border-left-color: #10b981;
}

.status-success .status-icon {
	background-color: #d1fae5;
	color: #10b981;
}

.status-success .status-icon::before {
	content: '\2713'; /* ✓ */
	display: block;
}

/* Danger */
.status-danger {
	border-left-color: #ef4444;
}

.status-danger .status-icon {
	background-color: #fee2e2;
	color: #ef4444;
}

.status-danger .status-icon::before {
	content: '\2717'; /* ✗ */
	display: block;
}

.custom-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5); /* Controls the dim effect */
	z-index: 1040; /* Place it beneath the modal */
	display: none; /* Hidden by default */
	transition: opacity 0.3s ease;
	opacity: 0;
}

	.custom-backdrop.show {
		display: block;
		opacity: 1;
	}