* {
    box-sizing: border-box;
  }
  
/* Float four columns side by side */

.column {
    float: left;
    width: 440px;
    padding: 0 10px;
    margin-bottom: 10px;
    margin-right: 8px;
}
  
/* Remove extra left and right margins, due to padding */

.row {margin: 0 -5px;}
  
/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

.dev-table {
  width: 400px;
  height: 400px;
}

.dev-table td{
  width: 60px;
  /*height: 60px;*/
}

.dev-icon  {
  width: 35px;
  height: 35px;
}
.dev-icon-info  {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.dev-icon-card  {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.dev-icon1  {
  width: 30px;
  height: 30px;
}

.dev-icon-settings  {
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-top: 12px;
  margin-left: 20px;
}

.dev-content {
  width: 100%;
  border-color:#f1f1f1;
  border-width: 2px;
  border-style: solid;
  margin-top: 1px;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 25px;
  border-radius: 6px;
}

.card-title{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  height: 0px;
}

.pill-nav a {
  display: inline-block;
  /*NKR height: 54px;*/
  /*background-color: #f1f1f1;*/
  color: #333;
  text-align: center;
  padding-left: 5px; /*NKR 14px;*/
  padding-right: 5px; /*NKR 14px;*/
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 0px;
}

.pill-nav a:hover {
  background-color: var(--secondary);
  color: black;
}

.pill-nav a.active {
  background-color: var(--main_100);
  color: white;
}

.hidden-cell {
  display: none !important;
}
.disabled {
  opacity: 0.4;
  pointer-events: none;
}
  
/* Responsive columns */

@media screen and (max-width: 2400px) {
  .column {
    width: 440px;
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1980px) {
  .column {
    width: 440px;
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1520px) {
    .column {
      width: 440px;
      display: block;
      margin-bottom: 10px;
    }
}

@media screen and (max-width: 1180px) {
    .column {
      width: 440px;
      display: block;
      margin-bottom: 10px;
    }
}

@media screen and (max-width: 780px) {
    .column {
      width: 440px;
      display: block;
      margin-bottom: 10px;
    }
}

/*

@media screen and (max-width: 330px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
}

*/

/* Style the counter cards */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 420px;
    text-align: center;
    background-color: var(--background);
    border-radius: 20px;
    height: 420px;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 20px;
  width:500px;
}

/* Styles for the overlay background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.fieldContainer {
  display: flex;
  flex-wrap: wrap;
}

label {
  margin-right: 10px;
}

input[name=alert] {
  margin-bottom: 10px;
  margin-left: 15px;
  width: 230px;
}
input[name=value] {
  margin-bottom: 10px;
  margin-left: 10px;
  width: 170px;
}


/*NKR*/
th span,
td span { 
	display: block;
	width: 100%;
}
th span.sort-by { 
	padding-right: 18px;
	position: relative;
}
span.sort-by:before,
span.sort-by:after {
	border: 4px solid transparent;
	content: "";
	display: block;
	height: 0;
	right: 5px;
	top: 55%;
	position: absolute;
	width: 0;
}
span.sort-by:before {
	border-bottom-color:#edf2f7;
	margin-top: -12px;
}
span.sort-by:after {
	border-top-color: #edf2f7;
	margin-top: 1px;
}

span.sort-by2:before {
	border-bottom-color: var(--error);
	margin-top: -12px;
}
span.sort-by3:after {
	border-top-color: var(--error);
	margin-top: 1px;
}


.card_dots {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--disabled_border);
  display: inline-block;
}
.card_dots_spacer {
  width: 4px;
  height: 8px;
  display: inline-block;
}

.sidebar {
  height: 100vh;
  width: 50px;
  background-color: var(--main_10);
  margin-top: 40px;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-left: 5px;
  padding-top:10px;
}

.sidebar img {
  padding: 5px;
  color: #fff;
  display: block;
  transition: 0.3s;
  margin-bottom:10px;
}

.sidebar a:hover {
  background-color: var(--main_30);
}

.sidebar a.active {
  background-color: white;
  display: inline-block;
  margin-left: -10px;
  width:120%;
  height:50px;
}

.sidebar a.active img{
  margin-left: 10px;
  margin-top: 5px;
}