
/* 
* Mobile Menu and Other Responsive Fixes.
*
*
*/
#identity{
  border-bottom-style: solid;
  /* border-bottom: 10px; */
  margin-bottom: 10px;
  border-bottom-color: black;
}
.ig-header{
  padding: 0px;
  margin: 0px;
}
header {
    height: auto; 
    position: relative; 
    z-index:inherit;
}
nav.ig-hamburger {
 /* visibility: hidden; */
  display: none;
}

nav.ig-hamburger #toggle_mobile_menu
{
 display: block;
 position: relative;
 top: 40px;
 left: 20px;
 z-index: 5;
 -webkit-user-select: none;
 user-select: none;
}

nav.ig-hamburger #toggle_mobile_menu input
{
 display: block;
 width: 40px;
 height: 32px;
 position: absolute;
 top: -7px;
 left: -5px;
 cursor: pointer;
 opacity: 0; /* hide this */
 z-index: 10; /* and place it over the hamburger */

 -webkit-touch-callout: none;
}

nav.ig-hamburger #toggle_mobile_menu input:focus, nav.ig-hamburger #toggle_mobile_menu input:active
{
  -moz-outline-style: none;
	outline:none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/*
* Hamburger
*/
nav.ig-hamburger #toggle_mobile_menu span.bar
{
 display: block;
 width: 33px;
 height: 3px;
 margin-bottom: 5px;
 position: relative;
 background: #000000;
 border-radius: 0px;
 transform-origin: 4px 0px;
 transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
       background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
       opacity 0.55s ease;
       z-index: 10;
}

@-webkit-keyframes fadein {
  from { opacity: 0; }
  to { opacity: .6; }
}

@-moz-keyframes fadein {
  from { opacity: 0; }
  to { opacity: .6; }
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: .6; }
}


.overlay {
position: fixed;
width: 100%;
height:100%;
background:#000;
opacity: 0.6;
top:0px;
left: 0px;
z-index: 4;
display:none;
  -webkit-animation: fadein .4s linear;
  -moz-animation: fadein .4s linear;
  animation: fadein .4s linear;
}

nav.ig-hamburger #toggle_mobile_menu span.bar:first-child
{
 transform-origin: 0% 0%;
}

nav.ig-hamburger #toggle_mobile_menu span.bar:nth-last-child(2)
{
 transform-origin: 0% 100%;
}

/* 
* Transform all the slices of hamburger
* into a crossmark.
*/
nav.ig-hamburger #toggle_mobile_menu input:checked ~ span.bar
{
 opacity: 1;
 transform: rotate(45deg) translate(-0px, -2px);
 background: #232323;
 z-index: 5;
}

/*
* Hide the middle one.
*/
nav.ig-hamburger #toggle_mobile_menu input:checked ~ span:nth-last-child(3)
{
 opacity: 0;
 transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Last one should go the other direction
*/
nav.ig-hamburger #toggle_mobile_menu input:checked ~ span.bar:nth-last-child(2)
{
 transform: rotate(-45deg) translate(0, 2px);
}

  nav.ig-hamburger #toggle_mobile_menu input:checked ~  div.overlay{
    opacity: 0.5;
    display: block;
  }
/* Hamburger Menu Items */
#ig-menu
{
 position: absolute;
 width: 300px;
 margin: -100px 0 0 -50px;
 padding: 50px;
 padding-top: 120px;
 background: #F6F6F6;;
 list-style: none;
 list-style-type: none;
 -webkit-font-smoothing: antialiased;   
 transform-origin: 0% 0%;
 transform: translate(-100%, 0);
 transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
 z-index: 4;
 box-sizing: border-box;
 min-height: calc(100vh + 36px);
}

#ig-menu li
{
font-family:  "NeueHaasGroteskDispW04-55Rm" ,arial,sans-serif; 
font-size: 16px;
list-style: none;
color: #000000;
padding: none !important;
margin: none;
border-top: 1px solid #ffffff;
}
#ig-menu li:last-child{
  border-bottom: 1px solid #ffffff;
}
#ig-menu li a
{
  color: #000000;
  display:block;
  padding: 7px; 
  outline:none !important;
}

nav.ig-hamburger #toggle_mobile_menu input:checked ~ ul
{
 transform: none;
}

/* Accordian Styles */
#ig-menu .menuitem a.parent span.indicator
{
    border: solid #000000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    float:right;
    margin-top:5px;

}

#ig-menu a.parent span.indicator.right
{
    -webkit-transform: rotate(-45deg);
    -ms-transform:  rotate(-45deg);
    transform: rotate(-45deg);
}

#ig-menu a.parent span.indicator.left
{
    -webkit-transform: rotate(135deg);
    -ms-transform:  rotate(135deg);
    transform: rotate(135deg);
}

#ig-menu a.parent span.indicator.up
{
    -webkit-transform: rotate(-135deg);
    -ms-transform:  rotate(-135deg);
    transform: rotate(-135deg);
}

#ig-menu a.parent span.indicator.active,
#ig-menu a.parent span.indicator.down
{
    -webkit-transform: rotate(45deg);
    -ms-transform:  rotate(45deg);
    transform: rotate(45deg);
}

#ig-menu a {
  border-left: 3px solid #F6F6F6;;
}
#ig-menu a.active {
  border-left: 3px solid #D52B1E;
  background-color: #ffffff;
}
#ig-menu a:active, #ig-menu a:focus{
  text-decoration: none;
  border-left: 3px solid #000000;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #ffffff;
}
#ig-menu a:active + ul, #ig-menu a:focus + ul{ 
  background-color: #ffffff !important;
  margin-left: 0px;
  padding-left: 1.6em;

}
#ig-menu a:active + ul li, #ig-menu a:focus +  ul li{
  border-top: 2px solid #F6F6F6;
}
#ig-menu a:active + ul li a, #ig-menu a:focus +  ul li a{
border-left: 3px solid #ffffff;
}

    
    /*=============================================
    =            Custom 6 Column Grid            =
    =============================================*/
    .ig-container-fixed:before, .ig-container-fixed:after {
      display: table;
      content: " ";
    }
    .ig-container-fixed:after {
      clear: both;
    }

    .ig-container-fixed {
        max-width: 984px; /* for 1024 Viewport Width */
        margin: auto;
    }
   

    /*----------  Sections  ----------*/
    .ig-section:before, .ig-section:after{
      display: table;
      content: " ";
    }
    .ig-section:after{
      clear: both;
    }
    
    .ig-section {
        padding: 0px;
        margin: 0px;
    }

    
    /*----------  Column Setup  ----------*/
    
    

    .ig-col {
        display: block;
        float: left;
        margin: 1% 0 1% 0%;
        padding: 0px 20px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        line-height: 1.5em;
    }

    .ig-col:first-child {
        margin-left: 0;
    }

    
    /*----------  Column Grouping  ----------*/
    
    

    .group:before,
    .group:after {
        content: "";
        display: table;
    }

    .group:after {
        clear: both;
    }

    .group {
        zoom: 1;
        /* For IE 6/7 */
    }

    
    /*----------  6 Column Grid  ----------*/
    
    .ig-6 {
        width: 100%;
    }

    .ig-5{
        width: 83.33%;
    }

    .ig-4{
        width: 66.66%;
    }

    .ig-3 {
        width: 50%;
    }

    .ig-2{
        width: 33.33%;
    }

    .ig-1 {
        width: 16.66%;
    }
 
  /*=============================================
  =            Corona UI Compatible CSS            =
  =============================================*/
