html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

body>iframe[style*="2147483647"]:not([id="webpack-dev-server-client-overlay"]) {
    display: none;
}

a {
    outline: 0;
}

/** ===============================================
    ================== NAVIGATION =================
    =============================================== */

.navbar-nav {
    width: 100%;
}

/* .nav-link {
    margin: 0;
    padding: 0;
} */

.nav-link {
    color: #8d348d;
}
.nav-link:hover {
    color: #8d348d;
}

.navbar-nav a {
    color: #8d348d;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
}

.navbar-nav a:hover:not(.logo-item):not(.dropdown-item):not(.selected) {
    border: 1px solid #8d348d5e;
    border-radius: 3px;
    background-color: #8d348d17;
    text-decoration: none;
}

.navbar-nav a:not(.logo-item).selected {
    border: 1px solid #8d348d;
    border-radius: 3px;
    background-color: #8d348d17;
    text-decoration: none;
    cursor: default;
}

.dropdown-item i {
    margin-right: 0.5em;
}

.container-fluid a.nav-item {
    color: #692069;
}

/** ===============================================
    ============= MULTI-LVL DROPDOWN ==============
    =============================================== */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    /* left: 100%; */
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/** ===============================================
    ==================== TABLES ===================
    =============================================== */

table {
    border-top: 1px solid grey;
    border-bottom: 1px solid rgb(216, 216, 216);
}

table input[type="text"] {
    max-width: 200px;
}

table select {
    min-width: 150px;
}

@media screen and (max-width: 500px) {
    table select {
        max-width: 100px;
    }
}

table i:not(.static) {
    opacity: .8;
}

table i:not(.static):hover {
    opacity: 1;
    cursor: pointer;
}

i[disabled] {
    opacity: .5;
}

i[disabled]:hover {
    opacity: .5;
    cursor: default;
}

td i[disabled] {
    opacity: .5;
}

td i[disabled]:hover {
    opacity: .5;
    cursor: default;
}

/** ===============================================
    ==================== ICONS ====================
    =============================================== */

.icon-big {
    font-size: 1.5em;
    padding: .2em;
}

.icon-huge {
    font-size: 2.25em;
    padding-top: .2em;
    padding-bottom: .2em;
    margin: 0;
}

.icon-small {
    font-size: 1em;
    padding: .2em;
}

.graph-icon {
    font-size: 3em;
    padding: 0em;
}

.icon-giant {
    font-size: 8em;
    padding: 0em;
}

/** ===============================================
    ==================== COLORS ===================
    =============================================== */

.bg-custom-blue {
    background-color: #006da0;
}

.no-bg {
    background-color: transparent;
}

.bg-light-grey {
    background-color: rgb(218, 218, 218);
}

.bg-faded {
    background-color: rgb(243, 243, 243);
}

.bg-custom-green {
    background-color: #3ba048;
}

.switch-bg-blue:checked~.custom-control-label::before {
    color: #fff;
    border-color: #8d358d;
    background-color: #8d358d;
}

.switch-bg-green:checked~.custom-control-label::before {
    color: #fff;
    border-color: #3ba048;
    background-color: #3ba048;
}

.text-blue {
    color: #8d358d;
}

.sel-bg-success {
    background-color: rgb(130, 235, 130)!important;
}

.sel-bg-alm-success {
    background-color: rgba(130, 235, 130, 0.486)!important;
}

.sel-bg-alert {
    background-color: rgba(255, 251, 0, 0.747)!important;
}

.sel-bg-warning {
    background-color: rgba(255, 145, 0, 0.726)!important;
}

.sel-bg-danger {
    background-color: rgb(250, 161, 161)!important;
}

.light-card {
    border: 1px solid rgb(219, 219, 219);
    background-color: rgb(247, 247, 247);
}

.blue-border {
    border: 2px solid #8d358d;
    border-radius: 3px;
}

.green-border {
    border: 2px solid #3ba048;
    border-radius: 3px;
}

/** ===============================================
    ==================== SIZES ====================
    =============================================== */

.miw-80 {
    min-width: 80px;
}

.mw-200 {
    max-width: 200px;
}

.mw-600 {
    max-width: 600px;
}

.mh-200 {
    height: 200px;
}

.max-height-200 {
    max-height: 200px;
}

.min-height-200 {
    min-height: 200px;
}

.scale-half {
    transform: scale(.9);
}

.img-big {
    height: 100%;
    width: 100%;
}

.h-c-50 {
    height: 40px;
    line-height: 20px;
    vertical-align: middle;
}

.h-120 {
    height: 120px;
}

.h-20 {
    height: 20px;
}

.h-40 {
    height: 40px;
}

.h-150 {
    height: 150px;
}

.h-80 {
    height: 80px;
}

.lh-80 {
    height: 80px;
    vertical-align: middle;
}

.h-200 {
    height: 200px;
}

