@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

*,
*:after,
*:before {
  box-sizing: border-box;
}

.cnc-body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  background-color: white;
  padding: 0;
  margin: 0;
  height: 100vh;
}
.cnc-header,
.cnc-footer,
#mainContent {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

img.cnc-card {
  max-width: 100%;
  display: block;
}

input.cnc-input {
  appearance: none;
  border-radius: 0;
}

.cnc-input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
}

.cnc-input {
  position: relative;
  margin-top: 1.5rem;
}

.cnc-input-label {
  color: #8597a3;
  position: absolute;
  top: 0.5rem;
  left: 0;
  transition: 0.25s ease;
  transform-origin: left top;
}

.cnc-input-field {
  width: 90%;
  border: 0;
  background-color: transparent;
  border-bottom: 2px solid #eee;
  font: inherit;
  font-size: 1.125rem;
  padding: 0.5rem 0;
}

.cnc-input-field {
  outline: 0;
  border-bottom-color: #6658d3;
}

.cnc-input-field + .cnc-input-label,
.cnc-input-field + .cnc-input-label {
  color: #6658d3;
  transform: translateY(-1.5rem) scale(0.85);
}

.cnc-header {
  box-shadow: 0 0 15px #0000000d;
}

.cnc-pencil-icon {
  position: absolute;
  top: 0;
  right: 3px;
  background-color: #d2d2f8;
  color: #6f32e6;
  /* padding: 8px; */
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1;
  /* opacity: 0.7; */
}

.cnc-pencil-icon:hover {
  background-color: #ececec;
}

.cnc-active {
  display: block;
}

.cnc-contact-form {
  width: 90%;
}

.cnc-contact-form .cnc-input {
  flex: 1;
  margin-right: 10px;
}

.cnc-contact-form .cnc-input-field {
  width: 100%;
  margin: 5px 0px;
  border-radius: 5px;
  border: 1px solid #6f32e6;
  padding: 10px;
}

.cnc-contact-form .cnc-save-contact-btn {
  background-color: #6f32e6;
  border-radius: 5px;
  border-color: #4839eb;
  padding: 2px 20px;
  margin-bottom: -24px;
}

.cnc-save-contact-form .cnc-input-label {
  font-size: 14px;
  color: #6f32e6;
}

.cnc-save-contact-btn,
.cnc-save-contact-btn:hover .cnc-save-contact-btn:active {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: #6f32e6;
  border: 1px solid #4839eb;
  display: flex;
  align-items: center;
  outline: none;
}

.cnc-input-icon {
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
  color: #6f32e6;
}

.cnc-input-icon:focus,
.cnc-input-icon:active {
  color: #6f32e6;
}

.cnc-form-control {
  min-height: calc(0.9em + 1rem + 2px);
  max-height: calc(1em + 1rem + 2px);
}

.cnc-form-control::placeholder {
  color: #a5a5a5;
}

.cnc-icon-circle {
  border: 2px solid #6f32e6;
  border-radius: 50%;
  padding: 10px;
  color: #6f32e6;
  font-size: 20px;
  text-align: center;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cnc-icon-circle:hover {
  background-color: #6f32e6;
  color: #fff;
}

.cnc-popup-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px;
  transition: bottom 0.3s ease-in-out;
  z-index: 1000;
}

.cnc-text-align-center {
  text-align: center;
}

.cnc-text-align-left {
  text-align: left;
}

.cnc-contact-item {
  margin: 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #6f32e6;
}

.cnc-contact-item span {
  font-size: 20px;
  margin-right: 10px;
}

.cnc-show-popup {
  bottom: 0;
}

.cnc-blur-background {
  filter: blur(1px);
  pointer-events: none;
  transition: filter 0.3s ease-in-out;
}

.cnc-blur-background::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 248, 248, 0.3);
  z-index: 999;
}

.cnc-close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.cnc-phone-link {
  color: #333;
  text-decoration: none;
}

.cnc-phone-link:hover,
.cnc-phone-link:active {
  color: #6f32e6;
  text-decoration: none;
}

.cnc-social-media-list,
.cnc-contact-list {
  margin-top: 20px;
}

.cnc-social-media-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-decoration: none;
}

.cnc-social-media-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.cnc-social-media-item span {
  color: #333;
  font-size: 16px;
}

.cnc-social-media-item:hover {
  text-decoration: none;
}

.cnc-contact-icon {
  width: 25px;
  height: 25px;
  /* background-color: #EFEAFF; */
  border-radius: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  margin-right: 10px;
}

.cnc-direction-btn {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #6f32e6;
  border: none;
  border-radius: 5px;
  font-size: medium;
  color: white;
  padding: 0.375rem 0.75rem;
}

