@charset "utf-8";
/* CSS Document */

a{
	cursor: pointer;
}

h1 {
	font-size: 160%;
	font-weight: bold;
	padding: 0;
	margin: 0;
}

h2 {
	font-size: 130%;
	font-weight: bold;
	padding: 0;
	margin: 0;
}

h3 {
	font-size: 110%;
	font-wieght: bold;
	padding: 0;
	margin: 0;
}

h4 {
	font-size: 105%;
	font-weight: bold;
	padding: 0;
	margin: 0;
}

#mySpan{
	postion: relative;
	display: inline-grid;
	width: 100%;
	max-width: 700px;
	min-width: 400px;
	margin-bottom: 30px;
}

#mySpanbefore{
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
}

#sortinglistCSS{
	position: relative;
	display: inline-block;
	word-break: keep-all;
	padding: 4px;
	float: left;
	border: 1px solid #999;
	margin: 3px;
	align-content: flex-end;
	border-radius: 5px;
	background-color: #DEDEDE;
	padding-left: 10px;
	padding-right: 10px;
	cursor: pointer;
}

#sortinglistCSS:hover{
	background-color: #999;	
}

.myCheckbox div{
	padding-bottom: 3px;
	font-weight: bold;
	font-size: 12px;
}

.myCheckbox input[type=checkbox]{
    position: relative;
    z-index: -9999;
}

.myCheckbox span {
	width: 15px;
    height: 15px;
    display: inline-flex;
    background: url(images/checkbox_empty.png);
	background-size: auto 100%;
	background-position: bottom;
	margin-left: -10px;
	margin-right: -5px;
}


.myCheckbox input:checked + span {
	display: inline-flex;
    background: url(images/checkbox_checked.png);
	background-size: auto 100%;
	background-position: bottom;
}


#tableUserlist{
	border-collapse: collapse;
	-border-spacing: 1px;
	-transform: scale(0.93);
	-transform-origin: top left;
}

#tableUserlist td{
	min-width: 50px;
	max-width: 150px;
	border: 1px solid #999;
	padding: 2px;
	word-break: break-all;
	overflow: hidden;
	padding-left: 5px;
	padding-right: 5px;
}
#tableUserlist tr:first-child{
	font-weight: bold;
}
#tableUserlist tr:hover{
	background-color: cadetblue;
	cursor: pointer;
}

#tableHeader{
	text-align: center;
	font-weight: bold;
	background-color: #DEDEDE;
}

#tableCenterText{
	text-align: center;
}

#CreateButton{
	display: inline-block;
	background-color: lightgray;
	padding: 3px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #999;
	border-radius: 5px;
	margin-bottom: 30px;
	color: #333;
	cursor: pointer;
}

#show_machinecard{
	position: relative;
	display: inline-grid;
}


#filebank_folderview{
	display: block;
	float: left;
	font-weight: bold;
	width: 500px;
	border: 1px solid #666;
	max-height: 40vw;
	overflow: auto;
}

#rma_searchbox{
	display: inline-block;
	margin-bottom: 10px;
}

#rma_searchbox fieldset{
	display: inline-block;
	padding-bottom: 10px;
}

#filedropContainer{
	position: fixed;
	top: 116px;
	left: auto;
	right: 155px;
	max-width: 250px;
	max-height:70%;
	background-color:rgba(255, 255, 255, 1);
	border: 1px solid #999;
	border-radius: 0px 0px 10px 10px;
	padding: 5px;
	padding-right: 20px;
	z-index: 3000 !important;
	overflow: visable !important;
	overflow-y:auto;
	overflow-x: hidden;
	
	

	-webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.75);
}

@media all and (max-width: 900px){
	#filedropContainer{
	clear: both;
	position: absolute;
	top: 130px;
	right: 0px;
	border-radius: 10px;
	max-width: 100%;
	display: inline-block;
	}
}

#filedropContainerHide{
	display: none;
	width: 100%;
	min-width: 250px;
}

#filedropContainer p{
	font-size: 85%;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: normal;
	max-height: 150px;
	display: inline-block;
	overflow-y: auto;
	overflow-x: hidden;
	word-break: break-all;
	word-wrap: break-word;
	line-height: 20px;
	padding: 0;
	margin: 0;
	max-width: 250px;
}


#ChatContainer{
	position: fixed;
	top: auto;
	bottom: 20px;
	left: auto;
	right: 10px;
	width: 350px;
	border: 1px solid #999;
	background-color:rgba(255, 255, 255, 0.8);
	color: #333;
	z-index: 400;
}

