* {
  font-family: "Source Sans Pro", sans-serif;
}

body {
  min-width: 1000px;
}

.modal-content input,
.modal-content .dropdown-toggle {
  background-color: #fff !important;
}

h4 {
  font-size: 16px !important;
}

label {
  font-weight: 500 !important;
  margin-bottom: 7px;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.space-children > * {
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.space-children-20 > * {
  margin-right: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.mt-20 {
  margin-top: 20px;
}
.ml-5 {
  margin-left: 5px;
}

.justify-center {
  display: flex;
  justify-content: center;
}

.flex {
  display: flex;
}

.relative {
  position: relative;
}

.pointer {
  cursor: pointer;
}

.full-width {
  width: 100%;
}

.half-width {
  width: 49%;
}

.alpha-textarea {
  border: none;
  box-shadow: rgb(214, 214, 214) -7px 10px 0px -7px,
    rgb(214, 214, 214) 7px 10px 0px -7px;
  display: block;
  width: 100%;
}

.alpha-textarea:focus {
  outline: none;
  box-shadow: -7px 10px 0px -7px #4ea6ea, 7px 10px 0px -7px #4ea6ea;
}

.alpha-textarea.shadow-disabled {
  box-shadow: none;
}

.w-49 {
  width: 49%;
}

.modal-dialog {
  overflow-y: initial !important;
}

.modal-body {
  overflow-y: auto;
}

/* .user-nav {
    display: flex;
    justify-content: space-around;
} */

.company-name {
  text-align: center;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
  font-size: 23px;
  left: 50%;
}

.company-name img {
  margin-left: 5px;
}

@media screen and (max-width: 1080px) {
  .company-name img {
    display: none;
  }
}

.user-nav li {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

.main-nav {
  /* right:0px;
    margin-bottom: -10px; */
  flex: 5;
}

.auth-user {
  /* position: absolute;
    right:20px; */
}

.header1 {
  padding: 10px;
  padding-left: 5px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #ddd;
}

.nav-tabs {
  border-bottom: inherit !important;
}

/* .nav-tabs>li>a {
    background-color: #333333; 
    border-color: #777777;
    color:#fff;
    border: 1px solid #c0bebe;
} */

.sub-menu > .steps.navigation > .sub-menu-item > a,
.sub-menu > .sub-menu-list > li > a,
.sub-menu > .sub-menu-item > a,
.steps-navigation > .sub-menu-item > a {
  background-color: #f1f1f1;
  padding: 3px 5px;
  margin-right: 0px;
  border-radius: 5px 5px 0px 0px;
  border: 1px solid #f1f1f1;
  font-size: 14px;
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.sub-menu-sub .steps-navigation > li,
#logs-component .steps-navigation > li {
  background-color: #f1f1f1;
  padding: 3px 5px;
  margin-right: 3px;
  border-radius: 2px 2px 0px 0px;
  border: 1px solid #f1f1f1;
  font-size: 14px;
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.user-nav li {
  background-color: #ffe2cf !important;
}

.user-nav li a {
  position: relative;
  text-decoration: none;
}

.step-active {
  color: orange !important;
  background-color: white !important;
  border-bottom-color: white !important;
}

a:hover {
  text-decoration: none;
}

.nav-tabs > li > a:hover {
  border: 1px solid #ccc;
}

.nav > li > a {
  background-color: #fff3e1;
  color: #000;
  font-weight: 500;
  margin-right: 2px;
  padding: 4px 5px;
  border: 1px solid #fff3e1;
  border-radius: 3px 3px 0px 0px;
}

.user-nav li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  position: relative;
}

.steps-navigation {
  padding: 0;
  list-style-type: none;
  margin: 0;
  display: inline-block;
  margin: 8px 0;
  margin-bottom: -1px;
}

.sub-menu {
  border-bottom: 1px solid #ddd;
}

.sub-menu-sub {
  border-bottom: 1px solid #f1f1f1;
  display: inline-block;
}

.steps-navigation a:focus,
.steps-navigation a:hover {
  text-decoration: none;
}

.steps-navigation li {
  display: inline-block;
  margin-right: 1px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.user-nav li a:after,
.steps-navigation li span:after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  /* border-bottom: 2px solid #DAA520; */
  margin-top: 5px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.user-nav li a:hover:after,
.steps-navigation li span:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.notification-console p {
  padding-left: 1.8em;
  margin: 0;
  text-align: center;
}

.loader {
  display: inline-block;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #000;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* .router-link-active {
    color: #DAA520 !important;
    background-color: #ffffff !important;
} */

.login-form {
  margin: 100px auto 10px;
  max-width: 35%;
}

.login-form .login-block {
  margin-bottom: 10px;
}

.approval-file {
  margin-top: 10px;
  color: #b4b4b4;
  cursor: pointer;
}

.dropdown-input {
  display: flex;
  height: 55px;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 3px;
  justify-content: space-between;
}

.user-checkbox-field {
  font-size: 14px;
  font-weight: 700;
  width: 300px;
  color: #b1b1b1;
}

.no-mg {
  margin: 0;
}

.no-pd {
  padding: 0;
}

.block-label {
  display: block;
}

.info-tip {
  white-space: pre;
  position: absolute;
  font-size: 14px;
  top: -15px;
  left: 0;
  color: red;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  float: right;
  height: 26px;
}

.toggle-switch input {
  display: none;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle-view-switcher {
  font-style: italic;
  display: inline-block;
  z-index: 1040;
  margin-top: 10px;
}

@media only screen and (max-width: 1325px) {
  .toggle-view-switcher {
    top: 160px;
  }
}

.top-header {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  min-height: 52px;
  border-bottom: 2px solid #daa520;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toggle-user-status:checked + .toggle-slider {
  background-color: #2196f3;
}

.toggle-text {
  font-size: 19px;
  font-style: normal;
  vertical-align: bottom;
  margin-right: 5px;
}

.toggle-user-status.disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-user-status:focus + .toggle-slider {
  box-shadow: 0 0 1px #2196f3;
}

.toggle-user-status:checked + .toggle-slider:before {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}

/* Rounded sliders */

.toggle-slider.round {
  border-radius: 34px;
}

.toggle-slider.round:before {
  border-radius: 50%;
}

.help-heading {
  cursor: pointer;
}

.help-heading:hover {
  color: lightgrey;
}

.modal-body {
  word-wrap: break-word;
}

.login-button-block {
  display: flex;
}

.login-button-block button {
  margin-right: 5px;
}

.login-button-block span {
  display: inline-block;
}

.IP-addresses {
  padding: 0;
  margin: 15px 0 0;
  list-style-type: none;
  display: flex;
}

.IP-addresses li {
  padding: 10px 20px 5px 7px;
  margin-right: 10px;
  position: relative;
}

.glyph-remove {
  color: #a94442;
  cursor: pointer;
  position: absolute;
  top: -5px;
  right: 50%;
}

.glyph-remove:hover {
  color: red;
}

.lang-switcher-wrapper,
.opt-switcher-wrapper {
  display: block;
}

.lang-switcher,
.opt-switcher {
  display: inline-block;
  float: right;
  margin: 0;
  padding: 0;
}

.opt-switcher {
  float: none;
}

.lang-switcher li,
.opt-switcher li {
  display: inline-block;
  border-right: 1px solid #00b0f0;
  float: left;
}

.lang-switcher li:last-child,
.opt-switcher li:last-child {
  border-right: none;
}

.lang-switcher span,
.opt-switcher span {
  padding: 3px 5px;
  transition: all 0.5s ease;
  text-decoration: none;
  text-transform: lowercase;
  display: inline-block;
  height: 100%;
  min-width: 40px;
  text-align: center;
  cursor: pointer;
}

.opt-switcher span {
  text-transform: none;
}

.opt-switcher li:first-child span {
  padding-left: 0;
}

.lang-switcher .is-active,
.opt-switcher .is-active {
  color: #00b0f0;
}

.login-action {
  color: #337ab7;
  cursor: pointer;
}

.login-action:hover {
  text-decoration: underline;
}

.login-links {
  text-align: right;
}

.login-links p {
  margin-bottom: 0px;
}

.btn-success {
  border-bottom: 4px solid #509451 !important;
}

.btn-danger {
  border-bottom: 4px solid #bb4f4d !important;
}

.btn-primary {
  border-bottom: 4px solid #31708f !important;
}

.btn-default {
  border-bottom: 4px solid #efefef !important;
}

.spinner {
  width: 35px;
  text-align: center;
}

.spinner > div {
  width: 9px;
  height: 9px;
  background-color: #daa520;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.action-link {
  font-style: italic;
  color: #337ab7;
  font-size: 13px;
  cursor: pointer;
  margin-left: 15px;
  text-decoration: none !important;
}

.action-link:hover {
  color: #6c6cf5;
  text-decoration: none;
}

.grid-row {
  cursor: pointer;
  background-color: #f9f9f9;
  font-size: 14px;
}

th {
  cursor: pointer;
  border: none !important;
  font-size: 12px;
  font-weight: 500;
  padding: 6px !important;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.header {
  display: flex;
  justify-content: space-between;
}

.header ul {
  list-style-type: none;
  padding: 10px 0;
  margin-bottom: 0;
}

.xmltool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.main-nav-anchor {
  margin: 0;
}

.header .logout {
  padding: 10px;
  margin-bottom: 0;
}

.notification-console {
  z-index: 9999;
  display: block;
  background-color: rgb(195, 195, 195);
  opacity: 1;
  bottom: 0px;
  margin: 0;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.router-link-active {
  color: orange !important;
  background-color: white !important;
  border-bottom-color: white !important;
}

.main-menu li {
  display: inline-block;
}

.main-menu a {
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.sub-menu .sub-menu-list {
  padding: 0;
  list-style-type: none;
  display: flex;
  margin-bottom: -1px;
}

.sub-menu .sub-menu-list li {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
}

.task-dates,
.aitems {
  display: flex;
  justify-content: space-between;
}

.aitems {
  margin-top: 10px;
}

.task-item {
  margin-bottom: 30px;
}

.task-description textarea {
  min-width: 270px;
  min-height: 60px;
}

.task-info {
  font-size: 16px;
}

.matrix-item-wrapper {
  display: flex;
}

.matrix-item-wrapper input {
  height: 34px;
}

.matrix-select {
  max-height: 34px;
  margin-left: 5px;
}

.matrix-select button {
  height: 34px;
}

.matrix-label {
  margin-bottom: 0;
}

.company-dropdown {
  display: inline-block;
  margin-right: 10px;
}

.company-dropdown .dropdown-button {
  padding: 0 15px 0 10px;
  min-width: 120px;
}

.company-dropdown p {
  margin: 0;
}

.file-uploads {
  width: 84px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.remove-button {
  cursor: pointer;
}

.remove-button:hover {
  text-decoration: underline;
}

.company-tr-item,
.table-item {
  cursor: pointer;
}

.company-tr-item:hover,
.table-item:hover {
  background-color: #f5f5f5;
}

.add-constitutional,
.add-resolution {
  display: flex;
}

.add-el {
  margin-top: 15px;
}

.constitutional-image label,
.resolution-image label {
  max-width: 100px;
}

.date-input {
  max-width: 200px;
}

.constitutional-date input,
.resolution-date input {
  max-width: 200px;
}

.password-set-form {
  max-width: 500px;
  margin: 0 auto;
}

.staff-row {
  display: flex;
}

.staff-row .dropdown-column {
  width: 33%;
}

.dropdowns-row {
  display: flex;
  margin-top: 10px;
}

.dropdowns-row .dropdown-column {
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.dropdowns-row .dropdown-column p {
  color: #b1b1b1;
}

.manager-form {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.manager-form > div {
  width: 28%;
}

.manager-form > div:nth-child(2) {
  width: 23%;
}

.manager-form > div:nth-child(3),
.manager-form > div:nth-child(4) {
  width: 14%;
}

.manager-remove {
  display: flex;
  justify-content: flex-end;
  height: auto;
}

.manager-remove button {
  max-height: 29px;
}

.ratify-file {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
  color: #b1b1b1;
}

.single-line-fields {
  display: flex;
  justify-content: space-between;
}

.single-line-fields > div {
  width: 49%;
}

.create-company .single-line-fields > div,
.edit-company .single-line-fields > div {
  width: 50%;
}

.customers-form {
  display: flex;
  justify-content: space-between;
}

.customers-form .form-column {
  width: 49%;
}

.customers-form .form-column div {
  margin-top: 10px;
}

.form-column label {
  color: #b1b1b1;
}

.customer-dropdowns {
  display: flex;
  justify-content: flex-start;
}

.customer-dropdowns .dropdown-item {
  min-width: 150px;
  margin-right: 15px;
}

.customer-form-wrapper {
  padding: 10px;
  border: 1px solid #ebebeb;
  margin-bottom: 10px;
  border-radius: 7px;
  background-color: #fafafbf2;
}

.customer-form-wrapper input {
  background-color: #fafafbf2;
}

.customer-form-wrapper .select-button > button {
  background-color: #fafafbf2;
}

.customer-form-wrapper textarea {
  background-color: #fafafbf2;
}

.customer-form-wrapper .el-select input {
  background-color: transparent !important;
}

.customer-form-wrapper .el-select .el-input__inner {
  background-color: inherit !important;
}

.main-ap-fields {
  display: flex;
  position: relative;
  margin-bottom: 15px;
}

.main-ap-fields .ap-field {
  width: 24%;
  margin-right: 1%;
}

.ap-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.extra-fields-heading {
  color: grey;
}

.file-upload-button {
  padding: 3px;
  width: 80px;
  margin-bottom: 0 !important;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  margin-right: 10px;
}

.certify-field {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2px;
}

.agreement-fields {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 35px;
}

.agreement-fields > div {
  width: 39%;
  margin-right: 3%;
}

.agreement-document .ap-field {
  margin-right: 1%;
}

.agreement-fields > div:nth-child(2) {
  width: 25%;
}

.verification-file {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verification-file-link {
  cursor: pointer;
  margin: 0;
}

.document-number {
  margin-right: 10px;
}

.document-remove {
  position: absolute;
  right: 13%;
  cursor: pointer;
}

.customer-remove {
  max-height: 29px;
}

.one-line-fields {
  display: flex;
  justify-content: space-between;
}

.one-line-fields .non-ind-date {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3px;
}

.risk-field {
  margin-bottom: 10px;
}

.custom-ap-field {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.ap-ftf {
  width: 50% !important;
  margin: 0;
}

.aml-dropdown-wrapper {
  display: flex;
  justify-content: space-between;
}

.aml-dropdown {
  width: 49%;
}

.individual-one-line {
  display: flex;
  justify-content: space-between;
}

.individual-one-line > div {
  width: 33%;
}

.customer-step-button {
  color: #daa520 !important;
  cursor: pointer;
}

#main-customer-wrapper .form-column label,
#main-customer-wrapper .edit-basic-input label {
  color: #000;
}

.customers-footer {
  bottom: 0;
}

#instructions-modal {
  /*display: none;*/
  position: fixed;
  background-color: #1f323f;
  color: #fff;
  bottom: 5%;
  right: 3%;
  border-radius: 5px;
  z-index: 9999;
  font-weight: 300;
}

#instructions-open,
#instructions-closed {
  padding: 10px 4px 10px 10px;
}

#instructions-closed {
  margin-bottom: 10px;
  height: 34px;
}

#instructions-open {
  border-radius: 5px;
}

.instructions-modal-open {
  min-height: 300px;
  width: 500px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

#instructions-modal .instr-header,
#instructions-modal .instr-body,
#instructions-modal .instr-validation,
#instructions-modal .instr-explanation,
#instructions-modal .instr-info {
  padding: 15px;
}

#instructions-modal .instr-body {
  min-height: 80px;
}

#instructions-modal .instr-header,
#instructions-modal .instr-validation {
  position: relative;
}

#instructions-modal .instr-validation {
  border-top: 1px solid;
}

#instructions-modal .instr-header {
  color: #daa520;
  padding-left: 10px;
}

#instructions-modal .instr-header > div {
  padding-right: 55px;
  display: flex;
}

#instructions-modal .instr-header img {
  margin-right: 10px;
}

#instructions-modal ul {
  padding: 0 0 0 15px;
  list-style-type: none;
}

#instructions-modal .instr-info .instr-text {
  font-size: 14px;
}

#instructions-modal .instr-toggle {
  font-size: 24px;
  cursor: pointer;
}

