/* Root Variables - Brand Colors */
:root {
  --primary-gradient: linear-gradient(135deg, #E26600 0%, #E74D20 25%, #ED3341 50%, #F21A61 75%, #F70081 100%);
  --primary-color: #F70081;
  --secondary-color: #E26600;
  --accent-color: #ED3341;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-muted: #999999;
  --background-light: #FFFFFF;
  --background-gray: #F4F4F4;
  --border-color: rgba(226, 102, 0, 0.1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  
  /* Mobile Safe Area Variables */
  --safe-area-inset-top: env(safe-area-inset-top, 0px);
  --safe-area-inset-right: env(safe-area-inset-right, 0px);
  --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-inset-left: env(safe-area-inset-left, 0px);
  
  /* Dynamic Viewport Height Support */
  --viewport-height: 100vh; /* Fallback */
}

/* Enhanced Mobile Viewport Support */
@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
  :root {
    --safe-area-inset-bottom: max(env(safe-area-inset-bottom, 0px), constant(safe-area-inset-bottom));
  }
}

/* Base Styles */
body {
  font-family: 'Arial', 'Arimo', sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  background-color: var(--background-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

.font-12 {
  font-size: 0.75rem;
}

.font-14 {
  font-size: 0.875rem;
}

.font-18 {
  font-size: 1.125rem;
}

.font-20 {
  font-size: 1.25rem;
}

.font-25 {
  font-size: 1.5625rem;
}

.font-32 {
  font-size: 2rem;
}

/* Buttons */
.btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-generate {
  background-image: var(--primary-gradient);
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
}

.btn-generate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Cards and Containers */
.main {
  background-color: var(--background-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: var(--spacing-lg);
}

.bg-card {
  background-color: var(--background-gray);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
}

/* Forms */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(247, 0, 129, 0.1);
}

/* Dropdowns */
.dropdown-menu {
  background: var(--background-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-md);
}

.dropdown-item {
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(247, 0, 129, 0.05);
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background: var(--background-light);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md) var(--spacing-lg);
}

.sidebar {
  background: var(--background-light);
  border-right: 1px solid var(--border-color);
  padding: var(--spacing-lg);
}

/* Images and Icons */
.icon-width {
  width: 1.125rem;
  height: 1.125rem;
}

.profile_icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}

/* Utilities */
.mouse {
  cursor: pointer;
}

.brand-gradient {
  background-image: var(--primary-gradient);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 4px;
}

/* Media Queries */
@media (max-width: 991px) {
  .sidebar {
    padding: var(--spacing-md);
  }

  .btn-generate {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
  }

  .font-32 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .dropdown-menu {
    padding: var(--spacing-sm);
  }

  .btn {
    padding: var(--spacing-xs) var(--spacing-md);
  }
}

/* Existing classes with updated values */
.btn-color {
  background-color: var(--primary-color);
  color: white;
}

.font-color {
  color: var(--primary-color);
}

.bg-button {
  background-color: var(--secondary-color);
  color: white;
}

.border-line {
  background-image: var(--primary-gradient);
}

.line {
  background: var(--primary-color);
  height: 4px;
}

/* Keep existing utility classes but update colors */
.pink-color {
  color: var(--primary-color);
}

.p-color {
  color: var(--primary-color);
}

.font-color-g {
  color: var(--secondary-color);
}

/* Update form elements */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Update modal styles */
.modal-content {
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary-color) !important;
}

.btn-close {
  background-color: var(--primary-color) !important;
}

.color :hover {
  background-color: #fb2222;
}

.main {
  background-color: #fff;
  border: 1px solid #bab8b8;
}

.margin-Left {
  margin-left: 50px;
}

.padding-10 {
  padding: 10px;
}

a {
  color: #0c0c0c;
  text-decoration: underline;
}

.change_color a {
  color: #f7027e;
  text-decoration: none;
}

a:hover {
  color: #cc0033;
}

.bg-gray {
  background-color: #f4f4f4;
}

.margin-L {
  margin-left: 44px;
}

.button-project:active {
  background-color: #fff;
  color: #cc0033;
}

.credits {
  padding-top: 200px;
  height: 20vh;
}

.images-width {
  width: 24px;
}

.notification-W {
  width: 36px;
}

