html {
    font-family: 'Open Sans', sans-serif;
    height: 100%;
}

body {
  font-size: 14px;
  line-height: 20px;
  margin: 0px;
}

h1 {
  font-size: 16px;
  line-height: 22px;
}

h1.form-margin {
    font-size: 16px;
    line-height: 22px;
    margin-left: 20px;
}

div {
  font-size: 14px;
  line-height: 20px;
}

a:link, a:visited, a:active {
    color: #3678b5
}

a:hover {
    color: #0f2e4b
}

.formRow {
    padding-left: 10px;
}

.hidden {
    display: none;
}

.labelTextColor {
    color: rgba(0, 0, 0, 0.54);
    font-size: 1rem;
    transform: scale(0.75);
    transform-origin: top left;
}

.activeColor {
    color: #00427f
}

.lightgrey {
    background-color: #eeeeee
}

.relative {
    position: relative
}

.wordwrap {
   white-space: pre-wrap;
   white-space: -moz-pre-wrap;
   white-space: -pre-wrap;
   white-space: -o-pre-wrap;
   word-wrap: break-word;
}

.document-content {
    margin-left: 5px;
    margin-right: 5px;
}

.colorSwitchBase span {
    color: #de0b0b;
}

.colorBarChecked.colorSwitchBase span {
    color: #0dbf0d;
}

.custom-table {
    width: 100%;
    margin-bottom: 30px;
    border-spacing: 1px;
}

.custom-table td, .custom-table th {
    border: 1px solid rgba(0,0,0,0.2);
    margin: 0;
    padding: 10px;
    text-align: left;
    min-width: 100px;
    max-width: 350px;
}

.tabs-container {
    position: relative;
}

.tabs-divider {
    position: absolute;
    bottom: 12px;
    background-color: white;
    height: 2px;
    width: 100%;
}

.tabs {
    padding-left: 40px;
    margin-top: 20px;
    margin-bottom: 0px;
    clear: both;
}

.tabs .tab {
    border-radius: 5px;
    background: #3b3b3b;
    margin-right: 20px;
    color: #fff;
    min-height: 36px;
}

.tabs .tab:hover {
    opacity: 1;
}

.tabs .tab.active {
    opacity: 1;
    pointer-events: none;
}

.address-container {
    margin-left: 10px !important;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.address-container .input-field {
    flex: 1;
    margin: 0 10px;
}

.auto-highlight input,
.highlight input{
    background-color: #ffbe00 !important;
}

.address-container .input-field.flex-twenty {
    flex: 0 0 calc(20% - 20px);
    margin: 0 10px;
}
.button-primary {
    cursor: pointer;
    padding: 10px 30px;
    border: 1px solid #3b3b3b;
    border-radius: 4px;
    color: white;
    background: #3b3b3b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    margin-left: 14px;
    margin-right: 14px;
    line-height: 13px;
    font-weight: 500;
}
.button-primary:hover{
    background: transparent;
    color: #3b3b3b;
}
.button-primary.mr-zero {
    margin-right: 0;
}
.table-header {
    background: #3b3b3b;
}
.table-header th {
    color: #fff;
}
.table-header span {
    color: #fff;
}
.table-body tr:nth-child(even) {
    background: #efefef;
}
.table-footer td {
    padding: 0 !important;
    display: flex !important;
}
.table-footer .page-no {
    color: #000;
    margin-right: 12px;
    line-height: 36px;
}
.table-footer div {
    padding: 0 !important;
}

.recursive-span {
    cursor: pointer;
}
.recursive-span:hover {
    color: rgba(0,0,0,0.4);
}

.tree,
.tree ul {
  margin:0 0 0 1em; /* indentation */
  padding:0;
  list-style:none;
  color: #000000;
  position:relative;
}

.tree:first-child {
    padding-top: 45px;
}

.tree ul {margin-left:.5em} /* (indentation/2) */

.tree:before,
.tree ul:before {
  content:"";
  display:block;
  width:0;
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  border-left:1px solid;
}

.tree li {
  margin:0;
  padding:0 1.5em; /* indentation + .5em */
  line-height:2em; /* default list item's `line-height` */
  font-weight:bold;
  position:relative;
}

.tree li:before {
  content:"";
  display:block;
  width:10px; /* same with indentation */
  height:0;
  border-top:1px solid;
  margin-top:-1px; /* border top width */
  position:absolute;
  top:1em; /* (line-height/2) */
  left:0;
}

.tree li:last-child:before {
  background:white; /* same with body background */
  height:auto;
  top:1em; /* (line-height/2) */
  bottom:0;
}

.chip {
    margin-right: 10px;
}

#page-numbers {
    display: flex;
    flex-flow: row wrap;
    margin: 0 0 20px 0;
    padding-left: 0;
    padding-top: 40px;
}