a:link, a:visited {
  color: #0088CE;
  text-decoration: none;
line-height: 1.5em;
}
a:hover{
 /* border-bottom: 2px solid #D52B1E; */
}
/* button, input[type="submit"]{ border: 1px solid; background-color: var(--primaryColor) ; color: #ffffff; padding: 5px 20px; margin: 0px 4px;} */
button, input[type="submit"]{font-weight: 500;font-size: 16px;width: 250px;border: 1px solid;background-color: var(--primaryColor);color: #ffffff;margin: 0px 4px;padding: 10px;}
button:hover, button:active, input[type="submit"]:hover, input[type="submit"]:active  {cursor:pointer; color: #000; border: 1px solid #d8dada; background-color: #ffffff;}
input[type=submit][disabled=disabled],input[type=submit]:disabled,
button[disabled=disabled], button[type=submit]:disabled {
 background-color: #d8dada; color: #000000; border: 1px solid #d8dada; cursor: not-allowed;;
}
.color-primary{
  color: var(--primaryColor);
}

.btn.primary {
    border: 1px solid var(--primaryColor);
    padding-left: 20px!important;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid;
    background-color: var(--primaryColor);
    color: #ffffff;
    margin: 0px 4px;
    padding: 10px;
    padding-right: 20px!important;  
}
.btn.primary:hover, .btn.primary:active {
  background-color: #ffffff;
  padding:  5px 15px;
  color: #000000;
  border: 1px solid #d8dada;
  padding-left: 20px!important;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid;
    margin: 0px 4px;
    padding: 10px;
    padding-right: 20px!important;
}


  /*----------  Header Area  ----------*/
  .header:before, .header:after, #main:before, #main:after {
    display: table;
    content: " ";
  }
  .header:after, #main:after {
    clear: both;
  }

  .header, #main {
    max-width: 1000px; /* for 1024 Viewport Width */ 
    margin: auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

  }
  header{
    /* padding: 0px 20px; */
    position: relative;
  }
  .fill:before, fill:after, header:before, header:after  {
    display: table;
    content: " ";
  }
  nav.ig-hamburger {
  }
  .fill{
  
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .fill > .container{
    display: table;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  .carrier_logo, .menu_top, #login{
    width: 33.33%;
  }
  .fill > .container > .col{
    display: table-cell;
    vertical-align: top;
    padding-top: 17px
  }
  .fill > .container > .col + .col{
    display: table-cell;
    vertical-align: bottom;
    text-align: right;
    padding-bottom:20px;

  }

  .carrier_logo a {
    display: block;
  }
  
  .carrier_logo a > img {
   max-width: 100%;
  }
  .model-num h3 {color:#747676;  margin-top:0px;padding-left:4px; font-weight: lighter !important; }

  /* For signin and signout buttons */

  .login,
  .logout {
      padding: 0px;
  }

  .login a:hover,
  .logout a:hover {
      text-decoration: none;
  }

  a#arrow,
  div#logout {
      float: right;
  }

  .col.login,
  .col.logout {
      text-align: left !important;
      float: right;
      padding: 0px !important;
      cursor: pointer;
      max-width: 150px;
      margin-top: 32px;
      border: 1px solid #D8dada;
      border-bottom: 2px solid #000000;
  }

  #logout,
  #login,
      {
      display: table;
      float: right;
      position: relative;
  }

  #logout a,
  #login a {
      padding: 5px;
      display: inline-block;
      color: #000000;
  }

  #login>a:first-child {
      width: 110px;
  }
  #logout>a:first-child{ width: 105px}

  #logout a:after {
      content: "";
      clear: both;
      display: table;
  }

  #logout a img {
      padding-left: 7px;
  }

  .chgpasswdmenu {
      border: 1px solid #d8dada;
      background-color: #ffffff;
      position: absolute;
      float: right;
      right: -1px;
      width: 146px;
      padding: 2px;
      z-index: 1
  }

  .chgpasswdmenu:hover:before {
      content: "";
      display: block;
      position: absolute;
      z-index: -1;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      border-left: 4px solid var(--primaryColor) 
  }

  .restartmenu {
      border: 1px solid #d8dada;
      position: absolute;
      width: 150px;
      right: -1px;
      width: 146px;
      padding: 2px;
      top: 62px;
      background-color: #ffffff;
      ;
      z-index: 1;
  }

  .restartmenu:hover:before {
      content: "";
      display: block;
      position: absolute;
      z-index: -1;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      border-left: 4px solid var(--primaryColor) 
  }

  .chgpasswdmenu a,
  .restartmenu a {
      text-decoration: none;
      display: block;
      padding: 5px;
  }

  #forgotpasswd { color: #0088CE; cursor: pointer;}
  /* End of Login & Logout */


  /*----------  Inner Content Area  ----------*/
  #main_inner,  #tabbed_page {
    padding: 0px;
    margin: 0px;
    zoom: 1; /* For IE6/7 */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
  
  #main_inner {
    display: table;
    width: 100%;
  }
  #main_inner:before, #main_inner:after, #tabbed_page:before,  #tabbed_page:after{
    display: table;
    content: " ";
  }
  #main_inner:after,  #tabbed_page:after{
    clear: both;

  }

  #tabbed_page {
    border-top: 1px solid #000000;
  }

  .stay-content{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* #about .stay-content { padding-top: 15px;} */
  .stay-content .row .col.label {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }


  /* #connected-devices .stay-content #connectedDevicesTable {
    width:100%;
   }
    #connected-devices .stay-content #connectedDevicesTable td
    {
  text-align:left;
  padding: 5px;
   }
    #connected-devices .stay-content #connectedDevicesTable th {
  padding: 5px;
  text-align:left;
   } */

  input.unblockDevice {
    margin-left: 10px;
  }

   button.plus_button {
    width: 20px;
    height: 20px;
    background-image: url(images/uniform/selector/ig-plus.png);
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: cover;
    border: 0px !important;
    padding: 0px;
}

button.minus_button {
    width: 20px;
    height: 20px;
    background-image: url(images/uniform/selector/ig-minus.png);
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: cover;
    border: 0px !important;
    padding: 0px;
}
.stay-content .clearfix:after {
    clear: both;
    content: "";
    display: block;
}

  #side_menu { /* Inner Pages Side menu */
    padding-top: 20px;
    display: table-cell;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    float: left;
    /* background-color: #ecedee; */
    max-width: 230px;

  }

  #side_menu ul li a{
    color: #000000;
    font-family: "NHaasGroteskDSW01-75Bd", sans-serif;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-weight: normal;
    display: block;
    padding: 8px 20px;
  }

.hidden {display:none;}


/*----------  Hide Select Arrow  ----------*/

select::-ms-expand {
  display: none;
}

/*----------  Side Menu Start  ----------*/
#side_menu ul.nav {
  padding:0; 
  margin:0px;
  letter-spacing:-0.3em; 
  text-align:left; 
  display: block;
  background-color: #ffffff;
}
#side_menu ul.nav li:before{
}
#side_menu ul.nav li {
  background-color: #ecedee;
  /* padding: 2px  10px 2px 20px; */
  display: block; 
  text-align: left; 
  letter-spacing:normal; 
  line-height: 1.1;
  margin: 2px 1px;
  margin-left: 4px !important;
  position:relative;
  left:-4px; /* <-- offset bottom of li by border width so it overlaps ul green border */
  border-left: 4px solid transparent;/* add border, make transparent so it doesnt 'jump' on hover */
  margin-left:-1px;
}

