body
{
    background-image: url("/Content/Images/background.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

.btnPeripheral {
    margin: 0px !important;
    padding: 0px !important;
    display: inline-block;
    width: 120px;
    height: 120px;
    text-align: center;
    transition-duration: 0.1s;
    cursor: pointer !important;
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }

  .btnPeripheral:hover {
    background-color: #0000000a !important;
    border: 1px solid lightgray !important;
  }

  .btnBoard {
    margin: 0px !important;
    padding: 0px !important;
    display: inline-block;
    width: 180px;
    height: 180px;
    text-align: center;
    transition-duration: 0.1s;
    cursor: pointer !important;
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }

  .btnBoard:hover {
    background-color: #0000000a !important;
    border: 1px solid lightgray !important;
  }

  .btnBoard_Selected {
    margin: 0px !important;
    padding: 0px !important;
    display: inline-block;
    width: 180px;
    height: 180px;
    text-align: center;
    transition-duration: 0.1s;
    cursor: pointer !important;
    border: 2px solid gray !important;
    border-radius: 0 !important;
    background-color: #00000010 !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
  }



  .icon_container {
    height:100%;
    width:auto;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}





  .cnc_peripheral_thumbnail_table
{
    border-style: solid;
    border-color: #8ba2bf;
    border-width: 2px;
    margin: 3px;
    border-collapse: collapse !important;
}

.cnc_peripheral_thumbnail_table :hover
{
    cursor: pointer;
    background-color: rgb(245, 244, 217);
    color: rgb(156, 145, 45);
}

table.cnc_peripheral_thumbnail_table tr td
{
  padding-left: 10px;
  padding-right: 10px;
  border-width: 0;
}

table.cnc_peripheral_thumbnail_table tr td:nth-child(1)
{
  padding-left: 20px;
  padding-right: 10px;
  white-space: nowrap;
  width: 1%;
}

table.cnc_peripheral_thumbnail_table tr:first-child td:first-child
{
    padding-left: 10px;
}

.cnc_peripheral_thumbnail_row_title
{
    background-color: #e0e7f0;
    color: #646464;
}

tr.cnc_peripheral_thumbnail_row_title td:nth-child(1)
{
    font-weight: bold;
    font-size: 1.1em;
}

tr.cnc_peripheral_thumbnail_row_title td:nth-child(2)
{
    font-size: 0.8em;
}

.cnc_peripheral_thumbnail_row_pin
{
    background-color: aliceblue;
    color: rgb(0, 179, 179);
}

tr.cnc_peripheral_thumbnail_row_pin td:nth-child(3)
{
    font-weight: bold;
    color: rgb(0, 196, 196);
}

.cnc_peripheral_thumbnail_row_property
{
    background-color: rgb(231, 241, 231);
    color: #009708;
}

tr.cnc_peripheral_thumbnail_row_property td:nth-child(3)
{
    font-size: 0.8em;
    color: #00b109;
}

.cnc_peripheral_thumbnail_table_property_details
{
    font-size: 0.9em;
}

tr.cnc_peripheral_thumbnail_row_setting
{
    background-color: rgb(240, 240, 255);
    color: #94728e;
    font-size: 0.9em;
}

tr.cnc_peripheral_thumbnail_row_setting td:nth-child(3)
{
    color: #b486ac;
    font-size: 0.9em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
}

.btnConfigProperty {
  width: 32px;
  height: 32px;
  text-align: center;
  transition-duration: 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  background-image: url('/Content/Images/icons/icon_gear.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}


.btnConfigProperty:hover {
  background-image: url('/Content/Images/icons/icon_gear_over.png');
}

.btnDeletePeripheral {
  width: 32px;
  height: 32px;
  text-align: center;
  transition-duration: 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  background-image: url('/Content/Images/icons/icon_cross32.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}


.btnDeletePeripheral:hover {
  background-image: url('/Content/Images/icons/icon_cross32_over.png');
}

.btnScriptProperty {
  width: 32px;
  height: 32px;
  text-align: center;
  transition-duration: 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  background-image: url('/Content/Images/icons/icon_script_copy.png');
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}


.btnScriptProperty:hover {
  background-image: url('/Content/Images/icons/icon_script_copy_over.png');
}




/* UI CheckboxImage */
/* The container */
.checkbox_image_container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 22px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.checkbox_image_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* On mouse-over */
.checkbox_image_container:hover input ~ .checkbox_image_span {
  border-color: rgb(255, 194, 62);
}
/* When the checkbox is checked */
.checkbox_image_container input:checked ~ .checkbox_image_span_unchecked {
  visibility: collapse;
}
.checkbox_image_container input:checked ~ .checkbox_image_span_checked {
  visibility: visible;
}
/* Create a custom checkbox */
.checkbox_image_span_unchecked {
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  /* background-image: url('unchecked_image'); */
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  /* border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent; */
}
.checkbox_image_span_checked {
  visibility: collapse;
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  /* background-image: url('checked_image'); */
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  /* border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent; */
}






.textboxScript {
    background-image: linear-gradient(#f7f7f7, white);
    border: 2px solid #aebccc;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.0em;
    font-weight: bold;
    color: #8ba2bf;
    width: 100%;
    height: 100%;
    min-height:10em;
  }


  .textboxEditValue {
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-color: transparent !important;
    border-style: solid !important;
    border-width: 2px !important;
    border-color: transparent !important;
    border-radius: 5px !important;
    margin: 2px !important;
    padding: 4px 30px 4px 10px !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    width: auto !important;
  }

/* Remove the default dropdown arrow button */
select.textboxEditValue {
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  appearance:none;
}


.textboxEditValue:hover {
  background-image: url('/Content/Images/icons/edit.png');
  border-color:rgb(143, 143, 143);
}

.textboxEditValue:focus {
border-style: solid !important;
border-width: 2px !important;
border-color:rgb(143, 143, 143) !important;
border-radius: 5px !important;
  background-image: url('/Content/Images/icons/edit.png');
  background-image: linear-gradient(#c2c2c2, white);
}





.btnDeletePeripheral {
    width: 32px !important;
    height: 32px !important;
    text-align: center !important;
    transition-duration: 0.2s !important;
    display: inline-block !important;
    cursor: pointer !important;
    border: none !important;
    background-image: url('/Content/Images/icons/icon_cross32.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: transparent !important;
  }


  .btnDeletePeripheral:hover {
    background-image: url('/Content/Images/icons/icon_cross32_over.png') !important;
  }

  .btnDeleteProject {
    background-color: red !important;
  }




  .links_table
  {
  }

  .links_table a:link, .links_table a:visited
  {
    text-decoration: none;
  }


  table.links_table tr td
  {
    padding: 0.5em, 1em;
  }

  /* table.links_table tr td :hover
  {
    background-color: rgb(230, 230, 230);
  } */

  table.links_table tr:nth-child(odd)
  {
    background-color: rgb(244, 244, 244);
  }







  .collapsible {
    background-image: linear-gradient(#eaeaea, #fdfdfd);
    color: #7b7b7b;
    cursor: pointer;
    padding: 1em;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1em;
  }

  .collapsibleActive, .collapsible:hover {
    background-color: #555;
    color: #5b5b5b;
  }

  .collapsibleContent {
    padding: 0 1em;
    padding-bottom: 2em;
    display: none;
    overflow: hidden;
    /* background-color: #f1f1f1; */
  }

  
  
  .buttonRound
  {
    border-radius:50%;
  }

  .buttonImageHighlight
  {
    /* padding:0.5em; */
  }

  .buttonImageHighlight:hover
  {
    filter: saturate(120%) brightness(120%);
  }

  /* .imageButtonGray:hover
  {
    filter: saturate(0%) brightness(60%);
  } */

  /* .imageButtonInvert:hover
  {
    background-color: black;
    filter: brightness(2) saturate(0);
  } */