#instructions-modal .instr-toggle:hover {
  color: #fff;
}

.instructions-modal-open .instr-toggle {
  position: absolute;
  top: 15%;
  right: 3%;
}

.instr-textarea {
  display: block;
  width: 100%;
}

.animate {
  transition: all 0.3s ease;
}

.instr-wrapper.open {
  min-height: 300px;
  width: 500px;
}

.instr-wrapper.closed {
  height: 0px;
  width: 24px;
}

.edit-help h4 {
  margin: 0 0 10px;
}

.edit-help-section {
  margin-bottom: 10px;
}

.edit-help-ul {
  padding: 0;
  margin-top: 10px;
  list-style-type: none;
  display: flex;
}

.edit-help-ul li {
  margin-right: 15px;
}

.edit-help-add {
  display: flex;
}

.edit-help-required .dropdown-button {
  min-width: 150px;
  margin-right: 10px;
}

.help-label {
  color: #daa520;
}

.trading-wrapper {
  position: relative;
  padding: 0 0 10px;
}

.view-name-wrapper {
  display: flex;
  align-items: center;
}

.view-name {
  display: inline-block;
  font-size: 26px;
  margin: 0 10px 0 0;
}

.sub-menu {
  list-style-type: none;
  padding: 0;
  display: flex;
}

