.cursor-pointer {
	cursor: pointer;
}

.nowrap {
	/* same as bootstrap text-nowrap */
	white-space:nowrap;
}

.ellipsis {
	text-overflow: ellipsis;
}

.float-center {
	float:center;
}

.float-left {
	float:left;
}

.float-right {
	float:right;
}

.font-bold {
	font-weight:bold;
}

.margin-auto {
	margin:auto;
}

.margin-vertical-auto {
	margin-top:auto;
	margin-bottom:auto;
}

.margin-horizontal-auto {
	margin-left:auto;
	margin-right:auto;
}

.font65, .font-65 {
	font-size: 65%;
}

.font75, .font-75 {
	font-size: 75%;
}

.font85, .font-85 {
	font-size: 85%;
}

.font125, .font-125 {
	font-size: 125%;
}

.font150, .font-150 {
	font-size: 150%;
}

.hidden {
	display:none;
}

.outline {
	outline: solid 1px;
}

.display-none {
	display:none;
}

.icon-frame {
	padding: 2px;
	border:solid 1px;
	border-radius: 6px;
}

.inline {
	display:inline;
}

.inline-block {
	display:inline-block;
}

.mt-1 {
	margin-top:1px;
}

.mt-2 {
	margin-top:2px;
}

.mt-3 {
	margin-top:3px;
}

.mb-1 {
	margin-bottom:1px;
}

.mb-2 {
	margin-bottom:2px;
}

.ml-2 {
	margin-left:2px;
}

.ml-5 {
	margin-left:5px;
}

.pb-1 {
	padding-bottom:1px;
}

.pb-2 {
	padding-bottom:2px;
}

.pb-3 {
	padding-bottom:3px;
}

.padding-2 {
	padding:2px;
}

.padding-4 {
	padding:4px;
}

.padding-4-0 {
	padding:4px 0px;
}

.padding-4-2 {
	padding:4px 2px;
}

.w30 {
	width:30%;
}

.w70 {
	width:70%;
}

.w100 {
	width:100%;
}

.circle {
	border-radius:50%;
}

.border-solid-1 {
	border:solid 1px;
}

.border-bottom-1 {
	border-bottom:solid 1px;
}

.border-bottom-2 {
	border-bottom:solid 2px;
}

.shadow-bottom-lightgray {
	box-shadow: 0px 4px #c9c9c9;
}

.border-radius-12 {
	border-radius:12px;
}

.border-radius-14 {
	border-radius:14px;
}

.border-radius-16 {
	border-radius:16px;
}

.green {
	color:green;
}

.lightgreen {
	color:lightgreen;
}

.blue {
	color:blue;
}

.lightblue {
	color:lightblue;
}

.red {
	color:red;
}

.yellow {
	color:yellow;
}

.white {
	color:white;
}

.bgc-red {
	background-color:red !important;
}

.bgc-lightred {
	background-color:#ff6f6b !important;
}

.bgc-lightlightred {
	background-color:#ffaaa8 !important;
}

.bgc-yellow {
	background-color:yellow !important;
}

.bgc-green {
	background-color:green !important;
}

.bgc-lightgreen {
	background-color:lightgreen !important;
}

.bgc-blue {
	background-color:blue !important;
}

.bgc-lightblue {
	background-color:lightblue !important;
}

.rounded-corners-15 {
	border-radius: 15%;
}

.zoom-150 {
	zoom:150%;
}

.text-left {
	text-align:left;
}

.text-center {
	text-align:center;
}

.text-right {
	text-align:right;
}

.hover-highlight:hover {
	background-color:#E8FEFF;
}

.round-icon-button-42 {
	width:42px;
	height:42px;
}
/*
	class styles
*/

#swupdatecontainer {
	padding: 6px 15px;
	position:absolue;
	background-color: white;
	text-align:center;
	margin:auto;
	top:0px;
}

#connection_status {
	position: absolute;
	bottom: 25px;
	left: 8px;
	padding: 8px 16px 8px 8px;
	min-width:240px;
	height:48px;
	vertical-align:middle;
	z-index:1000;
}