.h-400 {
    height: 400px;
}

.mt-30 {
    margin-top: 20px;
}

.w-150 {
    width: 200px;
}

.mt-10 {
    margin-top: 10px;
}

/** ===============================================
    ============ ALIGNMENT / POSITION =============
    =============================================== */

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .vertical-center {
        display: block;
        clear: both;
    }
}

.relative {
    position: relative;
}

/** ===============================================
    ==================== MISC =====================
    =============================================== */

.custom-control {
    text-align: center;
}

.custom-control label:hover {
    cursor: pointer;
}

.breadcrumbs {
    color: white;
    font-size: 20px;
    padding: 10px;
    background-color: rgb(187, 197, 207);
    border: none;
    margin-bottom: 20px;
}

.iconed-btn {
    display: inline-block;
    height: 40px;
    vertical-align: middle;
    padding-right: 10px;
    text-decoration: none;
    margin-top: .3em;
    margin-bottom: 1em;
}

.iconed-btn:hover {
    opacity: 1;
}

.iconed-btn p {
    display: inline-block;
    margin: 0;
    margin-left: 5px;
    padding: 0;
    line-height: 33px;
    text-decoration: none;
    vertical-align: top;
}

a.nostyle-a {
    text-decoration: none;
    color: black;
}

.hoverable {
    opacity: .8;
}

.hoverable:hover {
    opacity: 1;
}

.clickable:hover {
    cursor: pointer;
}

.clickable *:hover {
    cursor: pointer;
}

.break-word {
    word-wrap: break-word;
    word-break: break-all;
}

.table-striped-3>tbody>tr:nth-child(4n+0) {
    background-color: rgba(0, 0, 0, .05);
}

.table-striped-3>tbody>table {
    background-color: rgba(0, 0, 0, 0);
}

.filter-row {
    background-color: rgba(0, 0, 0, .08);
}

.modal {
    overflow-y: auto !important;
}

.b-red {
    border: 1px solid red;
}

.clickable:hover {
    cursor: pointer;
}

.no-after::after {
    display: none;
}

.no-before::before {
    display: none;
}

.disabled {
    opacity: .5;
}

.disabled:hover {
    opacity: .5;
}

.disabled:active {
    opacity: .5;
}

td .blue-checked {
    margin: 0 auto;
    background-color: rgb(0, 110, 255);
    min-width: 40px;
    max-width: 75px;
    height: 25px;
    border-radius: 2px;
}

td .green-checked {
    margin: 0 auto;
    background-color: #3ba048;
    min-width: 40px;
    max-width: 75px;
    height: 25px;
    border-radius: 2px;
}

td .unchecked {
    margin: 0 auto;
    background-color: rgb(173, 173, 173);
    min-width: 40px;
    max-width: 75px;
    height: 25px;
    border-radius: 2px;
}

.table-unstriped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0);
}

.no-border {
    border: none;
}

.nofocus:focus {
    outline: none;
    box-shadow: none;
}

.react-autosuggest__suggestions-list {
    max-height: 200px;
    overflow-y: auto;
}