.sub-menu-item {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}

.sub-menu-item a {
  color: #000;
  cursor: pointer;
}

/* .sub-menu-item .router-link-active {
    color: #DAA520 !important;
    text-decoration: none;
} */

.edit-wrapper {
  display: flex;
  justify-content: space-between;
}

.company-fields-item {
  margin-top: 10px;
}

.date-input {
  max-width: 200px;
}

.select-button > button {
  padding-left: 0;
}

.select-button-wide {
  width: 400px !important;
}

.select-button-normal {
  width: 300px !important;
}

.select-button > button,
.select-button .dropdown-toggle:focus,
.select-button .btn-default:hover,
.select-button:focus,
.select-button > button:focus,
.select-button > button:hover,
.select-button > button:active {
  outline: 0 !important;
  border: 0 !important;
  border-bottom: 3px solid #d6d6d6 !important;
  border-radius: 0 !important;
  box-shadow: unset !important;
}

.required.select-button button,
.required.select-button .dropdown-toggle:focus,
.required.select-button .btn-default:hover,
.required.select-button:focus,
.required.select-button button:focus,
.required.select-button button:hover,
.required.select-button button:active {
  border-bottom: 3px solid red !important;
}

.required.select-btn-simple,
.required.select-btn-simple .dropdown-toggle:focus,
.required.select-btn-simple .btn-default:hover,
.required.select-btn-simple:focus,
.required.select-btn-simple:focus,
.required.select-btn-simple:hover,
.required.select-btn-simple:active {
  border-bottom: 3px solid red !important;
}

