@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700');

body {
    font-family: 'Montserrat', sans-serif !important;
    padding-bottom: 20px;
    background-color: #f9f9f9 !important;
}

@media (max-width: 767px) {
    h1, h2 {
        font-size: 1.4em;
    }
}

img {
    width: 100%;
}

.mx-2 {
    margin-left: 2em;
    margin-right: 2em;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.ss-row {
    background: #fff;
    color: #444;
    padding: 0.4em 0;
    border-bottom: solid 1px rgba(0,0,0,0.1);
}

.bullet-remove {
    list-style: none;
}

.Aligner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos-rel {
    position: relative;
}

.ml-1 {
    margin-left: 1em;
}

.mr-1 {
    margin-right: 1em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.my-1 {
    margin: 1em 0;
}

.my-2 {
    margin: 2em 0;
}

.py-1 {
    padding: 1em 0;
}

.py-2 {
    padding: 2em 0;
}

@media (max-width: 768px) {
    .ml-1 {
        margin-left: 0;
    }

    .mr-1 {
        margin-right: 0;
    }

    .Aligner {
        display: block;
        align-items: center;
        justify-content: center;
    }
}

.clearfix {
    clear: both;
}

/* ----- Bootstrap Override -----*/

h2, .h2 {
    margin-top: 40px;
}

address {
    margin-bottom: 15px;
}

.nav-pills > li > a {
    background: #f0f0f0;
}

.glyphicon {
    font-size: 0.85em;
}

.nav > li > a > img {
    max-height: 1em;
    max-width: 1em;
    margin-right: 0.8em;
}

.nav-stacked li .nav-stacked li a {
    background: #333;
    background: #777;
    color: #fff;
    font-style: italic;
    font-size: 0.9em;
    letter-spacing: 1px;
    padding-left: 1.5em;
    border-top: solid 1px #999;
}

.nav-stacked li .nav-stacked>li+li {
    margin-top: 0;
}

button {
    padding: 9px 16px !important;
}

#map button {
    padding: 0px !important;
}

.btn-lg {
    border: none;
    border-radius: 0;
}

.btn-default {
    background-color: #999;
    color: #fff;
}

    .btn-default:hover {
        background-color: #333;
        color: #fff;
        text-decoration: none;
    }

.btn-primary:hover {
    text-decoration: none;
}

.form-control {
    border-radius: 0;
}

.nav-pills > li > a {
    border-radius: 0;
}


/* ----- Login ----- */

.login-box {
    max-width: 40em;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    padding: 4em;
    border: solid 1px #ddd;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
    .login-box {
        /* max-width: 40em; */
        position: relative;
        left: 0;
        background: none;
        border: none;
        transform: none;
    }
}


/* ----- Registration ----- */

.registration__selection {
    margin: 3em 0;
}

@media (max-width: 1200px) {
    .registration__selection .col-lg-4{
        width: 50%;
    }
}

   .registration__selection .registration__block {
        padding: 3em 1em;
        border: solid 1px #ddd;
        transition: all 0.5s;
        height: 100%;
        text-align: center;
    }

.registration__block:hover {
    background: #f0f0f0;
    transition: all 0.5s;
}

.registration__selection .registration__block h2 {
    font-size: 1.2em;
}

.registration__selection img {
    max-height: 10em;
    padding: 1em;
}


/* ----- Nav Bar ----- */

#header {
    background: #fff;
    color: #222;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.2);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.2);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.2);
}

    #header img {
        padding: 1.5em 0;
    }

@media (min-width: 768px) {
    .navbar-header {
        float: none;
    }
}



/* ----- Slide Menu ----- */

.slide-menu-open .glyphicon {
    font-size: 1.5em;
}

.menu-close .glyphicon {
    font-size: 1.5em;
    color: #fff;
    padding: 1em 0;
}

