@import "./variable.css";
@import "./hero.css";
@import "./text.css";

body {
  background: var(--global-background-color);
  color: var(--global-color);
}

.c-bg-base {
  background: var(--global-background-color);
}

.c-navbar {
  border-bottom: 1px solid var(--border-nav);
  height: var(--header-height);
}

.c-hero {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: 0 -25px;
  overflow: hidden;
}

.c-hero.c-home {
  height: auto;
}

.c-hero input {
  padding: 14px;
}

.c-hero button {
  padding-top: 14px;
  padding-bottom: 14px;
}

.c-hero .wave {
  position: absolute;
  bottom: -50px;
  left: -10px;
  z-index: 3;
  width: 105vw;
  fill: var(--header-background-color);
}

.c-hero .c-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  z-index: 3;
}

.c-hero .c-hero-container .title-section {
  display: none;
}

.c-hero .c-hero-container .title-section-home {
  display: block;
}

.c-hero .company-list {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 14px;
}

.c-hero .company-list a {
  text-decoration: none;
}

.c-hero .company-list a img {
  height: 25px;
  margin-left: 14px;
  margin-right: 14px;
  filter: invert(1);
  mix-blend-mode: lighten;
  vertical-align: middle;
  text-decoration: none;
}

.c-hero .company-list p {
  font-size: 10px;
  opacity: 0.5;
  margin: 0;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}

.c-hero .cta-box {
  width: 100%;
  background: var(--sidebar-background-color);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--global-border-color);
  z-index: 5;
}

.c-card-interior {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 14px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--photo-border-color);
  vertical-align: top;
  object-fit: cover;
  font-size: 10px;
  cursor: zoom-in;
  aspect-ratio: 16/9;
}

.c-card-interior.no-aspect {
  aspect-ratio: unset !important;
}

.c-card-interior:hover::before {
  opacity: 0.5 !important;
}

.c-card-interior:hover .c-card-interior__action {
  transform: translateY(0);
  opacity: 1;
  transition: 0.2s all ease;
}

.c-card-interior::before {
  content: "";
  background-color: var(--bg-hover-card-interior);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}

.c-card-interior img {
  /* object-position: 0px 12px !important; */
  /* margin-top: -12px !important; */
  display: block;
  min-height: 100px;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  height: auto;
}

.c-card-interior .c-card-interior__action {
  position: absolute;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  transform: translateY(200px);
  opacity: 0;
  transition: 0.5s all ease;
}

.c-card-interior .c-card-interior__action-btn {
  text-align: center;
  cursor: pointer;
  transition: 0.2s all ease;
}

.c-card-interior__action-btn:hover {
  opacity: 0.7;
}

.c-card-interior .c-card-interior__watermark {
  font-size: 8px;
  position: absolute;
  background: var(--bg-watermark);
  bottom: 0;
  right: 0;
  padding: 3.5px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 12px;
  padding-left: 7px;
  z-index: 1;
}

.c-button-rounded {
  border: 1px solid var(--border-button-icon);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin: auto;
  margin-bottom: 0.5rem;
}

.c-card-interior__action .c-icon-btn-card-interior {
  filter: invert(1);
  padding: 21px;
  background-size: 45%;
  background-repeat: no-repeat;
  background-position: 12px 11px;
}

.c-icon-download {
  background-image: url("../../icons/download.svg");
}

.c-icon-eraser {
  background-image: url("../../icons/eraser.svg");
}

.c-icon-zoom {
  background-image: url("../../icons/zoom.svg");
}

.c-gallery-bottom {
  flex-direction: column;
}

.c-card-interior.is-radio {
  cursor: pointer;
  display: block;
  margin-bottom: 0;
  border: 2px solid var(--border-card-radio);
  /* aspect-ratio: auto; */
}

.c-card-interior.is-radio .label {
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 7px;
  padding-right: 7px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #000;
  margin: 0;
}

.c-radio-card {
  position: relative;
}

.c-radio-card input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.c-radio-card input[type="radio"]:checked + .c-card-interior {
  border-color: var(--border-card-radio-active);
}

