@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html,
body {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-color: #f1f1f1;
  margin: 0;
  padding: 0;
  position: absolute;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 300;
  color: #223b55;
  line-height: 1.5rem;
  overflow-x: hidden;
}

h1 {
  padding-bottom: 0.625rem;
  font-size: calc(1.4rem + 1vw);
  font-weight: 800;
}

h2 {
  font-size: calc(1.3em + 1vw);
}

h3 {
  font-size: 1rem;
}

h4,
h5 {
  font-size: 0.8125rem;
}

h2,
h3,
h4,
h5 {
  font-weight: 700;
}

@media (min-width: 767px) {
  h1 {
    font-size: 1.375rem;
  }
  h2 {
    font-size: 1.125rem;
  }
}
.hidden {
  display: none !important;
}

.flex-1-100 {
  flex: 1 100%;
}

.container-fluid,
.container,
.row-fluid {
  height: inherit;
  padding: 0;
}

.container {
  max-width: 100vw;
}
@media (max-width: 992px) {
  .container {
    margin: 0;
    width: 100%;
    max-width: none;
  }
}

#wrap {
  width: 100%;
  min-height: 100vh;
  height: auto;
  position: relative;
  background-size: 40rem 40rem;
  background-position: right -20rem bottom -13.125rem;
}

@media (max-width: 767px) {
  .row-fluid {
    height: auto !important;
  }
}

.alert {
  border-radius: 0 !important;
}

ul.nav li {
  padding: 0 1.875rem;
  border-right: 0.0625rem solid #eeeeee;
}
ul.nav li a {
  line-height: 2.5rem;
  display: block;
  border-radius: 1.25rem;
  border: 1px solid #223b55;
  padding: 0 0.9375rem;
  transition: all 0.3s ease-in-out;
}
ul.nav li a:hover {
  text-shadow: none !important;
  background: #eeeeee;
  color: #223b55 !important;
}
ul.nav li a.active {
  background: #223b55;
  color: #fff !important;
}
ul.nav li:first-child {
  padding-left: 0;
}
ul.nav li:last-child {
  border: 0;
  padding-right: 0;
}

@media (max-width: 575px) {
  ul.nav {
    display: block;
  }
  ul.nav li {
    width: 100% !important;
    display: block;
    padding: 0 !important;
  }
  ul.nav li:after {
    display: none;
  }
  ul.nav li a {
    width: 100%;
    display: block;
    margin: 0 0 10px 0 !important;
  }
}
.badge {
  line-height: 1.5rem;
  padding: 0 0.9375rem;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.badge.badge-secondary {
  background: #b7b7b7;
}

.alert {
  border-radius: 0.9375rem;
}
.alert ul li:before {
  background: #721c24 !important;
}

.loading {
  position: relative;
  min-height: 3.75rem;
  min-width: 3.75rem;
}
.loading:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.loading:after {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1) inset;
  border: 0.25rem solid;
  border-top-color: #223b55;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  animation: rotate 1s infinite linear;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 3;
}

i {
  width: 0.75rem;
  margin: 0 0.625rem 0 -0.625rem;
}

.counter {
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  margin: 0 0 0 0.25rem;
  background: #c60c30;
  text-align: center;
  line-height: 1.0625rem;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  position: relative;
  top: -0.0625rem;
}

.state {
  position: relative;
  width: 2.375rem;
}
.state.waiting:after {
  content: "\f252";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #b7b7b7;
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: 0.75rem;
}
.state.completed:after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 1.125rem;
  border-right: 0.1875rem solid #46b692;
  border-bottom: 0.1875rem solid #46b692;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1rem;
}
.state.state-inline {
  display: inline-block;
  width: 1.5625rem;
  margin-right: 0.625rem;
}
.state.state-inline:after {
  right: auto;
  left: 0.5625rem;
  bottom: -0.125rem;
  top: auto;
}
.state.state-inline.waiting:after {
  bottom: -0.325rem;
}

.row.row-border-bottom {
  position: relative;
}
.row.row-border-bottom:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 0.0625rem solid #eeeeee;
}