.truncate {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zoom-6{
    zoom: .6;
}

.zoom-7{
    zoom: .7;
}

.overlay{
    border: 5px solid #29474e;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay:hover{
    opacity: .2;
    text-shadow: 0 0 10px #000;
    background-color: #70b8a7;
    cursor: pointer;
    color: #fff;
    font-size: 16em;
}

.split-title{
    position: absolute;
    bottom: 0;
    right: 0px;
    padding-right: 10px;
    padding-left: 30px;
    color: black;
    font-size: 26px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
    opacity: .4;
}

.split-title:hover{
    text-decoration: none;
    color: black;
    opacity: .8;
}

.e4vhpColors{
    color: #088dae;
    border-color: #088dae;
}

.e4vhpColors:hover{
    background-color: #088dae;
    color: white;
}

.small-font{
    font-size: .8em;
}

.init-bg{
    color: black;
    background: url(/images/gears.svg) center no-repeat;
    background-size: 600px 450px;
}

.init-top-bg{
    background-color: rgba(255, 255, 255, 0.863);
}

.version{
    position: absolute;
    width: 100%;
    float: bottom;
    line-height: 60px;
}

@media (min-width: 576px) {
    .modal-dialog-xl {
        max-width: none;
    }
}

.modal-dialog-xl {
    width: 100%;
    height: 100%;
    max-height: 100%;
    padding: 0;
    background: white;
}

.modal-content-xl {
    height: 100%;
    max-height: 100%;
}

.no-overflow{
    overflow-y: hidden!important;
}

.overflow-y{
    overflow-y: auto!important;
    height: 100%;
    max-height: 100%;
}

.room-card .title{
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 7px;
    background-color: rgb(216, 152, 152);
    font-weight: bold;
    color: white;
}

.room-card .img{
    text-align: center;
    margin: 0 auto;
    min-height: 250px;
    margin-bottom: 7px;
}

.bg-pink{
    background-color: rgb(255, 226, 226);
}

.bg-light-grey-faded{
    background-color: rgba(248, 248, 248, 0.575);
}

.room-card .img img{
    width: 246px;
    height: 246px;
    background-size: cover;
}

.audit-room-title{
    height: 72px;
    line-height: 72px;
    text-align: center;
    width: 100%;
    margin-bottom: 7px;
    background-color: rgb(216, 152, 152);
    font-weight: bold;
    color: white;
}

.audit-dm-name{
    display: inline-block;
    vertical-align: top;
    margin-left: 12px;
}

.audit-checkbox{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 7px;
    margin-top: 6px;
    background: white;
    color: black!important;
    border-radius: 0;
}

.mt-fix{
    margin-top: -5px!important;
}

.audit-dm-edit-btn{
    width: 68px;
    height: 60px;
    text-align: center;
    float: right;
    font-size: 38px;
}

.green-light{
    margin-top: 5px;
    margin-right: 7px;
    background-color: rgb(31, 177, 31);
    
    border: 1px solid rgb(152, 255, 152);
    width: 24px;
    height: 24px;
    border-radius: 24px;
}

.red-light{
    margin-top: 5px;
    margin-right: 7px;
    background-color: rgb(212, 62, 62);
    border: 1px solid rgb(255, 194, 194);
    width: 24px;
    height: 24px;
    border-radius: 24px;
}

.audit-conf-btn{
    background-color: rgb(216, 152, 152);
    padding: 22px 48px;
    font-size: 18px;
    margin: 0 auto;
    color: white;
}

.audit-conf-btn:active, .audit-conf-btn:hover{
    color: white;
}

.helpers-list{
    list-style: square;
}

.helpers-list li{
    margin-left: 30px;
}

.audit-concl{
    color: rgb(182, 124, 124);
}

.pink-border{
    border: 2px solid rgb(182, 124, 124);
    border-radius: 3px;
}

.audit-emails{
    min-width: 400px;
}

.audit-emails .title{
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 7px;
    background-color: rgb(216, 152, 152);
    font-weight: bold;
    color: white;
    min-width: 300px;
    margin-bottom: 14px;
}

.audit-emails .items{
    height: 36px;
    line-height: 36px;
    text-align: left;
    margin-bottom: 7px;
    background-color: rgb(216, 152, 152);
    font-weight: bold;
    color: white;
    min-width: 300px;
    margin-bottom: 14px;
}

.audit-emails .disabled{
    opacity: .6;
}


.fieldset-form {
    border: 1px solid #ccc;
    padding: 1rem;
}

.fieldset-form legend {
    padding-left: 1rem;
    padding-right: 1rem;
    width: auto;
}

.fieldset-form input[type="checkbox"] {
    height: 1rem;
}

.fieldset-form input[type="checkbox"]:focus {
    box-shadow:none;
}

.no-max-height {
    max-height: none !important;
}

.height-full {
    min-height: 100vh;
}
.height-auto {
    height: auto;
}
.cursor-default {
    cursor: default !important;
}

.not-transparent {
    opacity: 1 !important;
}

.purple-border{
    border: 2px solid rgb(141, 53, 141);
    border-radius: 3px;
}

.principal-button{
    border: 1px solid rgb(133, 133, 133);
    border-radius: 30px;
    text-align: center;
    width: 24px;
    height: 24px;
    font-size: 12px;
    vertical-align: top;
    margin-top: 5px;
    padding-top: 2px;
}

.tdaction{
    color: #8d358d;
    transition: 0.5s;
}

.principal-button-active{
    background-color: #007bff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    padding-top: 3px;
}

.principal-button:hover{
    background-color: #007bff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    padding-top: 3px;
}

#rgpd-scroll{
    height: 20em;
    overflow-y: auto;
    padding: 0 2em 0em 2em;
}
label.required {
    color: #dc3545;
}

label.required .fa-asterisk {
    font-size: 0.5em;
    margin-left: 0.2em;
    position: absolute;
}

img.imageLightBox {
    margin: 0em 0.5em 0.5em 0em;
    border: 5px solid #fff;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
    cursor: pointer;
}

.btn-outline-info {
    color: #8d358d;
    border-color: #8d358d;
}

.btn-outline-info:hover, .btn-outline-info:active {
    color: #fff;
    background-color: #8d358d;
    border-color: #8d358d;
}

.btn-outline-info:hover i, .btn-outline-info:active i {
    color: #fff;
}

.modal-content {
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff;
 }
 
 .modal-header {
     background-color: floralWhite;
 }

.logoSettings {
    max-width: 400px;
    max-height: 200px;
}

.textareaCounter>div {
    color: #555 !important;
}

.textareaCounter>textarea {
    border: 1px solid #ced4da;
    border-radius: 0.25em;
}