.c-radio-card input[type="radio"]:hover + .c-card-interior {
  opacity: 0.75;
}

.c-content .bottom .c-gallery-bottom {
  display: flex;
  flex-direction: row;
}

.c-content .bottom .c-gallery-bottom .c-radio-card {
  margin-bottom: 1rem;
}

.c-content .left,
.c-content .right {
  padding-top: 1rem;
}

.c-hero.c-home .c-hero-container {
  text-align: center;
}

@media (max-width: 800px) {
  .box-section {
    width: 100%;
  }
}

@media (min-width: 800px) {
  .c-content .left {
    position: absolute;
    left: 0;
    width: var(--left-sidebar-width);
    height: calc(100% - var(--header-height));
    overflow-y: auto;
  }

  .c-content .left.logged {
    position: absolute;
    left: 0;
    width: var(--left-sidebar-width);
    height: calc(
      100% - var(--header-height) - 82px
    );
    overflow-y: auto;
  }

  .c-content .left .action-section {
  }

  .c-content .left .action-section.fixed {
    position: fixed;
    /*bottom: var(--style-gallery-height);*/
    bottom: 0px;
    left: 0;
    background: var(--header-background-color);
    padding: 21px;
    margin: 0;
    width: var(--left-sidebar-width);
    border-top: 1px solid var(--border-left-action-section);
    border-right: 1px solid var(--border-left-action-section);
  }

  .c-content .right {
    position: absolute;
    right: 0;
    width: calc(100% - calc(var(--left-sidebar-width)));
    height: calc(100% - var(--header-height));
    overflow-y: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .c-content .bottom {
    position: fixed;
    bottom: 0;
    margin: 0;
    height: var(--style-gallery-height);
    width: 100%;
    z-index: 20;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 14px;
    padding-bottom: 14px;
    border-top: 1px solid var(--border-left-action-section);
    backdrop-filter: blur(12px);
    background: var(--border-content-bottom);
    display: flex;
    align-items: center;
  }

  .c-content .bottom .c-gallery-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .c-gallery-bottom .c-card-interior {
    width: 180px;
  }

  .c-content .bottom .c-gallery-bottom .c-radio-card {
    margin-bottom: 0;
  }

  .c-hero .c-hero-container .title-section {
    display: block;
  }

  .c-hero .c-hero-container .title-section-home {
    display: block;
  }

  .c-hero.c-home .c-hero-container {
    text-align: left;
  }

  .c-modal-gallery {
    max-width: 90vw !important;
    width: auto;
  }
}

.modal-backdrop.fade.show {
  background-color: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(12px) !important;
}

.c-modal-premium {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111;
  padding: 42px;
  overflow-y: auto !important;
  max-height: 85vh;
  min-height: 400px;
}

.disclaimer {
  max-width: 900px;
  font-size: 11px;
}

.c-pricing {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.c-pricing .c-pricing__badge-pop {
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  padding: 2px 6px;
  position: relative;
  border-radius: 4px;
  font-size: 12px;
  width: max-content;
}

.c-pricing .c-pricing__title {
  font-size: 20px;
  font-weight: 600;
}

.c-pricing .c-pricing__desc {
  font-size: 14px;
  opacity: 0.7;
}

.c-pricing .c-pricing__price {
  display: flex;
  align-items: center;
}

.c-pricing .c-pricing__price .price {
  font-size: 36px;
  font-weight: 700;
  margin-right: 0.5rem;
}

.c-pricing .c-pricing__price .per {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1;
}

.c-pricing .c-pricing__includes {
  font-size: 14px;
}

ul.check-list {
  list-style: none;
  padding-left: 0;
}

ul.check-list li {
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  position: relative;
}

ul.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 0.75em;
  height: 0.75em;
  opacity: 0.7;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='check-circle' class='svg-inline--fa fa-check-circle fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%23FFF' d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'></path></svg>");
}

.c-tabs-nav {
  width: fit-content;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.c-tabs-nav .nav-link {
  border-radius: 12px;
}

/* Hide scroll */
.c-hide-scroll::-webkit-scrollbar {
  width: 0px;
}

/* Track */
.c-hide-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.c-hide-scroll::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Handle on hover */
.c-hide-scroll::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.c-full-container {
  min-height: 100vh;
  position: relative;
}

.c-full-container .c-full-container__main-content {
  min-height: 100vh;
}

.c-full-container .c-full-container__main-content > div {
  min-height: 100vh;
}

.c-full-container .c-full-container__c-footer-payment {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 24px;
  margin: 1rem 0;
  color: #a0a0a0;
}

.c-full-container .c-full-container__c-footer-payment a {
  color: #a0a0a0;
  text-decoration: none;
}

.c-full-container .c-full-container__c-footer-payment a:hover {
  opacity: 0.7;
}

.c-input-credit-card__number {
  position: relative;
  display: flex;
  align-items: center;
}

.c-input-credit-card__number input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #e0e0e0;
}

.c-input-credit-card__number .card-list {
  position: absolute;
  right: 1%;
}

.c-input-credit-card__number .card-list img {
  margin-left: 0.25rem;
}

.c-input-credit-card__cvcmmy {
  display: flex;
}

.c-input-credit-card__cvcmmy .mmy {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #e0e0e0;
}

.c-input-credit-card__cvcmmy .cvc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-color: #e0e0e0;
}