.account .nav {
  margin-bottom: 2.25rem;
}
@media (max-width: 575px) {
  .account .nav {
    flex-direction: column;
  }
  .account .nav .nav-item {
    width: fit-content;
    border: 0;
  }
  .account .nav .nav-item,
  .account .nav .nav-item:first-child {
    padding: 0 0.9375rem;
  }
  .account .nav .nav-item .active {
    margin-left: -0.9375rem;
  }
}

.account-form__row {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
@media (max-width: 575px) {
  .account-form__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-form__row .form-group {
    width: 100%;
  }
}

.account-form__link {
  margin-left: 2rem;
  font-weight: 700;
}
@media (max-width: 575px) {
  .account-form__link {
    margin-left: 0;
  }
}

.appointment h4 {
  margin: 0;
  display: inline-block;
  line-height: 2.75rem;
}
.appointment .editAppointment {
  display: inline-block;
  line-height: 2.75rem;
}
.appointment .photo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  display: inline-block;
  border-radius: 50%;
  margin: 0 0 0 0.9375rem;
  border: 0.125rem solid #fff;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.05);
  float: right;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.appointment .date,
.appointment .time,
.appointment .subject {
  padding: 0 1.25rem 0 0;
}
.appointment .date i,
.appointment .time i,
.appointment .subject i {
  display: inline-block;
  width: 0.625rem;
  margin: 0 0.4375rem 0 0;
  font-size: 1rem;
  color: #b7b7b7;
}
.appointment .date:last-of-type,
.appointment .time:last-of-type,
.appointment .subject:last-of-type {
  padding: 0;
}
.appointment .alert.alert-primary {
  border: 0;
  border-radius: 0.3125rem;
  background: #f2faff !important;
  color: #3a3939;
}

@media (max-width: 35.9375rem) {
  .appointment .date,
  .appointment .time,
  .appointment .subject {
    padding: 0;
  }
  .appointment h4 {
    margin: 0 0 0.9375rem 0;
  }
  .appointment .editAppointment {
    line-height: 1.375rem;
    padding: 0 0 0.9375rem 0;
    display: none;
  }
  .appointment .photo {
    float: left;
    margin: 0 0.9375rem 0 0;
  }
}
.btn {
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 800;
  display: inline-block;
  color: #fff;
  padding: 0.125rem 1.875rem;
  position: relative;
  text-decoration: none;
  width: auto;
  min-width: 2.5rem;
  line-height: 2.25rem;
  height: 2.5rem;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
  border: 0;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.btn:before {
  display: block;
  content: "";
  background: transparent;
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  border: 0.125rem solid transparent;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.btn:hover:before {
  opacity: 1;
  background: #fff;
}

.btn--full-width {
  width: 100%;
}

.btn--background:before {
  background: #fff;
}
.btn--background:hover {
  color: #fff !important;
}
.btn--background:hover:before {
  opacity: 0;
}

.btn--blue {
  color: #fff !important;
  background-color: #223b55;
}
.btn--blue:hover {
  color: #223b55 !important;
}
.btn--blue.btn--background {
  color: #223b55 !important;
}
.btn--blue.btn--background:hover {
  color: #fff !important;
}

.btn--orange {
  width: auto;
  color: #fff !important;
  background-color: #c60c30;
}
.btn--orange.btn--background {
  color: #c60c30 !important;
}
.btn--orange:hover {
  color: #c60c30 !important;
}

.btn--positive {
  width: auto;
  color: #fff !important;
  background-color: #46b692;
}
.btn--positive.btn--background {
  color: #46b692 !important;
}
.btn--positive:hover {
  color: #46b692 !important;
}

.btn--negative {
  width: auto;
  color: #fff !important;
  background-color: #f75b54;
}
.btn--negative.btn--background {
  color: #f75b54 !important;
}
.btn--negative:hover {
  color: #f75b54 !important;
}

.btn--add {
  font-size: 1.25rem;
}

.card {
  margin-bottom: 2rem;
  border: 0;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}
@media (min-width: 1350px) {
  .card--tracktrace {
    display: none;
  }
}
.card--forminstance {
  height: 100%;
}

@media (max-width: 767px) {
  .col .card {
    margin: 0 0 0.9375rem 0 !important;
  }
}

.card-body {
  padding: 1.875rem;
}
.card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.9375rem 0;
  padding: 0 0 0.625rem 0;
}
.card-body h3:first-of-type {
  border-bottom: 0.0625rem solid #eeeeee;
}
.card-body .btn {
  white-space: normal;
}

.list-group-item {
  border: 0;
  margin: 0;
  padding: 0.9375rem 0;
  position: relative;
  border-bottom: 0.0625rem solid #eeeeee;
}
.list-group-item label {
  color: #007bff;
  cursor: pointer;
}
.list-group-item:last-child {
  border: 0;
}
.list-group-item--linked {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-group-item--icon {
  margin-left: 1rem;
}

.activity-text {
  position: relative;
  font-size: 0.75rem;
}
.activity-text.activity-text-header {
  line-height: 2.375rem;
  font-weight: bold;
  color: #223b55;
}
.activity-text h5 {
  margin: 0;
}

.activity-action {
  position: relative;
}
.activity-action label {
  line-height: 1rem;
}

.activity-append {
  flex: 0 1 100% !important;
}

.append-item {
  background: rgba(34, 59, 85, 0.1);
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  color: #223b55;
  line-height: 1.25rem;
  margin: 0;
  position: relative;
  font-weight: bold;
}

.append-close {
  position: absolute;
  right: 0.625rem;
  top: 0.9375rem;
  width: 0.9375rem;
  height: 0.9375rem;
  line-height: 1.25rem;
  cursor: pointer;
  display: none;
}
.append-close:before {
  content: "";
  width: 0.6875rem;
  height: 0.0625rem;
  background: #223b55;
  position: absolute;
  top: 0.375rem;
  right: 0.1875rem;
  transform-origin: center;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
  -ms-transition: all 0 ease-out;
}
.append-close:after {
  content: "";
  width: 0.6875rem;
  height: 0.0625rem;
  background: #223b55;
  position: absolute;
  top: 0.375rem;
  right: 0.1875rem;
  transform-origin: center;
  transform: rotate(-45deg);
  transition: all 0.3s ease-out;
  -ms-transition: all 0 ease-out;
}
.append-close:hover:before {
  transform: rotate(135deg);
}
.append-close:hover:after {
  transform: rotate(-135deg);
}

.append-item:first-child .append-close {
  display: block;
}

.activity-message {
  background: rgba(255, 193, 7, 0.1);
  padding: 0.625rem;
  border: 0.0625rem solid #ffc107;
  font-size: 0.6875rem;
}

.card__controls {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.card__controls .btn {
  padding: 0.125rem 0.875rem;
  font-size: 0.875rem;
}

.list-group-item--linked .btn {
  width: 100%;
  max-width: 7rem;
  padding: 0.125rem 0;
  font-size: 0.8125rem;
  font-weight: 400;
}

#cobrowse {
  display: flex;
  padding: 1.25rem;
}
@media (max-width: 767px) {
  #cobrowse {
    display: none;
  }
}
#cobrowse .form-group,
#cobrowse .input-group,
#cobrowse .form-control {
  height: 100%;
}

#mainContent {
  background: transparent;
}