.create-company .single-line-fields > div,
.edit-company .single-line-fields > div {
  width: 50%;
}

.reporting-wrapper {
  padding: 0;
  margin-bottom: 30px;
}

.xml-action {
  display: inline;
  margin-right: 5px;
  cursor: pointer;
}

.xml-action:hover {
  text-decoration: underline;
}

#select_faqs,
#select_news,
#select_circular_topic,
.select-alias {
  height: auto;
  max-height: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow-y: auto;
}

.progress-bar-line {
  background-color: #c0392b !important;
  height: 2px !important;
  box-shadow: 0 0 3px #c0392b, 0 0 4px #c0392b;
  width: 1%;
  display: block;
}

#select_faqs ul,
#select_news ul,
#select_circular_topic ul,
.select-alias ul {
  padding-left: 10px;
}

#select_faqs li,
#select_news li,
#select_circular_topic li,
.select-alias li {
  list-style-type: none;
  padding: 0px 3px;
  margin: 3px 0px;
}

#select_faqs .faq-question {
  font-weight: 400;
}

.select-alias > li:hover {
  background: #66afe9;
  cursor: pointer;
  color: #fff;
}

#select_faqs .faq-question:hover,
#select_news .news-title:hover,
#select_circular_topic .circulars-title:hover {
  background: #66afe9;
  cursor: pointer;
  color: #fff;
}