.connection_status_true {
	background-color:#ccddff;
}

.connection_status_false {
	background-color:#ff9980;
}

#connection_status_close {
	position: absolute;
	display:inline-block;
	top: 2px;
	right: 4px;
	font-weight:bold;
	cursor:default;
}

#connectionStatusImg {
	background-color:white;
}

.contain_content {
	contain:content;
	overflow:auto;
}

.refresh-worker {
	color:blue;
	font-weight:bold;
	border-radius: 8px;
	padding: 2px 4px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-container > div {
  background-color: #f1f1f1;
  margin: 10px;
  padding: 0 16px;
  border-top-left-radius: 15% 50%;
  border-bottom-left-radius: 15% 50%;
  border-top-right-radius: 15% 50%;
  border-bottom-right-radius: 15% 50%;
  text-align: center;
  line-height: 35px;
}

.oval-item {
  background-color: #f1f1f1;
  border-top-left-radius: 15% 50%;
  border-bottom-left-radius: 15% 50%;
  border-top-right-radius: 15% 50%;
  border-bottom-right-radius: 15% 50%;
  text-align: center;
  line-height: 25px;
}

.oval-item-container {
	float:left;
	padding:8px;
	min-height:10px;
}

.oval-item-start {
	float:left;
	height: 100%;
	width: 15%;
	border-left:solid 1px;
	border-top:solid 1px;
	border-bottom:solid 1px;
	border-radius: 50% 0 0 50%;
}

.oval-item-content {
	float:left;
	height: 100%;
	width: 70%;
	border-top:solid 1px;
	border-bottom:solid 1px;
}

.oval-item-end {
	float:left;
	height: 100%;
	width: 15%;
	border-right:solid 1px;
	border-top:solid 1px;
	border-bottom:solid 1px;
	border-radius: 0 50% 50% 0;
}


IMG.logoIcon {
	width:60px;
	height:60px;
	margin-bottom: 6px;
	margin-right: 4px;
}

IMG.menuLogoIcon {
	width:60px;
	height:60px;
	margin-bottom: 6px;
	margin-right: 4px;
}

/*
	Custom div styles
*/
DIV.tab_div {
	display: inline-block;
	padding: 4px 6px;
	margin: 3px 2px;
	border:solid 1px;
	border-bottom:none;
	border-radius: 14px 14px 0 0;
	cursor:default;
}

DIV.tab_div:hover {
	background-color:#f2f2f2;
	margin: 2px 1px;
	border:solid 2px;
	border-bottom:none;
}

DIV.tab_div_selected {
	background-color:#e6e6ff;
}

DIV.tab_div_selected:hover {
	background-color:#e6e6ff;
}

DIV.login-container {
	width:400px;
	margin-top:25%;
	background-color:white;
	padding: 15px 15px;
}

DIV.content_container {
	padding-top:50px;
	padding-left:1%;
	width:98%;
	
}

DIV.list-box {
	width:100%;
	height:600px;
	border:gray solid 1px;
	border-radius:12px;
	overflow-y:auto;
}

DIV.simple_list_box {
	width:100%;
	min-height:100px;
	border:gray solid 1px;
	border-radius:12px;
	overflow-y:auto;
}

DIV.upper_menu_button {
	float:left;
	margin: 10px;
	outline: solid 1px;
	padding: 6px 12px;
	cursor: default;
}

DIV.heading_div {
	float:left;
	width:100%;
	text-align:center;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 140%;
	font-weight: bold;
}

DIV.content_container {
	float:left;
	width:100%;
}

DIV.upper_menu_button:hover {
	background-color:lightgray;
}

div.temp_column {
	float:left;
	width:100%;
	height:20px;
	text-align:center;
	outline:solid 1px;
}

div.print_tmp_column:hover, div.print_tmp_column_text {
	display:inline;
	background-color:red;
	width:10px;
}

div.print_tmp_column {
	float:left;
	width:4px;
}

DIV.oneOfTwoBoxes {
	float:left;
	width: calc(50% - 20px);
	outline: solid 1px;
	overflow-y: scroll;
	margin-left: 10px;
	margin-right: 10px;
}

DIV.item_box {
	float:left;
	width: 100%;
	outline:solid 1px;
	overflow-y:auto;
	height: 160px;
}

DIV.item_row {
	float:left;
	width: calc(100% - 5px);
	padding-left:5px;
	border-bottom:solid 1px;
	cursor:pointer;
}

DIV.item_row_fault {
	float:left;
	width: calc(100% - 5px);
	padding-left:5px;
	border-bottom:solid 1px;
	background-color: #ff9999;
}

DIV.hl {
	float:left;
	width: 100%;
	border-bottom:solid 2px;
}

DIV.popup_notification_container {
	position:fixed;
	margin-top:10px;
	margin-left:10px;
	z-index:1500;	
}

DIV.system_container {
	float:left;
	width:98%;
	margin-left:1%;
	margin-right:1%;
	margin-top:40px;
}

DIV.select_icon_container {
	float:left;
	padding: 12px;
	border:solid 1px;
	border-radius: 8px;
	margin: 4px;
}

DIV.select_icon_container_current_selected {
	border:solid 2px blue;
}
	/*
		Custom dropdown
	*/
DIV.custom-dropdown {
	position: fixed;
	display: inline-block;
}

DIV.custom-dropdown-content {
	position: absolute;
	overflow: auto;
	display: none;
	border: solid 1px;
	background-color: #e6e6e6;
	padding-top: 1px;
	padding-bottom: 5px;
}

DIV.custom-dropdown-close-btn {
	float:left;
	width:100%;
	font-size:120%;
	font-weight:bold;
	text-align:right;	
}

/*
	Div Single style settings
*/

DIV.mark_hover_row:hover {
	background-color: #e6ffff;
}

DIV.alignCenter {
	text-align:center;
}

DIV.basicRow {
	float:left;
	width:100%;
}

DIV.basicHalfRow {
	float:left;
	width:50%;
}

DIV.inline_row {
	display:inline;
	width:100%;
}

DIV.bottom-line {
	border-bottom:solid 1px;
}

DIV.set_hidden {
	display: none;
}

SPAN.font-bold {
	font-weight:bold;
}

IMG.iconMini {
	width: 16px;
	height: 16px;
}

IMG.icon {
	width: 20px;
	height: 20px;
}

IMG.iconSM, IMG.icon28 {
	width: 28px;
	height: 28px;
}

IMG.icon30 {
	width: 30px;
	height: 30px;
}

IMG.iconM, IMG.icon34 {
	width: 34px;
	height: 34px;
}

IMG.icon40 {
	width: 40px;
	height: 40px;
}

IMG.iconL, IMG.icon45 {
	width: 45px;
	height: 45px;
}

IMG.pictureS {
	width: 60px;
	height: 60px;
}

IMG.pictureM {
	width: 185px;
	height: 185px;
}

IMG.round-button {
	border:solid 1px;
	border-radius:50%;
}


/*
	Form customization
*/


/* Radio on off */
.radio-toolbar input[type="radio"] {
	display:none;
}

.radio-toolbar label {
	display: inline-block;
	background-color: #ddd;
	padding: 10px 20px;
	font-family:Arial;
	font-size: 16px;
	border: 2px solid #444;
	border-radius: 4px;
}

.radio-toolbar input[type="radio"]:checked + label {
	background-color: #bfb;
	border-color: #4c4;
}

.radio-toolbar label:hover {
	background-color: #dfd;
}

.radio-toolbar-filters input[type="checkbox"] {
	display:none;
}

.radio-toolbar-filters label {
	display: inline-block;
	background-color: #ddd;
	padding: 1px 2px;
	font-family:Arial;
	font-size: 8px;
	border: 1px solid #444;
	border-radius: 2px;
	margin-left:2px;
}

.radio-toolbar-filters input[type="checkbox"]:checked + label {
	background-color: #bfb;
	border-color: #4c4;
}

.radio-toolbar-filters label:hover {
	background-color: #dfd;
}

/* Slide switch */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 26px;
}