#content-bg {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
}
#content-bg.partial {
  height: 66.6666666667vh;
}
#content-bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(220deg, rgba(198, 12, 48, 0.7) -40%, #223b55 125%);
}

#content {
  margin: 5rem auto 0;
  padding: 2.75rem 2.75rem 0.9375rem 2.75rem;
  position: relative;
  max-width: 62.5rem;
}
@media (max-width: 46.25rem) {
  #content {
    padding-left: 2.5rem;
  }
}
@media (max-width: 767px) {
  #content {
    margin: 0;
    padding: 0.9375rem;
  }
}
#content a {
  text-decoration: none;
}
#content a:not(.btn) {
  color: #223b55;
}
#content a i {
  display: inline-block;
  margin: 0 0.3125rem 0 0;
}
#content a:hover:not(.btn) {
  text-shadow: 0 0 0.0125rem #223b55, 0 0 0.0125rem #223b55;
}

.standalone #content {
  width: 100%;
  padding-left: 0.9375rem;
  max-width: 60rem;
  margin: 5rem auto 0 auto;
}

#content-bg + #content {
  margin-top: 10rem;
}

#content .team {
  display: none;
}
@media (max-width: 767px) {
  #content .team {
    display: block;
    background: #fff;
    border-radius: 0;
    border: 0;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
    width: calc(100% + 1.875rem);
    margin-left: -0.9375rem;
    margin-bottom: -0.9375rem;
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
  }
  #content .team h4 {
    color: #000 !important;
  }
  #content .team .title {
    color: #000 !important;
  }
  #content .team .member .dialog .dialogBody .member {
    display: flex !important;
  }
  #content .team .member .details .message {
    position: fixed;
  }
}

