html {
    height: 100%;
}

body {
    height: 100%;
    table-layout: fixed;
}

#main {
    min-height: 80%;
}

#page {
    height: 100%;
}

.body-wrapper {
    padding: 3rem;
}

button > * {
    pointer-events: none;
}

/* Override css reset's label styles  */
.normal-label-font {
  font-weight: normal;
}

h2 {
    border-bottom: none;
}

.help-h2 {
  color:inherit;
  font-size: 1.4rem;
}

.end {
  align-items: end;
  justify-content: end;
}

.no-underline {
  border: none;
}

.layout-bg {
    background: #98B4D4;
}

/* Start override oceancolor styles */
ul > li::before {
  content: unset;
  padding-right: unset;
  font-size: unset;
  color: unset;
}
/* End override oceancolor styles */

/* start font sizes */
.small-font {
    font-size: 0.8rem;
}
/* end font sizes */

.checkbox-font {
    color: #495057;
    font-size: 0.9rem;
}
/* start back button */
.back-btn > i {
  color:#6c757d;
}

.back-btn:hover > i {
  color: #5a6268;
}
/* end back button */

.content {
    display: flex;
}

.main-pg {
    width: 100%;
}

table.dataTable {
  border-radius: 4px;
}

table.dataTable tbody td {
    vertical-align: middle;
}

/* Toggle switch Start */
.form-switch {
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 0;
  }
  
  .form-switch i {
    position: relative;
    display: inline-block;
    margin: 0 .5rem;
    width: 46px;
    height: 26px;
    background-color: #e6e6e6;
    border-radius: 23px;
    vertical-align: middle;
    transition: all 0.3s linear;
  }
  
  /* .form-switch i:focus + label:before {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
  } */
  
  .form-switch i::before {
    content: "";
    position: absolute;
    left: 0;
    width: 42px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
    transition: all 0.25s linear;
  }
  
  .form-switch i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
    transform: translate3d(2px, 2px, 0);
    transition: all 0.2s ease-in-out;
  }
  
  .form-switch:active i::after {
    width: 28px;
    transform: translate3d(2px, 2px, 0);
  }
  
  .form-switch:active input:checked + i::after {
    transform: translate3d(16px, 2px, 0);
  }
  
  .form-switch input {
    opacity: 0;
  }
  
  .form-switch input:checked + i {
    background-color: #4BD763;
  }
  
  .form-switch input:checked + i::before {
    transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
  }
  
  .form-switch input:checked + i::after {
    transform: translate3d(22px, 2px, 0);
  }
  /* Toggle switch End */

  .h2-override {
    border-bottom: none;
    margin-bottom: 0;
  }

  .h5-override {
    color: #212529;
  }

  .no-data-placeholder {
    text-align: center;
  }

  .noscript-alert {
    color: #721c24;
    background-color: #f8d7da;
    border: 3px solid #ffa0aa;
    border-radius: 6px;
    margin: 2rem 0;
    padding: 1rem;
    text-align: center;
  }

.cust-flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

/* media queries start */
@media screen and (max-width:767px) {
    .body-wrapper {
        padding: 0.2rem;
    }
}
/* Media queries end */