.side-menu-wrapper { /* style menu wrapper */
    overflow: hidden;
    background: rgba(0,0,0,.95);
    position: fixed; /* Fixed position */
    top: 0;
    left: -290px; /* Sidebar initial position. "right" for right positioned menu */
    height: 100%;
    z-index: 2;
    transition: 0.5s; /* CSS transition speed */
    width: 250px;
}

    .side-menu-wrapper.admin {
        left: 0px; /* Sidebar initial position. admin menu is always visible */
        z-index: 0;
        top:auto;
        padding-top:15px;
        
        position:absolute;
        
    }

    .side-menu-wrapper > ul { /* css ul list style */
        padding: 0 1em;
        list-style: none;
        margin: 0;
        overflow-y: auto; /* enable scroll for menu items */
        height: 95%;
    }

        .side-menu-wrapper > ul > li > a { /* links */
            display: block;
            border-bottom: 1px solid #131313;
            padding: 6px 4px 6px 4px;
            color: #989898;
            transition: 0.3s;
            text-decoration: none;
            font-weight: 600;
        }

    .side-menu-wrapper > a.menu-close { /* close button */
        color: #6B6B6B;
        display: block;
        text-decoration: none;
    }

.menu-close {
    padding: 0 0 0 1em;
}

    .menu-close img {
        width: 15%;
    }

.side-menu-overlay { /* overlay */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity 1s;
}

.side-menu-wrapper > ul li:last-child {
    background: #333;
    color: #fff;
    margin: 2em 0;
    text-align: center;
}

.user {
    text-align: center;
    font-size: 1.1em;
    font-style: italic;
    color: #eee;
    margin: 0 0 2em 0;
}

    .user img {
        max-width: 5em;
    }



/* ----- Dashboard ----- */

.mydashboard strong {
    font-size: 1.5em;
}

.mydashboard__block .col-xs-12 img {
    max-height: 6em;
}

.mydashboard__block span {
    font-size: 0.8em;
}

.body-content .col-sm-6:nth-child(2n + 1) {
    clear: both;
}

.ss-box {
    border: solid 1px #ddd;
    font-size: 1em;
    color: #333;
    background: #eee;
    padding: 1em;
    margin: 0.5em 0;
}

.login-sub {
    color: #222;
    padding: 2em 0;
    font-size: 1.4em;
    font-weight: bold;
}

.login-message {
    padding: 2em 0;
    font-size: 1.4em;
    font-weight: bold;
}