#select_faqs > li {
  font-size: 15px;
  font-weight: bold;
}

#select_faqs > li:hover,
#select_faqs > li.selected {
  background: #66afe9;
  cursor: pointer;
  color: #fff;
}

#select_faqs li.selected ul {
  display: block;
  background: #fff;
  color: #333;
  margin-left: -3px;
  margin-right: -3px;
}

#select_faqs li ul {
  display: none;
}

.customize {
  padding: 0 0 20px 0;
}

.customize p {
  margin: 10px 0 5px;
  font-weight: 700;
  font-size: 16px;
}

.customize label {
  margin-right: 5px;
}

.customize input {
  margin-right: 5px;
}

.search-chart {
  padding: 0;
  marks: 0;
  display: flex;
  justify-content: space-around;
}

.search-chart li {
  width: 30px;
  height: 200px;
  background-color: green;
  list-style-type: none;
  position: relative;
  margin-right: 30px;
}

.search-chart .name {
  position: absolute;
  bottom: -44px;
}

.search-chart .filling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-header {
  max-height: 40px;
}

.text-column {
  position: relative;
  padding-right: 15px;
}

.expandable {
  background-color: #f7f7f7;
  cursor: pointer;
}

.expanded {
  background-color: #fff;
}

.expand-glyph {
  position: absolute;
  right: 4px;
  top: 5px;
}