#side_menu ul.nav li:hover {
  border-left: 4px solid #000000;
}
#side_menu ul.nav li.active {
  border-left: 4px solid var(--primaryColor);  
  background-color: #ffffff;
}
#side_menu ul.nav li.active:hover {
  border-left: 4px solid #000000;
}

/*----------  End of Side Menu  ----------*/

body.Home {
}
body.Home .stay-content h4{padding: 0px; margin: 0px;}
body.Home #wifi input {
  border: none;
  width: 80px;
  display:block;
}
.ssid-lable, #guestrow { display:block; clear: both;}
body.Home .stay-content .col {line-height: 35px;}
body.Home #wifi .icon { margin: 0px; }
body.Home .stay-content #connectedDevicesTable tr{ border-bottom: 1px solid #d8dada;}

  #page_container { /* Inner Pages Content Area */
    display: table-cell;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 75%;
    float: right;
    padding: 0px 8px;
    
  }
  #container_inner, #container_inner #pagetabs { /* Page Tabs Area */
    margin: auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #container_inner { margin-bottom:15px}
  #pagetabs { 
 border-bottom: 2px solid #d8dada;
  }
   #pagetabs:after {
      display: table;
      content: " ";
      clear: both;
   }
      #pagetabs div {
        
      }

ul.tabs {
    margin-left:0px;
    margin-top: 6px;
    width: 100%;
    margin-bottom: 20px;
   border-bottom: 2px solid #d8dada;
   padding:0px;
   float: left;
}
  
  #pagetabs ul.alley{margin: 0px;float:left; padding: 0px;}
  #pagetabs ul.alley li, ul.tabs li{
 float: left;
 margin: 0;
 cursor: pointer;
 padding: 0px 20px 0px 0px;
 overflow: hidden;
 position: relative;
 text-align: left;
 }
   #pagetabs ul.alley li a, ul.tabs li a{ display: block; color: #000000; font-weight: bold;
    border-bottom: 4px solid transparent;
   }
  #pagetabs ul.alley li a.active, ul.tabs li.active a {
border-bottom: 4px solid var(--primaryColor)  
 }
   #pagetabs ul.alley li a:hover,  #pagetabs ul.alley li a:active, ul.tabs li a:hover, ul.tabs li.active a:active  {
border-bottom: 4px solid var(--primaryColor)  
 }
 #pagetabs ul.alley li a.active:hover,  #pagetabs ul.alley li a.active:active, ul.tabs li.active a:hover {
  border-bottom: 4px solid #000000;;
   }

  #maincontent { /* Page content Area */
    display: table;
    margin: auto;
    width:100%;
  }

 #maincontent fieldset {padding:0px;}
  #maincontent fieldset div.table {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  #maincontent fieldset div.table .row{
    max-width: 100%;
    text-align:left;
        -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 5px;
    margin-top: 5px;
  }
  /* #maincontent fieldset div.table .row:nth-child(1){margin: 10px 0px;} */
  
  #maincontent fieldset div.table .row .col {
    text-align:left;
    float:left;
  }
    #maincontent fieldset select {
      min-width:70%;
      padding-left: 15px;
  }

  select#WifiPrimarySecurity, input#WifiPrimarySsid, input#WifiPrimaryServerIP, input#WifiPrimaryPort, input#WifiGuestServerIP, input#WifiGuestPort, select#Wifi2Dot4GClients, select#WifiGuestClients  {
    width: 197px;
    box-sizing: border-box;
  }

  select#WifiGuestSecurity, input#WifiGuestSsid{
    width: 197px;
    box-sizing: border-box;
  }

  div#cbi-luci {
    margin-top:10px;
}
div#cbi-luci fieldset select{
    min-width:35%;
}
  #wifi_advanced_settings_form .input {
    width: 50%;
}
.clearfix:before, .clearfix:after {
        display: table;
      content: " ";
}
.clearfix:after{
  clear:both;
}



  fieldset#home {
    padding: 0px;
    margin: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0px;
    display: table-row;
    margin-left: 1px;

  }
  .lanky{ /* 1 of 3 Grid for Home Page */
    width: 33.33%;
    display: block;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .tiny {
    padding: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid grey;
    display: block;
    border-collapse: collapse;
    margin:-1px 0 0 -1px;
    height: 330px;
    position:relative;
  }
  /* #connected-devices { /* Right Column */
    width: 100%;
    padding: 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid grey;
    display: block;
    border-collapse: collapse;
    margin:-1px 0 -0px -1px;
    height: 659px;
    position:relative;
    overflow-y: auto;
  } */
  #identity {
    border-bottom:  4px solid #000000;

  }
  #identity h2 {margin: 6px 0px;}

  .go-icon a {
      position: absolute;
      float: right;
      bottom: 20px;
      right: 20px;
      opacity: 0.7;
      -webkit-filter: opacity(70%);
      /* Safari 6.0 - 9.0 */
      filter: opacity(70%);
      -o-transition: opacity 0.5s linear;
      -moz-transition: opacity 0.5s linear;
      -khtml-transition: opacity 0.5s linear;
      -webkit-transition: opacity 0.5s linear;
      -ms-transition: opacity 0.5s linear;
      transition: opacity 0.5s linear;
  }

  .go-icon a:hover {
      border-bottom: none;
      opacity: 1;
      -webkit-filter: opacity(100%);
      /* Safari 6.0 - 9.0 */
      filter: opacity(100%);
  }
  .ssid-lable h4 span { display:block; margin-top:10px;}

  #wifilist h3 span.on { color:black; padding-left: 10px;}
  #wifilist h3 span.off { color:black; padding-left: 10px;}
  .show_if_logged_in {
    padding-top: 7px;
  }
  
.btn.eye {
  width: 30px;
  height:19px;
  display:inline-table;
  background: url('/luci-static/resources/icons/eye.png') no-repeat;
  background-size: cover;
  background-color: white;
  
  }
  .btn.eye-slash {
  width: 30px;
  height:19px;
  display:inline-table;
  background: url('/luci-static/resources/icons/eye-slash.png') no-repeat;
  background-size: cover;
  background-color: white;
  }
/*=====  End of Home Page  ======*/


/*----------  Connected Devices Styling ----------*/

#ConnectedDevicesPrimaryTable.devicesTable{
  width: 100%;
}
#ConnectedDevicesPrimaryTable.devicesTable .deviceName{
  min-width: 250px; 
}
#ConnectedDevicesPrimaryTable.devicesTable th {  border-top: 1px solid #d8dada;}
#ConnectedDevicesPrimaryTable.devicesTable th, #ConnectedDevicesPrimaryTable.devicesTable td {
  text-align:left;
  border-bottom: 1px solid #d8dada;
  padding: 10px 20px;
  vertical-align: top;
  max-width: 350px;
}
#ConnectedDevicesPrimaryTable.devicesTable td .hostName
{
  float: left;
}
#BlockedDevicesTable{ width: 100%}
#BlockedDevicesTable th { text-align:left; padding: 8px 0px; border-top: 1px solid #d8dada; border-bottom: 1px solid #d8dada;}
#BlockedDevicesTable th:nth-child(2){display:none;}
#BlockedDevicesTable td{border-bottom: 1px solid #d8dada;padding: 10px 0px;vertical-align: top;vertical-align: inherit;line-height: 0.5;padding-top: 20px!important;}
#BlockedDevicesTable td.icon {display:none !important;}