.dialog {
  display: block;
  background: #fff;
  padding: 3.125rem;
  font-size: 0.875rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  position: fixed;
  overflow: hidden;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1.875rem);
  margin: 0;
  max-width: 45rem;
  height: auto;
  line-height: 1.625rem;
}
.dialog#dialogIframe {
  max-width: 55.625rem;
}
.dialog#dialogIframe iframe {
  width: 100%;
  height: calc(100vh - 11.25rem);
  border: 0;
}
.dialog ul {
  margin: 0;
  padding: 0;
}
.dialog ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.dialog ul li strong {
  font-weight: 700;
}
.dialog ul li:before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background: #c60c30;
  margin-right: 0.9375rem;
  border-radius: 50%;
}
.dialog h2 {
  font-size: 1.625rem;
  font-weight: 800;
}
.dialog .dialogClose {
  width: 4rem;
  height: 4rem;
  background-color: #223b55;
  position: absolute;
  top: 0rem;
  right: 0rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.dialog .dialogClose::before, .dialog .dialogClose::after {
  content: "";
  width: 2.0625rem;
  height: 0.1875rem;
  background: #fff;
  position: absolute;
  top: 1.9rem;
  left: 1rem;
  transform-origin: center;
  transition: all 0.3s ease-out;
  -ms-transition: all 0 ease-out;
}
.dialog .dialogClose::before {
  transform: rotate(45deg);
}
.dialog .dialogClose::after {
  transform: rotate(-45deg);
}
.dialog .dialogClose:hover:before {
  transform: rotate(135deg);
}
.dialog .dialogClose:hover:after {
  transform: rotate(-135deg);
}
.dialog.inline {
  position: relative;
  top: 0;
  left: 0;
  padding: 1.875rem;
  line-height: 1.25rem;
  transform: translate(0, 0);
}
.dialog.inline .dialogClose {
  width: 3rem;
  height: 3rem;
  top: 0;
  right: 0;
}
.dialog.inline .dialogClose:before, .dialog.inline .dialogClose::after {
  width: 1.5625rem;
  top: 1.3rem;
  left: 0.7rem;
}

@media (max-width: 767px) {
  .dialog {
    height: calc(100vh - 5.625rem);
    padding: 1.875rem 0.9375rem;
  }
  .dialog .dialogBody {
    width: 100%;
    height: calc(100vh - 15.3125rem);
    overflow: auto;
    padding-right: 0.9375rem;
    margin: 1.25rem 0 0 0;
    position: relative;
  }
  .dialog .dialogBody .btn {
    width: 100% !important;
  }
  .dialog .dialogClose {
    width: 7.5rem;
    height: 7.5rem;
    right: -3.125rem;
    top: -2.8125rem;
  }
  .dialog .dialogClose:before {
    width: 1.8125rem;
    top: 4.875rem;
    left: 1.5625rem;
  }
  .dialog .dialogClose:after {
    width: 1.8125rem;
    top: 4.875rem;
    left: 1.5625rem;
  }
  .dialog h2 {
    padding: 0 3.4375rem 0 0;
    font-size: calc(1.2em + 1vw);
  }
  .dialog .btn {
    width: 100% !important;
  }
}
.forminstances > .col-md-6 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  font-weight: bold;
}
.form-group .input-group {
  width: 100%;
  max-width: 18.75rem;
  height: 2.375rem;
  overflow: hidden;
}
.form-group .input-group .input-group-append,
.form-group .input-group .input-group-text {
  border: 0;
  background: transparent;
}
.form-group .input-group input,
.form-group .input-group select {
  height: 100%;
  line-height: 1.25rem;
  padding: 0 0.9375rem;
  border: 0.0625rem solid rgb(161.5, 161.5, 161.5);
  font-size: 0.75rem;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.form-group .input-group input:focus,
.form-group .input-group select:focus {
  border: 0.0625rem solid #223b55;
}

.form-control {
  border-radius: 0;
}

.resetform .input-group-append {
  position: absolute;
  top: 0.1875rem;
  right: 0;
}

#login .top-space {
  padding-top: 3rem;
}