#ChatContainerHeader{
	position: relative;
	display: inline-block;
	background-color:rgba(0, 0, 0, 0.7);
	border: 1px solid #333;
	font-size: 120%;
	color: white;
	width: 100%;
	line-height: 30px;
}
#ChatBoxButton, #UploadBoxButton{
	position: relative;
	float: right;
	margin: 0;
	border: 1px solid #333;
	border-radius: 4px;
}

#UploadBoxButton{
	padding: 5px;
	background: none;
	border: none;
	margin-right: -15px;
}

#ChatBoxButton{
	margin-right: 5px;
	margin-top: -27px;
}
#ChatBoxButton:hover, #UploadBoxButton:hover{
	background-color: #333;
	color: white;
}

#ChatBoxButton:focus, #UploadBoxButton:focus{
	outline: 0;
}

#ChatContainerText{
	display: none;
	height: 30vh;
	width: 340px;
	padding: 5px;
	overflow-x: hidden;
	overflow-y: auto;
	border-bottom: 1px solid #666;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 95%;
}

#ChatbubbleLeft{
	display: inline-block;
	float: left;
	width: 80%;
	background-color: deepskyblue;
	margin: 5px;
	padding: 5px;
	border-radius: 5px;
}

#ChatbubbleMiddle{
	display: inline-block;
	margin: 5px;
	margin-left: calc(50% - 155px);
	width: 300px;
	background-color: khaki;
	padding: 5px;
	border-radius: 5px;
	font-size: 80%;
	font-style: italic;
}

#ChatbubbleRight{
	display: inline-block;
	float: right;
	width: 80%;
	background-color: palegreen;
	margin: 5px;
	padding: 5px;
	border-radius: 5px;
}

#ChatContainerFooter{
	margin-top: 0px;
	margin-bottom: 10px;
	padding: 0;
	display: none;
}
.ChatboxTimestamp{
	font-size: 80%;
	font-style: italic;
	color: #666;
	display: block;
}

#chat_reply_field{
	width: 245px;
	min-width: 245px;
	margin-right: 5px;
	margin-left: 10px;
	padding: 4px;
	line-height: 25px;
}

#news_column_container{
	display: block;
	width: auto;
	margin: 0;
	border: 1px dotted #666;
	padding: 5px;
	margin-top: 10px;
	overflow: visible;
	max-width: 90%;
	-webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  	-moz-column-fill: balance;
    column-fill: balance;
	 -webkit-column-span: all;
         column-span: all;
	 -webkit-column-gap: 10px; /* Chrome, Safari, Opera */
    -moz-column-gap: 10px; /* Firefox */
    column-gap: 10px;
	/*	-webkit-column-rule: 1px dotted #666;
    -moz-column-rule: 1px dotted #666;
    column-rule: 1px dotted #666; */
}

@media all and (max-width: 950px){
#news_column_container{
	width: 95% !important;
	min-width: 95% !important;
	max-width: 95% !important;
	-webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
	}
}
#news_system_table {
	
}
.news_system tr:hover{
	background-color: lightblue;

}
.news_system fieldset{
	background-color: white !important;
}
.news_system table { 
    border-spacing: 0px;
    border-collapse: separate;
}
#box_container_news {
	padding: 0;
	margin: 0;
	display: inline-block;
	width: calc(100% - 2px);
}
.news_system td {
	padding-left:10px;
	padding-right: 10px;
}

.news_system tr:first-child{
	font-weight: bold;
}

.news_system tr:first-child{
	background-color: lightgray !important;
	font-weight: bold;
}

.news_system tr:nth-child(odd){
	background-color: whitesmoke;
}

#news_system tr {
	
}
.news_container, .news_container_big {
	/*border:1px solid #999; */
	margin: 0;
	padding:5px;
	background-color:white;
	display: block;
	width: calc(50% - 12px);
	font-size: 95%;
	border-top: 1px dotted #999;
	border-left: 1px dotted #999;
	border-bottom: 1px dotted #999;
	border-right: 1px dotted #999;
	float:left;
	-webkit-column-break-inside: avoid !important;
          page-break-inside: avoid !important;
               break-inside: avoid !important;
	max-height: 300px !important;
	min-height: 300px;
	position: relative;
	overflow: hidden;
}