table.devicesTable tbody tr td.interfaceType span {
  display:block;
          width: 32px; 
    height: 32px; 
}
table.devicesTable tbody tr td.interfaceType span.wifi,                                                                      
table.devicesTable tbody tr td.interfaceType span.usb,                                                                                  
table.devicesTable tbody tr td.interfaceType span.ethernet { 
    background-image: url("/luci-static/vzw/images/icons/connected_devices/icn-sprite-connected_devices_conn_types.png");
    background-repeat: no-repeat; 
}                                                                                                         
table.devicesTable tbody tr td.interfaceType span.wifi { 
    background-position: -20px -20px; 
}  
table.devicesTable tbody tr td.interfaceType span.usb { 
    background-position: -20px -101px; 
}                                            

table.devicesTable tbody tr td.interfaceType span.ethernet { 
    background-position: -20px -164px; 
}     

button.down_arrow { 
  width: 20px; 
  height: 15px; 
  background-image: url("/luci-static/vzw/images/uniform/selector/bg-dropdown_arrow.png"); 
  background-repeat: no-repeat; 
  background-color: transparent !important; 
  border: none;
}

button.up_arrow { 
  width: 20px; 
  height: 15px; 
  background-image: url("/luci-static/vzw/images/uniform/selector/bg-up_arrow.png"); 
  background-repeat: no-repeat; 
  background-color: transparent !important;
  border: none;
}
/*----------  End of Connected Devices Styles ----------*/

/*----------  USB file Sharing  ----------*/
#file_sharing_form .col.label{float:left; line-height:34px}
#file_sharing_form .col.label{float:left; line-height:34px}
#file_sharing_form .col.input-textbox {width: 30%; display:block;}
#file_sharing_form .col select, #file_sharing_form .col input{ display:block; width:84%;}
#file_sharing_form .col select {width: 100%;}
#file_sharing_form .button_container {float: right;}


/*----------  Parental Controls  ----------*/


#schedulesTable {
  width:100%;
  margin-bottom:10px;
}
#schedulesTable th{
  text-align:left;
  width:50%;
  padding: 10px 0px 10px 0px;
}
#schedulesTable td{
  text-align:left;
  padding: 4px 0px;
}

#schedulesTable thead, #devicesHeader {
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
}

#devicesHeader .col.label {
  margin-top: 10px;
  padding-bottom: inherit;
}

#addmodal-inner {}
#addmodal-inner .modal-schedulename-row label{ line-height:32px; padding-top:4px; width:150px;display: inline-block;}
#addmodal-inner .modal-schedule-description { font-weight:bold;}
#addmodal-inner textarea {width:100%; margin: 10px 0px 0px 0px}
#addmodal-inner #addmodaltable {width: 100%; margin-top:10px;}
#addmodal-inner #addmodaltable th, #addmodal-inner #addmodaltable td {text-align:center; vertical-align:top;}
 #addmodal-inner #addmodaltable td input {top:0px;}
 #addmodal-inner #addmodaltable td input {max-width:35px; padding-right:20px; border-bottom: 1px solid #000000 !important;}

 /** Backup & Restore */
 /**File Input Button  */
 form#restoreform label.btn {
  border: 1px solid #d8dada;
  padding: 5px 10px 5px 10px;
  top: 5px;
  position: relative;
  margin-left: 8px;
  /* border-bottom: 1px solid #000000; */
  cursor: pointer;
}

/*=============================================
=            Footer Area            =
=============================================*/

.footer {margin-top:20px; border-top: 1px solid #d8dada}
body.Home .footer {margin-top:0px; border:none}

#inseegoUrl{
  text-align: right;
  float:right;
}
#inseegoUrl > p {
  display: inline;
} 
#inseegoUrl:hover {
  text-align: right;
}

/*=====  End of Footer Area  ======*/

/** Hidden Pages */
body.restarting #maincontainer{ width: 100vh; height: 100vh; display: table; text-align: center; vertical-align: middle;}

/** Firewall */
#adv_firewall table td:nth-child(2) {
  white-space: nowrap;
}
#adv_firewall table { margin: 5px 0px;}
#adv_firewall table td{ padding: 4px 2px; vertical-align:middle;}
#adv_firewall div:nth-child(3)  table:nth-child(1)  td:nth-child(1) {min-width: 20px;}
#adv_firewall div:nth-child(3)  table:nth-child(1)  td:nth-child(2) {min-width: 70px;}
fieldset#firewallRulesFieldset { margin-bottom: 25px;}
#firewallRulesTable { width:100%;}
#firewallRulesTable thead th {white-space: nowrap;}
#firewallRulesTable td {    height: 60px; text-align: center;  vertical-align:top;}
#firewallRulesTable td input {    max-width: 50px; margin-bottom: 20px; padding: 5px; margin-top:-4px; cursor:pointer;}
#firewallRulesTable td select {     background-color: #fff;  cursor:pointer;}
#firewallRulesTable td p{ margin: 0px; font-size: 10px; padding: 2px; }
/* #firewallRulesTable td a{  display:block;text-align:center; background-color:black; color: white; white-space:nowrap; margin: 3px; border-radius:10px; padding: 2px 5px; cursor:pointer;} */
#firewallRulesTable td a{margin: 5px;/* display:block; *//* text-align:center; *//* background-color:black; *//* color: white; *//* white-space:nowrap; *//* margin: 3px; *//* border-radius:10px; *//* padding: 2px 5px; */cursor:pointer;color: var(--primaryColor);text-decoration: underline;float: right;}

table#macFilterTable {width: 100%;}
table#macFilterTable td,  table#macFilterTable th{ text-align:left; padding: 5px}
table#macFilterTable tr:last-child td {padding: 4px 0px;}


table#portFilertingApplicationsList {width: 100%; }
table#portFilertingApplicationsList th { padding:7px 0px;; text-align:left; }
table#portFilertingApplicationsList td h4 {margin:0px; padding:7px;} 
table#portFilertingApplicationsList td h4 label{
  font-family: /*Custom form for the UI */ "NeueHaasGroteskDispW04-55Rm",
    system-ui,
    /* macOS 10.11-10.12 */ -apple-system,
    /* Windows 6+ */ Segoe UI,
    /* Android 4+ */ Roboto,
    /* Ubuntu 10.10+ */ Ubuntu,
    /* Gnome 3+ */ Cantarell,
    /* KDE Plasma 5+ */ Noto Sans,
    /* fallback */ sans-serif,
    /* macOS emoji */ "Apple Color Emoji",
    /* Windows emoji */ "Segoe UI Emoji",
    /* Windows emoji */ "Segoe UI Symbol",
    /* Linux emoji */ "Noto Color Emoji" !important; /* 2 */;
  font-weight: normal ;
}
table#portFilertingApplicationsList td .error {
padding: 0px;
margin: 5px;
}
table#portFilteringCustomApplicationsList {width: 100%;}
table#portFilteringCustomApplicationsList th {padding: 6px 0px !important; text-align: left;}
table#portFilteringCustomApplicationsList td {vertical-align:top; padding:0px; margin:0px;}
table#portFilteringCustomApplicationsList td input {max-width: 100px;margin:0px; margin:0px; margin-bottom:5px;}
table#portFilteringCustomApplicationsList td select {background-color: #fff;}
#portFilteringCustomApplicationsList #portFilteringTable {height: inherit !important;}
#portFilteringCustomApplicationsList td.checkbox, table#portFilteringCustomApplicationsList td.portProtocol {
  padding-top: 6px;
 }

