* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.6;
}
.mt-15{
	margin-top: 15px;
}
.mt-30{
	margin-top: 30px;
}
.mt-60{
	margin-top: 60px;
}
.mt-90{
	margin-top: 90px;
}
.mt-120{
	margin-top: 120px;
}
.text-center{
	text-align: center;
}
.hidden{
	display: none;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo a img {
    height: 40px;
}
   

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-weight: bold;
    color: #111827;
    font-size: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-nav {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #111827;
}

.chevron {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.2s;
}

.dropdown-toggle.active .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 0.5rem;
    display: none;
    margin-top: 0.5rem;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #374151;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.desktop-actions {
    display: none;
}

.icon-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #374151;
    cursor: pointer;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: #111827;
}

.icon-btn svg {
    stroke-width: 2;
    height: 20px;
}

.connect-wallet-btn {
    background: #111827;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.connect-wallet-btn:hover {
    background: #1f2937;
}
.connect-wallet-btn.connected {
    background: linear-gradient(90deg, #9333ea, #5e00ff);
    color: #fff;
    border: none;
}
#disconnectWalletBtn{
    background: linear-gradient(90deg, #9333ea, #5e00ff);
    color: #fff;
    border: none;
    background: #111827;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
#overlayConnectBtn{
    color: #fff;





    border: none;
    background: #111827;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle svg {
    stroke-width: 2;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: #111827;
}

.main {
    padding: 3rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.hero-icon svg {
    color: white;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.hero-description {
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

.container-proof {
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  margin: 3rem;
	    justify-self: anchor-center;
}
.container-proof .up-con {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  font-size: 1rem;
}
.container-proof .down-con {
  display: flex;
  margin-top: 2rem;
  gap: 1.5rem;
}
/* ------------------------------------------up-left---------------------------------------------------- */
.up-con .up-text {
  width: 50%;
  padding-right: 5rem;
}
.up-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #111827;
  font-weight: 700;
  line-height: 1;
}
.up-text p {
  color: #6b7280;
  font-weight: 500;
}
/* -------------------------------------------up-right------------------------------------------------------------ */
.stars {
  background: hsl(269.13deg 100% 96.98%);
  padding: 1rem 2rem;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
}
.stars span {
  color: #111827;
  margin-left: 2rem;
  font-size: 1rem;
}
.dos {
  margin-left: 2rem;
}
.tres {
  margin-left: 3rem;
}
/* ---------------------------------------------------bottom----------------------------------------------------------- */
.box {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  padding: 2.5rem;
  color: white;
  border-radius: 0.5rem;
  min-height: 100%;
  font-size: 0.9rem;
}
.profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.profile img {
  max-width: 2.5rem;
  max-height: 2.5rem;
  border-radius: 50%;
}
.info p:first-child {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.info p:last-child {
  color: hsl(172.25deg 80% 67%);
}
.one {
  margin-bottom: 2rem;
}
.two {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.three {
  margin-top: 2rem;
}
/* -----------------------------------------------------------media-query---------------------------------------------------- */
@media (max-width: 769px) {
  .container-proof .up-con {
    font-size: 0.9rem;
  }
  .up-text h1 {
    font-size: 2.5rem;
  }
  .dos,
  .tres {
    margin-left: 0;
  }
  .stars span {
    display: block;
    margin-left: 0;
  }
  .box {
    padding: 1rem;
  }
  .profile {
    flex-direction: column;
  }
}
@media (max-width: 580px) {
 
  .up-con,
  .down-con {
    flex-direction: column;
  }
  .up-con .up-text {
    padding-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  .box {
    padding: 2rem;
  }
  .profile {
    flex-direction: row;
  }
  .one,
  .two,
  .three {
    margin: 0;
  }
}

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.2s;
    background: #f9fafb;
}

.input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: none;
    transition: all 0.2s;
}

.textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.label svg {
  width: 24px;
  height: 24px;
  /* Optional: gleiche Farbe wie Text */
  fill: currentColor;
  vertical-align: middle;
  margin-right: 6px;
}

h2 svg{
  width: 36px;
  height: 36px;
  /* Optional: gleiche Farbe wie Text */
  fill: currentColor;
  vertical-align: middle;
  margin-right: 6px;	
	
}
.network-btn{
	    width: auto;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -10px rgba(147, 51, 234, 0.3);
}

.network-btn.active{
	    width: auto;
    background: linear-gradient(135deg, #8a9eff 0%, #5e00ff 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -10px rgba(147, 51, 234, 0.3);
}
.help-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.logo-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.switch-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.switch-input {
    width: 40px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: #d1d5db;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}

.switch-input:checked {
    background: #9333ea;
}

.switch-input::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.switch-input:checked::before {
    transform: translateX(20px);
}

.switch-label {
    font-size: 0.875rem;
    color: #374151;
}

.upload-area {
    width: auto;
    height: auto;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.upload-area svg {
    color: #9ca3af;
}

.upload-area {
    transition: all 0.2s ease;
}

.upload-area.dragover {
    background: #e0f2fe; /* hellblau bei drag */
    border-color: #3b82f6;
}

.upload-area {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    flex-direction: column;
}

.upload-area.dragover {
    background: #e0f2fe;
    border-color: #3b82f6;
}

.upload-area svg {
    color: #3b82f6;
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.upload-area.dragover svg {
    transform: scale(1.2);
}

.upload-area p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    cursor: pointer;
}
#removeLogo{
	
	background: #ff0000;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
#removeLogo:hover{
	
	background: #ff6363;
    
}

input[type=file] {
  margin: auto;
  padding: 1.5em;
  border: 2px dashed #bbb;
  background-color: #fff;
  transition: border-color 0.25s ease-in-out;
}
input[type=file]::file-selector-button {
  padding: 1em 1.5em;
  border-width: 0;
  border-radius: 2em;
  background-color: #174d82;
  color: #dbe6f0;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin-right: 1em;
}
input[type=file]:hover {
  border-color: #888;
}
input[type=file]:hover::file-selector-button {
  background-color: #1f66ad;
}

/* Keyframes fÃƒÂ¼r Pulsieren */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* Animation aktiv bei Hover oder Drag-over */
.upload-area:hover svg,
.upload-area.dragover svg {
    animation: pulse 1s infinite ease-in-out;
}
.url-input-container {
    margin-top: 1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.tag-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background: #f3f4f6;
    color: #374151;
    transition: all 0.2s;
}

.tag-btn:hover {
    background: #e5e7eb;
}

.tag-btn.active {
    background: #111827;
    color: white;
}

.section-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-header svg {
    color: #374151;
    stroke-width: 2;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    align-items: flex-start;
}

.checkbox {
    margin-top: 0.25rem;
    width: 21px;
    height: 21px;
    cursor: pointer;
    accent-color: #9333ea;
}

.setting-content {
    flex: 1;
}

.setting-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.setting-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.setting-fee {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9333ea;
}

.setting-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-new {
    background: #fed7aa;
    color: #9a3412;
}

.badge-pro {
    background: #ddd6fe;
    color: #5b21b6;
}

.alert {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    stroke-width: 2;
}

.alert p {
    font-size: 0.75rem;
    line-height: 1.5;
}

.alert-warning {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #78350f;
}

.alert-warning svg {
    color: #d97706;
}

.custom-inputs {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-link {
    color: #9333ea;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.demo-link:hover {
    text-decoration: underline;
}

.token-page-sections {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* padding: 0rem; */
    /* background: #ffffff; */
    border-radius: 8px;
}

.token-page-section {
    padding: 1rem;
    /* background: white; */
    border-radius: 8px;
    /* border: 1px solid #e5e7eb; */
}

.token-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.token-section-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.social-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.pro-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pro-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pro-toggle label {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

.create-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -10px rgba(147, 51, 234, 0.3);
}

.create-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 15px 30px -10px rgba(147, 51, 234, 0.4);
}

#showMintDetailsBtn{
	    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -10px rgba(147, 51, 234, 0.3);
	
}

#explore-link{
	display: block;
    margin-top: 8px;
    font-weight: 500;
    color: rgb(59, 130, 246);
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -10px rgba(147, 51, 234, 0.3);
    text-decoration: none;
}

#startLaunchRaydiumBtn{
	    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -10px rgba(147, 51, 234, 0.3);
	
}


.tokens-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.token-card {
  background: #1e1e1e;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255,255,255,0.1);
  position: relative;
}

.token-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.token-logo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.delete-token {
  background: transparent;
  border: none;
  color: #f87171;
  font-size: 20px;
  cursor: pointer;
}

.token-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.copy-btn, .settings-btn {

  background: #3b82f6;
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.copy-btn:hover, .settings-btn:hover {
  background: #2563eb;
}


.panel{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:18px;box-shadow:var(--shadow)}
.grid{display: flex;/* grid-template-columns:1fr 360px; */gap:18px;align-items:start}
@media (max-width:980px){ .grid{grid-template-columns:1fr} }

.controls{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-bottom:12px}
.input{padding:10px 12px;border-radius:10px;/* border:1px solid var(--border); *//* background:transparent; */font-size:16px;min-width:120px;background: linear-gradient(180deg, rgba(140, 77, 255, 0.04), rgba(165, 107, 255, 0.02));}
.select{padding:10px 12px;border-radius:10px;/* border:1px solid var(--border); */background:linear-gradient(180deg, rgba(140,77,255,0.04), rgba(165,107,255,0.02));font-size:15px;min-width:180px}
.btn{padding:10px 12px;border-radius:12px;border:1px solid var(--border);cursor:pointer;/* background:transparent; *//* font-weight:600; */}
.btn-primary{background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);color:#fff;border:0;box-shadow:0 6px 18px rgba(140,77,255,0.12);width: -webkit-fill-available;}
.btn-secondary{/* background:#fff; *//* color:var(--muted); */}

.calc-row{display:flex;gap:12px;align-items:center;margin-bottom:10px;flex-wrap:wrap}
.amount-wrap{flex:0 0 160px}
.result-card{background: #8c4dff1f;border-radius:12px;padding:12px;border:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.result-value{font-weight:700;font-size:20px}
.rate{font-size:13px;color:var(--muted)}

/* coin list */
.coin-list{background:linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));border-radius:12px;padding:10px;border:1px solid var(--border);max-height:520px;overflow:auto}
.coin-item{display:flex;align-items:center;justify-content:space-between;padding:8px 10px;border-radius:10px;gap:12px;cursor: pointer;}
.coin-item:hover{background: #8c4dff1f}
.coin-item + .coin-item{margin-top:6px}
.coin-meta{display:flex;align-items:center;gap:12px;min-width:0}
.logo{width: auto;height: auto;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:14px;flex:0 0 44px}
.coin-text{display:flex;flex-direction:column;min-width:0}
.coin-symbol{font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.coin-name{font-size:13px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.coin-right{display:flex;align-items:center;gap:12px;min-width:120px;justify-content:flex-end}
.sparkline{width:120px;height:36px;display:inline-block;border-radius:6px;background:transparent}
.small-price{font-weight:700;font-size:13px;min-width:80px;text-align:right}
.change-up{color:var(--success);font-weight:600}
.change-down{color:var(--danger);font-weight:600}
#refreshBtn{
	
	    width: -webkit-fill-available;
}
/* small note */
.note{font-size:13px;color:var(--muted);margin-top:10px}


.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.service-fee, .network-fee {
    font-size: 0.875rem;
    color: #6b7280;
}

.promocode-btn {
    background: none;
    border: none;
    font-size: 0.875rem;
    color: #6b7280;
    cursor: pointer;
	font-weight: 600;
}

.promocode-btn:hover {
    color: #111827;
}

.faq-section {
    margin-top: 4rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-underline {
    width: 64px;
    height: 4px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.faq-list {
    background: white;

    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #111827;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    flex-shrink: 0;
    color: #6b7280;
    stroke-width: 2;
    transition: transform 0.2s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.75;
}


.testimonial-widget {
            background: white;
            border-radius: 16px;
            padding: 40px;
            display: flex;
            gap: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .testimonial-content {
            flex: 0 0 57%;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .quote-icon {
            margin-bottom: 24px;
        }

        .testimonial-text {
            font-size: 21px;
            font-weight: 600;
            line-height: 1.4;
            color: #1A1A1A;
            margin-bottom: 24px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            position: relative;
        }

        .testimonial-text::after {
            position: absolute;
            right: 0;
            bottom: 0;
            padding-left: 4px;
            background: white;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .author-avatar {
            width: auto;
            height: 48px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .author-details {
            flex-grow: 1;
        }

        .author-name {
            font-size: 18px;
            font-weight: 600;
            color: #1A1A1A;
            margin-bottom: 4px;
        }

        .author-title {
            font-size: 14px;
            font-weight: 500;
            color: #4A4A4A;
        }

        .navigation {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }

        .dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid #7c3aed;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #9333ea;
            transform: scale(1.2);
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
        }

        .nav-button {
            width: 32px;
            height: 32px;
            border: 1px solid #7c3aed;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            background-color: #9333ea;
        }

        .nav-button:hover svg path {
            stroke: white;
        }

        .video-preview {
            flex: 0 0 43%;
            position: relative;
            padding-right: 20px;
            aspect-ratio: 4/3;
        }

        .preview-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .video-overlay {
            position: absolute;
            bottom: 16px;
            left: 8px;
            background: white;
            padding: 8px 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .video-overlay:hover {
            transform: translateY(-2px);
        }

        .watch-text {
            color: #9333ea;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .testimonial-widget {
                flex-direction: column;
                padding: 24px;
            }

            .testimonial-content, 
            .video-preview {
                flex: 0 0 100%;
            }

            .video-preview {
                aspect-ratio: 16/9;
                margin-top: 24px;
            }

            .author-avatar {
                height: 40px;
            }

            .author-info {
                gap: 12px;
            }
        }





.course-content {
            width: 720px;
            background: #FFFFFF;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .content-header {
            padding: 24px 32px;
            border-bottom: 1px solid #E5E7EB;
            position: relative;
        }

        .content-header h1 {
            font-size: 24px;
            color: #111827;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .content-stats {
            font-size: 14px;
            color: #6B7280;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .expand-all {
            color: #9333ea;
            text-decoration: none;
            font-weight: 500;
            padding-left: 16px;
        }

        .section {
            border-bottom: 1px solid #E5E7EB;
        }

      
      /* Replace the existing .section-header rule */
.section-header {
    padding: 16px 32px;
    background: #F9FAFB;
    cursor: pointer;
    display: grid;
    grid-template-columns: 80px 1fr minmax(160px, auto) 24px;  /* Modified grid template */
    align-items: center;
    gap: 12px;
}

/* Replace the existing .section-stats rule */
.section-stats {
    font-size: 14px;
    color: #6B7280;
    position: relative;  /* Added */
    left: 20px;        /* ?? */
    min-width: 160px;   /* Added */
    padding-right: 8px;
    white-space: nowrap;
    display: flex;      /* Added */
    justify-content: flex-start; /* Added */
}

/* Add this new rule for consistent starting point */
.section-stats::before {
    content: '';
    display: inline-block;
    width: 0;
    min-width: 0;
}

        .section-header:hover {
            background: #F3F4F6;
        }

        .section-number {
            font-size: 14px;
            color: #6B7280;
            font-weight: 500;
        }

        .section-title {
            font-size: 16px;
            color: #111827;
            font-weight: 500;
        }

   

        .chevron {
            transition: transform 0.2s;
        }

        .section.expanded .chevron {
            transform: rotate(180deg);
        }

        .section-content {
            display: none;
            padding: 16px 32px;
        }

        .section.expanded .section-content {
            display: block;
        }

  .learning-unit {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
    padding: 12px 0;
    align-items: start;  /* Changed from 'center' to 'start' */
}

/* Replace the existing .unit-icon rule */
.unit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;  /* Added to fine-tune alignment with title */
}

        .unit-icon svg {
            width: 38px;
            height: 38px;
        }

        .unit-icon svg path {
            stroke: #5e00ff;
        }

        .unit-content {
            min-width: 0;
        }

        .unit-title {
            font-size: 15px;
            color: #111827;
            margin-bottom: 4px;
            font-weight: 500;
            line-height: 1.4;
        }

        .unit-description {
            font-size: 14px;
            color: #6B7280;
            line-height: 1.5;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            transition: all 0.3s ease;
        }

        .unit-description.expanded {
            -webkit-line-clamp: unset;
        }

        .read-more {
            color: #9333ea;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 4px;
        }

        .read-more svg {
            width: 12px;
            height: 12px;
            transition: transform 0.2s;
        }

        .read-more.expanded svg {
            transform: rotate(180deg);
        }

        .preview-button {
            padding: 6px 16px;
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            border-radius: 4px;
            color: #374151;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            height: fit-content;
        }

        .preview-button:hover {
            background: #F9FAFB;
            border-color: #D1D5DB;
        }

        .more-sections {
            display: flex;
            justify-content: center;
            padding: 16px;
            cursor: pointer;
        }

        .more-sections-button {
            background: #FFFFFF;
            border: 1px solid #E5E7EB;
            padding: 8px 24px;
            border-radius: 6px;
            color: #374151;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .more-sections-button:hover {
            background: #F9FAFB;
            border-color: #D1D5DB;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }


      /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            z-index: 1000;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: #FFFFFF;
            width: 90%;
            max-width: 800px;
            border-radius: 8px;
            overflow: hidden;
        }

        .modal-header {
            padding: 20px 24px;
            border-bottom: 1px solid #E5E7EB;
        }

        .modal-title {
            font-size: 18px;
            color: #111827;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .modal-subtitle {
            font-size: 16px;
            color: #374151;
            font-weight: 600;
            letter-spacing: -0.025em;
        }

        .modal-body {
            padding: 24px;
        }

        .preview-video {
            width: 100%;
            aspect-ratio: 16/9;
            background: #000000;
            margin-bottom: 24px;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }

        .preview-video img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 118px;
            height: 118px;
            cursor: pointer;
            transition: transform 0.2s;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .preview-list {
            display: grid;
            gap: 16px;
        }

        .preview-item {
            display: flex;
            gap: 16px;
            padding: 12px;
            border-radius: 6px;
            transition: background 0.2s;
            cursor: pointer;
        }

        .preview-item:hover {
            background: #F9FAFB;
        }

        .preview-thumbnail {
            width: 120px;
            height: 68px;
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .preview-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .preview-info {
            flex-grow: 1;
            padding-top: 4px;
        }

        .preview-name {
            font-size: 14px;
            color: #111827;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .preview-duration {
            font-size: 13px;
            color: #6B7280;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            color: #FFFFFF;
        }





.reviews-section {
            width: 720px;
            background-color: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            /* font-size: 32px; */
            /* font-weight: 700; */
            color: #333;
            /* margin-bottom: 16px; */
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-bottom: 40px;
        }

        .section-subtitle strong {
            font-weight: 600;
        }

        .rating-summary {
            background-color: #f8fcfc;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

   

      .rating-number {
    font-size: 36px;
    /* Change from 700 to 800 for more boldness */
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    /* Add letter spacing for elegance */
    letter-spacing: -0.02em;
}

.rating-stars {
    color: #5e00ff;
    margin-bottom: 8px;
    /* Add weight for more prominence */
    font-weight: 600;
    font-size: 18px;
}

.rating-count {
    color: #666;
    font-size: 14px;
    /* Add medium weight */
    font-weight: 500;
}

.rating-action {
    color: #19CBCF;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    /* Add medium weight */
    font-weight: 500;
}

        .rating-actions {
            display: flex;
            gap: 16px;
        }

        .rating-action {
            color: #7c3aed;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .rating-action:hover {
            text-decoration: underline;
        }

        .rating-bars {
            flex: 1;
            max-width: 400px;
            padding-left: 40px;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .rating-bar-label {
            min-width: 24px;
            color: #666;
        }

        .rating-bar-track {
            flex: 1;
            height: 8px;
            background-color: #eee;
            border-radius: 4px;
            overflow: hidden;
        }

        .rating-bar-fill {
            height: 100%;
            background-color: #9333ea;
        }

        .rating-bar-percent {
            min-width: 40px;
            color: #666;
            font-size: 14px;
            text-align: right;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .review-card {
            background-color: white;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .review-header {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-meta {
            flex: 1;
        }

     .review-author {
    color: #9333ea;
    /* Increase from 500 to 600 */
    font-weight: 600;
    margin-bottom: 4px;
    /* Add letter spacing for elegance */
    letter-spacing: 0.01em;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #7c3aed;
    font-size: 14px;
    /* Add medium weight */
    font-weight: 500;
}

.review-rating .star {
    /* Make star bolder */
    font-weight: 700;
}
      
      
        .review-date {
            color: #666;
            font-size: 14px;
        }

        .review-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .review-content {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .review-footer {
            display: flex;
            gap: 24px;
            color: #666;
            font-size: 14px;
        }

        .review-publish-date {
            color: #999;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .review-action {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .review-action-text {
            font-weight: 500;
        }

        .view-all {
            display: flex;
            justify-content: center;
            margin-top: 32px;
        }

        .view-all-button {
            color: #9333ea;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .view-all-button:hover {
            text-decoration: underline;
        }
.cb-change svg{
	
	width: 36px;
	height: 36px;
}

/*Course PDF File Prview modal*/
 /* ========== TEASER MODAL STYLE (isoliert) ========== */
  #teaser-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
  }
  #teaser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
  }
  #teaser-viewer {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
  }
  #teaser-canvas {
    max-width: 100%;
    max-height: 80vh;
    border: 2px solid #444;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    background: #222;
    display: block;
    margin: 0 auto;
  }
  #teaser-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-25deg);
    color: rgba(255,0,0,0.25);
    font-size: 3vw;
    font-weight: bold;
    pointer-events: none;
    user-select: none;
  }
  #teaser-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: #ff4444;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
  }
  #teaser-close:hover {
    background: #ff6666;
  }
  #teaser-footer {
    margin-top: 10px;
    color: #ccc;
    font-size: 0.95rem;
  }
  #teaser-footer a {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
  }
  #teaser-footer a:hover {
    text-decoration: underline;
  }


.toggle-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.toggle-wrapper:hover {
    box-shadow: var(--shadow-lg), 0 15px 40px rgba(99, 102, 241, 0.2);
}

input[type="radio"] {
    display: none;
}

.toggle-labels {
    display: flex;
    background: var(--bg-light);
    padding: 20px;
    gap: 10px;
    position: relative;
}

.toggle-labels::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0.1;
}

.toggle-labels label {
    flex: 1;
    padding: 15px;
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: #fff;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
	    background: #7c3aed;
}

.toggle-labels label:hover {

    color: #f8f8f8;

	    background: #5e00ff;
}

.toggle-labels label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.toggle-labels label span {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.toggle-labels label:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.toggle-labels label:hover::before {
    opacity: 0.1;
}

.toggle-labels label:hover span {
    color: var(--text-dark);
}

input[type="radio"]:checked + input[type="radio"] + input[type="radio"] + .toggle-labels label[for="tab1"],
input[type="radio"]:checked + input[type="radio"] + .toggle-labels label[for="tab2"],
input[type="radio"]:checked + .toggle-labels label[for="tab3"] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

input[type="radio"]:checked + input[type="radio"] + input[type="radio"] + .toggle-labels label[for="tab1"] span,
input[type="radio"]:checked + input[type="radio"] + .toggle-labels label[for="tab2"] span,
input[type="radio"]:checked + .toggle-labels label[for="tab3"] span {
    color: var(--white);
}

input[type="radio"]:checked + input[type="radio"] + input[type="radio"] + .toggle-labels label[for="tab1"]::before,
input[type="radio"]:checked + input[type="radio"] + .toggle-labels label[for="tab2"]::before,
input[type="radio"]:checked + .toggle-labels label[for="tab3"]::before {
    opacity: 1;
}

.content-wrapper {
    position: relative;
    height: 500px;
    background: var(--white);
}


.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 40px;
}

.content-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.image-container img:hover {
    transform: scale(1.05);
}

input[type="radio"]:checked + input[type="radio"] + input[type="radio"] + .toggle-labels + .content-wrapper .content[data-tab="tab1"],
input[type="radio"]:checked + input[type="radio"] + .toggle-labels + .content-wrapper .content[data-tab="tab2"],
input[type="radio"]:checked + .toggle-labels + .content-wrapper .content[data-tab="tab3"] {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 768px) {
    .toggle-labels {
        flex-direction: column;
        padding: 10px;
    }

    .content {
        padding: 20px;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content-wrapper {
        height: 400px;
    }

}
.teaser-preview-btn{
	padding: 6px 16px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    height: fit-content;
	
}


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Modal Box */
.modal-review {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #555;
}

/* Title + Subtitle */
.modal-title {
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.modal-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Stars */
.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 1.8rem;
  color: #ccc;
  cursor: pointer;
  margin-bottom: 1rem;
}
.star.active {
  color: #facc15;
}

/* Inputs */
textarea,
input[type="email"] {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  resize: none;
}

/* Submit Button */
.modal-submit {
  background: #9333ea;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
}
.modal-submit:hover {
  background: #7c3aed;
}

/*Course Details Page*/

.hero-video {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 32px;
}

.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
}

.course-details {
            width: auto;
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stat-label-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stat-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .stat-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 0;
        }

        .stat-value {
            font-size: 15px;
            font-weight: 500;
            color: #333;
            padding-left: 24px;
        }

        .stat-value.rating {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-left: 24px;
        }

        .stat-value.rating strong {
            font-weight: 600;
        }

        .stat-value.rating span {
            color: #666;
            font-weight: normal;
        }

        .verified {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-left: 24px;
        }

        .verified svg {
            width: 16px;
            height: 16px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #111;
        }

        .description-box {
            background: #E5F6FF;
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 32px;
            position: relative;
        }

        .description-label {
            color: #0096E6;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .description-content {
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }

        .show-more {
            color: #0096E6;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 12px;
        }

        .divider {
            height: 1px;
            background: #E5E5E5;
            margin: 32px 0;
        }

        .learning-points {
            margin-bottom: 40px;
        }

        .learning-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #222;
        }

   /* Replace existing point-grid style */
.point-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 16px;
}

/* Add new styles */
.point-grid .point-item:nth-child(n+5) {
    display: none;
}

.point-grid.expanded .point-item:nth-child(n+5) {
    display: flex;
}

        .point-item {
            background: #FFFFFF;
            border: 1px solid #E5E5E5;
            border-radius: 8px;
            padding: 20px;
            display: flex;
            gap: 16px;
        }

        .point-number {
            width: 28px;
            height: 28px;
            background: #00C5AF;
            color: white;
            border-radius: 50%;
            display: flex;

            align-items: center;
            justify-content: center;
            font-weight: 500;
            flex-shrink: 0;
        }

        .point-content {
            flex: 1;
        }

        .point-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
            font-size: 15px;
        }

        .point-description {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }

        .show-more-points {
            color: #0096E6;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-top: 16px;
            padding: 12px;
            background: #F7F7F7;
            border-radius: 8px;
        }

        .testimonial {
            background: #F8F9FA;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 40px;
        }

        .testimonial-content {
            display: flex;
            gap: 20px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-text {
            flex: 1;
        }

        .testimonial-quote {
            font-style: italic;
            color: #444;
            line-height: 1.6;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .testimonial-author {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }

        .faq-header {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #222;
        }
      
      
      .faq-toggle-group {
    display: inline-flex;
    background: #F0F0F0;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.faq-toggle-button {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-toggle-button.active {
    background: white;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

        .faq-divider {
            height: 1px;
            background: #E5E5E5;
            margin: 32px 0;
        }

        .faq-section {
            margin-bottom: 32px;
        }

      

        .faq-arrow {
            transition: transform 0.3s ease;
        }

       /* Replace existing FAQ styles */
.faq-item {
    margin-bottom: 16px;
    border: none;
}

.faq-question {
    padding: 20px;
    background: #F7F7F7;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 15px;
}

.faq-answer {
    background: #F7F7F7;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}


.course-page-grid {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Sidebar */
/* Layout */

/* Sidebar */
.course-sidebar {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar Cards */
.sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Price Card */
.price-card .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.enroll-button {
    width: 100%;
    padding: 12px;
    background: #0096E6;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* Course Details */
.details-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.details-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Related Courses */
.related-courses-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.related-courses-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.related-courses-card ul li a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #333;
}
.related-courses-card img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}
.course-title {
    font-weight: 600;
}
.course-lessons {
    font-size: 13px;
    color: #666;
}


@media (max-width: 1024px) {
    .course-page-grid {
        flex-direction: column;
    }
    .course-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-top: 32px;
    }
}

/*Blog Posts Page*/

.blog-header{
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
}

.blog-header h3{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #6b798f;
}

.blog-header h2{
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
}

.blog-header p{
    font-size: 18px;
    line-height: 1.5em;
    color: #999;
    margin-bottom: 70px;
}

.blogs{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.blog-top{
    position: relative;
    margin-bottom: 10px;
}

.blog-top img{
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.blog-top .blog-category{
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
}

.blog-about{
    margin-bottom: 10px;
}

.blog-about span{
    color: #999;
    font-size: 12px;
}

.blog a{
    color: #444;
}

.blog a h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog .blog-text{
    font-size: 14px;
    line-height: 1.75em;
    color: #666;
}

.read-more{
    margin-top: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: block;
}

.read-more:hover{
    margin-left: 10px;
}


@media screen and (max-width: 960px) {

    
    .blogs{
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
}



/*Cookie Banner*/

/* Grundlayout */
.cb-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.4);
  z-index: 99999;
  padding: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.cb-inner { display:flex; gap:16px; align-items:center; width:100%; flex-wrap:wrap; }
.cb-text { max-width: 720px; }
.cb-text p { margin:6px 0 0 0; color: #d1d5db; font-size: 13px; }
.cb-text a { color: #93c5fd; text-decoration: underline; }

.cb-actions { display:flex; gap:8px; align-items:center; margin-left:auto; flex-shrink:0; }

.cb-btn {background: #f63b3b;color: #ffffff;border: 1px solid rgba(255,255,255,0.12);padding:8px 12px;border-radius:8px;cursor:pointer;font-weight:600;font-size:13px;}
.cb-btn:hover { opacity:0.95; transform: translateY(-1px); }
.cb-primary { background: linear-gradient(90deg,#3b82f6,#06b6d4); border: none; color: #fff; box-shadow: 0 6px 18px rgba(59,130,246,0.18); }

.cb-link { background: transparent; border: none; color: #cfe9ff; text-decoration: underline; padding:8px 6px; }


/* Modal */
.cb-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  background: rgba(2,6,23,0.55);
  padding: 20px;
}
.cb-modal-inner {
  width: 100%;
  max-width: 720px;
  background: #fff;
  color: #0f172a;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(2,6,23,0.35);
}
.cb-modal h2 { margin:0 0 8px 0; }
.cb-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid #f1f5f9; }
.cb-row-desc { font-size: 12px; color:#475569; margin-top:4px; }
.cb-row-left { max-width:70%; }
.cb-row-right { text-align:right; }

/* Toggle Switch */
.switch { position: relative; display:inline-block; width:46px; height:26px; }
.switch input { opacity:0; width:0; height:0; }
.switch-slider {
  position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0;
  background:#e2e8f0; transition: .2s; border-radius:999px;
}
.switch-slider:before {
  position:absolute; content:""; height:20px; width:20px; left:3px; top:3px; background:white; border-radius:50%; transition:.2s;
}
.switch input:checked + .switch-slider { background:#60a5fa; }
.switch input:checked + .switch-slider:before { transform: translateX(20px); }

/* Small "change" button */
.cb-change {position: fixed;left: 16px;bottom: 70px;background: transparent;/* color:#0f172a; */border-radius:8px;padding: 0px 0px;border: none;z-index:99998;display:none;cursor: pointer;}

/* Responsive */
@media (max-width:720px) {
  .cb-inner { flex-direction: column; align-items:stretch; }
  .cb-actions { justify-content: flex-end; width:100%; }
  .cb-text p { font-size: 13px; }
}

/*hat Button AI Chat Asssistent */

#nta-wa-gdpr{
    vertical-align: text-top !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nta-wa-gdpr{
    font-size: 11px;
    padding: 5px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 4px;
}

.nta-wa-gdpr a{
    text-decoration: underline;
    color: inherit;
}

.pointer-disable{
    pointer-events: none;
}

.nta-woo-products-button:before, .nta-woo-products-button:after{
    content: '';
    display: block;
    clear: both;
}

.ai__button{
    border-bottom: none !important;
}

.ai__btn_w_img:hover{
	text-decoration: none;
}

.ai__button,
.ai__btn_popup,
.ai__button *,
.ai__btn_popup *,
.ai__btn_popup :before,
.ai__button :before,
.ai__button :after,
.ai__btn_popup :after,
.ai__popup_chat_box,
.ai__popup_chat_box *,
.ai__popup_chat_box :before,
.ai__popup_chat_box :after{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* VVV--button--VVV */
.ai__button{
    position: relative;
    width: 300px;
    min-height: 64px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
    -webkit-box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
    -moz-box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
}
.ai__btn_txt{
    display: inline-block;
    font-size: 12px;
    line-height: 1.33em;
}

.ai__btn_w_icon .ai__btn_txt{
    padding: 16px 20px 15px 71px;
}

.ai__button_text_only .ai__btn_txt,
.ai__r_button.ai__btn_w_img.ai__button_text_only .ai__btn_txt,
.ai__sq_button.ai__btn_w_img.ai__button_text_only .ai__btn_txt{
    padding-top: 25px;
    padding-bottom: 24px;
}



.ai__btn_w_icon .ai__btn_txt .ai__btn_title{
    font-weight: 600;
    padding-left: 2px;
    font-size: 14px;
}

.ai__cs_info{
    margin-bottom: 2px
}

.ai__btn_status{
    color: #F5A623;
    font-size: 9px;
    padding: 2px 0 0;
    font-weight: 700;
}

.ai__cs_info .ai__cs_name,
.ai__cs_info .ai__cs_status{
    display: inline-block;
}

.ai__cs_info .ai__cs_name{
    font-weight: 400;
    font-size: 12px;
    line-height: 1.36em;
}


.ai__stt_online .ai__cs_info .ai__cs_name{
    color: #d5f0d9
}

.ai__stt_offline .ai__cs_info .ai__cs_name{
    color: #76787d;
}

.ai__cs_info .ai__cs_status{
    width: 36px;
    height: 14px;
    margin-left: 3px;
    padding: 1px;
    font-size: 9px;
    line-height: 1.34em;
    border-radius: 5px;
    color: rgba(255,255,255,0.98);
    position: relative;
    top: -1px;
    left: 0px;
    text-align: center;
}

.ai__stt_online .ai__cs_info .ai__cs_status{
    background: #62c971;
}

.ai__stt_offline .ai__cs_info .ai__cs_status{
    background: #b9bbbe;
}


.ai__stt_online{
    background: #2DB742;
    cursor: pointer;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    backface-visibility: hidden;
    will-change: transform;
}
.ai__stt_online .ai__btn_txt{
    position: relative;
    z-index: 4;
}
.ai__r_button.ai__stt_online:before{
    border-radius: 50vh;
}
.ai__sq_button.ai__stt_online:before{
    border-radius: 5px;
}
.ai__stt_online:before{
    content: '';
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    background: rgba(0,0,0,0.2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
}
.ai__button.ai__stt_online:focus,
.ai__button.ai__stt_online:active,
.ai__button.ai__stt_online:hover{
    box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.19);
    transform: translate(0,-3px);
    -webkit-transform: translate(0,-3px);
    -moz-transform: translate(0,-3px);
    -ms-transform: translate(0,-3px);
}
.ai__button.ai__stt_online:focus:before,
.ai__button.ai__stt_online:active:before,
.ai__button.ai__stt_online:hover:before{
    opacity: 1;
}
.ai__stt_online.ai__btn_w_icon .ai__btn_icon img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.ai__stt_offline{
    background: #EBEDF0;
    color: #595B60;
    box-shadow: none;
    cursor: initial;
}

.ai__stt_offline.ai__btn_w_icon .ai__btn_txt {
    padding: 8px 20px 6px 71px;
}

.ai__stt_offline.ai__r_button.ai__btn_w_img .ai__btn_txt{
    padding: 8px 20px 8px 100px
}

.ai__stt_offline.ai__sq_button.ai__btn_w_img .ai__btn_txt {
    padding: 8px 20px 8px 70px;
}

.ai__btn_w_icon .ai__btn_icon{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}

.ai__btn_w_icon .ai__btn_icon img{
    width: 41px;
    height: 69px;
}

.ai__btn_w_img{
    position: relative;
    width: 300px;
    margin: 20px 0 20px;
}

.ai__btn_w_img .ai__cs_img{
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
}
.ai__btn_w_img .ai__cs_img_wrap{
    width: 79px;
    height: 79px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}
.ai__btn_w_img .ai__cs_img img{
    max-width: 100%;
    height: auto;
    transition: 0.2s ease transform;
    -webkit-transition: 0.2s ease transform;
    -moz-transition: 0.2s ease transform;
}
.ai__btn_w_img .ai__cs_img:after{
    content: '';
    background: #ffffff url('./../../images/chat-100.png') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
}

.ai__stt_offline.ai__btn_w_img .ai__cs_img:after{
    content: '';
    background: #ffffff url('./../../images/chat-100.png') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
}


.ai__btn_w_img .ai__btn_txt{
    padding:14px 20px 12px 103px;
}

.ai__r_button{
    border-radius: 50vh;
}

.ai__sq_button{
    border-radius: 5px;
}

.ai__sq_button.ai__btn_w_img{
    width: 270px;
    margin-left: 30px;
}

.ai__r_button.ai__btn_w_img .ai__cs_img{
    left: -5px;
}

.ai__sq_button.ai__btn_w_img .ai__cs_img{
    left: -35px;
}

.ai__sq_button.ai__btn_w_img .ai__btn_txt{
    padding: 10px 20px 10px 70px;
    display: table-cell;
	vertical-align: middle;
	height: 66px;
}

.ai__btn_txt .ai__btn_title{
    font-weight: 600;
}

.ai__r_button.ai__btn_w_img .ai__btn_txt{
    padding: 8px 20px 8px 100px;
	display: table-cell;
	vertical-align: middle;
	height: 66px;
}

.ai__r_button.ai__btn_w_img .ai__cs_info .ai__cs_status{
    margin-left: 3px;
}
/* ^^^--button--^^^ */

/* VVV--popup--VVV */

.ai__popup_chat_box{
    font-family: Arial,Helvetica,sans-serif;
    width: 351px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    bottom: 102px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0,50px);
    transform: translate(0,50px);
    -webkit-transform: translate(0,50px);
    -moz-transform: translate(0,50px);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    will-change: transform,visibility,opacity;
    max-width: calc(100% - 50px);
}
.ai__popup_chat_box:hover,
.ai__popup_chat_box:focus,
.ai__popup_chat_box:active{
    box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
    -moz-box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
}
.ai__popup_chat_box.ai__active{
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    visibility: visible;
    opacity: 1;
}
.ai__popup_chat_box .ai__popup_heading{
    position: relative;
    padding: 15px 43px 17px 74px;
    color: #ffffff;
    background: #5e00ff;
}
.ai__popup_chat_box .ai__popup_heading_sm{
    padding: 12px 15px 17px 74px;
}
.ai__popup_chat_box .ai__popup_heading:before{
    content: '';
    background: url('./../../images/chat-100.png') center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}
.ai__popup_chat_box .ai__popup_heading_sm:before{
    top: 19px;
    left: 11px;
}

.ai__popup_chat_box .ai__popup_heading .ai__popup_title{
    padding-top: 2px;
    padding-bottom: 3;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
}

.ai__popup_chat_box .ai__popup_heading .ai__popup_intro{
    padding-top: 4px;
    font-size: 12px;
    line-height: 20px;
}
.ai__popup_chat_box .ai__popup_heading_sm .ai__popup_intro{
    padding-top: 0px;
}

.ai__popup_chat_box .ai__popup_heading .ai__popup_intro a{
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}
.ai__popup_chat_box .ai__popup_heading .ai__popup_intro a:hover,
.ai__popup_chat_box .ai__popup_heading .ai__popup_intro a:focus,
.ai__popup_chat_box .ai__popup_heading .ai__popup_intro a:active{
    text-decoration: underline;
}

.ai__popup_chat_box  .ai__popup_notice{
    font-size: 11px;
    color: #a5abb7;
    font-weight: 500;
    padding: 0 3px;
}
.ai__popup_chat_box .ai__popup_content{
    background: #ffffff;
    padding: 13px 20px 21px 19px;
    text-align: center;
}
.ai__popup_chat_box .ai__popup_content_left{
    text-align: left;
}
.ai__popup_chat_box .ai__popup_avatar{
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 12px;
    top: 12px;
}

.ai__popup_chat_box .ai__popup_avatar.nta-default-avt{
    border-radius: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
}

.ai__popup_chat_box .ai__stt{
    padding: 13px 40px 12px 74px;
    position: relative;
    text-decoration: none;
    display: table;
    width: 100%;
    border-left: 2px solid #2db742;
    background: #f5f7f9;
    border-radius: 2px 4px 2px 4px;
    -webkit-border-radius: 2px 4px 2px 4px;
    -moz-border-radius: 2px 4px 2px 4px;
}
.ai__popup_chat_box .ai__stt:after{
    content: '';
    background: url('./../../images/chat-100.png') 0 0 no-repeat;
    position: absolute;
    right: 14px;
    top: 26px;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
}
.ai__popup_chat_box .ai__stt.ai__stt_offline:after{
    background-image: url('./../../images/chat-100.png');
}
.ai__popup_chat_box .ai__stt.ai__stt_online{
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;

}
.ai__popup_chat_box .ai__stt.ai__stt_online:hover,
.ai__popup_chat_box .ai__stt.ai__stt_online:active,
.ai__popup_chat_box .ai__stt.ai__stt_online:focus{
    background: #ffffff;
    box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
    -webkit-box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
    -moz-box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
}
.ai__popup_content_list .ai__popup_content_item{
    margin: 14px 0 0;
    transform: translate(0,20px);
    -webkit-transform: translate(0,20px);
    -moz-transform: translate(0,20px);
    will-change: opacity,transform;
    opacity: 0;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item{
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(1){
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(2){
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(3){
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(4){
    transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(5){
    transition-delay: 1.1s;
    -webkit-transition-delay: 1.1s;
    -moz-transition-delay: 1.1s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(6){
    transition-delay: 1.3s;
    -webkit-transition-delay: 1.3s;
    -moz-transition-delay: 1.3s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(7){
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;

}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(8){
    transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    -moz-transition-delay: 1.7s;
}
.ai__popup_chat_box.ai__pending .ai__popup_content_list .ai__popup_content_item:nth-child(9){
    transition-delay: 1.9s;
    -webkit-transition-delay: 1.9s;
    -moz-transition-delay: 1.9s;
}
.ai__popup_chat_box.ai__lauch .ai__popup_content_list .ai__popup_content_item{
    opacity: 1;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
}
.ai__popup_content_list .ai__popup_content_item .ai__member_name{
    font-size: 14px;
    color: #363c47;
    line-height: 1.188em !important;
}
.ai__popup_content_list .ai__popup_content_item .ai__member_duty{
    font-size: 11px;
    color: #989b9f;
    padding: 2px 0 0;
    line-height: 1.125em !important;
}
.ai__popup_content_list .ai__popup_content_item .ai__member_status{
    color: #F5A623;
    font-size: 10px;
    padding: 5px 0 0;
    line-height: 1.125em !important;
}
.ai__popup_content_list .ai__popup_content_item .ai__popup_txt{
    display: table-cell;
    vertical-align: middle;
    min-height: 48px;
    height: 48px;
}
.ai__popup_content_list .ai__popup_content_item .ai__stt_offline{
    border-left-color: #c0c5ca;
}
.ai__popup_avt_list{
    font-size: 0;
    margin: 7px 0 24px;
}
.ai__popup_avt_list .ai__popup_avt_item{
    display: inline-block;
    position: relative;
    width: 46px;
}
.ai__popup_avt_list .ai__popup_avt_img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    left: -7px;
}
.ai__popup_call_btn{
    background: #2db742;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 275px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    margin: 25px 0 15px;
    box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
    -webkit-box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
    -moz-box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
}
.ai__popup_call_btn.ai__popup_call_btn_lg:before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: url('./../../images/chat-100.png') 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    vertical-align: top;
    top: 0px;
    margin-right: -19px;
    left: -31px;
    transition: 0.2s ease background-image;
    -webkit-transition: 0.2s ease background-image;
    -moz-transition: 0.2s ease background-image;
}
.ai__popup_call_btn.ai__popup_call_btn_lg:hover:before,
.ai__popup_call_btn.ai__popup_call_btn_lg:focus:before,
.ai__popup_call_btn.ai__popup_call_btn_lg:active:before{
    background-image: url('./../../images/chat-100.png')
}

.ai__popup_chat_box_gray{
    border-radius: 2px 2px 8px 8px;
}

.ai__popup_chat_box_gray .ai__popup_heading_gray{
    background: #f8f8f8;
    border-top: 3px solid #2db742;
    color: #868c9a;
    font-weight: 500;
}
.ai__popup_chat_box_gray .ai__popup_heading_gray .ai__popup_title{
    color: #595b60;
}
.ai__popup_chat_box_gray .ai__popup_heading_gray:before{
    content: ''; 
    background: url(./../../images/chat-100.png) center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}
.ai__popup_chat_box_gray .ai__popup_heading_gray .ai__popup_intro a{
    color: #595b60;
}

.ai__popup_chat_box_ct{
    width: 384px;
    text-align: center;
}

.ai__popup_chat_box_ct .ai__popup_heading_ct{
    text-align: center;
    padding: 18px 0 18px;
}

.ai__popup_chat_box_ct .ai__popup_heading_ct:before {
    content: '';
    background: url(./../../images/chat-100.png) center top no-repeat;
    background-size: 30px;
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    top: 15px;
    left: 72px;
}

.ai__popup_chat_box_ct .ai__popup_heading_ct .ai__popup_title{
    padding-left: 22px;
    padding-bottom: 14px;
}

.ai__popup_chat_box_ct .ai__popup_heading_ct .ai__popup_intro{
    margin-top: -5px;
    line-height: 12px;
}

.ai__popup_chat_box_ct .ai__popup_ct_avt_list:after{
    content: '';
    clear: both;
    display: block;
}

.ai__popup_chat_box_ct .ai__popup_ct_content{
    background: #ffffff;
    padding: 0 0 14px;
}

.ai__popup_chat_box_ct .ai__popup_ct_content .ai__popup_notice{
    padding-top: 18px;
    padding-bottom: 15px;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item{
    width: 33%;
    float: left;
    font-size: 10px;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item a{
    text-decoration: none;
    color: #989b9f;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item .ai__popup_ct_txt{
    padding-top: 8px;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item .ai__member_name{
    color: #363c47;
    font-size: 13px;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item .ai__member_duty{
    color: #989b9f;
    padding: 3px 0 0;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item .ai__member_stt_online{
    color: #2db742;
    font-size: 9px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0 0 16px;
    background: url('./../../images/chat-100.png') 0 3px no-repeat;
    background-size: 12px auto;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
}

.ai__popup_chat_box_ct .ai__popup_ct_content_item .ai__member_stt_offline{
    color: #f5a623;
    font-size: 9px;
    line-height: 12px;
    padding: 2px 0 0;
}


.ai__popup_chat_box_ct .ai__popup_ct_avatar img{
    border-radius: 50%
}

.ai__popup_chat_box_ct .ai__popup_ct_call_btn{
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}

/* ^^^--popup--^^^ */

/* VVV--popup button--VVV */
.ai__btn_popup{
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}
.ai__btn_popup .ai__btn_popup_icon{
    width: 56px;
    height: 56px;
    background: #5e00ff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
}
.ai__btn_popup .ai__btn_popup_icon:before{
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAE5ElEQVR4nO3daYhXVRjH8dNiWrSo0T5FSbgkWpYWlW1EJQRFvi7wlUUvLAqKJCgN2gxJCgp6E5FLC5LUWGQRlabWQKSZlVFkG0RmizK4TN84dMLrNNK9Z7lnuc8H5o0wd865v/HeO8//3OcoJYQQQgghOggYBowFZgC3Ao8By4CVwNtAH/CZ+eoz/9YLLAUWmO+ZYY4xLPZ8sgOcBMw0J3410I8/+ljvm6BuAE6MPd8kAWcAt5kA/qJdm4D7gQmqy4BRwB3ARtLxqRnTKNUVwBTgGWAn6dppxjhFlQo4C3gxwiXJ1aqiggHGAM8DA+RrwMxhjMoVcChwt+enpNh2Aw8Dh6mcAJOBjyjXJ8BUlTrgIGAusIfy7QHu0XNWKQKOAl6me14FRqqUAOOAzXTXZn0OVAqAc4GfY5+RBPwKnB87jGnAtthnIiG/ARfFCuNyYEfsM5CgP4FL2w5jArA99swT9jswqa0wjgO+ij3jDHwDnBA6jBHA+tgzzcg6fc5CBrIo9gwztDBUGFdlWKlNpTB5pe8wRgJbY88sY98Do30G8nTsGRXgSV9hjO9IsTA0fQ4n+gjkteBD7Y4VrmFcEnsGBZruEsjy2KMv0Eu2YZzm+d6hL32nqMwAPWaVpC/6nPbYDORB/Go+iEQAp3o+Fw/YfBT7g+dBSCD7bG300S9wHv6tzDEU/gnj9QDn45wmg7gvwADE/u5tEsiHg75Z+Le2bhiHA3sDDED892lrRKz7h7C9jwCzDvDNwr+b6gSi31wS7Xi0TiD6/T3RjiV1AgnxzC2G1lsnkDUUUKuifg3KadyOta7VdX6Afs/ORk+mJY+eln7OUDbWObjtomkJJFAgH1NArYr6NSincTvWumpdst6zPLgIdFN/weLAws7iOoEstDy4aO6ROoHcbHFgYefGOoFMtzy4CFRcPALYZXFw0bz8Pvx/AzGhyCsH4a2pFYYJRLcrEmHNbfrKmm9J1boirsv61+SmA9HtI3xK5q/4BJYBfWszCN0iwycJZJ95tm33fC52SKrWFXFdlu4odLLtYHSPKOHXMqswKjf3nBuPpcit04Npyyf8WO4Uhglkkiyc83bvGOsciAlFNx4WbhZ5CaOyvPRLxwF12XfeewEDl0njACv6oegKr2FUQnnCbkydtiBIGJWdCt6JPcOMfFC7xO4Qymi5n9TyNXB80DAGdXeQBmYHtq31ppimxZ9uZyf294dTcwDHUKYCvwwaUJdtBy6MEkYllInAj7HPRCKXqWkqBeaeom9iXbXJW1nEF+DojhYiVwDHqBSZDhC3d2QZ0W7grmSb8VcBFxT+OUofcLbKbKVGifrNEqm89kMErqUse4FngdNVjoDHKceqrC5PQymg1rXDdGJtp397C5u75GqDeUpM8zHWRmadIAbME5O+UY9XpQGO9FgF3mB2euv3vIPnu8BDwHV6pwdVMrNVtg+9+j2Vyn6Iul52vdmnVm8IsBh4w/x2668tle273zIbdS3Rr4wBtwBXA2dm97jqAjgE+NxDGEs7deJCAWZ7uJ7PBw6OPZfsmcLiTw5h6PL9NbHnUQzgKcsg9LKi54BjY8+hGHpHMsv1Wm9G/3StRA3fndAl61eAi2OPu8uB7DI9uOYU/9yfAvN8r0P5ovJ3gK6M3qn/JwTdpUwIIYQQQghVx9/eGkNLoDrQ7gAAAABJRU5ErkJggg==) 50% no-repeat;

    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
  
  
}
.ai__btn_popup .ai__btn_popup_icon:after{
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTguNjU5IDYuOTk4IDUtNWExLjE3NyAxLjE3NyAwIDAgMCAwLTEuNjU3IDEuMTc3IDEuMTc3IDAgMCAwLTEuNjU3IDBsLTUgNS01LTVBMS4xNzIgMS4xNzIgMCAwIDAgLjM0NSAxLjk5OGw1IDUtNSA1YTEuMTcyIDEuMTcyIDAgMCAwIDAgMS42NTcgMS4xNzcgMS4xNzcgMCAwIDAgMS42NTcgMGw1LTUgNSA1YTEuMTc3IDEuMTc3IDAgMCAwIDEuNjU3IDAgMS4xNzcgMS4xNzcgMCAwIDAgMC0xLjY1N2wtNS01WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==) 50% no-repeat;
    background-size: 14px auto;
    -webkit-background-size: 14px auto;
    -moz-background-size: 14px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
}
.ai__btn_popup.ai__active .ai__btn_popup_icon:before{
    opacity: 0;
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
}
.ai__btn_popup.ai__active .ai__btn_popup_icon:after{
    opacity: 1;
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
}
.ai__btn_popup .ai__btn_popup_txt{
    position: absolute;
    width: 156px;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 12px;
    color: #43474e;
    /*top: 15px;*/
    top: 7px;
    /* top: 50%;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%); */
    padding: 7px 0 7px 12px;
    margin-right: 7px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
.ai__btn_popup.ai__active .ai__btn_popup_txt{
    -ms-transform: translate(0,15px);
    transform: translate(0,15px);
    -webkit-transform: translate(0,15px);
    -moz-transform: translate(0,15px);
    opacity: 0;
    visibility: hidden;
}


/* -------------------- Chat Messages -------------------- */
.ai__popup_chat_messages{
    max-height: 350px;
    overflow-y: auto;
    padding: 12px 16px;
    /* background: rgba(147, 51, 234, 0.3); */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* User Messages */
.ai__message_user{
    align-self: flex-end;
    /* background: #DCF8C6; */
    color: #000;
    padding: 8px 12px;
    /* border-radius: 16px 16px 4px 16px; */
    max-width: 80%;
    word-wrap: break-word;
    font-size: 14px;
}

/* AI Messages */
.ai__message_ai{
    align-self: flex-start;
    /* background: #ffffff; */
    color: #000;
    /* padding: 8px 12px; */
    /* border-radius: 16px 16px 16px 4px; */
    max-width: 80%;
    word-wrap: break-word;
    font-size: 14px;
    /* box-shadow: 0px 1px 2px rgba(0,0,0,0.1); */
}

/* -------------------- Chat Input -------------------- */
.ai__popup_input_box{
    display: flex;
    padding: 8px 12px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
    align-items: center;
    gap: 8px;
}

.ai__popup_input_text{
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.2s all;
}

.ai__popup_input_text:focus{
    border-color: #5e00ff;
    box-shadow: 0 0 4px rgba(94,0,255,0.3);
}

/* Send Button */
.ai__popup_input_send{
    background: #5e00ff;
    color: #fff;
    font-size: 14px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s all;
}

.ai__popup_input_send:hover{
    background: #4500cc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* -------------------- Scrollbar Styling -------------------- */
.ai__popup_chat_messages::-webkit-scrollbar{
    width: 6px;
}

.ai__popup_chat_messages::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}

.ai__popup_chat_messages::-webkit-scrollbar-track{
    background: transparent;
}

/* -------------------- Adjustments for Operator Selection List -------------------- */
.ai__popup_content_list .ai__popup_content_item{
    cursor: pointer;
    transition: 0.2s all;
}

.ai__popup_content_list .ai__popup_content_item.selected{
    background: #e9f5ff;
    border-left: 3px solid #5e00ff;
}

/* Optional hover effect */
.ai__popup_content_list .ai__popup_content_item:hover{
    background: #f0f0f0;
}
.ai__message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.ai__message_user {
    justify-content: flex-end;
}
.ai__message_avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.ai__message_user .ai__message_avatar img {
    margin-left: 10px;
    margin-right: 0;
}
.ai__message_text {
    background: #f0f0f0;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 60%;
}
.ai__message_user .ai__message_text {
    background: #a0e0ff;
}


.ai__back_btn {
    display: inline-block;
    margin-bottom: 10px;
    background: #5e00ff;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.2s all;
}

.ai__back_btn:hover {
    background: #4500cc;
}

/* ^^^--popup button--^^^ */









#chatButtonFloating{
	
position: fixed;
	
right: 16px;
	
bottom: 16px;
	
background: transparent;
	
color: #0f172a;
	
padding: 0px 0px;
	
border: none;
	
z-index: 99998;
	
display: inline-block;
	
cursor: pointer;
}

#chatButtonFloating svg{
	
width: 36px;
	height: 36px;
}
/*Footer*/


.footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-col {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;

}

.footer-logo a img {
    height: 40px;
}

.footer-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
}

.footer-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #111827;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-bottom a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links-bottom a:hover {
    color: #111827;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .desktop-actions {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links-bottom {
        justify-content: flex-start;
    }

    .copyright {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .container-small {
        padding: 0 2rem;
    }
}