.form-icon {
  height: 4rem;
  width: 4rem;
  font-size: 4rem;
}

.resetform .input-group-append {
  margin-left: 1rem;
}

.graphWrap {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 5rem;
  padding-right: 2rem;
}

.graph {
  width: 6.1875rem;
  height: 6.1875rem;
  margin: 0;
  border-radius: 100%;
  position: relative;
  background-color: #223b55;
  background-image: linear-gradient(91deg, transparent 50%, #fff 50%), linear-gradient(90deg, #fff 50%, transparent 50%);
  border: 0.1875rem solid #223b55;
  box-sizing: content-box;
}
.graph .perCircInner {
  position: relative;
  top: 0.3125rem;
  left: 0.3125rem;
  text-align: center;
  width: 5.5625rem;
  height: 5.5625rem;
  border-radius: 100%;
  background-color: #fff;
}
.graph .perCircInner .perCircStat {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.375rem;
  line-height: 5.5625rem;
  color: #223b55;
  font-weight: bold;
}
.graph[data-percentage="100"] .perCircStat {
  color: #46b692 !important;
}

.graph__title {
  margin-top: 2rem;
}

#topBar {
  height: 5rem;
  background: #fff;
  box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  z-index: 8;
  padding: 0;
}
#topBar .container {
  display: flex;
  justify-content: space-between;
}

#home {
  width: 10rem;
  height: 5rem;
  margin-left: 0.75rem;
  padding: 1.125rem 0 1.125rem 0.9375rem;
}
#home .logo {
  height: 100%;
}

#profile {
  min-width: 13.75rem;
  white-space: nowrap;
  line-height: 5rem;
  padding: 0 0.9375rem;
  cursor: pointer;
  position: relative;
}
#profile:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.25rem;
  content: "\f007";
  display: inline-block;
  margin-right: 0.5rem;
}
#profile:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  display: inline-block;
  margin-left: 0.5rem;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
#profile.open:after {
  transform: rotateX(-180deg);
}
@media (max-width: 767px) {
  #profile {
    min-width: 1.875rem;
  }
  #profile span {
    display: none;
  }
  #profile:before {
    margin: 0;
  }
  #profile:after {
    display: none;
  }
}

.menu-item > span {
  color: #3a3939;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.menu-item:hover > span {
  text-shadow: 0 0 0.0187rem #3a3939, 0 0 0.0187rem #3a3939;
}
.menu-item.open > span {
  text-shadow: 0 0 0.0187rem #3a3939, 0 0 0.0187rem #3a3939;
}
.menu-item.open .submenu {
  display: block;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  line-height: 3.125rem;
  padding: 1.875rem 1.25rem;
  overflow: hidden;
  min-height: 0;
  background: #fff;
  box-shadow: inset 0 1.5625rem 1.5625rem -1.5625rem rgba(0, 0, 0, 0.2);
  display: none;
}
@media (max-width: 767px) {
  .submenu {
    position: fixed;
    top: 5rem;
    left: 0.3125rem;
    width: calc(100vw - 0.625rem);
  }
}
.submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.submenu ul li {
  margin: 0;
  padding: 0;
  border-bottom: 0.0625rem solid #eeeeee;
}
.submenu ul li a {
  display: block;
  font-weight: bold;
  color: #223b55;
  text-shadow: none;
  text-decoration: none;
}
.submenu ul li a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.submenu ul li a:hover:after {
  transform: translateX(0.625rem);
}
.submenu .btn {
  width: 100%;
}