.glyphicon-refresh {
  -animation: spin 2s infinite linear;
  -ms-animation: spin 2s infinite linear;
  -webkit-animation: spinw 2s infinite linear;
  -moz-animation: spinm 2s infinite linear;
}

@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }

  to {
    transform: scale(1) rotate(360deg);
  }
}

@-webkit-keyframes spinw {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spinm {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

.range-search {
  display: flex;
  max-width: 250px;
}

.logs-loader {
  position: absolute;
  top: 0;
  right: -40px;
}

.logs-dropdown {
  position: relative;
}

.add-constitutional,
.add-resolution {
  display: flex;
}

.add-el {
  margin-top: 15px;
}

.constitutional-image label,
.resolution-image label {
  max-width: 100px;
}

.constitutional-date input,
.resolution-date input {
  max-width: 200px;
}

.datepicker-input {
  max-width: 220px;
}

.event-options {
  display: flex;
  margin-top: 15px;
}

.prior {
  margin-right: 15px;
}

.main-heading {
  font-size: 16px;
  position: relative;
}

.event-action-button {
  margin-top: 20px;
  margin-right: 5px;
}

.company-logo-wrapper .file-uploads-title {
  font-size: 14px;
  color: #b1b1b1;
}

.create-user-form {
  display: flex;
  justify-content: space-between;
}

.dropdowns {
  text-align: left;
}

.dropdown-button:after {
  content: "\2228";
  position: absolute;
  top: 5px;
  right: 7px;
  font-weight: bold;
}

.add-license,
.add-cpt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.search-input {
  max-width: 200px;
  margin-bottom: 10px;
  float: right;
  text-align: right;
}

.add-cpt {
  justify-content: space-between;
}

.add-license .license-el,
.add-cpt .cpt-el {
  margin-right: 10px;
}

.add-license input,
.add-cpt input {
  margin-right: 20px;
}

.image-el {
  display: flex;
  flex-direction: column;
}

.image-el label {
  padding: 5px;
  border: 1px solid lightgrey;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
}

.events-el {
  max-width: 250px;
}

.userinfo-first {
  width: 100%;
}

.userinfo-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 15px;
}

.userinfo-column label {
  color: #b1b1b1;
}

.common-form {
  margin-bottom: 20px;
}

.currency-dropdown {
  margin-top: -10px;
}

.user-info-fields,
.common-field {
  height: 17px;
  border: 0;
  width: calc(100% - 2px);
  margin-left: 1px;
  box-shadow: -7px 10px 0px -7px #d6d6d6, 7px 10px 0px -7px #d6d6d6;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}

.user-info-fields.required {
  box-shadow: -7px 10px 0px -7px red, 7px 10px 0px -7px red;
}

.user-info-fields .invalid {
  color: red;
}

.user-info-fields:focus,
.common-field:focus {
  outline: none;
  box-shadow: -7px 10px 0px -7px #4ea6ea, 7px 10px 0px -7px #4ea6ea;
}

.fields-combined {
  display: flex;
}

.common-field-wrapper {
  margin-bottom: 15px;
}

.fields-combined .common-field-wrapper {
  width: 25%;
}

.save-button {
  height: 31px;
  padding: 0 10px;
  margin-top: 15px;
}

.quiz-question-field {
  width: 15%;
}

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

.login-spinner {
  display: inline-block;
}

.alpha-ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.alpha-area {
  border-color: lightgray;
  display: block;
  width: 100%;
  overflow: auto;
  padding: 3px;
}

.alpha-area:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #4ea6ea;
}

#outdated {
  font-family: "Open Sans", "Segoe UI", sans-serif;
  position: absolute;
  background-color: gray;
  color: white;
  display: none;
  overflow: hidden;
  left: 0;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  bottom: 0;
  width: 100%;
  z-index: 1500;
  padding: 10px;
}