@media all and (max-width: 950px){
.news_container, .news_container_big {
	width: calc(100% - 5px) !important;
}
	
	.news_container_big::-webkit-scrollbar {
    width: 12px !important;
 }

 /* Track */
.news_container_big::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important;
   -webkit-border-radius: 10px !important;
   border-radius: 10px !important;
 }

 /* Handle */
 .news_container_big::-webkit-scrollbar-thumb {
   -webkit-border-radius: 10px !important;
   border-radius: 10px !important;
   background: #41617D !important; 
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5) !important; 

 }
 .news_container_big::-webkit-scrollbar-thumb:window-inactive {
   background: #41617D !important; 
 }
}

.news_container_expanded {
	clear: both;
	position: fixed !important;
	z-index: 2000;
	width: 800px;
	height: calc(100% - 40px);
	min-height: 400px !important;
	padding: 20px;
	top: 0;
	left: calc(50% - 400px);
	-margin: -180px auto;
	background-color:white;
	display: inline-block;
	font-size: 110%;
	border-top: none;
	border-left: 1px solid #999;
	border-bottom: none;
	border-right: 1px solid #999;
	-webkit-box-shadow: 0px 0px 3000px 2000px rgba(0,0,0,0.95);
	-moz-box-shadow: 0px 0px 3000px 2000px rgba(0,0,0,0.95);
	box-shadow: 0px 0px 3000px 2000px rgba(0,0,0,0.95);
	overflow: auto !important;
}

#news_main_box{
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	display: block;
}

#news_hidden_body
{
	position: fixed; /* Sit on top of the page content */
	display: none; /* Hidden by default */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5); /* Black background with opacity */
	z-index: 2000; /* Specify a stack order in case you're using a different order for other elements */
	cursor: auto; /* Add a pointer on hover */
	
}

#news_hidden{
	clear: both;
	position: fixed !important;
	z-index: 2000;
	-width:80%;
	-left: 50%;
	-margin-left:(80% - 50%);
	-margin-right:50%;
	-left: calc(100% - 10%);	

	width: 1300px;
	left: calc(50% - 650px);
	height: calc(80% - 40px);
	padding: 20px;
	top: 100px;
	
	-margin: -180px auto;
	background-color:white;
	display: none;
	font-size: 110%;
	border-top: none;
	border-left: 1px solid #999;
	border-bottom: none;
	border-right: 1px solid #999;
	-webkit-box-shadow: 0px 0px 3000px 2000px rgba(0,0,0,0.95);
	-moz-box-shadow: 0px 0px 3000px 2000px rgba(0,0,0,0.95);
	box-shadow: 0px 0px 3000px 2000px rgba(0,0,0,0.95);
	overflow: hidden !important;
	border-radius: 5px;
}

@media all and (max-width: 950px){
#news_hidden{
	width: 90% !important;
	max-width: 90% !important;
	min-width: 90% !important;
	min-height:75hw !important;
	top: 0;
	height: calc(100% - 40px);
	left: 5px;
}



}
.read-more{
	clear: both;
	pointer-events: none;
}

.read-more a{
	pointer-events: all;
}
.read-more i{
	line-height: 0px !important;
}

#read-more-close{
	z-index: 20001;
	font-size: 150%;
	float: right;
	margin-top: -30px;
	cursor: pointer;
}

#read-more-close:hover{
	color: #999;
}

.news_container .read-more,.news_container_expanded .read-more { 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: right; 
  margin: 0; padding: 0;
  line-height: 590px !important;
	
  /* "transparent" only works here because == rgba(0,0,0,0) */
  background-image: linear-gradient(to bottom, transparent, whitesmoke);
}
.news_container .read-more a,.news_container_expanded .read-more a{
	color: #666;
	font-size: 150%;
	padding: 10px;
}

.news_container:hover,.news_container_expanded:hover{
	background-color: whitesmoke;
}
	
#news_system_header_text {
	font-size: 20px;
}

#news_system_container {
	border:1px solid #000;
	padding:20px;
	border-radius: 5px;
	display: inline-block;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100% !important;
	overflow: visible;
}
#news_system_container input {
	border-radius: 5px;
	padding:10px;
	width:400px;
}
#news_system_container input[type=submit] {
	width:80px;
}
#news_system_container select {
	width:140px;
	background-color: red;
}
#add_new_category {
	border:1px solid #000;
	background-color:lightyellow;
	padding:20px;
}

#news_container_header_info{
	margin-bottom: 10px;
}

.news_container_header{
	font-size: 150%;
	font-weight: 700;
	text-decoration: underline;
}

