/* src/styles.scss */
.btn {
  text-transform: uppercase;
}
.btn.min-btn {
  min-width: 150px;
}
.btn.btn-primary {
  background: #42b2e2;
  border-color: #42b2e2;
}
.btn.btn-primary:hover {
  background: #8fbfc3;
  border-color: #8fbfc3;
}
.btn.min-longbtn {
  min-width: 180px;
}
.btn.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn.btn-facebook {
  background: #4267b2;
  border-color: #4267b2;
  color: #fff;
}
.btn.btn-facebook:hover {
  background: #365899;
  border-color: #365899;
}
.btn.btn-amazon {
  background:
    linear-gradient(
      to bottom,
      #fee6b0,
      #eeba37);
  border-color: #be952c #a68226 #9b7924;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  color: #111;
}
.btn.btn-amazon:hover {
  background:
    linear-gradient(
      to bottom,
      #fede97,
      #ecb21f);
  border-color: #a98527 #917221 #86691f;
}
.btn.btn-amazon i {
  vertical-align: sub;
}
.btn.btn-microsoft {
  background: #0067b8;
  border-color: #0067b8;
  color: #fff;
}
.btn.btn-microsoft:hover {
  background: #005da6;
  border-color: #005da6;
}
.btn.btn-secondary {
  background: #0f5681;
  border-color: #0f5681;
  color: #fff;
}
.btn.btn-secondary:hover {
  background: #8fbfc3;
  border-color: #8fbfc3;
}
.btn:disabled {
  cursor: default;
  background-color: #c625e1;
  border-color: #c625e1;
}
.btn:disabled:hover {
  background-color: #c625e1;
  border-color: #c625e1;
}
.btn.btn-block {
  width: fit-content;
}
@media (max-width: 767.98px) {
  .btn.btn-block {
    width: 100%;
  }
}
.btn.btn-purple {
  background: #c625e1;
  border-color: #c625e1;
  color: #fff;
}
.btn.btn-purple:hover {
  background: #c625e1;
  border-color: #c625e1;
}
.btn:not(.dropdown) {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-transform: uppercase;
}
.btn:not(.dropdown):after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle,
      #000 10%,
      transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}
.btn:not(.dropdown):active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}
display-status .alert {
  margin-top: 10px;
}
back-button a {
  text-decoration: none;
}
back-button + span {
  margin-left: 10px;
}
back-button + div {
  display: inline;
  margin-left: 10px;
}
back-button .breadcrump {
  color: #0f5681;
  cursor: pointer;
  text-decoration: none;
  margin-right: 0.2em;
}
back-button .breadcrump:hover {
  color: #42b2e2;
  text-decoration: none;
}
.section-spinner-outer {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  left: 50%;
  top: 50%;
}
.section-spinner-outer i {
  font-size: 50px;
  z-index: 99999;
}
global-spinner {
  z-index: 999999;
}
.loading-spinner-container {
  position: relative;
  z-index: 99999;
}
.loader {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 50%;
  left: 0;
  right: 0;
}
.loader:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.loader:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.loader:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow:
    rgba(0, 0, 0, 0.75) 1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0,
    rgba(0, 0, 0, 0.75) 0 1.5em 0 0,
    rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0,
    rgba(0, 0, 0, 0.5) -1.5em 0 0 0,
    rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0,
    rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
    rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow:
    rgba(0, 0, 0, 0.75) 1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0,
    rgba(0, 0, 0, 0.75) 0 1.5em 0 0,
    rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0,
    rgba(0, 0, 0, 0.75) -1.5em 0 0 0,
    rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0,
    rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
    rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