.flex-1 {
  flex: 1;
}

.c-phone-verify-input {
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07),
    0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
}

.c-phone-verify-input select {
  border: 0;
  border-radius: 0;
}

.back {
  display: flex;
  align-items: center;
  gap: 8px;
}

.back svg {
  opacity: 0.5;
  transition: 0.2s all ease;
}

.back:hover svg {
  opacity: 1;
  transition: 0.2s all ease;
}

.back:hover .back__content .back__contentText {
  opacity: 1;
  transition: 0.2s all ease;
}

.back:hover .back__content::after {
  opacity: 0;
  transition: 0.2s all ease;
}

.back__content {
  position: relative;
  display: flex;
  align-items: center;
}

.back__contentText {
  position: absolute;
  opacity: 0;
  transition: 0.2s all ease;
}

.back__content::after {
  content: "🏡";
  position: absolute;
  opacity: 1;
  font-size: 42px;
  transition: 0.2s all ease;
}

.c-product-summary {
}

.c-product-summary__title {
  color: hsla(0, 0%, 100%, 0.6);
}

.c-product-summary .c-product-summary__price {
  display: flex;
  align-items: center;
}

.c-product-summary .c-product-summary__price .price {
  font-size: 36px;
  font-weight: 700;
  margin-right: 0.5rem;
}

.c-product-summary .c-product-summary__price .per {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1;
}

.c-product-summary .c-product-summary__desc {
  font-size: 14px;
  opacity: 0.7;
}

.c-bill-card {
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 6px;
}

.c-dark-1 {
  background-color: hsla(0, 0%, 100%, 0.05);
}

.show {
  display: block;
}

.hide {
  display: none;
}

.c-promo-input {
  position: relative;
  display: flex;
  align-items: center;
}

.c-promo-input .c-promo-input__apply-button {
  position: absolute;
  right: 1%;
  text-decoration: none;
}

.c-promo-input .c-promo-input__apply-button button {
  text-decoration: none;
  text-transform: none;
  box-shadow: none;
  font-weight: 500;
}

.dark-text {
  color: hsla(0, 0%, 10%, 0.9);
}

.grey600-text {
  color: hsla(0, 0%, 10%, 0.7);
}

.grey400-text {
  color: hsla(0, 0%, 10%, 0.5);
}

.grey500-text {
  color: hsla(0, 0%, 10%, 0.6);
}

.grey-2-text {
  color: hsla(0, 0%, 10%, 0.4);
}

.c-shadow-input {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07),
    0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
}

.form-label {
  margin-bottom: 0.25rem !important;
}

.c-input-credit-card {
  border-radius: 6px;
  box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07),
    0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
}

.c-divider-grey {
  margin: 0;
  height: 0 !important;
  opacity: 1;
  background-color: #e0e0e0;
  box-shadow: 0 0 0 0.5px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07),
    0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
}