#outdated h6 {
  font-size: 18px;
  line-height: 18px;
  margin: 12px 0;
}

#outdated p {
  font-size: 12px;
  line-height: 12px;
  margin: 0;
}

#outdated .last {
  height: 20px;
  position: absolute;
  right: 70px;
  top: 10px;
  width: auto;
  display: inline-table;
}

#outdated .last:hover {
  transform: scale(1.2);
}

#outdated .last[dir="rtl"] {
  left: 25px !important;
  right: auto !important;
}

#outdated #buttonCloseUpdateBrowser {
  color: white;
  display: block;
  font-size: 36px;
  height: 100%;
  line-height: 36px;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.search-ul {
  max-height: 400px;
  overflow-y: scroll;
  border-bottom: 5px solid #fff;
  min-width: 250px;
}

.search-li {
  min-height: 25px;
  padding: 10px 0;
  margin: 0px 20px 10px 20px;
  border-bottom: 1px solid gray;
}

.search-li input {
  border: 0;
}

.search-li input:focus {
  outline: none;
}

/* Login      */

.front-login-button {
  background-color: #4d9dff;
  height: 29px;
  width: 100%;
  border: none;
}

.login-text-color {
  font-size: 13px;
  color: #8f8f8f;
}

.others-login-button {
  width: 100px;
  height: 35px;
  color: rgb(77, 157, 255);
  border-color: rgb(77, 157, 255);
  background-color: white;
}