global-spinner .still-loading {
  position: fixed;
  z-index: 999;
  height: 10em;
  width: 7em;
  overflow: show;
  white-space: nowrap;
  margin: auto;
  top: 55%;
  left: 0;
  right: 0;
  color: white;
}
global-spinner .dot {
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
  animation: pulse 1.5s infinite ease-in-out;
}
global-spinner .dot:nth-child(2) {
  animation-delay: 0.2s;
}
global-spinner .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}
.table th {
  border: 1px dotted #fff;
  background-color: #8fbfc3;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  text-align: left;
}
.table .sorted {
  background-color: #42b2e2;
}
.table-mobile .total {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}
.table-mobile .discount {
  font-weight: bold;
  color: #c625e1;
}
.table-mobile tfoot > tr > td {
  border: none;
}
@media screen and (max-width: 767px) {
  .table-mobile {
    display: block;
  }
  .table-mobile.table-pagination {
    margin-top: 20px;
    position: relative;
  }
  .table-mobile.table-pagination thead tr {
    width: 100%;
  }
  .table-mobile.table-pagination thead tr .pagination {
    left: auto;
    position: absolute;
    right: -9999px;
    top: 9969px;
  }
  .table-mobile.table-pagination thead tr .pagination > li > span,
  .table-mobile.table-pagination thead tr .pagination > li > a {
    padding: 5px 10px;
  }
  .table-mobile thead,
  .table-mobile tbody,
  .table-mobile tfoot,
  .table-mobile th,
  .table-mobile td,
  .table-mobile tr {
    display: block;
  }
  .table-mobile thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-mobile tr:not(.no-thick-border) {
    border-bottom: 3px solid #474747;
  }
  .table-mobile tr:not(.no-thick-border):last-child {
    border-bottom: none;
  }
  .table-mobile tbody > tr > td {
    border: none;
    border-bottom: 1px solid rgba(38, 38, 38, 0.2);
    min-height: 37px;
    position: relative;
    padding-left: 45%;
  }
  .table-mobile tbody > tr > td:before {
    content: attr(mobile-title);
    padding-right: 10px;
    position: absolute;
    left: 6px;
    width: 45%;
    white-space: nowrap;
    text-align: left;
  }
  .table-mobile tr.display-alert td {
    padding: 5px;
  }
  .table-mobile tr.display-alert td:before {
    content: "";
  }
  .table-mobile input[type=number] {
    color: #333;
    width: 100%;
  }
  .table-mobile .btn {
    display: inline-block;
  }
}
#snackbar {
  min-width: 250px;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 1;
  bottom: 5px;
  width: 100%;
  margin: auto;
}
#snackbar div {
  display: inline-block;
  min-width: 250px;
  padding: 0;
}
.has-error .ng-invalid {
  border-bottom: 1px solid #d9534f;
}
.has-error .ng-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.step-meter {
  margin: 15px 0 30px;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .step-meter {
    margin-bottom: 20px;
  }
}
.step-meter li {
  background: #8fbfc3;
  color: #fff;
  float: left;
  opacity: 0.95;
  padding: 5px 15px;
  position: relative;
}
@media (min-width: 768px) {
  .step-meter li {
    padding-right: 50px;
  }
}
@media (max-width: 767.98px) {
  .step-meter li {
    margin-bottom: 10px;
  }
}
.step-meter li.completed {
  opacity: 0.7;
}
.step-meter li.completed > span span {
  display: none;
}
.step-meter li.completed > span i {
  display: inline-block;
}
.step-meter li:first-child {
  padding-left: 5px;
}
.step-meter li:first-child:after {
  display: none;
}
.step-meter li.active {
  background: #42b2e2;
  font-weight: bold;
  opacity: 1;
}
.step-meter li.active:before {
  border-color: transparent transparent transparent #42b2e2;
}
.step-meter li:after,
.step-meter li:before {
  border-style: solid;
  border-width: 20px 0 20px 10px;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.step-meter li:after {
  border-color: transparent transparent transparent #fff;
  left: 0;
}
.step-meter li:before {
  border-color: transparent transparent transparent #8fbfc3;
  right: -9px;
}
.step-meter li:not(:last-child) {
  margin-right: 10px;
}
.step-meter li > span {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 15px;
  height: 30px;
  line-height: 24px;
  margin-right: 5px;
  text-align: center;
  width: 30px;
}
.step-meter li > span i {
  display: none;
}
.captcha input[type=text] {
  max-width: 190px;
}
.captcha a {
  display: inline-block;
  margin-left: 10px;
}
.captcha a i:before {
  content: "\f021";
}
.captcha .captcha-div {
  display: inline-block;
  vertical-align: bottom;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #fff;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  opacity: 0;
  z-index: 1;
  width: 30px;
}
.checkbox:disabled + label {
  opacity: 0.65;
}
.checkbox input[type=checkbox]:checked + label::after,
.checkbox input[type=radio]:checked + label::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}
.checkbox.checkbox-success input[type=checkbox]:checked + label::before,
.checkbox.checkbox-success input[type=radio]:checked + label::before {
  background-color: #20b9b2;
  border-color: #20b9b2;
}
smart-search .field {
  width: 75%;
}
smart-search .loading {
  position: relative;
}
smart-search .loading:after {
  border: 3px solid white;
  border-left-color: #42b2e2;
  border-right-color: #42b2e2;
  content: "";
  width: 30px;
  border-radius: 50px;
  height: 30px;
  position: absolute;
  z-index: 1000;
  animation: rotate 0.5s infinite;
  -webkit-animation: rotate 0.5s infinite;
}
smart-search .field.loading:after {
  position: absolute;
  top: 0;
  margin-top: 2px;
  right: 20px;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.fa-sort,
.fa-sort-desc,
.fa-sort-asc {
  padding-right: 10px;
}
.password-validation {
  font-size: 0.75rem;
}
.password-validation .icon-align {
  margin-right: 3px;
}
.password-validation .inner-align {
  padding-right: 0px;
}
.password-validation .validation-align {
  margin-top: 6px;
  margin-bottom: 2px;
}
.password-validation .g {
  color: green;
}
.password-validation .r {
  color: red;
}
.password-validation .inner-rigt-align {
  text-align: right;
  padding-right: 0px;
}
fileupload .modal-header button {
  float: right;
}
fileupload .well {
  padding: 10px;
}
.alert > span {
  vertical-align: super;
  padding: 0 10px;
}
.alert .message-close {
  vertical-align: text-top;
}
.alert .fa-close {
  font-size: 1.5rem;
}
@keyframes enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes exit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.on-enter {
  animation: enter 1s ease-in;
}
.on-leave {
  animation: exit 1s ease-out;
}
.modal-dialog .modal-header {
  border-bottom: none;
  background-color: #42b2e2;
  background-image: -webkit-linear-gradient(top, rgba(24, 87, 104, 0.5) 0, rgba(22, 63, 75, 0.5) 100%);
  background-image: -o-linear-gradient(top, rgba(24, 87, 104, 0.5) 0, rgba(22, 63, 75, 0.5) 100%);
  background-image:
    linear-gradient(
      to bottom,
      rgba(24, 87, 104, 0.5) 0,
      rgba(75, 172, 198, 0.5) 100%);
  border-radius: 5px 5px 0 0;
  padding: 10px;
  display: inline;
}
.modal-dialog .modal-header .modal-title,
.modal-dialog .modal-header .main-title {
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 0;
  float: left;
}
.modal-dialog .modal-header.bg-red {
  background-color: #d9534f;
  background-image: -webkit-linear-gradient(top, rgba(227, 105, 43, 0.5) 0, rgba(192, 108, 60, 0.5) 100%);
  background-image: -o-linear-gradient(top, rgba(227, 105, 43, 0.5) 0, rgba(192, 108, 60, 0.5) 100%);
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 89, 6, 0.5) 0,
      rgba(192, 108, 60, 0.5) 100%);
}
.modal-dialog .modal-header .close {
  color: #fff;
  font-size: 20px;
  margin-top: -10px;
  margin-top: 2px;
  opacity: 1;
  text-shadow: 0 1px 0 #000;
  margin-right: auto;
  float: right;
}
.modal-dialog .modal-header .close:hover {
  color: #0f5681;
}
.modal-dialog .modal-header .warning {
  background-color: #f0ad4e;
  background-image: -webkit-linear-gradient(top, #f0ad4e 0, #eed0a4 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0, #eed0a4 100%);
  background-image:
    linear-gradient(
      to bottom,
      #f0ad4e 0,
      #eed0a4 100%);
}
.modal-dialog .modal-header .warning .modal-title {
  color: #8f5602;
}
.modal-dialog .modal-footer {
  align-items: flex-end;
  flex-direction: column;
  border-top: 1px solid #dcdcdc;
}
.modal-dialog .modal-footer .btn {
  margin-right: 0 !important;
}
.modal-dialog .modal-footer display-status {
  width: 100%;
}
.modal-dialog .modal-footer display-status .alert {
  margin-top: 10px;
  padding: 4px 10px 1px;
}
.accordion .content-expanded {
  max-height: 500px;
  opacity: 1;
  padding: 0 0 1rem 1rem;
  visibility: visible;
  overflow: auto;
  transition:
    opacity 200ms ease-in,
    visibility 0s 0s,
    max-height 200ms ease-in;
}
.accordion .content-collapsed {
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: opacity 200ms ease-out, max-height 200ms ease-out;
}
.accordion__item:first-child .accordion__header {
  border-radius: 8px 8px 0 0;
}
.accordion__item:last-child .accordion__header {
  border-radius: 0 0 8px 8px;
}
.accordion__header {
  display: flex;
  font-size: 1.3rem;
  padding: 0 1rem;
  justify-content: space-between;
  align-items: center;
  border: 2px solid transparent;
  height: 50px;
  cursor: pointer;
  background: #f6f3f3;
}
.accordion__toggle-btn {
  border: none;
  transition: transform 0.3s ease-in;
  background: none;
}
.accordion__toggle-btn:focus {
  outline: none;
}
.accordion__toggle-btn:disabled {
  cursor: not-allowed;
}
.accordion__toggle-btn svg path:nth-child(2) {
  fill: hsl(0, 0%, 60%);
}
.accordion__item.disabled .accordion__header {
  color: hsl(0, 0%, 60%);
  cursor: not-allowed;
}
.accordion__item.active .accordion__header {
  background-color: #dcdcdc;
}
.accordion__item.active .accordion__toggle-btn {
  transform: rotate(180deg);
}
.accordion__item.accordion__header:focus-within {
  border-color: var(--primary);
  border-radius: 8px;
}
.form-check {
  font-size: 2.5rem;
}
.form-check .form-check-input {
  width: 100px;
}
.form-check .form-check-input:checked {
  background-color: #42b2e2;
  border-color: #42b2e2;
}
.dropdown-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.dropdown-container .btn-group {
  width: 100%;
}
.dropdown-container .ddl-action .btn-block {
  width: 100%;
}
.dropdown-container .menu {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  z-index: 1000;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown-container .menu ul {
  padding: 0;
  margin: 0;
}
.dropdown-container .menu ul li {
  padding: 1px;
  cursor: pointer;
  list-style: none;
}
.dropdown-container .menu ul li:hover {
  background-color: #f5f5f5;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.p-15 {
  padding: 15px !important;
}
.pr-5 {
  padding-right: 5px;
}
.pr-15 {
  padding-right: 15px;
}
.pl-3 {
  padding-left: 3px;
}
.pl-15 {
  padding-left: 15px;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.mr-15 {
  margin-right: 15px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-3 {
  margin-top: 3px;
}
.ml-3 {
  margin-left: 3px;
}
.ml-5 {
  margin-left: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.hand {
  cursor: pointer;
}
.pointer {
  cursor: default;
}
.core-modal.modal {
  background: rgba(0, 0, 0, 0.6);
}
.core-modal .modal-dialog {
  top: 40px;
}
.core-modal .modal-lg {
  width: 800px;
}
@media (max-width: 767.98px) {
  .core-modal .modal-lg {
    width: 99%;
  }
}
.core-modal .modal-body {
  max-height: 500px;
  overflow: auto;
}
.core-modal .danger-heading {
  background-color: #d9534f;
  background-image: none;
}
.slide-in {
  animation: fade-in 0.5s;
}
.slide-out {
  animation: fade-out 0.5s;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
core-popover .heading {
  background-color: #42b2e2;
  font-size: 1.2rem;
  margin-bottom: 3px;
  padding-left: 3px;
}
core-popover .popover {
  padding: 5px;
  background-color: #fff;
  border: 1px solid #ddd;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  transition: all 500ms ease 0s;
}
core-popover .active {
  opacity: 1;
  pointer-events: auto;
}
.container-wrapper {
  margin: 0 auto;
  max-width: 1340px;
  padding: 0 20px;
  width: 99%;
}
.container-wrapper.content-layout {
  padding-bottom: 20px;
  padding-top: 20px;
}
.w-90 {
  width: 90%;
}
.text_white {
  color: #fff;
}
.requisition > table {
  height: 782px;
  max-height: 782px;
}
.requisition table,
.requisition th,
.requisition td {
  border: 1px solid #00adef;
  padding: 10px;
}
.requisition table .test-header,
.requisition th .test-header,
.requisition td .test-header {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .root-wrapper nav-header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
}
@media (max-width: 767.98px) {
  header {
    background: #2d3e50;
  }
  header > .container-wrapper {
    position: relative;
  }
  header > .container-wrapper > .row > * {
    position: static;
  }
}
@media (min-width: 768px) {
  header {
    background: #fff;
    padding-bottom: 10px;
  }
}
header,
header a {
  color: #2d3e50;
}
@media (max-width: 767.98px) {
  header .logo {
    padding-left: 5px;
  }
}
header .logo a {
  display: block;
  text-decoration: none;
}
header .logo a img {
  height: 90px;
}
@media (max-width: 991.98px) {
  header .logo a img {
    height: 70px;
  }
}
@media (max-width: 767.98px) {
  header .logo a img {
    height: 50px;
  }
}
header .logo a .logo-heading {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .logo a .logo-heading span {
  display: block;
}
header .logo a .logo-heading .logo-title {
  color: #00adef;
  font-size: 30px;
  font-weight: bold;
  white-space: nowrap;
}
header .logo a .logo-heading .logo-subtitle {
  color: #9e9ea2;
}
header .utility-nav {
  display: table;
  font-size: 14px;
  float: right;
}
header .utility-nav .country {
  width: auto;
}
@media (max-width: 768px) {
  header .utility-nav {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  header .utility-nav {
    margin-top: 0;
  }
}
@media (min-width: 769px) {
  header .utility-nav {
    padding-top: 15px;
    margin-top: 25px;
  }
}
header .utility-nav > div {
  display: table-cell;
  padding: 0 5px;
  white-space: nowrap;
  vertical-align: middle;
}
@media (max-width: 1199.98px) {
  header .utility-nav > div {
    padding: 0 10px;
  }
}
@media (max-width: 991.98px) {
  header .utility-nav > div {
    padding: 0 5px;
  }
}
@media (max-width: 767.98px) {
  header .utility-nav > div {
    padding: 0 7px;
  }
}
header .utility-nav > div:last-child {
  padding-right: 0;
}
header .utility-nav > div > .help {
  display: table;
}
header .utility-nav > div > .help > * {
  display: table-cell;
  vertical-align: middle;
}
header .utility-nav > div > .help i {
  border: 1px solid #2d3e50;
  border-radius: 3px;
  margin-right: 10px;
  padding: 5px;
  width: 40px;
}
header .utility-nav i {
  color: #00adef;
}
header .utility-nav .phonehelp {
  font-weight: bold;
}
header .utility-nav .phonehelp .helptxt {
  color: #546271;
  font-weight: normal;
}
header .utility-nav .btn-new {
  border: 1px solid #2d3e50;
  border-radius: 3px;
  color: #2d3e50;
  padding: 10px;
}
header .utility-nav .btn-new:hover {
  background: #dfe4e8;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  header .utility-nav .btn-new {
    background: #fff;
    border-color: #fff;
    padding: 2px 10px;
  }
}
header .utility-nav select.form-control {
  border: 1px solid #2d3e50;
}
@media (min-width: 768px) {
  header .utility-nav select.form-control {
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  header .utility-nav select.form-control {
    font-size: 16px;
    height: 26px;
    line-height: 20px;
    padding: 0 5px;
    width: auto;
  }
}
header .utility-nav .mobile-bar {
  display: block;
  font-size: 26px;
}
@media (max-width: 767.98px) {
  header .utility-nav .check-out {
    padding: 0 3px;
  }
  header .utility-nav .check-out .badge {
    font-size: 12px;
    margin-left: 7px;
  }
}
header .utility-nav .goog-te-menu-value span {
  display: none;
}
header .utility-nav .goog-te-menu-value::after {
  content: "Lang";
}
header .utility-nav .goog-te-gadget-simple {
  border-color: #2d3e50;
  border-radius: 3px;
  color: #2d3e50;
  padding: 10px;
}
@media (max-width: 767.98px) {
  header .utility-nav .goog-te-gadget-simple {
    border-color: #fff;
    padding: 2px 10px;
    margin-left: 5px;
  }
}
@media (min-width: 769px) {
  header .utility-nav .global-search {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  header .utility-nav .global-search {
    left: 0;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 44px;
  }
}
header .utility-nav .global-search .form-control {
  height: auto;
}
header .utility-nav .global-search .input-group-text {
  background: #00adef;
}
header .utility-nav .global-search .input-group-text i {
  color: #fff;
}
header .utility-nav .global-search .form-control,
header .utility-nav .global-search .input-group-text {
  padding-bottom: 7px;
  padding-top: 7px;
}
@media (min-width: 768px) {
  .main-nav {
    background:
      linear-gradient(
        to right,
        #2d3e50 0%,
        #2d3e50 50%,
        #00adef 50%,
        #00adef 100%);
  }
  .main-nav .container-wrapper {
    width: 99%;
    max-width: 100%;
  }
  .main-nav nav {
    background:
      linear-gradient(
        to right,
        #2d3e50 0%,
        #2d3e50 79%,
        #00adef 79%,
        #00adef 100%);
    position: relative;
  }
}
@media (min-width: 768px) and (min-width: 768.1px) {
  .main-nav nav .splitter {
    height: 100%;
    left: 75%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100px;
  }
  .main-nav nav .splitter:after {
    content: "";
    background:
      linear-gradient(
        to right,
        #2d3e50 0%,
        #2d3e50 50%,
        #fff 50%,
        #fff 52%,
        #00adef 52%,
        #00adef 100%);
    height: 120%;
    left: 0;
    position: absolute;
    top: -7px;
    transform: rotate(25deg);
    width: 100%;
  }
}
@media (min-width: 768px) {
  .main-nav nav ul.nav {
    padding-left: inherit;
  }
  .main-nav nav ul.nav > li {
    position: relative;
  }
  .main-nav nav ul.nav > li a {
    color: #fff;
    display: block;
    font-size: 20px;
    padding: 15px;
  }
  .main-nav nav ul.nav > li a i {
    padding-left: 2px;
    vertical-align: middle;
  }
  .main-nav nav ul.nav > li a:hover,
  .main-nav nav ul.nav > li a.active {
    background: #546271;
    text-decoration: none;
  }
  .main-nav nav ul.nav > li ul {
    background: #546271;
    top: 60px;
    left: 0;
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    visibility: hidden;
    overflow: hidden;
    list-style: none;
    white-space: nowrap;
    width: 0;
    z-index: 1001;
  }
  .main-nav nav ul.nav > li:hover {
    background: #546271;
  }
  .main-nav nav ul.nav > li:hover ul {
    visibility: visible;
    height: auto;
    min-width: 100%;
    width: auto;
  }
  .main-nav nav ul.nav > li:hover ul li a {
    font-size: 18px;
    padding: 8px 15px;
  }
  .main-nav nav ul.nav > li:hover ul li a:hover,
  .main-nav nav ul.nav > li:hover ul li a.active {
    background: #dfe4e8;
    color: #2d3e50;
  }
  .main-nav nav .menu-cart .contact {
    margin-right: 1em;
    color: #fff;
    vertical-align: middle;
  }
  .main-nav nav .menu-cart a {
    color: #fff;
  }
  .main-nav nav .menu-cart a .badge {
    font-size: 16px;
    top: 1px;
  }
  .main-nav nav .menu-cart a > *:not(:last-child) {
    padding-right: 5px;
  }
  .main-nav nav .menu-cart .badge-primary {
    background: #00adef;
    border-radius: 50%;
  }
  .main-nav nav .menu-cart .badge-danger {
    background: #d9534f;
    border-radius: 50%;
  }
}
@media (min-width: 768px) and (max-width: 768px) {
  .main-nav nav .menu-cart {
    left: 10px;
  }
}
.badge {
  background: #00adef;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .menu-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 998;
  }
  .main-nav-mobile ul {
    background: #2d3e50;
    box-shadow: 0 0 5px #000;
    display: block;
    height: 100%;
    position: fixed;
    top: 0;
    right: -62%;
    visibility: hidden;
    width: 60%;
    z-index: 999;
  }
  .main-nav-mobile ul li {
    border-bottom: 1px solid #546271;
  }
  .main-nav-mobile ul li a {
    color: #fff;
    display: block;
    font-size: 18px;
    padding: 10px 20px;
  }
  .main-nav-mobile ul li a:hover,
  .main-nav-mobile ul li a.active {
    background: #00adef;
    text-decoration: none;
  }
}
.why-choose ul {
  list-style: none;
  padding: 0;
}
.main-title {
  color: #2d3e50;
  padding: 10px 0;
}
.main-title span {
  color: #00adef;
}
.main-title back-button + div {
  display: inline;
}
#map_canvas {
  width: 100% !important;
  height: 800px !important;
}
.home .urgentnotif {
  opacity: 1;
  animation-duration: 5s;
  animation-iteration-count: 3;
  animation-name: fadeAndHideUrgentNotif;
}
@keyframes fadeAndHideUrgentNotif {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.home-slider {
  background-image: url("./media/bg-IJNSZUXP.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}
@media (max-width: 767.98px) {
  .home-slider {
    min-height: 180px;
  }
}
.home-slider h1 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  padding: 40px 0 0;
}
@media (max-width: 767.98px) {
  .home-slider h1 {
    font-size: 20px;
    padding-top: 10px;
  }
}
.home .process-steps .row {
  margin: 0;
}
.home .process-steps .col-md-3 {
  padding: 0;
}
.home .process-steps-content {
  min-height: 225px;
  padding: 30px 40px;
  vertical-align: top;
}
.home .process-steps .bg-color-1 {
  background: #0cb8b6;
}
.home .process-steps .bg-color-2 {
  background: #0ba6a4;
}
.home .process-steps .bg-color-3 {
  background: #0a9392;
}
.home .process-steps .bg-color-4 {
  background: #08817f;
}
.home .process-steps .media {
  color: #fff;
}
.home .process-steps .media .media-body {
  text-align: center;
}
.home .process-steps .media .media-body a {
  text-decoration: none;
  color: #fff;
}
.home .process-steps .media h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.home .process-steps .media p {
  font-size: 16px;
  line-height: 28px;
}
.home .process-steps ul {
  list-style: square;
  text-align: left;
  margin: 0;
}
.home-services > * {
  padding-bottom: 20px;
}
.home-services h4 {
  color: #2d3e50;
}
.home-services h4 i {
  color: #00adef;
  padding-right: 10px;
  vertical-align: middle;
}
.home-services p {
  color: #546271;
}
.home .savings {
  top: 40%;
  position: relative;
  font-size: 2.5em !important;
}
@media (max-width: 767.98px) {
  .home .savings {
    top: 30%;
    font-size: 1.5em !important;
  }
}
.home .td-savings {
  color: #c625e1;
}
.home .main-title {
  padding-top: 30px;
}
.home .customer-achivement {
  background: #00adef;
  font-weight: bold;
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .home .customer-achivement {
    padding: 10px 0;
  }
}
.home .customer-achivement .customer-content {
  border: 1px solid #98def8;
  display: inline-block;
  min-width: 200px;
  padding: 30px 30px 30px 30px;
  position: relative;
  text-align: left;
}
@media (max-width: 991.98px) {
  .home .customer-achivement .customer-content {
    display: block;
    margin: 5px 0;
    max-width: 90%;
  }
}
.home .customer-achivement .row {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .home .customer-achivement .row {
    margin-top: 10px;
  }
}
.home .customer-achivement .customer-count {
  color: #2d3e50;
  font-size: 20px;
}
.home .customer-achivement .customer-desc {
  color: #fff;
  font-size: 24px;
}
.home .customer-achivement .customer-icons {
  background: #00adef;
  border: 1px solid #98def8;
  color: #fff;
  font-size: 20px;
  height: 50px;
  padding: 10px;
  position: absolute;
  right: -30px;
  text-align: center;
  top: 30px;
  width: 50px;
}
.home .customer-achivement .customer-icons i {
  font-size: 26px;
}
.home-promise .home-promise-content > * {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  padding: 30px 10px;
  text-transform: uppercase;
}
.home-promise .home-promise-content > * > *:last-child {
  padding-top: 10px;
}
.home-promise .home-promise-content > * i {
  color: #00adef;
  font-size: 40px;
}
@media (min-width: 576px) {
  .home-promise .home-promise-content > *:not(:nth-last-child(-n+3)) {
    border-bottom: 1px solid #dfe4e8;
  }
  .home-promise .home-promise-content > *:not(:nth-child(3n)) {
    border-right: 1px solid #dfe4e8;
  }
}
@media (max-width: 575.98px) {
  .home-promise .home-promise-content > *:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #dfe4e8;
  }
  .home-promise .home-promise-content > *:not(:nth-child(2n)) {
    border-right: 1px solid #dfe4e8;
  }
}
.home-promise .home-promise-recentcharities > div {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  padding: 60px 10px;
  text-transform: uppercase;
}
.home-promise .home-promise-recentcharities > div > *:last-child {
  padding-top: 10px;
}
.home-promise .home-promise-recentcharities > div i {
  color: #fff;
}
.home-promise .home-promise-recentcharities > div img {
  width: 300px;
}
@media (min-width: 576px) {
  .home-promise .home-promise-recentcharities > div:not(:nth-last-child(-n+3)) {
    border-bottom: 1px dotted #dfe4e8;
  }
  .home-promise .home-promise-recentcharities > div:not(:nth-child(3n)) {
    border-right: 1px dotted #dfe4e8;
  }
}
@media (max-width: 575.98px) {
  .home-promise .home-promise-recentcharities > div {
    border-bottom: 1px dotted #dfe4e8;
    border-right: 0;
  }
  .home-promise .home-promise-recentcharities > div img {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .home-promise .home-promise-recentcharities > div {
    padding: 40px 10px;
  }
}
.home-promise .home-promise-recentcharities a {
  color: #fff;
}
.home-promise .home-promise-recentcharities {
  background: linear-gradient(#10c8f2, #1a1919);
  position: relative;
}
@media (min-width: 768px) {
  .home-promise .home-promise-recentcharities .container-wrapper {
    padding-left: 180px;
  }
}
.home-promise .home-promise-recentcharities .bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 170px;
}
.home-promise .home-promise-recentcharities .subtitle {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: normal;
  text-transform: none;
}
@media (max-width: 768px) {
  .home-promise .home-promise-recentcharities .subtitle {
    font-size: 2rem;
  }
}
.home-promise .home-promise-recentcharities .subtitle .imgicon {
  width: auto;
}
.home-promise .home-promise-recentcharities .main-title {
  padding: 20px 0 0;
}
.home-promise .home-promise-recentcharities .main-title span {
  color: #fff;
}
.home-promise .home-promise-recentcharities .social-icons > a {
  color: #fff;
  display: inline-block;
}
.home-promise .home-promise-recentcharities .social-icons > a:not(:first-child) {
  margin-left: 20px;
}
.home .home-promise-content a {
  color: #000;
}
.home .home-needs-content {
  border-top: 1px solid #dfe4e8;
  margin: 0 !important;
}
.home .home-needs-content > * {
  border: 1px solid #dfe4e8;
  border-width: 0 1px 1px 0;
  padding: 10px;
}
@media (max-width: 575.98px) {
  .home .home-needs-content > *:nth-child(2n) {
    border-right: none;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .home .home-needs-content > *:nth-child(3n) {
    border-right: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .home .home-needs-content > *:nth-child(4n) {
    border-right: none;
  }
}
.home .home-needs p {
  margin: 0;
}
.main-container {
  min-height: 60vh;
}
@media (max-width: 767.98px) {
  .main-container {
    padding-bottom: 40px;
    margin-top: 70px;
    min-height: 87vh;
  }
}
.main-container.container-wrapper.content-layout {
  padding-bottom: 230px;
}
@media (max-width: 767.98px) {
  .main-container.container-wrapper.content-layout {
    padding-bottom: 60px;
  }
}
.content-body {
  padding: 20px;
}
charcount {
  font-size: 0.8rem;
  color: #95a3b3;
}
nav-footer {
  display: contents;
  bottom: 0;
  width: 100%;
  left: 0;
}
footer {
  background: #2d3e50;
  padding: 25px 0 10px;
  z-index: 1;
}
@media (max-width: 767.98px) {
  footer {
    padding-top: 0;
  }
}
footer,
footer a {
  color: #fff;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
}
footer ul li {
  padding: 5px 0;
}
footer ul li a:hover {
  color: #00adef;
}
footer ul.contact-list {
  padding: 0;
}
footer ul.contact-list li {
  padding: 5px 10px;
}
footer ul.contact-list li a {
  font-size: 20px;
}
footer ul.contact-list li:first-child {
  padding-left: 0;
}
footer ul.no-padding {
  padding: 0;
}
footer h5 {
  display: inline-block;
  position: relative;
}
footer h5:after {
  background: #00adef;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 70%;
}
footer .footer-bottom {
  font-size: 14px;
  margin: 0;
  padding-top: 10px;
}
@media (min-width: 768px) {
  footer .footer-bottom {
    border-top: 1px solid #546271;
  }
}
footer .version {
  color: #546271;
  margin-left: 0.5em;
}
footer .small-footer {
  padding-top: 3px;
}
footer .small-footer a {
  margin-left: 1em;
}
footer .small-footer div {
  padding: 0;
}
.events .events-content {
  padding-bottom: 50px;
}
.events .date {
  font-style: italic;
}
.events .news-img {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.events .news-img-right {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .events .news-img {
    max-width: 100%;
    float: none;
  }
}
.events .news-img-logo {
  float: left;
  margin-right: 10px;
  max-width: 100px;
}
.events .img img {
  border-radius: 3px;
  width: 100%;
}
.home-needs-content img {
  border-radius: 3px;
  padding: 5px;
  max-width: 100%;
  max-height: 100%;
  width: 300px;
}
@media (max-width: 1199.98px) {
  .home-needs-content img {
    width: auto;
    height: auto;
  }
}
.events-content ul,
.events-details ul,
.product-content ul,
.product-details ul {
  padding: 0;
}
.events-content ul li.price,
.events-details ul li.price,
.product-content ul li.price,
.product-details ul li.price {
  font-size: 1.5em;
}
.events-content ul li,
.events-details ul li,
.product-content ul li,
.product-details ul li {
  padding: 5px 0;
}
.events-content ul li > *:first-child,
.events-details ul li > *:first-child,
.product-content ul li > *:first-child,
.product-details ul li > *:first-child {
  font-weight: bold;
}
.events-details .savings,
.product-details .savings {
  font-size: 2em;
  color: #c625e1;
  font-weight: bold;
}
@media (min-width: 768px) {
  .events-details .main-title,
  .product-details .main-title {
    padding-top: 0;
  }
}
.events-details ul,
.product-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.events-details .img-container-sm,
.product-details .img-container-sm {
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}
.events-details .img-container-sm .centered,
.product-details .img-container-sm .centered {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .events-details .img-container-sm .centered,
  .product-details .img-container-sm .centered {
    font-size: 1.5em;
  }
}
.events-details .img-container-sm a,
.product-details .img-container-sm a {
  color: #000;
}
@media (max-width: 767.98px) {
  .events-details .btn,
  .product-details .btn {
    width: 100%;
  }
}
.locations .card {
  margin-top: 10px;
  background-clip: padding-box;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
}
.locations .card .card-block {
  padding: 5px;
  min-height: 200px;
}
.products-content {
  margin-top: 10px;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
}
.products-content ul {
  padding: 0;
  margin-top: 10px;
  min-height: 155px;
}
.products-content ul.home {
  margin: 0;
  min-height: 90px;
}
.products-content p {
  padding: 5px;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 3.6em;
  line-height: 1.8em;
}
.products-content .container {
  position: relative;
  padding: 0;
  cursor: pointer;
  margin-bottom: 0;
}
.products-content .container.detail {
  cursor: default;
}
.products-content .container .bottom-left {
  position: absolute;
  bottom: 3px;
  left: 3px;
}
.products-content .container .top-left {
  position: absolute;
  top: 3px;
  left: 3px;
}
.products-content .container .top-right {
  position: absolute;
  top: 3px;
  float: right;
  right: 3px;
}
.products-content .container .top-right .logo {
  float: right;
}
.products-content .container .bottom-right {
  position: absolute;
  bottom: 3px;
  right: 3px;
  float: right;
}
.products-content .container .bottom-right .logo {
  float: right;
}
.products-content .container .centered {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .products-content .container .centered {
    font-size: 1.5em;
  }
}
.products-content .container .logo {
  width: 30%;
  opacity: 0.75;
}
.products-content .container img {
  width: 100%;
}
.products-content .footer {
  border-top: 1px solid #e0e0e0;
  padding: 3px;
  width: 100%;
}
.products-content th {
  background-color: #eeeeee;
}
.category {
  padding-bottom: 10px;
  margin-top: 40px;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
  min-height: 480px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .category {
    min-height: 430px;
  }
}
.category .container {
  position: relative;
  padding: 0;
  margin-bottom: 0;
}
.category .container .centered {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
}
.category .container .logo {
  width: 40%;
  opacity: 0.75;
}
.category .container img {
  width: 100%;
}
.category .container .bottom-left {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.category .container .top-left {
  position: absolute;
  top: 5px;
  left: 5px;
}
.category .container .top-right {
  position: absolute;
  top: 5px;
  float: right;
  right: 5px;
}
.category .container .top-right .logo {
  float: right;
}
.category .container .bottom-right {
  position: absolute;
  bottom: 5px;
  right: 5px;
  float: right;
}
.category .container .bottom-right .logo {
  float: right;
}
.category .footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  bottom: 15px;
  position: absolute;
  width: 100%;
}
.category p {
  padding: 10px;
  font-size: 20px;
}
.category .count {
  font-weight: bold;
  font-size: 24px;
}
.alert > span {
  vertical-align: super;
  padding: 0 10px;
}
.alert .message-close {
  vertical-align: text-top;
}
.nav.nav-tabs a {
  color: #00adef;
}
.nav.nav-tabs a:hover {
  color: #059bd4;
}
.nav.nav-tabs .active {
  background-color: #98def8;
  border: 1px solid #98def8;
}
.nav.nav-tabs .nav-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #eeeeee;
}
.nav .separator {
  border-top: solid 3px #fff;
}
.sort {
  padding-right: 3px;
}
th[sort-column] {
  cursor: pointer;
}
.login .local,
.signup .local {
  width: 220px;
}
.login hr,
.signup hr {
  border-top: 3px solid #00adef;
}
@media (min-width: 768px) {
  .login > .row > *:first-child,
  .signup > .row > *:first-child {
    padding-right: 50px;
  }
  .login > .row > *:last-child,
  .signup > .row > *:last-child {
    border-left: 1px solid #98def8;
    padding-left: 50px;
  }
  .login .no-border,
  .signup .no-border {
    border-left: none !important;
  }
  .login .full-width,
  .signup .full-width {
    width: 150px;
  }
  .login .local,
  .signup .local {
    float: right;
  }
}
@media (max-width: 768px) {
  .login .full-width,
  .signup .full-width {
    width: 100%;
  }
}
.login .login-social,
.login .signup-social,
.signup .login-social,
.signup .signup-social {
  list-style: none;
  padding: 0;
}
.login .login-social li,
.login .signup-social li,
.signup .login-social li,
.signup .signup-social li {
  padding: 10px 0;
}
.login .login-social li .btn i,
.login .signup-social li .btn i,
.signup .login-social li .btn i,
.signup .signup-social li .btn i {
  margin-right: 15px;
}
.signup .signup-social li .btn,
.signup .login-social li .btn,
.login .signup-social li .btn,
.login .login-social li .btn {
  min-width: 215px;
  padding-bottom: 6px;
  padding-top: 6px;
}
.signup .signup-social li img,
.signup .login-social li img,
.login .signup-social li img,
.login .login-social li img {
  cursor: pointer;
  max-width: 218px;
}
.modal-dialog .modal-header {
  background: #2d3e50;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding: 7px 10px 10px;
}
.modal-dialog .modal-header .modal-title,
.modal-dialog .modal-header .main-title {
  color: #fff;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
.modal-dialog .modal-header .close {
  color: #fff;
  font-size: 20px;
  margin-top: -10px;
}
.modal-dialog .modal-header .close:hover {
  color: #00adef;
}
.modal-dialog .modal-footer {
  align-items: flex-end;
  flex-direction: column;
  border-top: none;
  padding-top: 0;
}
.modal-dialog .modal-footer .btn {
  margin-right: 0 !important;
}
.modal-dialog .modal-footer display-status {
  width: 100%;
}
.modal-dialog .modal-footer display-status .alert {
  margin-top: 10px;
  padding: 4px 10px 1px;
}
.data-success i:not(.fa-lg) {
  font-size: 120px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #ffffff;
}
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -1.5em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-center {
  top: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-center {
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-center {
  top: 45%;
}
#toast-container {
  position: fixed;
  z-index: 999999;
}
#toast-container.toast-center,
#toast-container.toast-top-center,
#toast-container.toast-bottom-center {
  width: 100%;
}
#toast-container.toast-center > div,
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  margin: auto;
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > :hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
}
#toast-container > .toast-wait {
  background-image: url(data:image/gif;base64,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) !important;
}
#toast-container > .toast-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
}
#toast-container > .toast-success {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
}
#toast-container > .toast-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51a351;
}
.toast-error {
  background-color: #bd362f;
}
.toast-info {
  background-color: #2f96b4;
}
.toast-wait {
  background-color: #2f96b4;
}
.toast-warning {
  background-color: #f89406;
}
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
:not(.no-enter)#toast-container > div.ng-enter,
:not(.no-leave)#toast-container > div.ng-leave {
  -webkit-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -ms-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
}
:not(.no-enter)#toast-container > div.ng-enter.ng-enter-active,
:not(.no-leave)#toast-container > div.ng-leave {
  opacity: 0.8;
}
:not(.no-leave)#toast-container > div.ng-leave.ng-leave-active,
:not(.no-enter)#toast-container > div.ng-enter {
  opacity: 0;
}
.order-confirm i:not(.fa-exclamation-circle):not(.fa-envelope) {
  font-size: 120px;
}
.order-header {
  border: 1px solid #dee2e6;
  min-height: 150px;
  padding: 10px;
}
.order-header div:nth-child(2n) {
  font-weight: bold;
}
input.ng-invalid,
select.ng-invalid,
textarea.ng-invalid {
  border-right: 3px solid #35e3eb;
}
tab .pane {
  margin-top: 20px;
}
input[type=color] {
  padding: 0;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.bg-red {
  background-color: #d9534f !important;
}
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.container:hover input ~ .checkmark {
  background-color: #ccc;
}
.container input:checked ~ .checkmark {
  background-color: #00adef;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .checkmark:after {
  display: block;
}
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
a {
  color: #00adef;
}
.progress-bar {
  background-color: #5cb85c;
}
.progress-sm {
  height: 10px;
}
.tool-tip {
  color: #059bd4;
}
.english-only {
  color: #2d3e50;
}
.popover-header {
  background-color: #00adef;
  color: #fff;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #5ec9f2;
}
.page-item.active .page-link {
  background-color: #00adef;
  border-color: #00adef;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modal-xl {
  max-width: 1200px;
  width: 1200px;
}
.modal-body info span {
  font-size: 14px;
}
all-social {
  display: inline-block !important;
}
.no-m {
  margin: 0 !important;
}
.home-app section {
  position: relative;
  padding: 150px 0;
  background:
    linear-gradient(
      to left,
      #10e8f2,
      #171717);
}
.home-app section p {
  color: white;
  font-size: 30px;
}
.home-app section p.discover {
  font-size: 70px;
}
.home-app section.app {
  background: linear-gradient(#10e8f2, #171717);
}
.home-app section .download {
  text-align: center;
}
.home-app section .container {
  cursor: default;
}
.home-app section .von {
  text-align: center;
  margin-bottom: 25px;
}
.payment form {
  width: 30vw;
  align-self: center;
}
.payment #card-element {
  border-radius: 4px 4px 0 0;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  width: 100%;
}
.payment button {
  width: 100%;
}
@media (max-width: 767.98px) {
  .payment form {
    width: 100%;
  }
}
.notfound {
  padding-top: 50px;
  background-color: #0c0c0d;
  height: 60vh;
}
@media (max-width: 767.98px) {
  .notfound {
    height: 80vh;
  }
}
.notfound table {
  background-color: #0c0c0d;
  border: 0;
}
.notfound td {
  border: 0;
  padding: reset;
}
.notfound img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.notfound .p-404 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 100px;
  line-height: 80px;
}
.notfound .p-404-caption {
  margin-bottom: 20px;
  color: #414b5e;
  text-align: center;
  font-style: italic;
}
.notfound .home {
  text-align: center;
}
.notfound a {
  letter-spacing: 0.5em;
  font-size: 18px;
  line-height: 2;
}
contents .card {
  margin-bottom: 20px;
  line-height: 1.42857143;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s;
  min-height: 500px;
}
contents .card:hover {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
contents .card-footer {
  background-color: #fff;
}
contents .card-title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
contents img {
  max-width: 100%;
}
contents ul {
  list-style-type: square;
  list-style: square;
  line-height: 2;
}
.offers .savings,
.home .savings {
  font-size: 2em;
  color: #c625e1;
  font-weight: bold;
}
.lab-panel .savings {
  color: #c625e1;
  font-weight: bold;
}
.roadmap {
  list-style: none;
  padding: 0;
  position: relative;
}
.roadmap:after {
  background: #2d3e50;
  content: "";
  height: 100%;
  left: 30%;
  position: absolute;
  width: 1px;
  top: 0;
  z-index: 101;
}
@media (max-width: 767.98px) {
  .roadmap:after {
    left: 10px;
  }
}
.roadmap > li {
  position: relative;
  padding: 20px 0;
  width: 30%;
}
@media (max-width: 767.98px) {
  .roadmap > li {
    width: 100%;
  }
}
.roadmap > li:after {
  background: #00adef;
  border: 3px solid #2d3e50;
  border-radius: 50%;
  content: "";
  height: 30px;
  left: 100%;
  position: absolute;
  width: 30px;
  top: 22px;
  transform: translateX(-50%);
  z-index: 102;
}
.roadmap > li h5 {
  background: #2d3e50;
  border-radius: 5px;
  color: #fff;
  padding: 5px 15px;
  position: relative;
  width: 92%;
}
.roadmap > li h5:after {
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #2d3e50;
  content: "";
  height: 0;
  position: absolute;
  right: -10px;
  top: 3px;
  width: 0;
}
.roadmap > li h1,
.roadmap > li p {
  padding-left: 15px;
  position: relative;
  width: 95%;
}
.roadmap > li iframe {
  margin-top: 10px;
  padding-left: 15px;
  position: relative;
  width: 95%;
}
.roadmap > li a {
  margin-left: 15px;
  width: 92%;
}
.roadmap > li:nth-child(even) {
  margin-left: 33%;
}
.roadmap > li:nth-child(even):after {
  left: -10%;
}
.roadmap > li:nth-child(even) h5 {
  margin-left: -6px;
}
.roadmap > li:nth-child(even) h5:after {
  border-left: none;
  border-right: 15px solid #2d3e50;
  left: -10px;
  right: auto;
}
.roadmap > li li {
  list-style-type: square;
}
@media (max-width: 767.98px) {
  .roadmap > li:nth-child(even),
  .roadmap > li:nth-child(odd) {
    margin-left: 0;
  }
  .roadmap > li:nth-child(even):after,
  .roadmap > li:nth-child(odd):after {
    left: 10px;
  }
  .roadmap > li:nth-child(even) h5,
  .roadmap > li:nth-child(odd) h5 {
    margin-left: 42px;
    width: auto;
  }
  .roadmap > li:nth-child(even) h5:after,
  .roadmap > li:nth-child(odd) h5:after {
    border-left: none;
    border-right: 15px solid #2d3e50;
    left: -10px;
    right: auto;
  }
  .roadmap > li:nth-child(even) ul,
  .roadmap > li:nth-child(odd) ul {
    margin-left: 36px;
  }
}
.faq h5:not(:first-child) {
  padding-top: 20px;
}
.faq span {
  margin-left: 15px;
}
.faq.app span {
  margin-left: 0;
}
.lab-box {
  background-size: cover;
  padding: 0 15px;
}
.lab-box .lab-box-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 50px !important;
}
@media screen and (max-width: 480px) {
  .lab-box .lab-box-content {
    padding: 30px !important;
  }
}
.lab-box .lab-box-content .media .media-left {
  text-align: center;
  width: 85px;
}
.lab-box a {
  color: #0cb8b6;
}
.lab-box a i {
  font-size: 60px;
  line-height: 64px;
}
.lab-box .media-body {
  color: #333;
  padding-left: 20px;
}
.lab-box .media-body h5 {
  font-size: 18px;
  line-height: 24px;
  margin: 10px 0 15px;
}
.lab-box .media-body p {
  font-size: 16px;
  line-height: 20px;
}
.chat .user-selected {
  background-color: #98def8;
}
.chat .divider {
  border-left: 1px solid #98def8;
  margin-left: 10px;
}
@media (max-width: 767.98px) {
  .chat .divider {
    border-left: 0;
    margin-left: 0;
  }
}
.chat .user {
  padding: 10px;
}
.chat .badge-danger {
  background: #d9534f;
  border-radius: 50%;
}
.chat-window .panel {
  border: 0;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
}
.chat-window .msg-container-base {
  margin: 0;
  max-height: 300px;
  overflow-x: hidden;
  padding: 10px;
}
.chat-window .msg-container-base::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.chat-window .msg-container-base::-webkit-scrollbar {
  background-color: #f5f5f5;
  width: 12px;
}
.chat-window .msg-container-base::-webkit-scrollbar-thumb {
  background-color: #555;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.chat-window .msg-container-base .msg-container {
  display: block;
  overflow: hidden;
  padding: 4px;
}
.chat-window .longer-chat {
  max-height: 450px;
}
.chat-window .chat-input:focus {
  border-color: #2d3e50;
  box-shadow: 0 1px 1px #fff inset, 0 0 4px #3071a9;
  outline: 0 none;
}
.chat-window .chat-msg {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s;
  padding: 5px;
  width: 90%;
}
.chat-window .chat-msg.chat-msg-sent {
  background: #fff;
  float: right;
}
.chat-window .chat-msg.chat-msg-receive {
  background: #97b6c5;
}
.chat-window .chat-msg p {
  margin: 0;
  padding-bottom: 3px;
}
.chat-window .chat-msg .chat-msg-author {
  color: #666;
  font-size: 11px;
}
.chat-window .panel-footer {
  padding: 5px;
}
.float-bottom {
  position: fixed;
  width: 100%;
  bottom: 3px;
  z-index: 10;
}
.chat-btutton-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  color: #c625e1;
  border-radius: 50px;
  text-align: center;
  font-size: 4em;
}
.chat-btutton-float-anim {
  color: #d9534f;
  opacity: 1;
  animation-duration: 3s;
  animation-iteration-count: 3;
  animation-name: fadeAndHideUrgentNotif;
}
@keyframes fadeAndHideUrgentNotif {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.floating-chat {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  transform: translateY(70px);
  transition: all 250ms ease-out;
  border-radius: 50%;
  opacity: 0;
  background: -moz-linear-gradient(-45deg, #183850 0, #183850 25%, #192c46 50%, #22254c 75%, #22254c 100%);
  background: -webkit-linear-gradient(-45deg, #183850 0, #183850 25%, #192c46 50%, #22254c 75%, #22254c 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.floating-chat.enter:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  opacity: 1;
}
.floating-chat.enter {
  transform: translateY(0);
  opacity: 0.6;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}
.floating-chat.expand {
  width: 250px;
  max-height: 400px;
  height: 400px;
  border-radius: 5px;
  cursor: auto;
  opacity: 1;
}
.floating-chat :focus {
  outline: 0;
  box-shadow: 0 0 3pt 2pt rgba(14, 200, 121, 0.3);
}
.floating-chat button {
  background: transparent;
  border: 0;
  color: white;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
}
.floating-chat .chat {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  transition: all 250ms ease-out;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.floating-chat .chat.enter {
  opacity: 1;
  border-radius: 0;
  margin: 10px;
  width: auto;
  height: auto;
}
.floating-chat .chat .header {
  flex-shrink: 0;
  padding-bottom: 10px;
  display: flex;
  background: transparent;
}
.floating-chat .chat .header .title {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 5px;
}
.floating-chat .chat .header button {
  flex-shrink: 0;
}
.floating-chat .chat .messages {
  padding: 10px;
  margin: 0;
  list-style: none;
  overflow-y: scroll;
  overflow-x: hidden;
  flex-grow: 1;
  border-radius: 4px;
  background: transparent;
}
.floating-chat .chat .messages::-webkit-scrollbar {
  width: 10px;
}
.floating-chat .chat .messages::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(25, 147, 147, 0.1);
}
.floating-chat .chat .messages::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(25, 147, 147, 0.2);
}
.floating-chat .chat .messages li {
  position: relative;
  clear: both;
  display: inline-block;
  padding: 5px 5px 2px 5px;
  margin: 0 0 20px 0;
  font: 12px/16px "Noto Sans", sans-serif;
  border-radius: 10px;
  background-color: rgba(25, 147, 147, 0.2);
  word-wrap: break-word;
  width: 81%;
}
.floating-chat .chat .messages li:before {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  content: "";
  background-size: cover;
}
.floating-chat .chat .messages li:after {
  position: absolute;
  top: 10px;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid rgba(25, 147, 147, 0.2);
}
.floating-chat .chat .messages li .chat-msg-author {
  color: #666;
  font-size: 11px;
}
.floating-chat .chat .messages li.other {
  float: right;
  margin-right: 45px;
  color: #0ad5c1;
}
.floating-chat .chat .messages li.other:before {
  right: -45px;
  background-image: url(/content/images/logo.webp);
}
.floating-chat .chat .messages li.other:after {
  border-right: 10px solid transparent;
  right: -10px;
}
.floating-chat .chat .messages li.self {
  float: left;
  margin-left: 45px;
  color: #0ec879;
}
.floating-chat .chat .messages li.self:before {
  left: -45px;
  background-image: url(/content/images/q.png);
}
.floating-chat .chat .messages li.self:after {
  border-left: 10px solid transparent;
  left: -10px;
}
@keyframes show-chat-even {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0;
  }
}
@-moz-keyframes show-chat-even {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes show-chat-even {
  0% {
    margin-left: -480px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes show-chat-odd {
  0% {
    margin-right: -480px;
  }
  100% {
    margin-right: 0;
  }
}
@-moz-keyframes show-chat-odd {
  0% {
    margin-right: -480px;
  }
  100% {
    margin-right: 0;
  }
}
@-webkit-keyframes show-chat-odd {
  0% {
    margin-right: -480px;
  }
  100% {
    margin-right: 0;
  }
}
.tests .btn {
  min-width: 115px;
}
@media (max-width: 768px) {
  .tests .btn {
    width: 100%;
    margin-bottom: 2px;
  }
}
.tests .fibro th {
  background-color: #42bdea;
}
.tests .fibro tr td:first-child {
  background-color: #eee;
}
.tests .fibro tr td:nth-child(3n) {
  background-color: #a4d1e2;
}
.tests .items div:first-child {
  padding: 2px;
}
.tests .items {
  border-bottom: 1px solid #98def8;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tests .items .btn {
  min-width: 115px;
}
@media (max-width: 768px) {
  .tests .items .btn {
    width: 100%;
    margin-bottom: 2px;
  }
}
.tests .items table {
  margin-bottom: 0;
}
.tests .items .container {
  position: relative;
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}
.tests .items .container .logo {
  width: 40%;
  opacity: 0.75;
}
.tests .items .container img {
  width: 100%;
}
.tests .items .container .bottom-left {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.tests .items .container .top-left {
  position: absolute;
  top: 5px;
  left: 5px;
}
.tests .items .container .top-right {
  position: absolute;
  top: 5px;
  float: right;
  right: 5px;
}
.tests .items .container .top-right .logo {
  float: right;
}
.tests .items .container .bottom-right {
  position: absolute;
  bottom: 5px;
  right: 5px;
  float: right;
}
.tests .items .container .bottom-right .logo {
  float: right;
}
.tests .grid-icon {
  color: #0cb8b6;
}
.tests .products-content .btn {
  min-width: auto;
}
.tele-appointment td {
  width: 25%;
}
@media (max-width: 768px) {
  .tele-appointment td {
    width: 100%;
  }
}
.tele-appointment .bg-color-1 {
  background: #0cb8b6;
}
.tele-appointment .bg-color-2 {
  background: #0ba6a4;
}
.tele-appointment .bg-color-3 {
  background: #0a9392;
}
.tele-appointment .bg-color-4 {
  background: #08817f;
}
.tele-appointment .media-body {
  padding-left: 10px;
}
.tele-appointment .media-left i {
  color: white;
}
@media (max-width: 768px) {
  .orders .full-width {
    width: 100%;
  }
}
.oversight textarea {
  width: 50%;
}
@media (max-width: 768px) {
  .oversight textarea {
    width: 100%;
  }
}
.process-steps-band .row {
  margin: 0;
}
.process-steps-band .col-md-4 {
  padding: 0;
}
.process-steps-band-content {
  padding: 10px 20px;
  vertical-align: top;
}
.process-steps-band .bg-color-1 {
  background: #0cb8b6;
}
.process-steps-band .bg-color-2 {
  background: #0ba6a4;
}
.process-steps-band .bg-color-3 {
  background: #0a9392;
}
.process-steps-band .media {
  color: #fff;
}
.process-steps-band .media .media-body {
  text-align: center;
}
.process-steps-band .media h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.pulse {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.5s;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.skeleton-loader {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background: rgb(239, 241, 246) no-repeat;
  border-radius: 4px;
  width: 100%;
  height: 20px;
  display: inline-block;
  margin-bottom: 10px;
  will-change: transform;
}
.skeleton-loader:after,
.skeleton-loader:before {
  box-sizing: border-box;
}
.skeleton-loader.circle {
  width: 40px;
  height: 40px;
  margin: 5px;
  border-radius: 50%;
}
.skeleton-loader.progress:after,
.skeleton-loader.progress:before,
.skeleton-loader.progress-dark:after,
.skeleton-loader.progress-dark:before {
  box-sizing: border-box;
}
.skeleton-loader.progress,
.skeleton-loader.progress-dark {
  transform: translate3d(0, 0, 0);
}
.skeleton-loader.progress:before,
.skeleton-loader.progress-dark:before {
  animation: progress 2s ease-in-out infinite;
  background-size: 200px 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  content: "";
}
.skeleton-loader.progress:before {
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0));
}
.skeleton-loader.progress-dark:before {
  background-image:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 0, 0, 0.2),
      transparent);
}
.skeleton-loader.pulse {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.5s;
}
.skeleton-loader.custom-content {
  height: 100%;
  background: none;
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-loader.pulse,
  .skeleton-loader.progress-dark,
  .skeleton-loader.custom-content,
  .skeleton-loader.progress::before {
    animation: none;
  }
  .skeleton-loader.progress::before,
  .skeleton-loader.progress-dark,
  .skeleton-loader.custom-content {
    background-image: none;
  }
}
@media screen and (min-device-width: 1200px) {
  .skeleton-loader {
    -webkit-user-select: none;
    user-select: none;
    cursor: wait;
  }
}
@keyframes progress {
  0% {
    transform: translate3d(-200px, 0, 0);
  }
  100% {
    transform: translate3d(calc(200px + 100vw), 0, 0);
  }
}
@keyframes slideRightToLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.slidein {
  right: 0 !important;
  visibility: visible !important;
  animation-name: slideRightToLeft;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-direction: normal;
}

/* angular:styles/global:styles */