@media (max-width: 767px) {

    .mydashboard__block .col-xs-12 {
        margin: 0.6em 0;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .mydashboard__block {
        text-align: center;
    }

        .mydashboard__block .col-xs-3 img {
            margin: 1em;
        }
}
/* ----- Tabs to Accordion ----- */

.tabs ul {
    margin: 0;
    padding: 0 0 1em 0;
    font-weight: bold;
}

    .tabs ul li {
        background: #eee;
    }

        .tabs ul li a {
            padding: 1em;
            background: #fff;
            font-size: 1em;
            color: #444;
        }

            .tabs ul li a:hover {
                background: #eee;
                text-decoration: none;
            }

            .tabs ul li a.active {
                text-decoration: none;
                background: #eee;
            }

            .tabs ul li a::before {
                display: inline-block;
                content: ' ';
                background-image: url('../images/house-location.svg');
                background-size: 29px 17px;
                width: 29px;
                height: 17px;
                margin-right: 0.5em;
            }

.item {
    margin-bottom: 2px;
}

    .item::before {
        cursor: pointer;
        font-weight: bold;
        background: #eee;
        padding: 0.5em;
        display: block;
    }

    .item.active::before {
        background: #444;
        color: #eee;
    }

    .item.active .item-content {
        padding: 1em;
        -webkit-transition: opacity 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out;
        display: inline-block;
        position: relative;
        width: 100%;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
        border-radius: 3px;
        color: rgba(0, 0, 0, 0.87);
        background: #fff;
    }

@media all and (min-width: 800px) {
    .item.active .item-content {
        padding-top: 0;
    }

    .tabs-side .tabs li {
        border-bottom: solid 1px #ddd;
    }
}

.tabbed-content {
    margin: 1em 0;
}

    .tabbed-content .tabs {
        display: none;
    }

    .tabbed-content .item {
        min-height: 2em;
    }

        .tabbed-content .item::before {
            content: attr(data-title);
        }

        .tabbed-content .item .item-content {
            opacity: 0;
            visibility: hidden;
            height: 0;
        }

        .tabbed-content .item.active .item-content {
            opacity: 1;
            visibility: visible;
            height: auto;
            padding: 2em;
        }

@media all and (min-width: 800px) {
    .tabbed-content .tabs {
        display: block;
    }

        .tabbed-content .tabs li {
            display: inline-block;
        }

            .tabbed-content .tabs li a {
                display: block;
            }

    .tabbed-content .item {
        min-height: 0;
    }

        .tabbed-content .item::before {
            display: none;
        }

    .tabbed-content.tabs-side .tabs {
        float: left;
        width: 100%;
    }

        .tabbed-content.tabs-side .tabs li {
            display: block;
        }

    .tabbed-content.tabs-side .item {
        position: absolute;
        width: 100%;
        height: 0;
    }
}


/* ----- Inputs ----- */

/*input {
  width: 100%;
  padding: 0.6em;
  margin-bottom: 0.5em;
  border: solid 2px #ddd;
}

input::placeholder {
  color: #000;
}*/

/* ----- Buttons ----- */

.btn {
    font-weight: bold;
    text-shadow: 0 2px 0 rgba(0,0,0,0.1);
}


button:disabled {
    background: #ddd;
}

    button:disabled:hover {
        cursor: not-allowed;
    }

.btn-primary:disabled:hover {
    background: #ddd;
}


/* ----- Alerts ----- */

/* ----- Alerts | Main Colours ----- */
.a-bg-location-error {
    border: solid 2px #f55a4e;
    color: #333;
    background: #fff;
}

.a-bg-location-warning {
    border: solid 2px #ffa21a;
    color: #333;
    background: #fff;
}

.a-bg-location-good {
    border: solid 2px #5cb860;
    color: #333;
    background: #fff;
}

.a-bg-location-uninitialized {
    border: solid 2px #999;
    color: #333;
    background: #fff;
}

.a-bg-error {
    background: #f55a4e !important;
    color: #fff;
}

.a-bg-warning {
    background: #ffa21a !important;
    color: #fff
}

.a-bg-good {
    background: #5cb860 !important;
    color: #fff
}

.a-bg-offline {
    border: solid 2px #999;
    color: #333;
    background: #eee;
}

.a-bg-uninitialized {
    border: solid 2px #999;
    color: #333;
    background: #fff;
}

.body-content .col-md-9 .col-sm-6:nth-child(2n + 1) {
    clear: both;
}

.device-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px
}

    .device-alert h4 {
        margin-top: 0;
        color: inherit
    }

    .device-alert .alert-link {
        font-weight: bold
    }

    .device-alert > p, .device-alert > ul {
        margin-bottom: 0
    }

        .device-alert > p + p {
            margin-top: 5px
        }

.device-alert--edit {
    position: absolute;
    top: 5px;
    right: 20px;
}

.location--edit {
    position: absolute;
    top: 8px;
    right: 8px;
}

.calendar--green {
    background: #5cb860;
}

.calendar--yellow {
    background: #ffa21a;
}

    .calendar--green, .calendar--yellow img {
        padding: 1em;
    }