.slider.round:before {
  border-radius: 50%;
}

/*
	Special site parts
*/
IMG.back_button {
	display:inline-block;
	border-radius:50%;
}

DIV.on_page_menu_categories_container {
	padding: 8px;
	border:solid 2px;
	border-radius:20px;
	height: 200px;
	width: 200px;
	margin:8px auto;
	display:inline-block;
}

DIV.on_page_menu_categories_container_small {
	padding: 8px;
	border:solid 2px;
	border-radius:20px;
	height: 200px;
	width: 160px;
	margin:8px auto;
	display:inline-block;
}

DIV.on_page_menu_categories_container_app {
	padding: 3px;
	border:solid 2px;
	height: 110px;
	width: 110px;
	margin:8px auto;
	display:inline-block;
}

DIV.on_page_menu_categories_icon {
	padding-top:15px;
	padding-bottom:15px;
	width:100%;
}

DIV.on_page_menu_categories_icon_app {
	padding-top:5px;
	padding-bottom:5px;
	width:100%;
}

DIV.on_page_menu_categories_name {
	font-size: 150%;
	text-align:center;
	font-weight:bold;
	display:inline-block;
	clear:none;
}

DIV.on_page_menu_categories_name_small {
	font-size: 120%;
	text-align:center;
	font-weight:bold;
	display:inline-block;
	clear:none;
}