fieldset#defaultPortForwardFieldset {margin-bottom:20px;}
table#portForwardingCustomApplicationsList {width: 100%;}
table#portForwardingCustomApplicationsList th {white-space:nowrap;}
table#portForwardingCustomApplicationsList td {vertical-align:top; padding:4px; margin:0px;}
table#portForwardingCustomApplicationsList td label.invisible{height: 18px; visibility: hidden;}
table#portForwardingCustomApplicationsList td input {max-width: 90px; padding: 5px; margin:0px; margin-bottom:5px;}
table#portForwardingCustomApplicationsList td select {background-color: #fff;}

table#portForwardingCustomApplicationsList td input {max-width: 90px; padding: 5px; margin:0px; margin-bottom:5px;}
table#portForwardingCustomApplicationsList td select {background-color: #fff;}
table#portForwardingCustomApplicationsList td.checkbox, table#portForwardingCustomApplicationsList td.portMap,  table#portForwardingCustomApplicationsList td.portProtocol { padding-top:9px;}


   
   /*=============================================
   =            GPS - Styles                     =
   =============================================*/
   #gps_panel #map_status_value_holder .loading{
    padding: 8px 8px 8px 40px;
  }
   #gps_panel #map_status_value_holder{
    padding: 8px 8px 8px 40px;
  }

  #gps_panel #map_status_label_holder {
    padding: 8px 0px; margin-right: 30px;
  }
  
  #gps_panel #gps_table .row{ padding: 4px 0px; margin: 4px 0px}
  #gps_panel #gps_table .row .col {
    width: 35%;
   } 
   form#gpsWiFi #nmeaOverWifiSupportTable {

  }
  form#gpsWiFi #nmeaOverWifiSupportTable .row .col {
   width: 30%;
  } 
  form#gpsWiFi #nmeaOverWifiSupportTable .row .col .label,  form#gpsWiFi #nmeaOverWifiSupportTable .row .col .help  {
   width: 100% !important;
 } 

 form#gpsWiFi .button_container {
   text-align:right;
 }
 form#gpsRemote  .row .col{
  width: 50%;
 } 
form#gpsRemote .row .col .label{
  width: 100% !important;
} 
div#gpsServer p{
  display: inline;
  padding-left: 10px;
  font-size: 12px;
}
div#gpsServer #networkProtocol{
  min-width: 39% !important;
}


 form#gpsRemote  .row .col:nth-child(1){
 width: 30%;
} 
  form#gpsRemote  .row .col:nth-child(2){
 width: 65%;
} 
form#gpsRemote  .row .col{
 width: 50%;
} 
form#gpsRemote .row .col .label{
 width: 100% !important;
} 
form#gpsRemote  .row .col:nth-child(1){
width: 30%;
} 
form#gpsRemote  .row .col:nth-child(2){
width: 65%;
} 

form#gpsRemote #gpsReportTriggers .row .col:nth-child(1){
width: 30%;
} 
form#gpsRemote #gpsReportTriggers .row .col:nth-child(2){
width: 5%;
} 
form#gpsRemote #gpsReportTriggers .row .col:nth-child(3){
width: 30%;
} 
form#gpsRemote #gpsReportTriggers .row .col:nth-child(4){
width: 30%;
} 
form#gpsRemote #gpsReportTriggers .row .col:nth-child(4) .help{
 width: 100%
} 
form#gpsRemote #gpsReportTriggers div.input input {  margin-top: -7px;}
form#gpsRemote ul#gpsReportingOptions {
    padding: 0px;
    margin: 0px;
}

form#gpsRemote ul#gpsReportingOptions li {
    display: inline;
    margin-right: 10px;
}
form#gpsRemote #gpsReportingOptionsTaip .row .col:nth-child(1), form#gpsRemote #gpsReportingOptionsNmea .row .col:nth-child(1) {
    width: 30%;
}

form#gpsRemote #gpsReportingOptionsTaip .row .col:nth-child(2), form#gpsRemote #gpsReportingOptionsNmea .row .col:nth-child(2) {
    width: 5%;
}

form#gpsRemote #gpsReportingOptionsTaip .row .col:nth-child(3), form#gpsRemote #gpsReportingOptionsNmea .row .col:nth-child(3) {
    width: 30%;
}

form#gpsRemote #gpsReportingOptionsTaip .row .col:nth-child(3) .help, form#gpsRemote #gpsReportingOptionsNmea .row .col:nth-child(3) .help {
    width: 100%;
}
    
  

   /*=====  End of GPS - Styles           ======*/
  /** Wifi Station: Access Points Table   */
  table#AccessPointsTable {
    width: 100%;
  }

  table#AccessPointsTable tr:nth-child(odd) {
    background-color: #F6F6F6;
  }
  table#AccessPointsTable th{
    text-align: center;
  padding: 10px 5px;
  background-color: #d8dada;
  }
  table#AccessPointsTable td, table#AccessPointsTable th{
    text-align: center;
  padding: 5px;
  }
  table#AccessPointsTable td a.up{
    padding: 4px 10px;
    border-radius: 10px;
    color: white;
    background-color: #000;
  }
  table#AccessPointsTable td a.down{
    padding: 4px 10px;
    border-radius: 10px;
    color: white;
    background-color: #000;
  }

 .connectedAccessPointTbl {
    width: 100%;
 }

 .connectedAccessPointTbl th {
    font-weight:bold;
    border-top: 1px solid #d8dada;
    border-bottom: 1px solid #d8dada;
    white-space:nowrap;
 }

 .connectedAccessPointTbl td {
    border-bottom: 1px solid #d8dada;
    text-align: center;
 }

  /** Wifi Station: Scan Points Table   */
  table#ScanPointsTable {
    width: 100%;
  }

  table#ScanPointsTable tr:nth-child(odd) {
    background-color: #F6F6F6;
  }
  table#ScanPointsTable th{
    text-align: center;
  padding: 10px 5px;
  background-color: #d8dada;
  }
  table#ScanPointsTable td, table#ScanPointsTable th{
    text-align: center;
  padding: 5px;
  }

  table#AccessPointsTable td[id^="name_"] {
      max-width: 90px;
      word-wrap: break-word;
  }

  /** WAN Configuration: Points Table   */
  table#WANPriorityTable {
    width: 52%;
  }

  table#WANPriorityTable tr:nth-child(odd) {
    background-color: #F6F6F6;
  }
  table#WANPriorityTable th{
    text-align: center;
  padding: 10px 5px;
  background-color: #d8dada;
  }
  table#WANPriorityTable td, table#WANPriorityTable th{
    text-align: center;
  padding: 5px;
  }
  /* Remote Management */

  body.Remote.Management .ui-dialog-buttonset {
      text-align: center;
  }

  body.Remote.Management div#serverConfiguration .button_container {
      padding: 10px 0px;
  }

  body.Remote.Management div#serverConfiguration .button_container button:last-child {
      float: right;
  }

   body.Remote.Management span.server-pwd-show-icn {
      position: relative;
      top: 10px;
      left: -35px;
  }