.news_container_header_created{
	font-size: 85%;
	font-style: italic;
	color: #666;
}
.news_container img,.news_container_expanded img{
	clear: both;
	float: none !important;
	max-width: 400px !important;
	width: auto !important;
	max-height: 150px !important;
	height: auto !important;
	background-color: white;
	border: 1px solid #000;
	padding: 4px !important;
	border-radius: 5px !important;
	margin: 0 !important;
	display: block !important;
	margin-right: 0px !important;
	margin-left: 0px !important;
}

.news_container img{
	clear: both;
	float: none !important;
	max-width: 100% !important;
	width: auto !important;
	max-height: 150px !important;
	height: auto !important;
	background-color: white;
	border: 1px solid #000;
	padding: 4px !important;
	border-radius: 5px !important;
	margin: 0 !important;
	display: block !important;
	margin-right: 0px !important;
	margin-left: 0px !important;
	display: block;
}

.news_container ul, .news_container li,.news_container_big ul, .news_container_big li{
	clear: both;
	list-style-type: none !important;
	padding: 5px;
	margin: 0;
	display: block;
}

.news_container_category{
	font-size: 90%;
	border: 1px solid #999;
	-border-radius: 4px;
	color: white;
	margin-bottom: 5px;
	display: block;
	width: calc(100% - 8px);
	padding-left: 5px;
	font-weight: 300;
	background-color: #333;
	line-height: 25px;
	text-align: center;
	text-transform: uppercase;
		-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
	
}

#warning_cat {
	background-color:red;
	border-radius: 5px;
	padding:20px;
	border: 1px solid #000;
	margin:10px;
	font-weight: bold;
	color:white;
	text-align: center;
}
#warning_alternative_user {
	position: fixed;
	z-index: 25000;
	width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	background-color: crimson;
	color: white;
	border-bottom:1px solid #000;
	text-align: center;
	font-size: 120%;
	min-height: 50px;
	line-height: 50px;
	align-items: center;
}

#warning_alternative_user a{
	color: white;
	text-decoration: underline;
	text-transform: uppercase;
}
#warning_alternative_user i{
	margin-right: 20px;
	margin-top: 10px !important;
	font-size: 90%;
	float: right;
	border: 2px solid darkred;
	border-radius: 5px;
	background-color: darkred;
	padding: 5px;
	font-weight: 600;
}
#warning_alternative_user i::after{
	content: " Close User View";
	text-transform: none;
}
#warning_alternative_user i:hover{
	border: 2px solid white;
}

#news_file_row{
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
	line-height: 30px;
}

.news_download_button{
	padding: 4px;
	padding-top: 6px;
	border: 1px solid #333;
	background-color: deepskyblue;
	text-decoration: none;
	font-size: 90%;
}
.news_download_button:hover{
	text-decoration: none;
	background-color: cadetblue;
	color: white;
}
.file_download_info{
	font-size: 80%;
	display: inline-block;
	margin-left: 5px;
	text-transform: uppercase;
}

.news_download_button i{
	font-size: 130% !important;
	line-height: 30px;
}
.tabel_summa_rma_delar {
	font-size:16px;
	font-weight: bold;
	color:black;
	text-align: center;
	border:0px;
}
.tabel_summa_rma_delar_td {
	
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	font-size: 130%;
	line-height: 130%;
	text-align: right !important;
	background-color: lightyellow;
	
}
.rmaTextArea {
	display: block;
	-overflow: hidden !important;
	word-break: keep-all;
	width: 100%;
	min-width: 100%;
}
.rmaTextArea fieldset {
	display: block;
	max-width: 1253px !important;
	min-width: 1253px !important;
	overflow: visable;
}
@media all and (max-width: 950px){
	.rmaTextArea fieldset{
		max-width: 86.5vw !important;
		min-width: 86.5vw !important;
	}
}

.produter_summa {
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	font-size: 130%;
	line-height: 130%;
	text-align: right !important;
	background-color: lightyellow;
}
#news_table {
	border:1px solid #000;
	padding:20px;
	margin-bottom:10px;
}

#news_table td:first-child{
	width: 150px;
}
.news_textarea {
}

.proto_table{
	border-collapse: separate;
	border-spacing: 0px;
	padding: 0;
	margin: 0;
	border-top: 1px solid #666;
	margin-bottom: 10px;
	padding-top: 5px;
}

.proto_table tr{
	vertical-align: middle;
	line-height: 20px;
}

.proto_table label{
	margin: 0;
	padding: 0;
}

.proto_table td {
	padding:0;
	margin: 0;
	line-height: 20px;
}