.alert-dismissable {
    padding-right: 35px
}

    .alert-dismissable .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

    .alert-success hr {
        border-top-color: #c9e2b3
    }

    .alert-success .alert-link {
        color: #2b542c
    }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

    .alert-info hr {
        border-top-color: #a6e1ec
    }

    .alert-info .alert-link {
        color: #245269
    }

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

    .alert-warning hr {
        border-top-color: #f7e1b5
    }

    .alert-warning .alert-link {
        color: #66512c
    }

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

    .alert-danger hr {
        border-top-color: #e4b9c0
    }

    .alert-danger .alert-link {
        color: #843534
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

.device-alert.alert-with-icon {
    padding-left: 65px;
}

.device-alert.alert-info {
    background-color: #00d3ee;
    color: #ffffff;
    border-radius: 3px;
    /*box-shadow: 0 12px 20px -10px rgba(0, 188, 212, 0.28), 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(0, 188, 212, 0.2);*/
}

.alert-info, .a-error, .a-warning, .a-good, .a-add {
    /*color: #ffffff;*/
}

.device-alert.a-bg-uninitialized {
    /*border: solid 1px #eaeaea;*/
    background: #fff;
}

.device-alert {
    border-radius: 0;
    position: relative;
    padding: 20px 15px;
    line-height: 20px;
}

    .device-alert .col-xs-3 {
        text-align: center;
    }

        .device-alert .col-xs-3 img {
            max-width: 4em;
        }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.device-alert {
    padding: 2em 1em;
    margin-bottom: 20px;
}


    .device-alert.a-add {
        background-color: #555;
        color: #ffffff;
        /*box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.28), 0 4px 20px 0px rgba(0, 0, 0, 0.12), 0 7px 8px -5px rgba(0, 0, 0, 0.2);*/
    }

.warning-message {
    font-style: italic;
    font-size: 1.2em;
    display: inline-block;
}

.device-name {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 0.9em;
    display: inline-block;
    width: 100%;
}


/* ----- Device Page ----- */

.device-sub-menu {
    background: #8dc63f;
    padding: 1em 0;
    color: #fff;
}

.sub-menu-left img {
    width: 1.2em;
    float: left;
}

.sub-menu-right img {
    float: right;
    margin: 0 0.2em;
    width: 1.2em;
}

.device-brand {
    margin: 2em auto 0 auto;
}

.device-brand img {
    max-width: 20em;
}

.device-heading {
    font-size: 1.5em;
    font-weight: 700;
    padding: 1em 0 0.5em 0;
    text-align: center;
    border-bottom: solid 1px #eee;
}

.device-alert-boxes {
    padding: 3em 0;
}

.delete__device {
    border: solid 2px #ddd;
    background: #fff;
    padding: 1em 0 2em 0;
}

@media (max-width: 767px) {
    .device-alert-boxes .col-sm-12 .col-xs-12 {
        padding: 0;
    }
}

/* ----- Device Alerts ----- */

.dynamic-number {
    font-size: 4.5em;
    font-weight: 700;
    line-height: 0.8em;
}

    .dynamic-number span {
        font-size: 0.5em;
        display: inline-block;
    }

.device-name-row {
    line-height: 3em;
    font-size: 1.2em;
    vertical-align: middle;
}

.device-desc-row {
    line-height: 1.8em;
    font-size: 1em;
    vertical-align: middle;
}

/* -- Device Alert Text Position --*/

.centered-66 {
    position: absolute;
    top: 66%;
    left: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 3em;
    font-weight: 700;
    line-height: 0.8em;
}

.centered-60-40 {
    position: absolute;
    top: 61%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 3em;
    font-weight: 700;
    line-height: 0.8em;
}

.centered-calendar {
    position: absolute;
    top: 72%;
    left: 29%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 3em;
    font-weight: 700;
    line-height: 0.8em;
}

.left-centered {
    position: absolute;
    top: 62%;
    left: 31%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    font-size: 3em;
    font-weight: 700;
    line-height: 0.8em;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .centered-66, .centered-60-40, .centered-calendar, .left-centered {
        font-size:3.25em;
    }
}

@media (max-width: 576px) {
}

@media (max-width: 480px) {
}

@media (max-width: 375px) {
    .centered-66, .centered-60-40, .centered-calendar, .left-centered {
        font-size:2.35em;
    }
}

@media (max-width: 320px) {
    .centered-66, .centered-60-40, .centered-calendar, .left-centered {
        font-size:2em;
    }
}

.status-icon {
    max-width: 1em;
    position: relative;
    top: -0.1em;
    left: 0.3em;
}

.status__chart .contain {
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
}

.device__status__message .Aligner {
    margin-top: 1em
}

.device__view {
    background: #fff;
    border: solid 1px #ddd;
    padding: 3em;
}

.status__message {
    font-size: 1.2em;
    padding: 1em;
    font-style: italic;
    font-weight: bold;
}

    .status__message img {
        max-width: 6em;
    }


.status__uninitialized_message {
    font-size: 1.2em;
}

    .status__uninitialized_message p {
        padding: 1em 0;
        font-style: italic;
    }

    .status__uninitialized_message img {
        max-width: 6em;
    }


.status__block {
    padding: 1em;
    font-size: 1em;
    text-align: center;
}

    .status__block img {
        max-width: 8em;
    }

.system-status-row {
    background: #eee;
    padding: 0.6em;
    color: #333;
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 700;
    border-left: solid 1px #ddd;
    border-top: solid 1px #ddd;
    border-right: solid 1px #ddd;
}

.status-heading {
    text-align: center;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px
}

.status-subheading {
    text-align: center;
    font-size: 0.8em;
}


@media (max-width: 767px) {
    .device__status__message .Aligner {
        display: block;
    }
}


.map-container {
    position: relative;
}

.map {
    height: 0; 
    overflow: hidden;
    padding-bottom: 70%;
    position: relative;
    
}

/* System Status Chart */

#header .contain {
    display: flex;
    align-items: center;
}