.c-divider-grey-dark {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.c-divider-grey-dark-2 {
  border-bottom: 1px solid var(--border-left-action-section);
}

.h-fit {
  height: fit-content;
}

.grey700-text {
  color: hsla(0, 0%, 100%, 0.5);
}

.c-promo-btn {
  background-color: hsla(0, 0%, 100%, 0.1) !important;
  border-color: transparent !important;
}

.back {
  cursor: pointer;
}

.c-pointer {
  cursor: pointer !important;
}

.c-scroll::-webkit-scrollbar {
  height: 12px;
  width: 12px;
  background: #2c2c2c;
}

.c-scroll::-webkit-scrollbar-corner {
  background: #2c2c2c;
}

.c-scroll::-webkit-scrollbar-thumb {
  background: #6b6b6c;
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

.c-input-file {
  color: #8c8c8c;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: #161616;
  height: calc(512px / 2);
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.c-input-file:hover {
  opacity: 0.7;
}

.c-input-file__placeholder {
  position: absolute;
}

.c-input-file__preview {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: auto;
}

.c-select-dark {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  background: #161616;
  color: #ffffff;
}

.c-select-dark:focus {
  outline: 2px solid #f47353;
  box-shadow: none;
  border-color: transparent;
}

.c-btn-gradient {
  background: -webkit-linear-gradient(45deg, #680aca, #ff897e);
  background: linear-gradient(
    60deg,
    #f79533,
    #f37055,
    #ef4e7b,
    #a166ab,
    #5073b8,
    #1098ad,
    #07b39b,
    #6fba82
  );
  -webkit-animation: animatedgradient 6s ease infinite alternate;
  animation: animatedgradient 6s ease infinite alternate;
  background-size: 300% 300%;
  border: 1px solid rgba(0, 0, 0, 0) !important;
  color: #fff;
}

.c-btn-gradient:hover {
  background-color: #000 !important;
  background: #000 !important;
  border-color: #fff !important;
  color: #fff !important;
}

.btn {
  border-radius: 12px;
}

.opacity-05 {
  opacity: 0.5;
}

.c-color-gradient {
  background: -webkit-linear-gradient(45deg, #680aca, #ff897e);
  background: linear-gradient(
    60deg,
    #f79533,
    #f37055,
    #ef4e7b,
    #a166ab,
    #5073b8,
    #1098ad,
    #07b39b,
    #6fba82
  );
  -webkit-animation: animatedgradient 6s ease infinite alternate;
  animation: animatedgradient 6s ease infinite alternate;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-modal-product-preview {
  max-height: 100vh !important;
  height: 100vh !important;
  background: transparent;
  display: flex;
  align-items: center;
  width: auto;
  overflow: unset !important;
}

.c-modal-product-preview__image {
  height: 100%;
  width: auto;
}

.c-centered-modal .modal-dialog {
  justify-content: center !important;
}

.form-check-input.c-success:checked {
  background-color: #24b47e;
  border-color: rgba(0, 0, 0, 0.1);
}

.form-check-input.c-success {
  background-color: #ffffff80;
  border-color: rgba(0, 0, 0, 0.1);
}

.form-switch .form-check-input.c-success {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
}
.form-switch .form-check-input.c-success:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
}

.c-trans-width {
  width: 10%;
  transition: 0.2s all ease;
}

.c-trans-width.end {
  width: 100%;
  transition: 0.2s all ease;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.c-card-shimmer {
  position: relative;
  /* border: 1px solid hsla(0, 0%, 10%, 0.1); */
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  position: relative;
  z-index: 0;
}

.c-card-shimmer__guard {
  background-color: rgb(17, 17, 17);
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
}

.animate-shimmer:before {
  -webkit-animation: shimmer 1.25s ease;
  animation: shimmer 1.25s ease;
}

.c-card-shimmer:before {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 35%,
    #24b47e 50%,
    rgba(255, 255, 255, 0) 65%
  );
  background-position: 100%;
  background-size: 300% 300%;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  content: "";
  height: calc(100% + 2px);
  left: -1px;
  position: absolute;
  top: -1px;
  width: calc(100% + 2px);
  z-index: 1;
}

.c-card-shimmer.animate-shimmer:before {
  -webkit-animation: shimmer 1.25s ease;
  animation: shimmer 1.25s ease;
}

.c-z-2 {
  z-index: 2;
}

@-webkit-keyframes shimmer {
  0% {
    background-position: 95%;
  }

  to {
    background-position: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: 95%;
  }

  to {
    background-position: 0;
  }
}

.btn-primary {
  background-color: #f44425;
  border-color: #f44425;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:disabled {
  background-color: #f44425;
  border-color: #f44425;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #f44425;
}

.c-tabs-nav .nav-link {
  border-radius: 12px;
  color: #f44425;
}

.c-section-dashboard {
  margin-bottom: 1.5rem;
}

.c-section-dashboard .c-section-dashboard__title {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.c-section-dashboard .c-section-dashboard__content {
}

.c-payment-item {
  display: flex;
  align-items: center;
}

.c-payment-item img {
  margin-right: 0.5rem;
}

.c-doted::before {
  content: "••••";
  margin-right: 0.25rem;
}

.c-card-btn {
  border: 1px solid #eee;
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s all ease;
}

.c-card-btn:hover {
  background-color: #eee;
}

.c-card-btn.visa-card {
  border: 1px solid #eee;
}

.c-card-btn .c-card-btn__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: normal;
}

.c-card-btn .c-card-btn__content img {
  margin-right: 1rem;
  width: 3rem !important;
}

.c-avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background-color: #eee;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-avatar img {
  /* width: 30px;
  height: 30px; */
  height: 100%;
  width: auto;
  margin: 0 !important;
}

.c-amount-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  transition: 0.2s all ease;
}

.c-amount-input.editable {
  cursor: pointer !important;
}

.c-amount-input__preview {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.c-amount-input.on-input input {
  display: block !important;
  width: 100%;
  transition: 0.5s all ease;
}

.c-amount-input.on-input .c-amount-input__preview {
  display: none !important;
}

.c-amount-input.on-text input {
  display: none !important;
  width: 1px;
  transition: 0.5s all ease;
}

.c-amount-input.on-text {
  text-align: right;
  display: block;
  cursor: text;
}

.c-amount-input.on-text::after {
  content: "" !important;
}

.c-amount-input input {
  background: var(--global-background-color) !important;
  color: #fff !important;
  border: 0;
  padding-left: 1.5rem;
}

.c-amount-input::after {
  content: "$";
  position: absolute;
  color: #fff;
  padding: 0 0.5rem;
  background: var(--global-background-color) !important;
}

.c-amount-input input::-webkit-outer-spin-button,
.c-amount-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.c-text-link {
  text-decoration: none;
}

.c-container-home {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem !important;
  position: relative;
}

.c-content__quotes {
  position: absolute;
  left: 0;
  z-index: 1;
}

.c-content__quotes-item {
  text-align: center;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
  padding: 14px;
  float: left;
  border: 1px solid var(--global-border-color);
  background: #fff;
  color: #000;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 12px;
  margin: 21px;
  text-align: center;
  animation: animatedgradient 6s ease infinite alternate;
  background-size: 300% 300%;
}

.c-content__quotes-item--caption {
  margin: 0;
  font-style: bold;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 14px;
}

.c-content__quotes-item--logo {
  width: 100%;
  margin: 1.5rem 0;
}

.c-content__quotes-item--logo img {
  width: auto;
  height: 25px;
  filter: brightness(0) invert(1);
  /* filter: brightness(100%) */
}

.c-border-0 {
  border: 0 !important;
}

.c-transparent {
  background-color: transparent;
}

.home-image-grid-slider .slick-track {
  display: flex;
  align-items: center;
}

.c-modal-gallery {
  max-width: unset;
  width: auto;
}

.c-modal-gallery .modal-content {
  border: none !important;
}

.fake-backdrop {
  position: fixed !important;
  width: 100% !important;
  left: 0 !important;
  height: 100% !important;
  top: 0 !important;
  /* z-index: 999; */
  cursor: pointer;
  z-index: 1 !important;
}