@media all and (max-width: 950px){
	.proto_table td:first-child {
		max-width: 350px;
		min-width: 350px;
	}

	.proto_textarea, .mceNoEditor{
		width: 400px;
		max-width: 400px;
		min-width: 400px;
	}
}

.proto_table input[type=radio]{
	position: relative;
	z-index: -9999;
}
.proto_table input[type=checkbox]{
	position: relative;
	z-index: -9999;
}

.proto_table span{
	margin: 0;
	padding: 0;
}
.proto_table input[type=radio] + span {
    display:inline-block;
	width: 40px;
	height: 20px;
	border: 1px solid #666;
	border-radius: 5px;
	cursor: pointer;
}

.proto_table input[type=checkbox] + span {
    display:inline-block;
	width: 40px;
	height: 20px;
	border: 1px solid #666;
	border-radius: 5px;
	cursor: pointer;
}

.proto_radio_yes input[type=radio]:checked + span {
    display:inline-block;
	border: 1px solid #666;
	border-radius: 5px;
	background-image: url("https://service.lundberghymas.se/templates/images/radio_yes.png");
	background-size: 85% auto;
	background-repeat: no-repeat;
	background-position: center;
}
.proto_checkbox input[type=checkbox]:checked + span {
	display:inline-block;
	border: 1px solid #666;
	border-radius: 5px;
	background-image: url("https://service.lundberghymas.se/templates/images/radio_yes.png");
	background-size: 85% auto;
	background-repeat: no-repeat;
	background-position: center;
}
.proto_radio_no input[type=radio]:checked + span {
    display:inline-block;
	border: 1px solid #666;
	border-radius: 5px;
	background-image: url("https://service.lundberghymas.se/templates/images/radio_no.png");
	background-size: 85% auto;
	background-repeat: no-repeat;
	background-position: center;
}

.proto_checkbox::before{
	content: "MOUNTED";
	font-size: 70%;
	display: block;
	z-index: 200;
	position: absolute;
	max-width: 40px;
	line-height: 8px;
	margin-top: 10px;
	margin-left: 2px;
}
.proto_radio_yes::before{
	content: "YES";
	font-size: 70%;
	display: block;
	z-index: 200;
	position: absolute;
	max-width: 40px;
	line-height: 8px;
	margin-top: 10px;
	margin-left: 16px;
}
.proto_radio_no::before{
	content: "NO";
	font-size: 70%;
	display: block;
	z-index: 200;
	position: absolute;
	max-width: 40px;
	line-height: 10px;
	margin-top: 10px;
	margin-left: 18px;
}

.proto_table #notering::before{
	content: "NOTES";
	font-size: 70%;
	display: block;
	z-index: 200;
	position: absolute;
	max-width: 40px;
	line-height: 10px;
	margin-left: 5px;
	margin-top: -12px;
}

.proto_table #notering{
    display: block;
	border: 1px solid #666;
	border-radius: 5px;
	background-image: url("https://service.lundberghymas.se/templates/images/radio_note.png");
	background-size: 85% auto;
	background-repeat: no-repeat;
	background-position: center;
	width: 40px;
	height: 20px;
	cursor: pointer;
	margin-top: 15px;
}
.proto_table #save{
	margin-left:5px;
    display: block;
	border: 1px solid #666;
	border-radius: 5px;
	-background-image: url("https://service.lundberghymas.se/templates/images/radio_note.png");
	background-size: 85% auto;
	background-repeat: no-repeat;
	background-position: center;
	width: 40px;
	height: 20px;
	cursor: pointer;
	margin-top: 15px;
	text-align:center;	
}
.proto_table #save,a:hover {
	text-decoration: none;
}
.proto_table #save:hover{
	background-color:lightgreen;
	text-decoration: none;
}
.proto_text, .proto_textarea{
	max-width: 450px;
	min-width: 450px;
	padding-right: 10px !important;

}

.proto_radio_yes, .proto_radio_no, .proto_checkbox{
	width: 50px;
	text-align: center;
	padding: 0;
	margin: 0;
}

.proto_textarea{
	min-width: 450px;
}

.proto_textarea textarea{
	width: 100%;
	max-width: 430px;
	margin-top: 10px !important;
}

.proto_text_beskrivning{
	font-size: 70%;
	z-index: 200;
	position: absolute;
	display: inline-block;
	margin-top: 1px !important;
	background-color: white;
	border: 1px solid #666;
	line-height: 10px;
	padding: 2px !important;
	margin-left: 4px !important;
	border-radius: 2px;
	padding-left: 5px !important;
	padding-right: 5px !important;
	font-weight: 700;
}