#login {
  max-width: 30rem;
}
@media (max-width: 767px) {
  #login {
    width: 100vw;
    height: calc(100vh - 5rem);
    transform: none;
    border-radius: 0;
    margin: 0;
    top: 5rem;
    left: 0;
    max-width: 100vw;
    z-index: 7;
  }
}
#login a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
#login .input-group {
  max-width: 100%;
}
#login .btn {
  width: 100%;
}

#mainMenu {
  background: #fff;
  max-width: 20.625rem;
  min-width: 15.625rem;
  min-height: 100vh;
}
@media (max-width: 767px) {
  #mainMenu {
    max-width: 100%;
    min-width: 0;
    min-height: 0;
  }
}
#mainMenu .nav {
  margin-top: 7.8125rem;
}
@media (max-width: 767px) {
  #mainMenu .nav {
    margin-top: 5rem;
    flex-wrap: nowrap;
    background: #f1f1f1;
  }
}

.nav-link {
  width: 100%;
  height: 3.5rem;
  line-height: 3.5rem;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 0.875rem;
  color: #3a3939;
  text-decoration: none;
  border-bottom: 0.0625rem solid #eeeeee;
  position: relative;
  padding: 0 0.9375rem;
  box-sizing: border-box;
  transition: all 0.1s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.nav-link i {
  display: inline-block;
  color: #b7b7b7;
  margin: 0 0.3125rem 0 0;
  font-size: 1rem;
}
.nav-link:hover .label {
  text-shadow: 0 0 0.0187rem #3a3939, 0 0 0.0187rem #3a3939;
}
.nav-link:first-child {
  border-top: 0.0625rem solid #eeeeee;
}

@media (max-width: 767px) {
  .nav-link {
    flex-grow: 1;
    border: 0;
    background: #fff;
    text-align: center;
    font-size: 1.375rem;
  }
  .nav-link i {
    margin: 0;
  }
  .nav-link .label {
    display: none;
  }
  .nav-link .counter {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -0.9375rem 0 0 0.3125rem;
  }
}
.nav-link.active {
  border: 0;
  background-color: #223b55;
  color: #fff;
  box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.05);
}
.nav-link.active i {
  color: #fff;
}
.nav-link.active .label {
  text-shadow: none !important;
}
.nav-link.active:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-width: 1.75rem 1.25rem;
  border-left-color: #223b55;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

@media (max-width: 767px) {
  .nav-link.active {
    overflow: hidden;
    padding: 0;
    position: relative;
    height: 4.6875rem;
    box-shadow: none;
  }
  .nav-link.active .counter {
    margin-top: -1.5625rem;
  }
  .nav-link.active:after {
    top: auto;
    left: 0;
    height: 1.5rem;
    border: 0;
    /**
     * Fix Chrome bug
     */
    bottom: -0.0625rem;
    width: calc(100% + 0.0625rem);
    background: transparent url("/storage/images/menu_active_overlay.svg") no-repeat;
    background-size: 100% 1.25rem;
    background-position: bottom center;
  }
}
@media (max-width: 767px) {
  #mainMenu .team {
    display: none;
  }
}

#notifications {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0.9375rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  overflow: hidden;
}
#notifications:empty {
  display: none;
}
#notifications .alert {
  align-self: center;
  width: 100%;
  max-width: 30rem;
}

.overlay, .subOverlay, .popupOverlay {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
}

.subOverlay {
  z-index: 7;
}

.product .supplierLogo {
  width: 4.375rem;
  height: 4.375rem;
  border: 0.125rem solid #eeeeee;
  background-size: cover;
  border-radius: 50%;
}
.product a {
  font-size: 0.875rem;
}
.product .info {
  color: #b7b7b7;
  line-height: 1.25rem;
  font-size: 0.875rem;
}
.product .info .fa {
  color: #223b55;
  font-size: 1.25rem;
  float: right;
  margin-left: 0.625rem;
}