/* Preferences Page Fix */
form#preferences_form .col.input {min-width: 30%;}
form#preferences_form .col.input select { display: block; width: 100% !important;}
form#preferences_form .button_container {text-align: right;}

/* Button Right Align fix */
body#connected_devices .button_container, .Advanced .button_container, #adv_lan_form .button_container, body.Manual.DNS .button_container, form#portFilteringAppsForm > .button_container, body.Port.Forwarding form > .button_container, form#wanfailover_form .button_container{ 
  text-align: right;
}
body.Network button#saveapnchanges { float: right;}
div#ResIPSection {
  background-color: #D8DADA; padding: 0px 5px;
}
div#enablePortFilteringToggle p, div#enablePortForwardingToggle p{ font-weight: normal; }

/** Corona UI Media Queries */
@media only screen and (max-width: 768px) {
    .lanky {
        width: 50%;
    }
    .lanky:last-child {
        width: 100%;
        height: 350px;
        min-height: 360px;
    }
    #page_container {width: 100%; padding: 0px 20px}

    form#adv_lan_form  .table .col.label {
      line-height: 28px;
      margin-top: 6px;
    } 
    form#adv_lan_form  .table .col {
      line-height: 28px;
    }
    /** Parental Controls - Mobile */

    table#addmodaltable td {
        white-space: nowrap;
        vertical-align: top !important;
    }

    table#addmodaltable td div {
        margin-top: 2px;
    }

    table#addmodaltable td input {
      padding-right: 0px !important;
        padding: 4px 5px  !important;
    }
    
}
/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
  body {font-size: 12px;} 
  #ig-menu li{ font-size: 12px;}
  #ig-menu li ul, #ig-menu li ul ul   { padding-left: 10px;}
    .lanky {
        width: 100% !important;
    }
    /** Wifi Mobile view */
    #wifi_advanced_settings_form  fieldset.first .input {margin-top:5px; width:70%;}
    
    #wifi_advanced_settings_form fieldset.first .col {
    }
    #wifi_advanced_settings_form fieldset.first .col .icol {
      display:inline-table;
      max-width: 100px;
          }
          #wifi_advanced_settings_form div.input .checkbox.be-away {
            margin-left: 110px;
        }
    #wifi_advanced_settings_form  .col.label.noresp {
      max-width:25%;
    }
    #wifi_advanced_settings_form  span.bandname {
      margin-right: 10px;
    }

    #wifi_advanced_settings_form fieldset.last .row{
      margin-bottom:10px;
    }
    #wifi_advanced_settings_form fieldset.last .col {

      float:none;
      width: 100%;
      margin-bottom:0px;
    }
    #wifi_advanced_settings_form fieldset.last .col input, #wifi_advanced_settings_form fieldset.last .col select {
      width:100%;
    }
    #WifiPrimarySettings .col { }
    #WifiPrimarySettings .col.input {width:100%;}
    #WifiPrimarySettings .col.input input { display:inline-block; width:75%}
    #WifiPrimarySettings .col.input select {width: 83%;}
    #wifi_primary_settings_form  .col.input.options {width: 50%;}
    #WifiGuestSettings .col {}
    #WifiGuestSettings .col.input {width:100%;}
    #WifiGuestSettings .col.input input { display:inline-block; width:75%}
    #WifiGuestSettings .col.input select {width: 83%;}


    /** Parental Controls Table */
    * Force table to not be like tables anymore */
   table#schedulesTable, #schedulesTabl thead, #schedulesTable tbody, #schedulesTable th, #schedulesTable td, #schedulesTable tr { 
     display: block; 
   }

    #schedulesTable td { display:block; 
     position: relative;
     padding-left: 30%; 
     text-align:center;
      }
        table#schedulesTable td:before { 
     /* Now like a table header */
     position: absolute;
     /* Top/left values mimic padding */
     top: 6px;
     left: 0px;
     width: 25%; 
     padding-right: 10px; 
     white-space: nowrap;
     text-align:left;
   }
     /*
   Label the data
   */
   table#schedulesTable  td:nth-of-type(1):before { content: "Schedule"; font-weight:bold; line-height:6px}
   table#schedulesTable  td:nth-of-type(2):before { content: "Action";   font-weight:bold;} 
   #schedulesTabl thead, #schedulesTable tr th, #schedulesTable th { display:none !important;}

    #file_sharing_form .col{ width: 50%;}
    #file_sharing_form .col.input-textbox {width: 45%; padding-top:6px;}

    .footer {margin-top:10px; border-top: 1px solid #d8dada; height: inherit;}
    body.Home .footer {margin-top:0px; border:none}
    .footer .ig-col{ padding: 0px; margin: 0px; text-align: center;}
    .footer .ig-col #inseegoUrl { text-align: center; float:none;}
    .footer .ig-col #powered { padding: 0px; margin-top: 0px;}

    #firewallRulesTable div:nth-child(2){ overflow-y:scroll; max-width:400px;}
    #firewallRulesTable thead th {display: none}
    #firewallRulesTable td {
      position: relative;
      display: block; 
      padding-left: 45%;
      text-align:left;
      height: inherit;
    }
    #firewallRulesTable td a{ width: 50px; float:left; }
    #firewallRulesTable td input{
      max-width: 100%;
    }
    
     #firewallRulesTable td select {
      width: 77%;
    }
     #firewallRulesTable  {
      border-collapse:separate; 
  border-spacing: 0 1em;
     }
               #firewallRulesTable  tr:nth-child(even){
          
          }

          #firewallRulesTable tr:nth-child(odd){
          background-color: #F6F6F6;
          }
     #firewallRulesTable tr td:before {
       position: absolute;
            top: 4px;
         left: 6px;
         width: 30%; line-height :16px;
         font-weight: bold;

     }
     #firewallRulesTable td:nth-of-type(1):before { content: "On"; }
     #firewallRulesTable td:nth-of-type(2):before { content: "Rule Name"; }
     #firewallRulesTable td:nth-of-type(3):before { content: "Src. IP"; }
     #firewallRulesTable td:nth-of-type(4):before { content: "Src. Port"; }
     #firewallRulesTable td:nth-of-type(5):before { content: "Dest. IP"; }
     #firewallRulesTable td:nth-of-type(6):before { content: "Dest. Port"; }
     #firewallRulesTable td:nth-of-type(7):before { content: "Protocol"; }
     #firewallRulesTable td:nth-of-type(8):before { content: "Policy"; }
     #firewallRulesTable td:nth-of-type(9):before { content: "Delete"; }
     #firewallRulesTable td:nth-of-type(10):before { content: "Move"; }

      /** Wifi Station: Access Points Table   */
      table#AccessPointsTable {
        width: 100%;
      }

      table#AccessPointsTable tr:nth-child(odd) {
        background-color: #F6F6F6;
      }

      table#AccessPointsTable th {
        display: none;
      }

      table#AccessPointsTable td {
        position: relative;
        display: block;
        padding-left: 45%;
        text-align: left;
        min-height: 26px;
      }
      table#AccessPointsTable td .slidebutton-container{
        margin-left: 0px;
      }
      table#AccessPointsTable td input{
      padding-right:0px;
      }

      table#AccessPointsTable td:before {
        position: absolute;
        top: 0px;
        left: 6px;
        width: 30%;
        line-height: 16px;
        font-weight: bold;
      }

      table#AccessPointsTable td:nth-of-type(1):before { content: "Name"; }
      table#AccessPointsTable td:nth-of-type(2):before { content: "Security"; }
      table#AccessPointsTable td:nth-of-type(3):before { content: "Enabled";}
      table#AccessPointsTable td:nth-of-type(4):before { content: "Priority"; }
      table#AccessPointsTable td:nth-of-type(5):before { content: "Edit";}
      table#AccessPointsTable td:nth-of-type(6):before { content: "Delete";}

      /* Station page: Scan Points Table */

      table#ScanPointsTable {
        width: 100%;
      }

      table#ScanPointsTable tr:nth-child(odd) {
        background-color: #F6F6F6;
      }

      table#ScanPointsTable th {
        display: none;
      }

      table#ScanPointsTable td {
        position: relative;
        display: block;
        padding-left: 45%;
        text-align: left;
        min-height: 26px;
      }
      table#ScanPointsTable td .slidebutton-container{
        margin-left: 0px;
      }
      table#ScanPointsTable td input{
      padding-right:0px;
      }

      table#ScanPointsTable td:before {
        position: absolute;
        top: 0px;
        left: 6px;
        width: 30%;
        line-height: 16px;
        font-weight: bold;
      }

      table#ScanPointsTable td:nth-of-type(1):before { content: "Name"; }
      table#ScanPointsTable td:nth-of-type(2):before { content: "Security"; }
      table#ScanPointsTable td:nth-of-type(3):before { content: "Add";}

      /* WAN Configuration table */

      table#WANPriorityTable {
        width: 100%;
      }

      table#WANPriorityTable tr:nth-child(odd) {
        background-color: #F6F6F6;
      }

      table#WANPriorityTable th {
        display: none;
      }

      table#WANPriorityTable td {
        position: relative;
        display: block;
        padding-left: 45%;
        text-align: left;
        min-height: 26px;
      }
      table#WANPriorityTable td .slidebutton-container{
        margin-left: 0px;
      }
      table#WANPriorityTable td input{
      padding-right:0px;
      }

      table#WANPriorityTable td:before {
        position: absolute;
        top: 0px;
        left: 6px;
        width: 30%;
        line-height: 16px;
        font-weight: bold;
      }

      table#WANPriorityTable td:nth-of-type(1):before { content: "Priority"; }
      table#WANPriorityTable td:nth-of-type(2):before { content: "Description"; }

        /** MAC Fiter  */

      table#macFilterTable {
          width: 100%;
      }

      table#macFilterTable tr:nth-child(odd) {
          background-color: #d8dada;
      }

      table#macFilterTable th {
          display: none;
      }

      table#macFilterTable td {
          position: relative;
          display: block;
          padding-left: 45%;
          text-align: left;
          min-height: 26px;
      }
      table#macFilterTable td input{
        padding-right:0px;
          }

      table#macFilterTable td:before {
          position: absolute;
          top: 0px;
          left: 6px;
          width: 30%;
          line-height: 16px;
          font-weight: bold;
      }

      table#macFilterTable td:nth-of-type(1):before {
          content: "Name";
      }

      table#macFilterTable td:nth-of-type(2):before {
          content: "MAC Address";
      }

      table#macFilterTable td:nth-of-type(3):before {
          content: "Status";
      }

      table#macFilterTable td:nth-of-type(4):before {
          content: "MAC Address Filter";
      }

      table#macFilterTable td:nth-of-type(5):before {
          content: "Delete";
      }

      table#macFilterTable tr:last-child td:before {
          display: none;
          content: "";
      }

      table#macFilterTable tr:last-child td {
          padding-left: 0px;
          text-align: center;
      }

      table#macFilterTable tr:last-child td button {
          margin: 0px;
      }
      table#macFilterTable tr:last-child {background-color:#ffffff;}
      table#macFilterTable tr:last-child {background-color:#ffffff;}

              
        /** Port Fiter  */

        table#portFilteringCustomApplicationsList {
          width: 100%;
        }

        table#portFilteringCustomApplicationsList tr:nth-child(odd) {
          background-color: #F6F6F6;
        }

        table#portFilteringCustomApplicationsList th {
          display: none;
        }

        table#portFilteringCustomApplicationsList td {
          position: relative;
          display: block;
          padding-left: 45%;
          text-align: left;
          min-height: 26px;
        }
        table#portFilteringCustomApplicationsList td input{
        padding-right:0px;
          }

        table#portFilteringCustomApplicationsList td:before {
          position: absolute;
          top: 0px;
          left: 6px;
          width: 30%;
          line-height: 16px;
          font-weight: bold;
        }

        table#portFilteringCustomApplicationsList td:nth-of-type(1):before {
          content: "On";
        }

        table#portFilteringCustomApplicationsList td:nth-of-type(2):before {
          content: "Application Name";
        }

        table#portFilteringCustomApplicationsList td:nth-of-type(3):before {
          content: "Start Port";
        }

        table#portFilteringCustomApplicationsList td:nth-of-type(4):before {
          content: "End Port";
        }

        table#portFilteringCustomApplicationsList td:nth-of-type(5):before {
          content: "Protocol";
        }

        table#portFilteringCustomApplicationsList td:nth-of-type(6):before {
          content: "Delete";
        }
      
        /** Port Forwarding  */

        table#portForwardingCustomApplicationsList {
          width: 100%;
        }

        table#portForwardingCustomApplicationsList tr:nth-child(odd) {
          background-color: #F6F6F6;
        }

        table#portForwardingCustomApplicationsList th {
          display: none;
        }

        table#portForwardingCustomApplicationsList td {
          position: relative;
          display: block;
          padding-left: 45%;
          text-align: left;
          min-height: 26px;
        }
        
        table#portForwardingCustomApplicationsList td label {
          display: none;
        }

        table#portForwardingCustomApplicationsList td input {
            padding-right: 0px;
            max-width: 100%;
        }


        table#portForwardingCustomApplicationsList td:before {
            position: absolute;
            top: 0px;
            left: 6px;
            width: 30%;
            line-height: 16px;
            font-weight: bold;
        }

        table#portForwardingCustomApplicationsList td:nth-of-type(1):before {
          content: "On";
        }

        table#portForwardingCustomApplicationsList td:nth-of-type(2):before {
          content: "Application Name";
        }

        table#portForwardingCustomApplicationsList td:nth-of-type(3):before {
          content: "Ip Address";
        }

        table#portForwardingCustomApplicationsList td:nth-of-type(4):before {
          content: "Port Type";
        }

        table#portForwardingCustomApplicationsList td:nth-of-type(5):before {
          content: "Port Numbers From";
        }

        table#portForwardingCustomApplicationsList td:nth-of-type(6):before {
          content: "Port Numbers To ";
        }
		
        table#portForwardingCustomApplicationsList td:nth-of-type(7):before {
          content: "Protocol ";
        }
		
        table#portForwardingCustomApplicationsList td:nth-of-type(8):before {
          content: "Delete ";
        }
        .footer img {
          margin-bottom: 5px;
          display: block;
          margin: auto;
        }
        /* GPS */
        div#gps_table .row .col{ width: 60% !important; display: block;}
        div#nmeaOverWifiSupportTable .col {  width: 100% !important; display:block; float: none;}
        div#nmeaOverWifiSupportTable .col .label { padding: 5px 0px; margin: 0px; margin-top: 5px;}

        div#gpsReportTriggers .col {  width: 100% !important; display:block; float: none;}
        div#gpsReportTriggers .col .label { padding: 5px 0px; margin: 0px; margin-top: 5px;}
        div#gpsReportTriggers .col {  width: 100% !important; display:block; float: none;}
        div#gpsReportTriggers .col .input { margin: 5px 0px;}   
              
        div#gpsReportingOptionsNmea .help {  margin-left: 10px;  width: 200px !important; }   
        div#gps_table > .row > .col{ width: 100% !important;}
        div#gps_table > .row > .col > .row .col{ width: 50% !important; display:inline-block;}
        /* Change Password - Alignment */
        #adminmodal-inner .row.clearfix .col {
          width: 100%;
          margin: 0px;
        }

        #adminmodal-inner .row.clearfix .col input,
        .row.clearfix .col select {
          width: 100%;
          box-sizing: border-box;
          margin-bottom: 4px;
        }

        #adminmodal-inner .row.clearfix {
          margin-bottom: 15px;
        }

        #adminmodal-inner .row.clearfix .col.label.bold {
          box-sizing: border-box;
          padding-bottom: 0px;
        }

        #adminmodal-inner .row.clearfix .col .subline {
          padding: 5px 0px;
        }
        /* GPS Style - Mobile */
        #nmeaOverWifiSupportTable {
          box-sizing: border-box;
          display: table;
          width: 100%;
        }

        #nmeaOverWifiSupportTable>.row>.col {
          max-width: 50%;
          display: inline;
        }

        #nmeaOverWifiSupportTable .row .col.label {
          max-width: 50%;
          display: inline-block;
          float: left;
        }

        #nmeaOverWifiSupportTable .row>.col.label {
          padding: 4px 0px;
        }

        #nmeaOverWifiSupportTable .row>.col.label {
          margin-bottom: 0px;
          margin-top: 5px;
        }

        #nmeaOverWifiSupportTable .row .col~.col.input {
          padding-top: 4px;
          box-sizing: border-box;
          display: inline-block;
        }

        #nmeaOverWifiSupportTable .row .col~.col.input input {
          width: 100%;
          display: inline-block;
          box-sizing: border-box !important;
        }

        #nmeaOverWifiSupportTable #EthernetSection {
          border: 1px solid #d8d8d8;
          margin: 0px;
          padding: 10px;
        }

        .noblock,
        #nmeaOverWifiSupportTable .row {
          box-sizing: border-box;
        }

        .noblock>.row>.col {
          max-width: 40%;
        }

        .noblock div#gpsReportingOptions {
          display: inline-block;
          float: left;
          width: 50%;
        }

        .noblock div#gpsReportingOptions>.col {
          width: 50% !important;
          box-sizing: border-box;
          padding-top: 4px;
        }

        .noblock div#gpsLocalReportingOptionsNmea .row,
        .noblock div#gpsLocalReportingOptionsTaip .row {
          box-sizing: border-box;
          margin: 10px 0px !important;
        }

        .noblock div#gpsLocalReportingOptionsNmea .row>.col.label,
        .noblock div#gpsLocalReportingOptionsTaip .row>.col.label {
          display: none;
          visibility: hidden;
        }

        .noblock div#gpsLocalReportingOptionsNmea .row>.input,
        .noblock div#gpsLocalReportingOptionsTaip .row>.input {
          width: 80% !important;
        }

        .noblock div#gpsLocalReportingOptionsNmea .row>.label+.input,
        .noblock div#gpsLocalReportingOptionsTaip .row>.label+.input {
          width: 10% !important;
        }
        .row.inlinerow  .col.label { margin: 0px; display: inline !important;}
        .row.inlinerow  .col.input { padding-top:  4px ;  display: table-cell !important;}

        form#debuglogsform .cbi-value-title{ height: inherit;}
}