.logo-width {
  width: 125px;
}

.font-12 {
  font-size: 12px;
}

.font-18 {
  font-size: 18px;
}

.btn-color {
  background-color: #cc0033;
  color: #ffffff;
}

.margin-L {
  margin-left: 44px;
}

.button-project:active {
  background-color: #fff;
  color: #cc0033;
}

.border-line {
  background-image: linear-gradient(90deg, #e36008, #ea4130, #f50b74, #f50976bf);
}

.credits {
  padding-top: 200px;
  height: 20vh;
}

.images-width {
  width: 24px;
}

.notification-W {
  width: 36px;
}

.logo-width {
  width: 125px;
}

.profile_icon {
  width: 36px;
}

.icon-width {
  width: 18px;
}

.font-color {
  color: #f70081;
}

.btn-generate {
  background-image: linear-gradient(70deg, #E26600, #F70081);
  color: #fff;
}

.bg-card {
  background-color: #f4f4f4;
}

.line {
  /* border: 2px solid #f70081; */
  background: #f70081;
  height: 4px;
  margin: 0px 38px;
}

.line-designs {
  border: 2px solid #f70081;
}

.main-image {
  color: #f82091;
}

.form-check-input:checked {
  background-color: #f70081;
  border-color: #f70081;
}

.font-14 {
  font-size: 14px;
}

.font-10 {
  font-size: 10px;
}

.pink-color {
  color: #f940a1;
}

.border {
  border: 1px solid #fb77bc !important;
}

.bg-button {
  background-color: #e26600;
  color: #ffffff;
}

a {
  text-decoration: none;
}

.bg-button-h {
  background-color: #f7027e;
  color: #ffffff;
}

.bg-line {
  border: 2px solid #e36304;
}

.w-img {
  width: 200px;
}

.w-img :hover {
  background-color: #f541415d;
}

.bg-img-container {
  padding: 6px;
  background-color: #f4f4f4;
  width: 210px;
  height: 178px;
}

.bg-img {
  background-color: #f4f4f4;
  width: 200px;
  height: 168px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-img-hover {
  display: none;
  background-color: #7e7b7b;
  width: 200px;
  height: 168px;
  opacity: 0.5;
}

.bg-img:hover>div {
  display: block;
}

.p-color {
  color: #f7027e;
}

.font-color-g {
  color: #e56d14;
}

.bg-gradient-image {
  background-image: linear-gradient(50deg, #fadfd5, #fcd8e1);
  position: absolute;
  top: 60%;
  height: 40%;
  left: 0;
  right: 0;
}

.desgin-width {
  width: 80%;
  margin-left: 22px;
}

.facebook-fram {
  width: 100%;
  padding: 7px;
}

.facebook-img {
  position: absolute;
  left: 10%;
  max-width: 80%;
  top: 38%;
}

.face-fram {
  position: relative;
}

.bg-bubbles {
  background-image: url('/assets/images/log-in-bg.jpg');
  background-repeat: round;
}

.bubbles {
  /* background-image: url('/assets/images/BG-pattern.png');
  background-repeat: repeat; */
  background-image: url('/assets/images/1908197_2.png');
  background-color: transparent;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.bubbles-register {
  /* background-image: url('/assets/images/BG-pattern.png');
  background-repeat: repeat; */
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;

}



.login-form {
  background: #ffffff;
  border-radius: 0px 25% 25% 0px / 520px;
  padding: 60px;
}

.padding-p {
  padding: 86px;
}

.bg-text {
  background: #ffeeff3d;
  border-radius: 12px 12px 12px 12px;
  padding: 6px;
}

.mouse {
  cursor: pointer;
}

.menu-main {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 70px;
  height: 100vh;
  overflow: hidden;
  white-space: nowrap;
  list-style: none !important;
  transition: .3s ease;
}

.menu-main:hover {
  width: 270px;
}

.menu-item {
  padding: 10px;
  list-style: none;
}

.menu-item:hover {
  cursor: pointer;
  background-color: #7e7b7b;
}

.icons {
  font-size: 25px;
  width: 28px;
}

.btn-filter {
  background-color: #e26600;
  color: #ffffff;
  width: 100%;
}

.modal-width {
  width: 162%;
}

.add-image {
  justify-content: space-between;
  background-image: linear-gradient(50deg, #fadfd5, #fcd8e1);
  padding: 6px 396px;
}

.font-h {
  line-height: 36px;
}

.c-input {
  display: none;
}

.uploadFile {
  display: inline-block;
  /* text-transform: uppercase; */
  color: #ffffff;
  background-color: #ff653d;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 9px;
}

.uploadFile:active {
  transform: scale(0.9);
}

.img-uplaod {
  border: 1px solid #828282;
}

.radio_moved {
  position: absolute;
  margin-left: 4px;
}

.images-library {
  width: 60px;
}

.icon-bar {
  font-size: 22px;
  padding: 2px 16px;
  cursor: pointer;
}

.brand-logo {
  width: 100px;
  height: 50px;
}

.brand-text {
  align-content: center;
}

.bg_colorB {
  background-color: #e65417;
  color: #ffffff;
}

.red_color {
  color: #ff0000;
}

.whatsApp {
  background: #00ff00;
  color: #ffffff;
  font-size: 22px;
  border-radius: 9px;
}

.cloud_icon {
  display: grid;
  cursor: pointer;
  font-size: 40px;
  padding: 10px 20px;
  background: white;
  color: #f70081;
}

.images-library_h {
  display: block;
  color: #ffffff;
  background-image: linear-gradient(45deg, #E26600, #F70081, transparent);
  width: 112px;
  height: 20px;
  opacity: 0.5;
  font-size: 9px;
  font-weight: bolder;
  position: absolute;
  top: 74%;
  line-height: 20px;
  text-transform: uppercase;
  cursor: pointer;
}

.imagebox:hover>div {
  display: block;
}

.delete_icon {
  position: absolute;
  bottom: -26px;
  font-size: 15px;
  right: 48px;
}

.accordion-button:focus {
  z-index: 3 !important;
  border-color: #fff !important;
  outline: 0;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #212529 !important;
  background-color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);

}

.btn {
  box-shadow: none !important;
}

.btn:hover {
  color: #fff;
}

.button-h :hover {
  color: #f7027e;
}

.form-select {
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.form-control {
  box-shadow: none !important;
  border-color: #ced4da !important;
}

.formBrand .accordion-button:not(.collapsed) {
  color: #212529 !important;
  background-color: #f4f4f4 !important;
  box-shadow: none !important;
}

.formB .accordion-button {
  background-color: #f4f4f4 !important;
}

.br_Left {
  border-left: 1px solid #d6d6d6 !important;
  border-left-color: #d6d6d6 !important;
}

.numberT {
  font-size: 26px;
  font-weight: bold;
}

.brand-img-container {
  padding: 4px;
  background-color: #f4f4f4;
  width: 96px;
  height: 96px;
}

.brand-img {
  background-position: center;
  background-size: contain;
  background-color: #f4f4f4;
  width: 86px;
  height: 86px;
}

.brand-img-hover {
  display: none;
  background-color: #afaaaabd;
  width: 86px;
  height: 86px;
  opacity: 0.5;
}

.brand-img:hover>div {
  display: block;
}

.address-color {
  color: #ef4136;
}

.icons_dir {
  color: #f70081;
  font-size: 20px;
}

.left-menu .active {
  color: #cc0033;
}

.accordion-button:focus {
  z-index: 3 !important;
  border-color: #d6d6d6 !important;
  outline: 0;
  box-shadow: none !important;
}

.mar-Left {
  margin-left: 32px;
}

/* .sidebar {
  width: 190px;
  transition: 0.6s;
} */

.close-menu {
  width: 52px;
  background-image: linear-gradient(45deg, #E26600, #F70081);
  color: #ffffff;
}

.close-menu a .link-name {
  opacity: 0;
  pointer-events: none;
}

.close-menu a {
  color: #FFF;
  font-size: 23px;
}

.close-menu .hide {
  display: none;
}

.br-radius {
  border-radius: 12px;
}

nav .menu-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

nav .menu-items a {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 50px;
}

/* .close-menu::after .links .icon-menu {
  display: flex;
  height: 100%;
  font-size: 24px;
  min-width: 45px;
  align-items: center;
  justify-content: center;
  padding: 10px,12px;
} */
nav .menu-items .link-name {
  font-size: 18px;
  font-family: Arimo, sans-serif;
  align-items: center;
  padding: 10px 12px;
}

nav .close-menu::after .icon {
  font-size: 26px !important;
  color: #FFFFFF !important;
}

.w-bubble {
  width: 22px;
}

.btn-toggle {
  border: none;
  background-color: #fafafa;
}

.dorpdown-generate {
  height: 60vh;
  overflow-x: hidden;
  max-width: 300%;
}

.userProfile.dropdown-menu[data-bs-popper] {
  top: 45px;
  left: -278px;
}

.icon_Profile.dropdown-menu[data-bs-popper] {
  top: 38px;
  left: -148px;
}

.dropdown_Generate.dropdown-menu[data-bs-popper] {
  top: 36px !important;
  left: -276px !important;
}

.dropdown_Generate_md.dropdown-menu[data-bs-popper] {
  top: 42px !important;
  left: -278px !important;
}

.dropdown_Generate_sm.dropdown-menu[data-bs-popper] {
  top: 42px !important;
  left: -34px !important;
  max-width: 390px !important;
}

@media (max-width: 391px) {
  .dropdown_Generate_sm.dropdown-menu[data-bs-popper] {

    max-width: 350px !important;
  }

}


.library-h {
  max-height: 64vh;
  overflow-x: scroll;
  margin-bottom: 30px;
  overflow-x: hidden;

  overflow-y: auto;

  scrollbar-width: thin;

  scrollbar-color: #e26600 #f1f1f1;

}

.library-h::-webkit-scrollbar {
  width: 12px;
  /* Width of the vertical scrollbar */

}

.library-h::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Scrollbar track color */
}

.library-h::-webkit-scrollbar-thumb {
  background-color: #e26600;
  /* Scrollbar thumb color */
  border-radius: 10px 10px 10px 10px;
  border: 2px solid #f1f1f1;
  /* Adds space around the thumb */

}

.library-h::-webkit-scrollbar-thumb:hover {
  background-color: #bd0921;
  /* Thumb color on hover */
}

.checkImage {
  position: relative;
}


.form-text {
  position: absolute;
  text-align: center;
  top: 20%;
}

.form-img {
  position: absolute;
  text-align: center;
  top: 35%;
  left: 25%;
  color: #8d949b;
}

.btn-add {
  position: absolute;
}

.input-user {
  border-left: none;
  padding-left: 0px;
}

.search-icon {
  padding: 10px;
  background: #fff;
  border-right: none;
}

.space {
  white-space: nowrap;
}

.logo-circle {
  border-radius: 50%;
}

.button-center {
  align-content: center;
}

.font-26 {
  font-size: 26px;
}

.billing-bg {
  background-color: #92929230;
}

.text-color {
  color: #e36304;
}

.billing-color {
  color: #f9419e;
}

.font-70 {
  font-size: 70px;
  font-weight: bolder;
}

.billing-button {
  background-color: #f9419e;
  color: #FFFFFF;
}

.plans-margin {
  margin-left: 5%;
}

.payment-color {
  color: #f7027e;
}

.line-border {
  border: 2px solid #FFF;
}

.margin-billing-L {
  margin-left: 60%;
}

.billing-border {
  border-color: #f9419e !important;
}

.status-color {
  color: #0f8318;
}

.font-20 {
  font-size: 20px;
}

.credits-border {
  border-left: 1px solid rgba(0, 0, 0, .15);
  padding-left: 14px;
}

.line-G {
  background: #e36304;
  height: 3px;
  display: inline-block;
  vertical-align: middle;
}

.padding-pro {
  padding: 12px 54px;
}

.modal-content {
  border: 1px solid #f7027e !important;
}

.modal-header {
  border-bottom: none !important;
}

.btn-close {
  color: #fff !important;
  background-color: #f7027e !important;
}

.bg-none .btn-close {
  background-color: #fafafa !important;
}

.font-bold {
  font-weight: bolder !important;
}

.border-hidden {
  border: none;
}

.counter {
  width: 48px;
  background: #eeeeee;
  border: none;
}

.font-32 {
  font-size: 32px;
  font-weight: bold;
  box-shadow: 1px 4px #eeeeee;
}

.card-border {
  border: 1px solid #f7027e !important;
}

.padding-Left {
  padding-left: 36px;
}

.font-25 {
  font-size: 25px;
}

.padding-Right {
  padding-right: 50px;
}

.text-size {
  font-size: 14px;
  font-weight: 500;
}

.padding-summary {
  padding: 8px 16px;
}

.line-white {
  border: 2px solid #ffffff;
}

.border-pink {
  border-left: 4px solid #f7027e;
}

.billing-boxsh {
  box-shadow: 0px 2px #eeeeee;
}

.line-middle {
  vertical-align: middle;
  line-height: 42px;
}

.font-W-500 {
  font-weight: 500;
}

.counter-one {
  width: 48px;
  background: #ffffff;
  border: none;
}

.bg-white {
  background: #ffffff;
}

.padding-t {
  padding-top: 30px;
}

.bg-form {
  background-color: #f1f1f1;
  border-radius: 12px;
}

.main-button {
  text-align: center;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #f70081;
}

.bg-white {
  background-color: #ffffff;
}

.br-color {
  border-color: #f70081 !important;
}

.br-left {
  border-left: none !important;
}

.br-right {
  border-right: none !important;
}

.generate-Ai {
  justify-content: center;
  background-image: linear-gradient(50deg, #fadfd5, #fcd8e1);
  padding: 4px 248px;

}

.border-D {
  border: 2px dashed #e26600 !important;
}

.z-index-1 {
  z-index: 1;
}

.button_Style {
  border-color: #ced4da;
  background: #ffffff;
  color: #f70081;
}

.logo_Style {
  position: absolute;
  right: 97%;
  top: -14%;
}

#svgEditor svg {
  max-width: 100%;
  vertical-align: top !important;
  height: auto;
}

.button-Border {
  border: 1px solid #eeee;
}

/* Chrome, Safari, Opera, and Edge */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #f7027e;
  /* Change this to your desired color */
  cursor: pointer;
  border-radius: 50%;
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #f7027e;
  /* Change this to your desired color */
  cursor: pointer;
  border-radius: 50%;
}

/* IE */
input[type="range"]::-ms-thumb {
  width: 18px;
  height: 18px;
  background: #f7027e;
  /* Change this to your desired color */
  cursor: pointer;
  border-radius: 50%;
}

.button-active {
  background-color: #d6d6d6;
}

.bg-feature {
  background-color: #e9ecef;
}

#svgEditor {
  position: relative;
}

.draggable {
  cursor: move;

}

.resizable {
  cursor: nwse-resize;
}

.rotating {
  transform-origin: center;
  animation: rotate 2s linear infinite;
  transform-box: fill-box;
}

.rotatingT {
  text-anchor: middle;
}

.dirBar {
  flex-direction: row;
}

.resetStyle {
  border-radius: 20px;
  padding: 3px 16px;
}

.rotateStyle {
  padding: 5px 6px;
  border: 1px solid #ccce;
  border-radius: 14px;
}

.addText {
  background: #f7f7f7;
  border-radius: 100px;
  padding: 20px 8px;
  position: absolute;
  top: 6px;
  left: -9%;
  color: #F70081;
}

.button-end {
  align-content: end;
}

.insertIamge {
  left: 27%;
}

.addColor {
  border: 2px dashed #ff4fac !important;
}

#svgCanvas {
  width: 800px;
  height: 600px;
  border: 1px solid #ccc;
}

.svg-element {
  cursor: move;
  user-select: none;
}

.form-color {
  background-color: #f3f3f3;
}

.verifyPadding {
  padding-top: 12%;
}

.br-radius22 {
  border-radius: 22px;
}

.middle-iamge {
  vertical-align: middle;
  line-height: 36;
}

.font-11 {
  font-size: 11px;
}

.paddingTop {
  padding-top: 12%;
}

.overFlow {
  overflow: scroll;
  max-height: 21%;
}

.bg-Gray {
  background-color: #fafafa;
}

.styleIamge {
  position: absolute;
  top: 40%;
  left: 3%;
}

.backgroundButton {
  background-color: #eb3c36;
  color: #fff;
}

.bg-image-selected {
  background-color: #7e7b7b;
  opacity: 0.5;
}

.bg_isSelected {
  background-color: #fefefe;
  opacity: 0.7;
}

.padding-B {
  padding-bottom: 12%;
}


@media (max-width: 767px) {
  .content-center {
    justify-content: center !important;
  }
}

#editorProModal .modal-dialog {
  max-width: 90%;
  /* 80% width of the screen */
  width: 90%;
  height: 95vh;
  /* 80% of the viewport height */
  margin: auto;
  /* Center the modal */
  padding-top: 30px;
}

.password_Icons {
  position: absolute;
  bottom: 18%;
  right: 6%;
}

#editorProModal .modal-content {
  height: 100%;
  /* Make sure modal content fills the dialog */
}

#editorProModal .modal-body {
  height: calc(100% - 60px);
  /* Adjust height for header and footer */
  padding: 0;
  /* Remove padding to make the iframe fill the body */
}

#editorProModal iframe {
  height: 100%;
  width: 100%;
  /* Full height and width for iframe */
  border: none;
  /* Remove the border */
}