@media (max-width: 767px) {
  .product .supplierLogo {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.product_properties {
  border: 0.0625rem #15acfb solid;
  border-radius: 0.625rem;
  margin-bottom: 1.875rem;
}

.top-border {
  color: #15acfb !important;
}

.product_properties .inline {
  display: inline !important;
}

.product .title {
  padding: 0.9375rem 0 1.5625rem;
}

.download-button {
  padding: 0.625rem;
  margin: 0 0.625rem 0.625rem 0;
  font-weight: bold;
  background-color: #f3fbff;
  color: #1ea5fa;
}

.details .open {
  margin-top: 1.5625rem !important;
  border-top: 0.0625rem solid #eeeeee;
  padding-top: 1.125rem !important;
}

.succes-card {
  border-radius: 0.625rem;
}
.succes-card .card-body {
  padding: 2.8125rem 4.375rem 9.375rem;
}
.succes-card .card-body hr {
  border-color: #cdedff;
}
.succes-card .card-body h2 {
  margin: 0.375rem 0;
  padding-top: 1.125rem;
}
@media (min-width: 767px) {
  .succes-card .card-body {
    padding-right: 12.5rem;
  }
}

.register-form #content {
  max-width: 49.375rem !important;
}
@media (min-width: 49.375rem) {
  .register-form hr {
    margin-right: 3.75rem;
  }
}
.register-form .alert {
  margin-bottom: 1rem;
}
.register-form .alert ul {
  margin-bottom: 0;
  padding-left: 0;
}
.register-form .alert ul li {
  list-style: none;
}
.register-form .alert ul li:before {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  background: #721c24;
  margin-right: 0.9375rem;
  border-radius: 50%;
}

.dialog .alert ul li:before {
  width: 0.3125rem;
  height: 0.3125rem;
  background: #721c24;
}

.photo {
  width: 3.4375rem;
  height: 3.4375rem;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  border-radius: 50%;
  margin: 0;
  border: 0.125rem solid #fff;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.photo.photo-activity {
  box-shadow: none;
  width: 1.625rem;
  height: 1.625rem;
}
.photo.photo-small {
  width: 2.375rem;
  height: 2.375rem;
}
.photo.photo-questions {
  position: relative;
  top: 1.0625rem;
  left: -0.5rem;
  width: 2.875rem;
  height: 2.875rem;
}
.photo.photo-large {
  box-shadow: none;
  width: 4.8125rem;
  height: 4.8125rem;
}
.photo.photo-square {
  border-radius: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.photo.photo-contain {
  background-size: contain;
}
.photo.photo-bordered {
  position: relative;
  border: 0;
  margin-top: 0.125rem !important;
  margin-left: 0.125rem !important;
}
.photo.photo-bordered:before {
  content: "";
  display: block;
  width: calc(100% + 0.25rem);
  height: calc(100% + 0.25rem);
  position: absolute;
  margin: -0.125rem 0 0 -0.125rem;
  z-index: -1;
  border-radius: 50%;
  background-image: linear-gradient(220deg, rgba(198, 12, 48, 0.7) -40%, #223b55 125%);
}

.team {
  margin: 2.5rem 1.25rem 0.625rem 1.25rem;
  padding: 1.25rem;
  border: 0.125rem dotted #bbbbbb;
  border-radius: 0.9375rem;
  text-align: center;
}
.team.topbar {
  display: none;
}
.team.topbar .teamHeader {
  display: none;
}
.team.hasTeam {
  text-align: left;
  margin: 0;
  border: 0;
  display: block;
}
.team .member {
  margin: 0 0 1.25rem 0;
  position: relative;
}
.team .member .photo {
  margin: 0 0.625rem 0 0;
}
.team .member .details {
  line-height: 0.875rem;
  position: absolute;
  top: 0.125rem;
  left: 4.0625rem;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.team .member .details .title {
  display: block;
  margin: 0 0 0.3125rem 0;
  font-size: 0.75rem;
}
.team .member .details h4 {
  margin: 0;
}
.team .member .details .contact {
  font-size: 0.75rem;
  color: #007bff !important;
}
.team .member .details .message {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 25rem;
  height: 10.625rem;
  margin: -4.375rem 0 0 1.25rem;
}
.team .member .details .message .dialog a {
  color: #3a3939;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.team .member .details .message .dialog a:hover {
  text-decoration: none;
  color: #223b55;
}
.team .member .details .message .dialog .dialogBody .member {
  display: none !important;
}
.team .member .overlay, .team .member .popupOverlay, .team .member .subOverlay {
  display: none;
}
.team .member.popup .photo {
  transform: scale(1.4);
  transform-origin: left center;
  z-index: 10;
}
.team .member.popup .details {
  z-index: 10;
  position: absolute;
  top: 0.625rem;
  left: 5.5rem;
}
.team .member.popup .details h4 {
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
}
.team .member.popup .details .title {
  color: #fff;
  white-space: nowrap;
}
.team .member.popup .details > a {
  opacity: 0;
}
.team .member.popup .details .message {
  display: block;
}
.team .member.popup .overlay, .team .member.popup .popupOverlay, .team .member.popup .subOverlay {
  display: block;
}
.team .placeholder {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
  margin: 0 0.3125rem;
  border: 0.125rem solid rgb(212.5, 212.5, 212.5);
}

@media (min-width: 767px) {
  .team.topbar {
    position: fixed;
    top: 0;
    margin-left: -270px;
    left: 50%;
    z-index: 8;
    padding: 0;
  }
  .team.topbar .teamContent {
    margin: 0 !important;
    padding: 12px;
    flex-direction: row !important;
  }
  .team.topbar .teamContent .member {
    width: 19rem;
    margin: 0;
  }
}
.trackTraceWrapper {
  display: none;
}
@media (min-width: 1350px) {
  .trackTraceWrapper {
    display: block;
    width: 20.625rem;
    min-height: 100vh;
  }
}
.trackTraceWrapper #trackTrace {
  margin-top: 7.8125rem;
}
.trackTraceWrapper #trackTrace h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.9375rem 0;
  padding: 0 0 0.625rem 0;
  border-bottom: 0.0625rem solid #b7b7b7;
}
@media (max-width: 767px) {
  .trackTraceWrapper #trackTrace {
    margin-top: 5rem;
  }
}

.card #trackTrace {
  margin-top: 2rem;
}