.produkter-table{
	border-collapse: collapse;
	border-spacing: 2px;
	font-size: 90%;
	width: 1253px;
	min-width: 100%;
}

@media all and (max-width: 950px){
	#table-mobile-scaling{
		font-size: 85%;
	}
	
	#table-mobile-scaling table{
		max-width: 86.5vw;
	}
	#table-mobile-scaling th{
		font-size: 90%;
	}
	#table-mobile-scaling td, #table-mobile-scaling th{
		max-width: 50px !important;
		width: 50px !important;
		min-width: 50px !important;
		word-break: break-all;
	}
}

.status-table{
	border-collapse:  collapse;
	border-spacing: 2px;
	font-size: 90%;
}

.status-table td{
	border: 1px solid #666;
	padding: 4px;
}
.produkter-table tr {
	vertical-align: middle;
}
.produkter-table td, .produkter-table th{
	border: 1px solid #333;
	min-width: 100px;
	background-color: whitesmoke !important;
	padding: 2px;
}

.produkter-table td:last-child{
	-border: none !important;
}
.produkter-table th{
	background-color: #666 !important;
	color: white;
	border: 1px solid #333;
	min-width: 100px;
}

.produkter-table input{
	clear: both !important;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	padding: 0;
	height: 25px;
	border: none !important;
	border-radius: 0px !important;
	background-color: whitesmoke !important;
}

.produkter-table select{
	border: none !important;
	background: whitesmoke;
	-webkit-appearance: none;
	background-image: url("https://service.lundberghymas.se/templates/images/down-arrow.png");
	background-position: right;
	background-size: auto 25%;
	background-repeat: no-repeat;
}

.produkter-table option{
	list-style:none;
	background: transparent;
	-webkit-appearance: none;
}


.kb-btn{
	margin-left: 10px !important;
	border-radius: none !important;
	border: 1px solid #666;
	margin-bottom: 5px;
}

#verkstads_group_box, #user_group_box{
	display: block;
	position: relative;
	height: 500px;
	-border: 1px solid #DEDEDE;
	margin-left: 10px;
	width: 250px;
	float: left;
	overflow: hidden;
}

#user_group_box strong, #verkstads_group_box strong{
	display: inline-block !important;
	position: relative !important;
	width: 100%;
	padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px solid #DEDEDE;
background-color: whitesmoke;
text-align: center;
}

#user_group_box table, #verkstads_group_box table{
	overflow-y: auto;
	overflow-x: hidden;
	display: block;
	position: relative;
	height: 469px;
}

.pink_button{
	background-color: pink !important;
}
.pink_button_warning {
	background-color: red !important;
}

.form_pink_button{
	background-color: pink !important;
	display: inline-block;
	padding: 8px;
	padding-left: 15px;
	padding-right: 15px;
	border: 1px solid #999;
}
.form_pink_button:hover {
	background-color: red !important;
}

.form_pink_button a{
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
	color: black;
}
.user_logins {
	width:100%;
}
.user_logins tr:hover {
	background-color:lighblue;
}

#add_new_category{
	display: inline-block;
}

#news_admin_list_container{
	border-collapse: collapse;
}

#news_admin_list_container td, #news_admin_list_container th{
	min-width: 30px;
	padding: 2px;
	padding-left: 10px;
	border: 1px solid #999;
	padding-right: 10px;
}

#news_admin_list_container th{
	background-color: lightgray;
}


#news_admin_list_container tr{
	text-align: left;
}

#news_admin_list_container tr:nth-child(odd){
	background-color: whitesmoke;
}
.total_license_box {
	background-color:lightgray;
	color:#000;
	float:left;
	margin-left:40px;
	padding:8px;
	border:1px solid #000;
	
}

.tableUserlist{
	tranform: scale(0.80) !important;
	tranform-origin: top left !important;
	font-size: 70% !important;
	margin-bottom: 20px;
}

.tableUserlist td{
	max-width: 100px !important;
	min-width: 35px !important;
	word-break: keep-all;
	white-space: pre;
	padding-left: 5px;
	padding-right: 5px;
}

.tableUserlist td:first-child{
	min-width: 100px !important;
}

.ck-editor__editable_inline {
    -min-width: 70vw;
	-min-height:60vh;
}

.news_system td:hover{
	cursor: pointer;
}

.image-style-side, #image-style-side{
float: none !important;
}

#notifications_button, .notifications_button{
width: 50px;
}