.cnc-direction-btn:hover,
.cnc-direction-btn:active {
  background-color: #6f32e6;
  color: white;
  outline: none;
  text-decoration: none;
}

button {
  background-color: #6f32e6;
  border-radius: 5px;
  color: white;
  border: none;
  font-size: 16px;
}

.cnc-d-flex {
  display: flex;
}

.cnc-d-block {
  display: block;
}

.cnc-d-none {
  display: none;
}

.cnc-justify-content-center {
  justify-content: center;
}

.cnc-justify-content-end {
  justify-content: flex-end;
}

.cnc-justify-content-between {
  justify-content: space-between;
}

.cnc-justify-content-around {
  justify-content: space-around;
}

.cnc-justify-content-evenly {
  justify-content: space-evenly;
}

.cnc-flex-column {
  flex-direction: column;
}

.cnc-align-items-center {
  align-items: center;
}

.cnc-align-items-start {
  align-items: flex-start;
}

.cnc-align-items-end {
  align-items: flex-end;
}

.cnc-m-auto {
  margin: auto;
}

.cnc-m-0 {
  margin: 0;
}

.cnc-mt-50 {
  margin-top: 0.3rem;
}

.cnc-mt-1 {
  margin-top: 1rem;
}

.cnc-mb-3 {
  margin-bottom: 1rem;
}

.cnc-mr-2,
.cnc-mx-2 {
  margin-right: 0.5rem !important;
}

.cnc-my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.cnc-me-3 {
  margin-right: 1rem;
}

.cnc-p-2 {
  padding: 0.5rem;
}

.cnc-pl-10 {
  padding-left: 10px;
}

.cnc-rounded-circle {
  border-radius: 50%;
}

.cnc-fw-bold {
  font-weight: bold;
}

.cnc-fs-5 {
  font-size: 1.35rem;
}

.cnc-text-muted {
  color: #6c757d;
}
.cnc-profile-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding:5px 0px;
}
.cnc-profile-avatar-wrapper {
  margin-left: 20px;
  max-height: 110px;
  width: 110px;
  border-radius: 50%;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #6658d3, 0 0 0 8px white;
}