.step {
  padding: 0 0 5rem 3.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .step {
    padding-left: 3.4375rem;
  }
  .step .col-sm-6,
  .step .col-lg-6 {
    width: calc(100% + 3.4375rem);
    margin-left: -3.4375rem;
  }
}

.stepCounter {
  position: absolute;
  top: -0.4375rem;
  left: 0;
  background: #c60c30;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  border: 0;
  box-shadow: 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.1);
  transition: background-image 0.3s ease-in-out;
  -ms-transition: background-image 0 ease-in-out;
}
.stepCounter span {
  color: #fff;
}
.disabled .stepCounter, .inactive .stepCounter {
  background: #fff;
}
.disabled .stepCounter span, .inactive .stepCounter span {
  color: rgb(160.3304347826, 158.6695652174, 158.6695652174);
}

.stepRoute {
  width: 0.125rem;
  height: 100%;
  background-image: linear-gradient(#c60c30, #223b55);
  position: absolute;
  left: 1.1875rem;
  margin: 0;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0 ease-in-out;
}
.disabled .stepRoute, .inactive .stepRoute {
  background: #fff;
}
.stepRoute:last-of-type {
  display: none;
}

.card .disabled .stepRoute,
.card .inactive .stepRoute {
  background: #c9c9c9;
}

.step__heading {
  cursor: default !important;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  float: left;
}
.step__heading:not(.collapsed) ~ .step {
  background: #c60c30;
  color: #fff;
}
.step__heading.completed ~ .stepCounter {
  background: #46b692 !important;
}
.step__heading.completed ~ .stepCounter span {
  color: #fff;
  display: none;
}
.step__heading.completed ~ .stepCounter:after {
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 1.125rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.step__heading.completed ~ .stepRoute {
  background: #46b692 !important;
}
.disabled .step__heading, .inactive .step__heading {
  color: rgb(109.4434782609, 107.5565217391, 107.5565217391);
}
.disabled .step__heading:after, .inactive .step__heading:after {
  color: rgb(160.3304347826, 158.6695652174, 158.6695652174);
}
.disabled .step__heading {
  cursor: default;
}

.step:last-of-type .stepRoute {
  display: none;
}