.col-6.col-sm-6.text-end {
  padding-top: inherit;
}

.image-container {
  position: relative;
  border-radius: 10px 10px 10px 10px;
  width: 100%;
  /* padding-top: 100%;  */
  padding-bottom: 100%;
  /* This creates a 1:1 aspect ratio for the container */
  overflow: hidden;
  /* Hide any overflow */
  background-color: #f0f0f0;
  /* Optional: Add a background color to fill empty space */
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* This ensures the image covers the container while maintaining aspect ratio */
  object-position: center;
  /* Centers the image within the container */
}

.padding_L {
  padding-left: 1.5rem;
}

.password_Icon {
  position: absolute;
  bottom: 18%;
  right: 4%;
}

.z-index-0 {
  z-index: 0;
}

.bg-bubble {
  background-image: url('/assets/images/BG-pattern.png');
}

/* .login-right-content {
  background-image: url('/assets/images/1908197_2.png');
  background-color: transparent;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

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

/*LOGIN PAGE*/
.col-xxl-12 {
  padding: 0 !important;
}

.login-page-main {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 100vh;
  justify-content: center;
  display: flex;

}

.title-login {
  color: #f7027e;
  font-family: "Montserrat Subrayada", sans-serif;
  font-weight: 400;
  font-size: 30px;
}