.cnc-profile-avatar {
  background-color: white;
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.cnc-profile-wrapper {
  margin-left: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
}
.cnc-profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cnc-profile-name {
  display: flex;
  align-items: center;
  gap: 8px; 
}
.cnc-profile-links {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.cnc-contact-icon {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.cnc-other-businesses {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  padding-bottom: 150px;
}

.cnc-business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cnc-business-item {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.cnc-business-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.cnc-business-info {
  margin-left: 10px;
}
.cnc-tab-container {
  position: fixed;
  bottom: 0;
  max-width: 400px;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cnc-tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #6658d3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.cnc-tab-btn .tab-icon {
  width: 24px;
  height: 24px;
}

.cnc-tab-btn .tab-text {
  font-size: 12px;
  margin-top: 5px;
}

.cnc-tab-btn.active {
  opacity: 1;
  font-size: 16px;
}

.cnc-tab-btn.active .tab-icon {
  transform: scale(1.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

button:focus {
  outline: none;
  box-shadow: none;
}
.business-link {
  color: black !important; /* Make it black */
  text-decoration: none !important; /* Remove underline */
  font-weight: bold; /* Keep the bold style */
}

.business-link:hover, .business-link:focus {
  color: black !important; /* Ensure it doesn't change on hover/focus */
  text-decoration: none !important;
}
.cnc-no-business {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 200px; 
  text-align: center;
}

.cnc-no-business box-icon {
  margin-bottom: 10px; 
}

.cnc-no-business h5 {
  font-size: 1rem;
  color: gray;
}
.cnc-fixed-bottom {
  position: fixed;
  bottom: 67px;
  max-width: 400px;
  width: 100%;
  background: white;
  padding-bottom: 20px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.1);
}


.toast {
  position: fixed;
  bottom: 80px;
  right: 10px;
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  opacity: 0;
  transform: translateX(100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.toast-warning {
  background-color: #f39c12; 
}

.toast-error {
  background-color: #e74c3c; 
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hide {
  opacity: 0;
  transform: translateX(100%);
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  
}

.shop-logo-loading {
  background-color: white;
  object-fit: cover;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.cnc-col {
  /* flex: 1; */
  padding-right: 8px;
}

.cnc-text-right {
  text-align: right;
}

.cnc-list {
  list-style-type: none;
  padding: 0px 10px;
  margin: auto;
  width: 100%;
  padding-bottom: 20px;
}

.cnc-list-item {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.cnc-contact-detail {
  font-size: 16px;
  font-weight: bold;
}

.cnc-contact-count {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}

.cnc-contact-btn,
.cnc-contact-btn:hover,
.cnc-contact-btn:active {
  color: #6c63ff;
  text-decoration: none;
  font-weight: bold;
}

.cnc-text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 250px;
}

.cnc-map-section {
  position: relative;
  margin: 0px 20px;
}

.cnc-map-section img {
  width: 100%;
  max-width: 100%;
  max-height: 150px;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.cnc-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.cnc-footer a {
  color: #6a5acd;
  text-decoration: none;
  font-weight: bold;
}

.cnc-footer a:hover {
  text-decoration: underline;
}

.cnc-footer p {
  font-size: small;
  font-weight: bold;
  align-items: center;
  margin: auto;
}

.cnc-portfolio {
  padding-bottom: 100px;
}

.cnc-h6 {
  font-size: 1rem;
}

.cnc-outlined-btn {
  display: inline-block;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #6c5ce7;
  border-radius: 5px;
  color: #6c5ce7;
  background-color: transparent;
  cursor: pointer;
  text-align: center;
}

.cnc-outlined-btn:hover {
  background-color: #6c5ce7;
  color: white;
}

.cnc-input-box {
  position: relative;
}

.cnc-input-box .cnc-input-label {
  position: absolute;
  color: #80868b;
  font-size: 14px;
  font-weight: 400;
  left: 8px;
  top: 12px;
  padding: 0 8px;
  transition: 250ms;
  user-select: none;
  pointer-events: none;
}

.cnc-input-box .cnc-input-1 {
  box-sizing: border-box;
  height: 45px;
  width: 100%;
  border-radius: 4px;
  color: #202124;
  border: 1px solid #dadce0;
  padding: 10px 15px;
  font-size: 14px;
  transition: 250ms;
}

.cnc-input-box .cnc-input-1:focus {
  outline: none;
  border: 1px solid #6f8dfdff;
}

.cnc-input-box.error .cnc-input-label {
  color: #f44336;
  font-size: 11px;
  top: -8px;
  background: #fff;
}

.cnc-input-box.error .cnc-input-1 {
  border: 2px solid #f44336;
}

.cnc-input-box.focus .cnc-input-label,
.cnc-input-box.active .cnc-input-label {
  color: #1a73e8;
  top: -8px;
  background: #fff;
  font-size: 11px;
}

.cnc-input-box.active .cnc-input-1 {
  border: 2px solid #1a73e8;
}

.cnc-line-h-normal {
  line-height: normal;
}

.cnc-grey-body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  background-color: white;
  padding: 0;
  margin: 0;
  height: 100vh;
}
.shop-logo-name {
  margin: 10px;
  font-size: large;
  font-weight: bolder;
}
.cnc-mw-100 {
  max-width: 100%;
}

.google-button {
  display: block;
  margin: 15px auto;
  width: 70%;
  max-width: 270px;
  padding: 10px 10px 10px 50px;
  border: 2px solid #00a0dc;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: #00a0dc;
  background: url(../assets/new-google-favicon-512.webp) no-repeat left 20px
    center / 40px 40px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: wiggle 2s ease-in infinite;
  -moz-animation: wiggle 2s ease-in infinite;
  -o-animation: wiggle 2s ease-in infinite;
  animation: wiggle 2s ease-in infinite;
}

.google-button:hover {
  color: #ffffff;
  background-color: #00a0dc;
  background-image: url(https://cdn2.hubspot.net/hubfs/1961464/Support%20images/new-google-favicon-512-white.png);
}

.google-button strong {
  font-size: 18px;
  display: block;
}

@-webkit-keyframes wiggle {
  0%,
  20%,
  100% {
    background-position: left 20px center;
  }
  5% {
    background-position: left 15px center;
  }
  10% {
    background-position: left 20px center;
  }
  15% {
    background-position: left 25px center;
  }
}

@-moz-keyframes wiggle {
  0%,
  20%,
  100% {
    background-position: left 20px center;
  }
  5% {
    background-position: left 15px center;
  }
  10% {
    background-position: left 20px center;
  }
  15% {
    background-position: left 25px center;
  }
}

@-o-keyframes wiggle {
  0%,
  20%,
  100% {
    background-position: left 20px center;
  }
  5% {
    background-position: left 15px center;
  }
  10% {
    background-position: left 20px center;
  }
  15% {
    background-position: left 25px center;
  }
}

@keyframes wiggle {
  0%,
  20%,
  100% {
    background-position: left 20px center;
  }
  5% {
    background-position: left 15px center;
  }
  10% {
    background-position: left 20px center;
  }
  15% {
    background-position: left 25px center;
  }
}
.cnc-google-review-button-container {
  padding: 20px;
}

.cnc-border-none {
  border: none !important;
}