/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {

}

/*=====  End of Corona UI Compatible CSS  ======*/



 
/* 
* Media Queries For Mobile [ Non-Mobile First ]
* [ Standardizing and Restructuring All CSS to Meet Design Standards ]
* Date:   2018-09-19
* Rev: 
*/

    /* Medium Devices, Desktops */
        @media only screen and (max-width: 1024px) {}

    /* Small Devices, Tablets */

    @media only screen and (max-width: 768px) {
        body div.ig-header nav.ig-hamburger {
            display: block;
            float: left;
        }
        header {
            padding-left: 70px;
            position: relative;
        }
        .model-num h3 {
            font-size: 14px;
            font-weight: normal;
            margin-top: inherit;
            position: relative;
        }
        #side_menu {
            display: none;
        }
        /* Logout HIDE for Mobile Screens */
        #login,
        #logout,
        #menu_chgpasswd,
        #menu_restart {
            display: none;
        }
        .lanky {
            width: 100%;
        }
        .lanky:last-child {
            width: 100%;
            height: 350px;
            min-height: 360px;
        }
        #full-frame{
          height: 2000px;
        }
        /* #connected-devices {
            max-height: 350px;
        } */
        /* #connected-devices .stay-content {
            overflow-y: auto;
            max-height: 240px;
        } */
    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 480px) {
      body div.ig-header nav.ig-hamburger {display: block; float:left;}
      header { padding-left: 70px; position:relative;}
      .model-num h3 {font-size:14px; font-weight: normal; margin-top: inherit; position: relative; }
      #side_menu {display: none;}

         /* Logout HIDE for Mobile Screens */
         #login, #logout, #menu_chgpasswd, #menu_restart {display: none;}

         /** 6 Column Grid Responsive Utility */
         .ig-col {
          margin: 1% 0 1% 0%;
          }
          .ig-1,
          .ig-2,
          .ig-3,
          .ig-4,
          .ig-5,
          .ig-6, .lanky {
              width: 100% !important;
          }
          #ConnectedDevicesPrimaryTable.devicesTable .deviceName {
            min-width: 160px;
        }
    }

    /* Custom, iPhone Retina */ 
    @media only screen and (max-width : 320px) {
      body div.ig-header nav.ig-hamburger { display: block;  float:left;}
      header { padding-left: 70px; position:relative;}
      .model-num h3 {font-size:12px; font-weight: normal; margin-top: inherit; position: relative; }
      #side_menu {display: none;}
      
         /* Logout HIDE for Mobile Screens */
         #login, #logout, #menu_chgpasswd, #menu_restart {display: none;}
      form#preferences_form .col.input {min-width: 60%;}
    }

    .ui-dialog {
        top: 15% !important;
	position: fixed;
     }

    @media only screen and (max-width: 425px) {
	.col.menu-top {
    	    margin-left: -65px;
            margin-top: -45px;
        }
    }
   
    a.contentlink {
        text-decoration: underline;
    }

    input#saveWatchdogChanges {
        float: right;
    }
    .modal{
      z-index: 1000!important;
    }
    @media only screen and (max-width: 768px) {
      .modal-content{
        width: 90%!important;
      }
    }
    @media only screen and (max-width: 375px) {
      .ui-dialog-buttonset button, .ui-dialog-buttonset input[type="submit"] {
        width: 110px!important;
      }
      .ui-dialog-buttonpane {
        padding-top: 0px;     
      }
    }    .modal{
      z-index: 1000!important;
    }
    @media only screen and (max-width: 768px) {
      .modal-content{
        width: 90%!important;
      }
    }
    @media only screen and (max-width: 375px) {
      .ui-dialog-buttonset button, .ui-dialog-buttonset input[type="submit"] {
        width: 110px!important;
      }
      .ui-dialog-buttonpane {
        padding-top: 0px;     
      }
    }