.contain {
    display: flex;
    align-items: center;
}

.system-status {
    padding: 0.8em 0;
}

.vl, .vm, .vr {
    float: left;
}

@media (max-width: 767px) {
    .contain {
        display: block;
        align-items: center;
    }

    .status__chart img {
        max-width: 6em;
    }

    .status__chart .contain {
        text-align: center;
        padding: 1em 0;
    }
}

.modal,
.modal-box {
    z-index: 900;
}

.modal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0,0,0);
    background: rgba(0,0,0,.8);
    overflow: auto;
}

.modal-box {
    position: relative;
    width: 80%;
    max-width: 920px;
    margin: 100px auto;
    animation-name: modalbox;
    animation-duration: .3s;
    animation-timing-function: ease-out;
}

.modal-header {
    padding: 20px 40px;
    background: #546E7A;
    color: #ffffff;
}

.modal-body {
    background: #ECEFF1;
    padding: 60px 40px;
}

/* Close Button */
.close-modal {
    text-align: right;
    cursor: pointer;
}


/* Checkmark */

.checkmark .glyphicon {
    font-size: 2em;
    margin: 1em 0;
}

/* Animation */
@-webkit-keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

select option[disabled] {
    display: none;
}

/* FAQ Support Page */

.panel-group .panel-heading {
    background: #fafafa;
    border-bottom: solid 2px #ddd;
}

.panel-group .panel {
    border: none;
    margin-bottom: 1em;
}

/* Reporting Page */

.OEMreporting #accordionMenu {
    max-width: 300px;
}

.OEMreporting .panel-body {
    padding: 0;
}

.OEMreporting .panel-group .panel + .panel {
    margin-top: 0;
    border-top: 0;
}

.OEMreporting .panel-group .panel {
    border-radius: 0;
}

.OEMreporting .panel-default > .panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .OEMreporting .panel-default > .panel-heading a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
    }

        .OEMreporting .panel-default > .panel-heading a:after {
            content: "";
            position: relative;
            top: 1px;
            display: inline-block;
            font-family: 'Glyphicons Halflings';
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            float: right;
            transition: transform .25s linear;
            -webkit-transition: -webkit-transform .25s linear;
        }

        .OEMreporting .panel-default > .panel-heading a[aria-expanded="true"] {
            background-color: #eee;
        }

            .OEMreporting .panel-default > .panel-heading a[aria-expanded="true"]:after {
                content: "\e113";
            }

        .OEMreporting .panel-default > .panel-heading a[aria-expanded="false"]:after {
            content: "\e114";
        }

.reporting-table table {
    font-size: 12px;
}

/* removed 19-01-07BH - custom dynamic links using text-primary and text-danger were coming out invisible...*/
/*.reporting-table table a {
  color: #fff;
}*/

#panel1 {
    display: block;
    width: 100%;
}

#panel2 {
    display: block;
    width: 100%;
}


table.dataTable thead th {
    border-bottom: solid 2px #ddd !important;
}

table.dataTable tfoot td {
    border-top: solid 2px #ddd !important;
}


/* Privacy Policy Page */

.Privacy ul li {
    margin-bottom: 0.6em;
}

.Privacy ol li {
    margin-bottom: 0.6em;
}

#divCustomCheckboxes span {
    padding-left: 4px;
}

/* Override oneui capitalizing datatables column heads */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr {
    text-transform: none;
}

/* Remove sort indicators for datatables */
.dataTable > thead > tr > th[class="sorting"]:after {
    content: " " !important;
    background-image: none;
}

.table > thead:first-child > tr:first-child > th, table.dataTable thead .sorting {
    content: " " !important;
    background-image: none;
}



/* Terms & Conditions */

.terms__box {
    max-height: 30em;
    overflow: hidden;
    border: solid 1px #ddd;
    overscroll-behavior-y: auto;
    overflow-y: scroll;
    padding: 0 3em 2em 3em;
}