.others-login-links {
  display: flex;
  justify-content: space-between;
  float: left;
}

.other-options {
  margin-top: 25px;
  font-size: 14px;
}

/* v-money */
.v-money {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border: 0;
  padding-left: 10px;
  border-color: #dcdfe6;
  color: #606266;
  border-bottom: 1px solid #dcdfe6 !important;
  border-radius: 4px;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* width: 100%; */
}

.v-money:focus-visible {
  outline: none;
  border-color: #409eff;
  border-bottom: 1px solid #409eff !important;
}

/* el-form */
.el-form--label-top .el-form-item__label {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

/* .el-input__inner{
    border-bottom: 2px solid #d6d6d6 !important;
  }
  .el-input__inner:hover{
    border-bottom: 2px solid #b7bac0 !important;
  }

  .el-input__inner:focus, .el-input__inner.is-active{
    border-bottom: 2px solid #409eff !important;
  } */
.el-dialog__headerbtn {
  font-size: 18px !important;
  color: black !important;
  float: right !important;
  z-index: 9999 !important;
  top: 20px !important;
  right: 40px !important;
}

.el-dialog {
  border-radius: 5px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.el-dialog__footer {
  /* padding: 15px !important;
    text-align: right !important; */
  margin-top: 5px !important;
  border-top: 1px solid #e5e5e5 !important;
}

.el-button--success {
  /* background-color: #509451 !important; */
  border-bottom: 4px solid #509451 !important;
  color: #fff !important;
  background-color: #5cb85c !important;
  border-color: #4cae4c !important;
}

.el-button--danger {
  /* background-color: #509451 !important; */
  border-bottom: 4px solid #bb4f4d !important;
  color: #fff !important;
  background-color: #d9534f !important;
  border-color: #d43f3a !important;
}

.el-form-item__label {
  color: #333 !important;
}

.el-select .el-tag {
  box-sizing: border-box !important;
  border-color: transparent !important;
  margin: 2px 0 2px 6px !important;
  background-color: #f0f2f5 !important;
  display: flex !important;
  max-width: 100% !important;
  align-items: center !important;
}

.el-select__tags-text {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* statements *******************************************************
  */

.el-upload__input {
  /* display: none !important; */
}

.missing-statement {
  color: #a94442;
}

.missing-statement {
  color: #a94442;
}

.closed-statement {
  color: blue;
}

.obtained-statement {
  color: #5cb85c;
}

.outdated-statement {
  color: #b814f8;
}

.all-statement:hover {
  text-decoration: underline;
}

.Jan-class {
  background: oldlace;
}

.Apr-class {
  background: #f0f9eb;
}

.Jul-class {
  background: oldlace;
  /* background: #B3E5FC */
}

.Oct-class {
  background: #f0f9eb;
  /* background: #e6a23c3f */
}

.el-table__header-wrapper {
  border: 0;
  padding: 0;
  height: "20px";
  border-bottom: 1px solid #e4e7ed;
}

.search-bar {
  margin-bottom: "50px";
}

.pagination {
  margin: "50px";
  text-align: center;
}

.el-input-number.is-controls-right .el-input__inner {
  text-align: left;
}

.obtained-aum:hover {
  text-decoration: underline;
}

.confirm-danger {
  color: #fff !important;
  background-color: #a94442 !important;
  border-color: #a94442 !important;
}

.select-label-main {
  float: left;
}

.select-label-description {
  float: right;
  color: #8492a6;
  font-size: 13px;
}

/* page note */
.page-note {
  font-size: 14px;
  font-style: italic;
}

/* user select - company record approvals - */
.record-approvals > .select-button > .users-list-menu {
  position: relative;
}