.login-inputs {
  border-color: #F70081 !important;
}

.custom-icon-bg {
  background-color: #ffffff !important;
  border-color: #F70081 !important;
}

.custom-icon-color {
  color: #F70081;
  font-size: .90em;
}



.position_changepass {
  position: absolute;
  right: 22px;
  top: 10px;
}

.nav-tabs .nav-link.active {
  color: #f7027e;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #2e2e2e;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

/* .nav-link {
  color: #000 !important;
} */
/* Responsive Styles */
@media screen and (max-width: 750px) {
  .login-right-content {
    display: none;
  }

  .login-background {
    background-image: none;
    background-color: #faf9f9;
  }

  .login-logo {
    width: 100% !important;
  }
}

.continue-with {
  padding-top: 2.5rem !important;
  padding-bottom: 1rem !important;
}

.disabled {
  border: 2px solid #f7027e;
  background-color: #e2e3e5c2;
}

.disabled:hover {
  transform: translateY(0px);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
}


@media (max-width: 576px) {

  .footer-links a,
  .footer-links span {
    font-size: 0.75rem;
    margin-left: 0.2rem !important;
    margin-right: 0.2rem !important;
  }

  .padding_T {
    padding-top: 10%;
    padding-bottom: 6%;
  }

  .justify-Center {
    justify-content: center !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .small-md {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .small-md {
    font-size: 1rem;
  }
}

@media (max-width: 1540px) {
  .login-logo {
    width: 50% !important;
  }
}

.login-icon {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 6%;
  z-index: 1;
}

@media (min-width: 576px) {
  .updesingl {
    width: 50% !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .btn-generate {
    font-size: 13px;
  }
}

@media (max-width: 576px) {

  /* Styles for mobile devices */
  .modal-content {
    padding: 10px;
  }

  .modal-header,
  .modal-footer {
    padding: 10px;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .col_Hidden {
    display: none;
  }
}


:root {
  background-color: #f5f5f5;
}

.hborder {
  border-width: 3px !important;
  border-color: #EDEBEBFF !important;

}

.color_Line {
  color: #bdbdbd;
}

.font_Size_32 {
  font-size: 32px;
}

/* .dropdown-toggle::after {
  border: none  !important;
} */
.br_radius_left {
  border-bottom-left-radius: 92px;
  border-top-left-radius: 92px;
}

@media (min-width:1024px) and (max-width:1653px) {
  .width_img_user {
    width: 40%;
  }

  .Text_Center {
    text-align: center;
  }
}

.sliderimage {
  max-width: 40%;
}

@media (min-width: 1600px) and (max-width: 1920px) {
  .sliderimage {
    max-width: 50%;
  }
}

@media (max-width:991px) {
  .bar_hidden {
    display: none;
  }
}

.margin.card[data-v-4295d220] {
  margin-left: 0px !important;
}

.position_Left {
  left: 24%;
}

/* For SVGEDITOR */

.svg_select_handle_point {
  stroke: #e45c0d;
  stroke-width: 1;
  cursor: move;
  fill: white;
}

.svg_select_shape {
  stroke-width: 1;
  stroke-dasharray: 10 10;
  stroke: #e45c0d;
  stroke-opacity: 0.1;
  pointer-events: none;
  fill: none;
}

.svg_select_shape_pointSelect {
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 10 10;
  stroke: #f50975;
  stroke-opacity: 0.8;
  pointer-events: none;
}

.svg_select_handle {
  stroke-width: 4;
  stroke: #f50975;
  fill: none;
}

.svg_select_handle_rot {
  fill: white;
  stroke: #f50975;
  stroke-width: 3;
  cursor: move;
}

.svg_resize_handle {
  fill: #ffffff !important;
  stroke: #f50975 !important;
  /* Brand color for handles */
  stroke-width: 1;
  cursor: pointer;
}

.selected-element {
  stroke: #e45c0d !important;
  stroke-dasharray: 5, 5;
  fill: none !important;
}

.font_color_post {
  color: var(--gray-Color);
  font-size: 16px !important;
  font-weight: bold !important;
}

.add_tags {
  background-color: #fff !important;
  color: #636363;
  border: 1px solid #e0e0e0 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 7px;
  transition: 0.3s ease-in-out;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.5;
}

.tags:hover {
  background-color: #fff !important;
  color: #636363;
  border: 1px solid #e0e0e0 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 7px;
  transition: 0.3s ease-in-out;
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

.wand-magic_color {
  color: #9c2bff;
  fill: #9c2bff;
}

.button_AI_Assistant {
  background-color: #fff !important;
  color: #636363;
  border: 1px solid #e0e0e0 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 7px;
  transition: 0.3s ease-in-out;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.5;
}

.button_Assistant:hover {
  opacity: 1;
  background: linear-gradient(90deg, #ba6bff 0%, #0113ff 100%) text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #e0e0e0 !important;
}

.main_Content {
  border: 1px solid #e0e0e0;
}

.br_Bottom {
  border-bottom: 1px solid #e0e0e0;
}

.share_Icon {
  color: #f9419e;
}

.content_Pic {
  height: 138px;
  overflow: hidden;
}

.custom_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.style_Pic {
  overflow: hidden;
}

.bg-marker {
  background-color: #87c221;
}

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

.img_profile {
  max-width: 48px;
  border: 1px solid #cfcfcf;
}

.linkedIn-w {
  position: absolute;
  bottom: 1px;
  right: -14px;
  max-width: 24px;
}

.social_medial {
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
}

.channels-color {
  color: var(--gray-Color);
}

.bg-modal {
  background-color: #e0e0e0;
}

.main_Share {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #323b43cc;
  opacity: 1;
  height: auto;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(-112px + 100vh);
  max-height: 888px;
}

.share_Post {
  display: flex;
  /* height: calc(-112px + 100vh);
  max-height: 888px; */
}

.img_pro {
  filter: grayscale();
}

.img_pro:hover {
  filter: none;
}

.img-filter {
  filter: none;
}

.prevPost {
  transition: 0.8s all;
}

.loader_w {
  width: 300px;
  height: 300px;
}
