.btn-link{
  border:none;
  outline:none;
  background:none;
  cursor:pointer;
  color: var(--primary-color);
  padding:0;
  font-family:inherit;
  font-size:inherit;
}

.btn-link{
  border:none;
}



@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../iconfont/MaterialIcons-Regular.woff2) format("woff2"), url(../iconfont/MaterialIcons-Regular.woff) format("woff"), url(../iconfont/MaterialIcons-Regular.ttf) format("truetype"); }
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga'; }

/** checkbox **/
.containers {
  display: block;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
  font-weight: 500; }

/* Hide the browser's default checkbox */
.containers input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  float: left; }

/* Create a custom checkbox */
.containers .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  float: left;
  border-radius: 50%;
  border: 1px solid #3C9B34; }

/* On mouse-over, add a grey background color */
.containers:hover input ~ .checkmark {
  background-color: #fff; }

/* When the checkbox is checked, add a blue background */
.containers input:checked ~ .checkmark {
  background-color: #3C9B34; }

/* Create the checkmark/indicator (hidden when not checked) */
.containers .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.containers input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.containers .checkmark:after {
  left: 3px;
  top: 0px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

/* Customize the label (the container) */
.containerss {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 10px; }

/* Hide the browser's default radio button */
.containerss input {
  position: absolute;
  opacity: 0; }

/* Create a custom radio button */
.containerss .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #3C9B34;
  margin-top: 13px; }

/* On mouse-over, add a grey background color */
.containerss:hover input ~ .checkmark {
  background-color: #fff; }

/* When the radio button is checked, add a blue background */
.containerss input:checked ~ .checkmark {
  background-color: #fff; }

/* Create the indicator (the dot/circle - hidden when not checked) */
.containerss .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the indicator (dot/circle) when checked */
.containerss input:checked ~ .checkmark:after {
  display: block; }

/* Style the indicator (dot/circle) */
.containerss .checkmark:after {
  top: 3px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3C9B34; }

:root {
  --primary-color: #406bb3;
  --fc: #45526b;
  --fs1: 14px;
  --fs2: 16px;
  --fs3: 17px;
  --pure-white: #fff; }

.floater {
  color: #45526b;
  color: var(--fc);
  font-size: var(--13px);
  text-align: center;
  position: fixed;
  bottom: 20px; }

body, html {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #45526b;
  color: var(--fc);
  overflow-x: hidden; }

a {
  text-decoration: none;
  color: #406bb3;
  color: var(--primary-color);
  font-size: 14px;
  font-size: var(--fs1); }

.form-control {
  border: 1px solid #ebebf2;
  box-shadow: none;
  font-size: 14px;
  font-size: var(--fs1);
  color: rgba(0, 0, 0, 0.29);
  height: 50px;
  -webkit-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px; }
  .form-control:focus {
    box-shadow: none;
    border: 1px solid #406bb3; }
  .form-control::placeholder {
    /* color: #ebebf2;  */
    color:#b1bac8;
    font-size: 14px;}

label {
  font-size: 14px;
  font-size: var(--fs1);
  color: #222;
  padding-top: 25px; }

button, .btn {
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  color: var(--pure-white);
  font-size: 14px;
  font-size: var(--fs1);
  padding: 13px 16px;
  background: #406bb3;
  background: var(--primary-color);
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }
  button:hover, .btn:hover {
    opacity: 0.8;
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out; }

.wrapper {
  padding: 0;
  margin: 0; }
  .wrapper .rowWrapper {
    padding: 0;
    margin: 0; }

.menu {
  height: 100%;
  position: fixed;
  background: #406bb3;
  background: var(--primary-color);
  z-index: 20;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }
  .menu.double {
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out; }
    .menu.double .logo {
      display: none; }
    .menu.double ul.list-group a li {
      text-align: center; }
      .menu.double ul.list-group a li i {
        width: 100%;
        -webkit-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
      .menu.double ul.list-group a li span {
        display: none; }
  .menu .logo {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #a6a8ab;
    height: 70px; }
    .menu .logo img {
      height: 100%; }
  .menu ul.list-group {
    margin-top: 40px;
    padding-left: 10px;
    padding-right: 10px; }
    .menu ul.list-group .more {
      cursor: pointer; }
      .menu ul.list-group .more li {
        color: #fff;
        background: transparent;
        border: none;
        height: 50px;
        padding-top: 15px;
        margin-bottom: 10px;
        overflow: hidden; }
        .menu ul.list-group .more li i {
          font-size: 15px;
          margin-top: 3px;
          float: left;
          margin-right: 16px;
          color: #fff;
          width: 15px;
          -webkit-transition: all 0.5s ease-out;
          -ms-transition: all 0.5s ease-out;
          transition: all 0.5s ease-out; }
        .menu ul.list-group .more li:hover {
          background: #0f3471; }
        .menu ul.list-group .more li.active {
          background: #0f3471; }
      .menu ul.list-group .more.dropped .dropped-ul {
        display: block; }
      .menu ul.list-group .more .dropped-ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        display: none; }
        .menu ul.list-group .more .dropped-ul li {
          width: 100%;
          height: 50px;
          font-size: 14px;
          box-sizing: border-box;
          padding: 10px; }
          .menu ul.list-group .more .dropped-ul li:hover {
            background: transparent; }
          .menu ul.list-group .more .dropped-ul li a {
            color: #fff; }
    .menu ul.list-group a {
      text-decoration: none; }
      .menu ul.list-group a li {
        color: #fff;
        background: transparent;
        border: none;
        height: 50px;
        padding-top: 15px;
        margin-bottom: 10px;
        overflow: hidden; }
        .menu ul.list-group a li i {
          font-size: 15px;
          margin-top: 3px;
          float: left;
          margin-right: 16px;
          color: #fff;
          width: 15px;
          -webkit-transition: all 0.5s ease-out;
          -ms-transition: all 0.5s ease-out;
          transition: all 0.5s ease-out; }
        .menu ul.list-group a li:hover {
          background: #0f3471; }
        .menu ul.list-group a li.active {
          background: #0f3471; }

.mishtab2 {
  background: #fff;
  background: var(--pure-white);
  z-index: 2;
  height: 70px; }
  .mishtab2 ul li {
    margin-left: 20px; }
    .mishtab2 ul li span.spot {
      width: 8px;
      height: 8px;
      background: red;
      -webkit-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%;
      position: absolute;
      margin-left: 20px;
      margin-top: 5px; }
    .mishtab2 ul li a {
      color: #45526b;
      color: var(--fc); }
    .mishtab2 ul li img {
      square: var(--40px);
      -webkit-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%; }

.mainBody {
  padding: 0px;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }
  .mainBody .miniHead {
    margin-top: 50px;
    background: #f5f5f5;
    padding-top: 20px; }
    .mainBody .miniHead h2 {
      font-size: 24px; }
    .mainBody .miniHead ul {
      list-style-type: none;
      float: left;
      width: 100%; }
      .mainBody .miniHead ul li {
        float: left;
        margin-right: 30px;
        font-size: 13px;
        padding-top: 7px; }
        .mainBody .miniHead ul li a {
          color: #9b9b9b; }
          .mainBody .miniHead ul li a i {
            font-size: 20px;
            float: left;
            margin-right: 7px; }

.hostRow {
  margin-top: 70px;
  padding: 15px; }

.enough {
  overflow-x: auto;
  margin-top: 20px;
  width: 100%;
  background: #fff;
  background: var(--pure-white);
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 3px 6px 0 rgba(216, 216, 216, 0.5); }
  .enough table thead {
    border: none; }
    .enough table thead tr {
      border: none; }
    .enough table thead th {
      color: #b8c3d4;
      font-size: 12px;
      font-weight: normal;
      border: none; }
  .enough table tbody tr {
    border-bottom: 1px solid #eee; }
    .enough table tbody tr td {
      font-size: 14px; }
      .enough table tbody tr td span {
        padding: 7px 15px; }

ul.pagination li {
  height: 30px;
  width: 30px;
  margin-right: 6px; }
  ul.pagination li a {
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 12px;
    box-sizing: border-box;
    background: #eee;
    padding-left: 10px;
    color: #406bb3;
    color: var(--primary-color);
    border: 1px solid transparent;
    -webkit-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px; }
  ul.pagination li:hover a {
    background: #406bb3;
    background: var(--primary-color);
    color: #fff;
    color: var(--pure-white);
    border: none; }
  ul.pagination li.active a {
    background: #406bb3;
    background: var(--primary-color);
    color: #fff;
    color: var(--pure-white);
    border: none; }

.rook {
  color: #45526b;
  font-size: 18px;
  width: 100%; }

.wright {
  background: #fff;
  background: var(--pure-white);
  box-shadow: 0 2px 4px 0 rgba(216, 216, 216, 0.6);
  padding: 13px 17px;
  color: #45526b;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }
  .wright:hover {
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    box-shadow: 0 15px 30px 0 rgba(216, 216, 216, 0.9); }
  .wright h6 {
    font-size: 17px; }
  .wright h4 {
    font-size: 32px;
    margin-bottom: 15px; }
  .wright span {
    padding: 7px;
    box-shadow: 0 1px 4px 0 rgba(89, 193, 115, 0.3);
    min-width: 60px;
    text-align: center;
    -webkit-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px; }
  .wright p {
    font-size: 14px;
    margin: 0; }
    .wright p.lead {
      color: #d8d8d8; }
  .wright i {
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #d8d8d8;
    color: #d8d8d8;
    padding: 10px;
    text-align: center;
    height: 36px;
    width: 36px; }

.secondary {
  flex-direction: row;
  margin-top: 20px;
  border-bottom: 1px solid #d8d8d8; }
  .secondary a {
    width: auto;
    background: transparent;
    color: #45526b;
    border: none; }
    .secondary a.active {
      background: transparent;
      border-bottom: 2px solid #406bb3;
      color: #45526b; }

.prim {
  flex-direction: row;
  margin-top: 20px; }
  .prim a {
    width: auto;
    background: transparent;
    color: #45526b;
    border: none;
    margin-right: 15px;
    -webkit-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: auto;
    padding: 7px 18px; }
    .prim a.active {
      background: #406bb3;
      color: #fff; }
    .prim a:hover {
      background: #406bb3;
      color: #fff; }

.brown {
  background: #495868;
  color: #fff;
  color: var(--pure-white);
  padding: 10px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  margin-top: 15px; }
  .brown:hover {
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    box-shadow: 3px 3px 4px 0 rgba(153, 153, 153, 0.5); }
  .brown h6 {
    font-size: 14px;
    margin-bottom: 17px; }
  .brown i {
    color: #606d7b;
    font-size: 12px;
    cursor: pointer; }
  .brown img {
    height: 30px;
    width: 30px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; }
  .brown p {
    font-size: 10px;
    margin: 0; }
    .brown p.date {
      font-size: 8px;
      color: #bac3ca; }
  .brown button {
    background: #606d7b;
    font-size: 8px;
    padding: 7px; }

/*# sourceMappingURL=main.css.map */


/* dont forget to delete this when you have the new screen for gopd */
.regTab {
  padding: 0;
  margin-top:20px;
}
.regTab .list-group {
  flex-direction: row;
}
.regTab .list-group.miniHead {
  padding: 0;
}
.regTab .list-group a {
  background: transparent;
  width: auto;
  margin-left: 20px;
  border: none;
  text-transform: uppercase;
}
.regTab .list-group a.active {
  color: #406bb3;
  color: var(--primary-color);
  border-bottom: 2px solid #406bb3;
  font-weight: 600;
}
.regTab .tab-content {
  padding: 30px;
}
.regTab .tab-content h3 {
  font-size: 18px;
}
.regTab .tab-content .profile img {
  height: 50px;
  width: 50px;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 10px;
}
.regTab .tab-content .profile p {
  padding: 0;
  margin: 0;
  margin-bottom: 7px;
}
.regTab .tab-content .miniHead {
  padding-top: 10px;
  padding-bottom: 10px;
}
.regTab .tab-content .miniHead i {
  color: #3c9b34;
  color: var(--primary-color);
  margin-right: 10px;
}
.regTab .tab-content .left {
  color: #333;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}
.regTab .tab-content .right {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 10px;
}
.regTab .tab-content table {
  margin-top: 20px;
  width: 100%;
}
.regTab .tab-content table thead {
  background: #ebebf2;
}