#page-numbers li {
    list-style-type: none;
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.2);
    border-right: 0;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
    display: none;
}

#page-numbers li.unavailable {
    background: rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    border-right: none;
    pointer-events: none;
    color: #acacac;
    display: block;
}

#page-numbers li.block {
    display: block;
}

#page-numbers li.active {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0,0,0,0.0);
    pointer-events: none;
    display: block;
}

#page-numbers li:hover {
    background: rgba(0,0,0,0.2);
    border-color: rgba(0,0,0,0);
}

#page-numbers li:first-child {
    border-radius: 4px 0 0 4px;
    display: block;
}

#page-numbers li:last-child {
    border-radius: 0 4px 4px 0;
    border-right: 1px solid rgba(0,0,0,0.2);
    display: block;
}

#page-numbers li:last-child:hover {
    border-color: rgba(0,0,0,0);
}
#page-numbers li.active:last-child {
    border-color: rgba(0,0,0,0);
}

.clear-both {
    clear: both;
}

.upload-container {
    margin-bottom: 40px;
    padding-left: 26px;
    padding-right: 26px;
}

div.color-white {
    background-color: #ffffff;
}

input.auto-suggest {
    width: 500px;
}

.side-bar-menu-item {
    padding-left: 3px;
}

.footer-spacer {
    height: 75px;
}
#react-autowhatever-autosuggest_organisation ul li:hover {
    background: #cccccc;
}
.error{
    color: #ff0000;
}
.error input,
.error ul li {
    color: #000;
}