DIV.on_page_menu_categories_name_app {
	font-size: 90%;
	text-align:center;
	font-weight:bold;
	display:inline-block;
	clear:none;
}

DIV.save_discard_button {
	display: inline-block;
	width: 100px;
	padding: 8px 16px;
	border-radius: 8px;
	margin: 0 4px 0 4px;
}

IMG.on_page_category_icon {
	margin:auto;
	width:85px;
	height:85px;
}

IMG.on_page_category_icon_app {
	margin:auto;
	width:50px;
	height:50px;
}

IMG.list-item-setting-icon {
	border:solid 1px;
	padding: 4px;
	border-radius: 15%;
}

.mobile-only-inline-block {
	display:none;
}

.mobile-no-visible {
	display:default;
}

@media only screen and (max-width: 1024px) {

	.round-icon-button-42 {
		width:60px;
		height:60px;
	}

	IMG.menuLogoIcon {
		width:46px;
		height:46px;
	}
	 
	 DIV.mobile_list {
		 height: 400px;
	 }
	
	DIV.upper_menu_button {
		zoom:150%;
	}

	.mobile-zoom-150 {
		zoom:150%;
	}

	.mobile-zoom-200 {
		zoom:200%;
	}

	.mobile-zoom-250 {
		zoom:250%;
	}

	.mobile-only-inline-block {
		display:inline-block;
	}	
	.mobile-no-visible {
		display:none;
	}
}

/*
	picture Overlay frame
*/
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 14%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

img {
	image-rendering: auto;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
}

img.lang_select_flag {
	width:28px;
	height:24px;
	margin: 0px 3px 0px 3px;
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* BOOTSTRAP addin */


.navbar .nav-item:hover .dropdown-menu {
	display: block;
}

.testimonial-group > .row {
	display:block;
	overflow-x:auto;
	white-space: nowrap;
}

.testimonial-group > .row > .col-1 {
	display:inline-block;
}

.testimonial-group > .row > .col-2 {
	display:inline-block;
}

.testimonial-group > .row > .col-3 {
	display:inline-block;
}

.testimonial-group > .row > .col-4 {
	display:inline-block;
}

.testimonial-group > .row > .col-5 {
	display:inline-block;
}

.testimonial-group > .row > .col-6 {
	display:inline-block;
}

.testimonial-group > .row > .col-7 {
	display:inline-block;
}

.testimonial-group > .row > .col-8 {
	display:inline-block;
}

.testimonial-group > .row > .col-9 {
	display:inline-block;
}

.testimonial-group > .row > .col-10 {
	display:inline-block;
}

.testimonial-group > .row > .col-11 {
	display:inline-block;
}

.testimonial-group > .row > .col-12 {
	display:inline-block;
}


/* Simple CSS3 Fade-in Animation --- End */

.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}