.tree:first-child {
    padding-top: 0px;
    display: flex;
    flex-flow: row wrap;
}
.tree:before, .tree ul:before {
	display: none;
}
.tree:first-child input.toggleChilds {
    display: none;
    outline: 0 !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.tree li {
    margin: 0;
    padding: 0;
    line-height: 2em;
    font-weight: bold;
    position: relative;
    flex: 0 0 calc(100% / 3);
}
.tree li:before {
	display: none;
}
ul.tree ul.tree {
    margin-left: 40px;
}
ul.tree ul.tree .toggleChilds {
    display: inline !important;
    position: absolute;
    right: 10px;
    top: -32px;
    background: url('../images/down-arrow.svg') no-repeat center center;
    -webkit-appearance: none;
    background-size: 14px 14px;
    height: 14px;
    width: 14px;
}
ul.tree ul.tree li {
    display: none;
}
.tree .tree .toggleChilds:checked {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.tree .tree .toggleChilds:checked ~ li {
    display: block;
}
.categories-container {
    padding: 30px;
}
.categories-container .tree li .recursive-span {
    min-height: 44px;
    display: block;
}
.categories-container ul.tree ul.tree .toggleChilds {
    top: -38px;
    right: 20px;
}

.flex-row-container {
    margin-left: 20px;
    padding: 20px;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-grow: 3;
}

.flex-row-container-small {
    width: 350px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.field-very-small {
    width: 10%
}

.field-small {
    width: 20%
}

.field-medium {
    width: 70%
}

.field-big {
    width: 90%
}

.select-label {
    width: 300px;
}

.basic-select-field {
    margin-right: 30px;
    min-width: 150px;
}

.pagination-container {
    margin-top: 25px;
    margin-bottom: 25px;
}


#seo_meta_keywords-label {
    width: 100% !important;
}

/* Rich Text editor default styling */
#rte {
    padding: 10px;
}

blockquote {
    background: #ececec;
    padding: 1px 10px !important;
    margin: 0;
    border-left: 3px solid #000;
}
/* End of Rich Text editor default styling */
#logo {
    text-align: center;
    margin: 0;
    background: #ffffff;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}


/* refactor section */

.form-content-container {
    margin-left: 280px;
    margin-right: 40px;
}

.form-background {
    background-color: #eeeeee;
    min-height: 1000px;
}

.form-action-toolbar {
    padding-top: 40px;
    padding-left: 0px;
    margin-bottom: 20px;
    height: 40px;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.main-secure-container {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.secure-content-container {
    width: 90%;
    display: flex;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    position: fixed;
    right: 30px;
    bottom: 10px;
}

.login-form {
    width: 500px;
    height: 400px;
    margin: 200px auto;
    border: 1px solid #eeeeee;
    padding: 2rem;
    background: #ffffff;
    border-radius: 6px;
}

.form-row-login {
    padding: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.textfield {
    background: #ffffff;
    border: 1px solid #cee1ef;
    padding: 10px;
}

.textfield-hidden {
    visibility: hidden;
}

.error-container {
    height: 20px;
}

.form-margins {
    margin-left: 20px;
    margin-right: 20px;
}

.form-separator {
    margin-top: 40px;
}

.form-bottom-spacer {
    margin-bottom: 50px;
}

.form-header {
    margin-left: 20px;
    margin-right: 20px;
    height: 10px;
}

.container-progress {
    margin-left: 20px;
    padding-bottom: 50px;
}

.button-loading {
    margin-top: 40px;
    margin-left: 150px;
}

.form-error {
    margin-left: 20px;
    color: #ff0000;
}

.logo-container {
    margin-top: 50px;
}

.form-row-checkbox {
    margin-left: 30px;
}

.sortable-row {
    width: 80%;
    height: 60px;
    cursor: move;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    background-color: #ffffff;
    justify-content: space-between;
    align-items: center;
}

.form-button-container {
    float: left;
    position: relative;
    margin-right: 20px;
    min-width: 75px;
}

.form-section-row {
    margin-left: 20px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.table-section-row {
    margin-left: 0px;
    position: relative;
    padding: 20px 20px 20px 18px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.content-section-table {
    padding-left: 40px;
    padding-right: 40px;
}

.flex-row-container div.chip-vertical {
    margin-right: 5px;
    margin-bottom: 20px;
}

.floatLeft {
    float: left;
}

.clearBoth {
    clear: both;
}

.listChips {
    height: 220px;
    width: 300px;
    overflow-y: scroll;
    border: 1px solid #000;
    padding: 10px 10px 0 10px;
}

.listChips .chip {
    margin-bottom: 3px;
}

.dashboard-container {
    margin-left: 270px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.dashboard-box {
    width: 300px;
    height: 300px;
    padding: 10px;
    margin: 10px 10px 10px 0;
}

.dashboard-box-big {
    width: 90%;
    height: 200px;
    padding: 10px;
    margin: 10px 10px 10px 0;
}

.form-group-switch {
    margin-left: 20px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-flow: column;
}

.header-dashboard-container {
    margin-left: 258px;
    margin-bottom: 40px;
}

.app-bar-toolbar {
    margin-left: 258px;
    margin-bottom: 10px;
}

.dropzone-files {
    margin-top: 20px;
    padding: 5px;
    min-width: 500px;
    border-style: dashed;
    border-width: 1px;
    border-color: #cccccc;
}

.dropzone-padding {
    padding: 5px;
}

.dropzone-content {
    display: flex;
    flex-flow: row;
}

.table-total-records {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 18px;
}

.table-container {
    margin-left: 290px;
    margin-right: 20px;
}

.table-top-margin {
    padding-top: 40px;
    margin-left: 290px;
    margin-right: 40px;
}

.table-separator {
    margin-top: 75px;
}

.table-loading-content {
    padding-top: 50px;
    width: 100%;
    height: 470px;
    text-align: center;
    vertical-align: center;
}

.table-bottom-spacer {
    height: 150px;
}

.form-bottom-spacer {
    height: 200px;
}

.form-spacer-small {
    height: 20px;
}

.padding-left-small {
    padding-left: 20px;
}

.chips-filter-box {
    padding: 20px 20px 20px 20px;
}

.chips-filter-box .chip {
    margin-bottom: 10px;
}

.bg-left-drawer {
    background: #ffffff;
    min-height: 100%;
    overflow: hidden;
    width: 250px;
}

.app-left-menu-items {
    padding-top: 20px;
    overflow-y: scroll;
    display: block;
    height: 100%;
}

.scrollbar-container {
    display: block;
    position: relative;
    height: 100%;
}

.app-left-menu-bottom-spacer {
    margin-top: 50px;
    height: 300px;
}

.padding-content {
    padding: 20px;
}

.third-party-login {
    margin-top: 20px;
    margin-left: 20px;
}

.otp-code-sso {
    margin-top: 20px;
}