@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

:root {
  --primary-color: #d9ff32;
  --primary-hover-bg: #38420d;
  --secondary-color: #ffffff;
  --tertiary-color: #000000;
  --dark-light-color: #2c2c2c;
  --dark-hover-bg: #434343;
  --light-input-color: #b3b3b3;
  --dark-input-bg: #3a3a3a;
  --dark-action-bg: #2c2c2c;
  --glass-bg: rgba(0, 0, 0, 0.3);
  --text-color: #878e96;
  --nav-color: #cfcfcf;
  --radius-big: 16px;
  --color-lessdark: #2e313d;
  --bg-color: #111111;

  /* Border color  */

  --primary-border-color: #545454;
}

html {
  background-color: var(--bg-color) !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  overflow-x: hidden;
  position: relative;
  font-family: "Urbanist", sans-serif !important;
  color: var(--secondary-color) !important;
  background-color: var(--bg-color) !important;
  font-size: 16px !important;
  letter-spacing: 0.8px;
}


body::-webkit-scrollbar {
  background-color: var(--secondary-color);
  width: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #333333;
}

body::-webkit-scrollbar-thumb {
  background-color: #656567;
  border-radius: 16px 16px 0 0;
}

body.modal-open {
  overflow: auto !important;
}

.small-padding {
  padding: 2em 0;
}

body.modal-open[style] {
  padding-right: 0px !important;
}

.logo {
  max-height: 70px;
  object-fit: contain;
}

.navbar-logo img {
  max-height: 80px;
  object-fit: contain;
}

.header-nav-center {
  padding: 0em 0;
  border-bottom: 1px solid rgba(11, 34, 56, 0);
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
  background-color: #000;
  padding-top: 1em;
  /*  position: fixed;
    left: 0;
    right: 0;
    z-index: 999;*/
}

.header-nav-center .navbar .nav-link {
  font-size: 1.2em;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.dropdown-toggle::after {
  display: none;
}

.hamburger-menu {
  width: 2em;
}

/* Admin UI CSS */

.admin-ui-sec {
  min-height: 100vh;
  background-color: #171717;
  display: flex;
  width: 100%;
  height: 100%;
}

.admin-ui-sidebar {
  width: 5.5em;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto !important;
  will-change: transform;
  display: flex;
  flex-direction: column;
  background-color: var(--tertiary-color);
  /* box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.15); */
  bottom: 0;
  animation: fadeIn 1s;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  overflow: hidden;
  /* z-index: 9; */
}

.admin-ui-sidebar {
  padding: 1em;
}

.admin-ui-sidebar.admin-ui-collapse-sidebar {
  width: 20em;
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  overflow: auto !important;
  transition: transform 0.1s ease-in;
  will-change: transform;
  display: flex;
  flex-direction: column;
  /* box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.15); */
  bottom: 0;
  /* z-index: 99999; */
  -webkit-animation: fadeIn 1s;
  background-color: var(--tertiary-color);
  animation: fadeIn 1s;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  overflow: hidden;
}

.admin-ui-main-wrapper {
  /* background: var(--dark-light-color); */
  margin-left: 5.5em;
  width: 100%;
}

.ai-body-wrapped {
  background: var(--dark-light-color);
  margin-left: 6%;
  /* margin-left: 2.8em; */
}

.admin-ui-logo-sec {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 1em;
  padding: 1em;
}

.admin-ui-logo-sec a {
  display: block;
  width: 100%;
}

.admin-ui-header-sec {
  border-bottom: 1px solid var(--primary-border-color);
  /* background-color: var(--dark-light-color); */
  background-color: #171717;
  padding: 0.5em 1em;
  z-index: 99;
  position: fixed;
  right: 0;
}

.admin-collapse-main-wrapper .admin-ui-header-sec {
  left: 20em !important;
}

.admin-ui-main-wrapper .admin-ui-header-sec {
  left: 5.5em;
}

.admin-ui-main-wrapper.admin-collapse-main-wrapper {
  margin-left: 20em;
}

.admin-ui-sidebar-list {
  display: flex;
  flex-direction: column;
  border-bottom: 0 !important;
}

.admin-ui-sidebar-list li {
  padding-bottom: 1em;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.admin-ui-sidebar-list li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1em;
  font-weight: 500;
  color: var(--secondary-color);
  transition: 0.5s;
  line-height: 1.8;
  font-size: 0.9em;
  text-decoration: none !important;
  border-radius: 8px;
}

.admin-ui-sidebar.admin-ui-collapse-sidebar .admin-ui-sidebar-list li a {
  display: grid;
  align-items: center;
  grid-template-columns: 35px auto;
}

.admin-ui-sidebar-list li a:hover {
  background-color: var(--primary-hover-bg);
  color: var(--secondary-color);
}

.admin-ui-sidebar-list li a.active {
  background-color: var(--primary-hover-bg);
  color: var(--secondary-color);
  position: relative;
}

.admin-ui-sidebar.admin-ui-collapse-sidebar .admin-ui-sidebar-list li a.active::after {
  content: " ";
  background: var(--secondary-color);
  width: 6px;
  height: 6px;
  position: absolute;
  right: 5%;
  border-radius: 50%;
}

.admin-ui-logo {
  max-width: 10em;
}

.admin-ui-collapse-logo {
  max-width: 3.5em;
}

.admin-ui-collapse-logo-sec a {
  display: block;
  width: 100%;
}

.admin-ui-collapse-logo-sec {
  padding: 1.05em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.admin-ui-title-sec h1 {
  margin-bottom: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  font-weight: 600;
}

.admin-ui-title-sec {
  display: flex;
  align-items: center;
  gap: 1em;
}

.user-dropdown-sec .dropdown-toggle {
  background-color: transparent !important;
  border: 0 !important;
  display: flex;
  align-items: center;
  gap: 1em;
}

.user-dropdown-sec .dropdown-menu {
  background: var(--tertiary-color);
  padding: 0;
}

.user-dropdown-sec .dropdown-menu .dropdown-item {
  color: var(--secondary-color);
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1em !important;
  text-decoration: none !important;
}

.user-dropdown-sec .dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-hover-bg);
  color: var(--secondary-color);
}

.ai-admin-dropdown {
  background: var(--dark-input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  border-radius: 8px;
}

.user-dropdown-sec .dropdown-toggle span {
  color: var(--secondary-color);
}

.user-dropdown-sec .dropdown-toggle::after {
  display: none !important;
}

.user-dropdown-sec .dropdown-menu {
  margin-left: -2em !important;
}

.admin-ui-collapse-btn {
  cursor: pointer;
  display: none;
}

.offcanvas {
  width: 20% !important;
  background-color: var(--primary-color) !important;
}

.admin-ui-sidebar.admin-ui-collapse-sidebar .admin-ui-sidebar-list li a {
  justify-content: flex-start;
  padding-left: 1em;
}

.admin-ui-sidebar.admin-ui-collapse-sidebar .offcanvas-close::before,
.admin-ui-sidebar.admin-ui-collapse-sidebar .offcanvas-close::after {
  display: none;
}

.admin-ui-sidebar.admin-ui-collapse-sidebar .offcanvas-close {
  background-color: transparent !important;
  border: 0 !important;
  align-items: center;
  justify-content: flex-end;
  display: none;
}

.admin-ui-body-sec {
  padding: 2em;
  margin-top: 83px;
  position: relative;
}

.admin-user-details {
  display: flex;
  align-items: center;
  gap: 1em;
}

.admin-user-details .user-name {
  color: var(--tertiary-color);
  font-size: 0.9em;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.admin-user-img {
  width: clamp(10em, 100%, 10em);
}

/* Body Conetent style */
.ai-content-wrapped {
  padding: 2em;
  margin-top: 5.3em;
}

/* Body Conetent style */

/* Common Style over All */

.ai-primary-btn {
  background-color: var(--primary-color) !important;
  padding: 0.8em 4em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px !important;
  /* box-shadow: 0 15px 30px 0 rgb(5 16 44 / 15%); */
  color: var(--tertiary-color) !important;
  display: inline-block;
  border: none;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  border: 0 !important;
}

.ai-action-btn {
  background: var(--dark-action-bg) !important;
  padding: 0.8em 2em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px !important;
  /* box-shadow: 0 15px 30px 0 rgb(5 16 44 / 15%); */
  color: var(--secondary-color) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: none;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  border: 1px solid var(--dark-action-bg) !important;
  width: 100%;
}

.ai-outline-btn {
  background: var(--dark-action-bg) !important;
  padding: 0.8em 2em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px !important;
  /* box-shadow: 0 15px 30px 0 rgb(5 16 44 / 15%); */
  color: var(--secondary-color) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: none;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  border: 1px solid var(--primary-border-color) !important;
  width: 100%;
}

.ai-overlay-btn {
  background: transparent !important;
  padding: 0.8em 2em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px !important;
  /* box-shadow: 0 15px 30px 0 rgb(5 16 44 / 15%); */
  color: var(--primary-color) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: none;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  border: 1px solid var(--primary-color) !important;
  width: 100%;
}

.ai-secondary-btn {
  background: var(--secondary-color) !important;
  padding: 0.8em 2em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px !important;
  /* box-shadow: 0 15px 30px 0 rgb(5 16 44 / 15%); */
  color: var(--tertiary-color) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: none;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  border: 0 !important;
  width: 100%;
}

.ai-transparent-btn {
  background: transparent !important;
  padding: 0em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  border: 0 !important;
  width: 100%;
}

.ai-action-frame {
  margin-top: 2em;
  /* Don't Remove this space */
}

.layout-element {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}

@media (max-width: 991px) {
  .layout-element {
    flex-direction: column;
    gap: 1em !important;
  }
}

/* modal  */
.ai-modal-custome .modal-body {
  padding: 2em !important;
  background: var(--tertiary-color);
  border: 1px solid var(--primary-border-color) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.ai-modal-custome .modal-header {
  border-bottom: 0 !important;
  padding: 0 !important;
}

.ai-modal-custome .ai-modal-title h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--secondary-color);
}

.ai-modal-title h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--secondary-color);
}

/* form  */
.ai-feature-form .input-group {
  border: 1px solid rgb(255 255 255 / 8%) !important;
  border-radius: 8px;
}

.ai-feature-form .input-group .form-control,
.ai-feature-form .form-control {
  height: 45px !important;
  border: 0 !important;
  background: var(--dark-input-bg);
  color: var(--secondary-color) !important;
  font-size: .9em;
  font-weight: 400;
}

.ai-feature-form .input-group .input-group-text {
  border: 0 !important;
}

.ai-feature-form .input-group .form-control:focus {
  box-shadow: none;
  border: 0 !important;
  background: var(--dark-input-bg) !important;
}

.ai-feature-form .form-control:focus {
  box-shadow: none;
  background: var(--dark-input-bg) !important;
}

.ai-feature-form textarea.form-control {
  height: auto;
  border: 1px solid rgb(255 255 255 / 8%) !important;
}

.ai-feature-form .input-group .input-group-text {
  background: var(--dark-input-bg) !important;
}

.ai-feature-form .input-group:focus-within {
  border: 1px solid rgb(255 255 255 / 8%) !important;
}

.ai-feature-form .form-control::placeholder {
  color: var(--light-input-color) !important;
  font-size: 0.9em;
  font-weight: 400;
}

.ai-feature-form .form-label {
  font-size: 0.85em;
  font-weight: 500;
  color: var(--text-color);
}

.form-action-frame {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 2em;
}

.items-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Common Style over All */

/* Search header style  */
.ai-header-search-frame {
  min-width: 399px;
  margin-right: 2em;
}

/* Search header style  */

/* Title is comman for every page  */
.ai-page-tile-frame {
  margin-bottom: 2em;
}

.ai-page-tile-frame h2 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: var(--secondary-color);
}

.ai-page-tile-frame p {
  font-size: 0.9em;
  font-weight: 400;
  margin-bottom: 0em;
  color: var(--text-color);
  line-height: 1.8;
}

/* Title is comman for every page  */
/* Home Card style  */
.ai-home-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.ai-tool-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ai-card-actions-icons {
  background: var(--primary-color);
  border-radius: 8px;
  padding: 0.5em;
}

.ai-tools-card-actions {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1em;
}

.ai-tool-card-img {
  width: 100%;
  max-height: 16em;
  aspect-ratio: 1 / 1;
}

.ai-tool-card .lazy-load-image-background {
  width: 100% !important;
}

.ai-tools-avater {
  /* width: 282px;
    height: 256px;
    object-fit: cover;
    object-position: center;
    min-height: 7em; */
  width: 100%;
  height: 18em;
  object-fit: cover;
}

.ai-card-btn {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 0.8em 2em !important;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px !important;
  /* box-shadow: 0 15px 30px 0 rgb(5 16 44 / 15%); */
  color: var(--secondary-color) !important;
  border: none;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
}

/* Home Card style  */

/* Text to Image Page Style  */
.ai-text-image-modals-wrappped {
  margin-bottom: 2.5em;
}

/* AI Check Card  */
.ai-text-image-types-frame {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  align-items: start;
  -webkit-box-pack: start;
  gap: 1em;
}

.ai-form-check input[type="radio"] {
  display: none;
}

.ai-modal-check-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  cursor: pointer;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-modal-check-card .ai-modal-check-card-img-sec {
  border-color: var(--primary-color);
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-modal-check-card .ai-modal-check-card-info h4 {
  color: var(--primary-color);
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-modal-check-card .ai-modal-check-card-img-sec::before {
  opacity: 1;
  visibility: visible;
}

.ai-modal-check-card-img-sec::before {
  background: #d9ff3229;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.ai-modal-check-card-img-sec {
  width: 7em;
  height: 7em;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  position: relative;
}

.ai-modal-check-card-info h4 {
  font-size: 0.95em;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary-color);
  /* text-align: center; */
}

/* AI Check Card  */

.ai-text-image-form-frame .form-action-frame button {
  width: auto;
}

/* Text to Image Page Style  */

/* Colorized Image */

.ai-colorized-image-type-box {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  align-items: start;
  -webkit-box-pack: start;
  justify-content: start;
  gap: 1em;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-colorized-image-type-card .ai-colorized-image-type-image-sec::before {
  opacity: 1;
  visibility: visible;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-colorized-image-type-card .ai-colorized-image-type-image-sec {
  border-color: var(--primary-color);
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-colorized-image-type-card .ai-colorized-image-type-info h4 {
  color: var(--primary-color);
}

.ai-colorized-image-type-image-sec {
  width: 7em;
  height: 7em;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
}

.ai-colorized-image-type-image-sec {
  position: relative;
}

.ai-colorized-image-type-image-sec::before {
  background: #d9ff3229;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.ai-colorized-image-type-info h4 {
  font-size: 0.95em;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary-color);
  /* text-align: center; */
}

.ai-colorized-image-type-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  cursor: pointer;
}

.ai-colorized-image-type-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 7em;
}

/* Colorized Iamge Style */

.ai-colorized-image-style-box {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  align-items: start;
  -webkit-box-pack: start;
  justify-content: start;
  gap: 1em;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-colorized-image-style-card .ai-colorized-image-style-image-sec::before {
  opacity: 1;
  visibility: visible;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-colorized-image-style-card .ai-colorized-image-style-image-sec {
  border-color: var(--primary-color);
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-colorized-image-style-card .ai-colorized-image-style-info h4 {
  color: var(--primary-color);
}

.ai-colorized-image-style-image-sec {
  width: 7em;
  height: 7em;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
}

.ai-colorized-image-style-image-sec {
  position: relative;
}

.ai-colorized-image-style-image-sec::before {
  background: #d9ff3229;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.ai-colorized-image-style-info h4 {
  font-size: 0.95em;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary-color);
  text-align: center;
}

.ai-colorized-image-style-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  cursor: pointer;
}

.ai-colorized-image-style-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 7em;
}

.ai-image-upload-btn {
  border: 1px solid var(--primary-border-color);
  background: var(--dark-action-bg);
  padding: 0.8em 2em;
  border-radius: 8px;
  font-size: 0.8em;
  font-weight: 500;
}

.ai-image-upload-box-wrapped {}

.ai-image-upload-box {
  min-width: 40em;
  display: flex;
  position: relative;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  background: transparent;
  border: 1px dashed var(--secondary-color);
  background-color: #282829;
  border-radius: 8px;
  padding: 1.5em;
}

.ai-image-upload-card {
  display: flex;
  text-align: center;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
}

.ai-image-upload-info p {
  font-size: 0.8em;
  font-weight: 400;
  margin-bottom: 0em;
  color: var(--text-color);
  line-height: 1.8;
}

/* Text To Speech */

.ai-text-to-speech-box {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  align-items: start;
  -webkit-box-pack: start;
  justify-content: start;
  gap: 1em;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-text-to-speech-card .ai-text-to-speech-image-sec::before {
  opacity: 1;
  visibility: visible;
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-text-to-speech-card .ai-text-to-speech-image-sec {
  border-color: var(--primary-color);
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-text-to-speech-card .ai-text-to-speech-info-sec {
  border-color: var(--primary-color);
}

.ai-form-check .form-check-input:checked[type="radio"]+.ai-text-to-speech-card .ai-text-to-speech-info h4 {
  color: var(--primary-color);
}

.ai-text-to-speech-image-sec {
  width: 11em;
  height: 11em;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
}

.ai-text-to-speech-image-sec {
  position: relative;
}

.ai-text-to-speech-image-sec::before {
  background: #d9ff3229;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.ai-text-to-speech-info-sec h4 {
  font-size: 0.95em;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary-color);
  text-align: center;
}

.ai-text-to-speech-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.ai-text-to-speech-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 7em;
}

.ai-text-to-speech-info-sec {
  background: #1c1c1c6e;
  border: 0.5px solid #7f7f7f;
  border-radius: 0 0 10px 10px;
  padding: 16px 17px 16px 17px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(2px);
}

.ai-text-to-speech-recent-generations-header-left-sec .pretty.p-image input:checked~.state label:before {
  border-color: var(--primary-color);
}

.ai-text-to-speech-recent-generations-header-right-sec {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  align-items: center;
  gap: 1em;
}

.ai-text-to-speech-recent-generations-header-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-text-to-speech-recent-generations-box {
  grid-template-columns: repeat(1, 1fr);
  display: grid;
  align-items: center;
  gap: 1em;
  margin-top: 2em;
}

.ai-text-to-speech-recent-generations-card {
  background-color: var(--dark-light-color);
  padding: 1em 1.5em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-text-to-speech-recent-generations-info-left-sec {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  align-items: center;
  gap: 1em;
}

.ai-text-to-speech-recent-generations-created-date-sec {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background-color: var(--tertiary-color);
  padding: 0.8em 1em;
  border-radius: 10px;
  color: #939393;
  font-size: 0.9em;
}

.ai-text-to-speech-recent-generations-header-left-sec .pretty .state label {
  font-weight: 700;
}

.ai-text-to-speech-recent-generations-info-left-sec .pretty .state label {
  font-weight: 400;
  font-size: 1em;
}

.ai-text-to-speech-recent-generations-action-sec {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  align-items: center;
  gap: 0em;
}

.ai-action-table-btn {
  background-color: transparent !important;
  border: 0 !important;
}

.ai-modal-title p {
  font-size: 0.9em;
  color: var(--text-color);
  font-weight: 400;
}

.ai-video-effects-fps-select-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background-color: var(--dark-action-bg);
  padding: 0.5em;
  border-radius: 10px;
}

.ai-video-effects-resolution-card {
  padding: 0.5em 1em;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85em;
  font-weight: 600;
}

.ai-video-effects-fps-select-box .ai-form-check input:checked~.ai-video-effects-resolution-card {
  background-color: var(--dark-hover-bg);
}

/* Writing Aids CSS */

.ai-writing-aids-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.ai-writing-aids-icon-sec {
  background-color: #2c3019;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1em;
}

.ai-writing-aids-card {
  padding: 1.5em;
  background-color: #202020;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ai-writing-aids-info-sec h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: var(--secondary-color);
}

.ai-writing-aids-info-sec p {
  font-size: 0.9em;
  font-weight: 400;
  margin-bottom: 0em;
  color: var(--text-color);
  line-height: 1.5;
}

.ai-writing-aids-box a {
  text-decoration: none !important;
}

.ai-rewriting-content-info-sec h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: var(--secondary-color);
}

.ai-rewriting-content-info-sec p {
  font-size: 0.9em;
  font-weight: 400;
  margin-bottom: 0em;
  color: var(--text-color);
  line-height: 1.5;
}

.ai-rewriting-content-info-sec {
  margin-bottom: 2em;
}

/* AI Settings CSS */

.all-generation-header-sec h4 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0em;
}

.all-generation-header-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 1.5em;
}

.ai-settings-all-generation-img-sec {
  width: 100%;
  max-height: 16em;
  aspect-ratio: 1 / 1;
}

.ai-settings-all-generation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 7em;
  border-radius: 12px;
}

.ai-settings-all-generation-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.ai-settings-all-generation-icon-sec {
  background: var(--primary-color);
  border-radius: 8px;
  padding: 0.5em;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15px;
  left: 15px;
}

.ai-settings-all-generation-card {
  position: relative;
}

.navbar-toggler {
  padding: 0 !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.ai-profile-secondary-box {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 1em;
}

.ai-profile-img-sec {
  position: relative;
}

.ai-profile-img {
  width: 8em;
  height: 8em;
  border-radius: 50%;
  object-fit: cover;
}

.profile-account-user-img-edit-icon input[type="file"] {
  display: none;
}

.profile-account-user-img-edit-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary-gradient) !important;
  border-radius: 50%;
  /* border: 1px solid var(--secondary-color); */
  cursor: pointer;
}

/* Landing Page Style  */
.ai-main-content {
  background: var(--bg-color);
}

.sm-padding {
  padding: 4em 0;
}

.ai-header {
  background: var(--tertiary-color);
  padding: 1em 0;
  position: fixed;
  z-index: 1050;
  width: 100%;
}

.ai-header-wrapped {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-brand-logo {
  max-width: 10em;
  height: auto;
  object-fit: contain;
  width: auto;
}

.ai-banner-wrapped {
  background: url("../img/web/banner-shatter.png") #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.ai-banner-wrapped::after {
  content: " ";
  background: rgb(0 0 0 / 40%);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ai-banner-content {
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin-bottom: 6em;
}

.ai-banner-content h1 {
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 0.4em;
  color: var(--secondary-color);
  text-align: center;
}

.ai-banner-content p {
  font-size: 0.95em;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--secondary-color);
  text-align: center;
}

.ai-banner-content .ai-banner-note {
  font-size: 0.95em;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--secondary-color);
  text-align: center;
  border: 1px solid #ffffff17;
  border-radius: 25px;
  background: #ffffff0f;
  padding: 1em;
  display: inline-block;
}

.ai-scrollery-overlay {
  position: absolute;
  bottom: -80px;
  z-index: 1;
}

.shape-image {
  width: calc(100% - 10%);
}

.ai-scroller-wrap {
  display: flex;
  gap: 1em;
  /* width: -webkit-calc((420px* 16) +(30px* 16));
    width: -moz-calc((420px* 16) +(30px* 16));
    width: 7200px; */
  position: relative;
}

.scroller-left-side {
  -webkit-animation: scroll 20s linear infinite;
  -moz-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-webkit-calc(-250px * 2));
    -moz-transform: translateX(-moz-calc(-250px * 2));
    transform: translateX(-1200px);
  }
}

/* Shade Style  */
.shade-gradient-bottom {
  height: 160px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9;
  background-image: linear-gradient(179.7deg,
      rgb(246 246 246 / 0%) 0,
      rgb(0 0 0) 85%);
}

.ai-about-content-frame span {
  font-size: 0.85em;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.4em;
  /* display: inline-block; */
}

.ai-about-content-frame h2,
.ai-generated-content h2 {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5em;
}

.ai-about-content-frame p {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
}

.ai-about-content-frame p:last-child {
  margin-bottom: 0;
}

.ai-combine-frame {
  padding: 2em;
  border-radius: 12px;
  background-image: linear-gradient(0deg, #fff0 0%, #374300 70%);
  /* border: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to bottom,#374300 70%,  #fff0 0% ); */
}

.ai-generated-frame {
  padding: 2em;
  border-radius: 12px;
  background-image: linear-gradient(0deg, #fff0 0%, #374300 90%);
  border-image-slice: 1;
  /* border-width: 1px; */
  /* border-image-source: linear-gradient(180deg, rgba(230, 253, 129, 0.4) 0%, rgba(130, 153, 30, 0) 100%); */
  /* border-image-slice: 1;
    background: linear-gradient(180deg, rgba(217, 255, 50, 0.05) 0%, rgba(107, 126, 25, 0.05) 67.77%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(180deg, rgba(230, 253, 129, 0.4) 0%, rgba(130, 153, 30, 0) 100%); */
  border: 1px solid rgba(225, 225, 225, 0.5);
}

.generated-avater {
  width: 28em;
  height: auto;
  object-fit: contain;
}

.ai-generate-card {
  display: grid;
  grid-template-columns: 100px auto;
  align-items: center;
}

.ai-generate-card-icons {
  border: 1px solid #ffffff17;
  border-radius: 50%;
  background: #ffffff0f;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5em;
  width: 5em;
}

.ai-generate-card-info h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.4em;
}

.ai-generate-card-info p {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0em;
}

.ai-generated-list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.ai-socail-media ul {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1em;
}

.media-icons {
  width: 3em;
  height: 3em;
  object-fit: contain;
}

footer {
  background: #232323;
}

.ai-footer-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2em;
}

.ai-footer-quick-link {
  display: flex;
  align-items: center;
  gap: 1em;
}

.ai-footer-quick-link a {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--secondary-color);
  text-decoration: none;
}

.ai-pre-footer {
  text-align: center;
  padding: 1em;
  background: var(--primary-color);
}

.ai-pre-footer p {
  font-size: 0.85em;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--tertiary-color);
}

/* Landing Page Style  */

.how-its-work-icon-sec {
  border: 1px solid;
  border-image-source: linear-gradient(180deg,
      rgba(255, 255, 255, 0.27) 0%,
      rgba(255, 255, 255, 0) 100%);
  background: #ffffff0f;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  border-radius: 50%;
}

.how-its-work-info-sec h4 {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.4em;
}

.how-its-work-info-sec p {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0em;
}

.how-its-work-card {
  background: none;
  position: relative;
  transition: 0.4s;
}

.how-its-work-card .how-its-work-inner-card {
  background: transparent;
  position: relative;
  z-index: 2;
  backdrop-filter: none;
}

.how-its-work-inner-card {
  background: linear-gradient(180deg,
      var(--color-lessdark) 20%,
      rgba(19, 19, 19, 0.4));
  -webkit-backdrop-filter: blur(4px) opacity(0.95);
  backdrop-filter: blur(4px) opacity(0.95);
  border-radius: var(--radius-big);
  padding: 2em;
}

.how-its-work-info-sec {
  position: relative;
}

.how-its-work-info-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../img/service-card-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -2;
  opacity: 0.4;
  transition: 0.4s;
}

.how-its-work-bg-shaped-sec .how-its-work-bg-shaped-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* height: 100%;
  width: 100%; */
  width: 100%;
  z-index: 1;
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
}

.how-its-work-bg-shaped-sec .how-its-work-bg-shaped-img-hover {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* height: 100%;
  width: 100%; */
  width: 100%;
  z-index: 1;
}

.how-its-work-card:hover .how-its-work-bg-shaped-img {
  opacity: 0;
  visibility: hidden;
}

.how-its-work-card:hover .how-its-work-bg-shaped-img-hover {
  opacity: 1;
  visibility: visible;
}

.how-its-work-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.ai-section-head h2,
.ai-section-head p {
  text-align: center;
}

.ai-section-head span {
  font-size: 0.95em;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--primary-color);
  text-align: center;
  display: inline-block;
}

.ai-section-head {
  margin-bottom: 2em;
}

.ai-faq-wrapped .accordion-item {
  background: transparent !important;
  border: 0 !important;
  margin-bottom: 1em;
}

.ai-faq-wrapped .accordion-item:last-child {
  margin-bottom: 0;
}

.ai-faq-wrapped .accordion-button {
  background: var(--primary-hover-bg) !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: unset !important;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--secondary-color) !important;
}

.ai-faq-wrapped .accordion-body {
  padding: 1.5em 0;
}

.ai-faq-wrapped .accordion-body p {
  font-size: 0.95em;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text-color);
}

.ai-faq-wrapped .accordion-button::after {
  /* background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0"  viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23ffffff" opacity="1" data-original="%23000000"></path></g></svg>') ; */
  transform: rotate(-180deg) !important;
  background-size: 1rem !important;
  background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" enableBackground="new 0 0 512 512" viewBox="0 0 32 32" ><path fill="%23fff" d="M30 25a2 2 0 01-1.41-.59L16 11.83 3.41 24.41a2 2 0 01-2.82-2.82l14-14a2 2 0 012.83 0l14 14A2 2 0 0130 25z" data-original="%23000000" ></path></svg>');
}

.ai-faq-wrapped .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" enableBackground="new 0 0 512 512" viewBox="0 0 32 32" ><path fill="%23fff" d="M30 25a2 2 0 01-1.41-.59L16 11.83 3.41 24.41a2 2 0 01-2.82-2.82l14-14a2 2 0 012.83 0l14 14A2 2 0 0130 25z" data-original="%23000000" ></path></svg>');
  background-size: 1rem !important;
  /* background: var(--primary-color); */
  /* width: 2em;
    height: 2em;
background-size: 1.8em!important;

    display: flex!important;
    align-items: center;
    justify-content: center; */
  transform: rotate(0deg) !important;
}

.errorMsg {
  color: red;
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
}

.login-box .error-msg{
  margin-bottom: -.7em !important;
}

.login-box .PhoneInput {
  border: none !important;
  height: 45px;
}

.PhoneInput {
  align-items: center;
  display: flex;
}

.PhoneInput {
  display: flex;
  align-items: center;
  height: 2.8em;
  border: 1px solid #dee2e6;
  font-size: .9em;
  font-weight: 400;
  border-radius: 10px;
  width: 100%;
  padding: 0 18px 0 14px;
  background-color: var(--dark-input-bg);
}

.PhoneInputCountry {
  align-items: center;
  align-self: stretch;
  display: flex;
  margin-right: 0.35em;
  margin-right: var(--PhoneInputCountrySelect-marginRight);
  position: relative;
}

.PhoneInputCountrySelect {
  border: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.PhoneInputCountryIcon--border {
  background-color: #0000001a;
  background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
  box-shadow: 0 0 0 1px #00000080, inset 0 0 0 1px #00000080;
  box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
    inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
  display: block;
  height: 20px;
  width: 30px;
}

.PhoneInputCountrySelectArrow {
  border-bottom-width: 1px;
  border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  border-color: currentColor;
  border-color: var(--PhoneInputCountrySelectArrow-color);
  border-left-width: 0;
  border-right-width: 1px;
  border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
  border-style: solid;
  border-top-width: 0;
  content: "";
  display: block;
  height: 0.3em;
  height: var(--PhoneInputCountrySelectArrow-width);
  margin-left: 0.35em;
  margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
  opacity: 0.45;
  opacity: var(--PhoneInputCountrySelectArrow-opacity);
  transform: rotate(45deg);
  transform: var(--PhoneInputCountrySelectArrow-transform);
  width: 0.3em;
  width: var(--PhoneInputCountrySelectArrow-width);
  color: #fff;
}

.login-box .PhoneInput input {
  background-color: transparent !important;
  height: 45px;
  border-radius: 8px;
}

.PhoneInput input {
  border: none;
  outline: none;
  color: var(--secondary-color) !important;
}

.PhoneInputInput {
  flex: 1 1;
  min-width: 0;
}

.ai-feature-form .rmdp-container{
  width: 100% !important;
}

input.rmdp-input {
  background-color: #3a3a3a;
  color: #fff;
  border: 0px;
  height: 45px;
  font-weight: 400;
  font-size: .9em;
  padding-left: 10px;
  width: 100%;
}

input.rmdp-input::placeholder{
  color: var(--light-input-color) !important;
  font-size: 0.9em;
  font-weight: 400;
}

input.rmdp-input:focus{
  border: none;
}

.spinner-loader {
  width: 24px;
  height: 24px;
  border: 3px solid var(--tertiary-color);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  /* box-sizing: border-box; */
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ai-auth-field.reset-form {
  width: 500px;
}

.ai-reset-password-modal-info .efi-otp-input div {
  gap: 1em;
  justify-content: space-around;
}

.ai-reset-password-modal-info .efi-otp-input input[type="text"] {
  width: 45px !important;
  height: 45px !important;
  border-radius: 8px !important;
  border: 0 !important;
  background: var(--dark-input-bg);
  color: var(--secondary-color) !important;
}

.ai-reset-password-modal-info .efi-otp-input input[type="text"]:focus {
  border: 0 !important;
  background: var(--dark-input-bg);
  color: var(--secondary-color) !important;
}

.ai-reset-password-modal-info .efi-otp-input input[type="text"]:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  background: var(--dark-input-bg);
  color: var(--secondary-color) !important;
}

.mb-3.efi-otp-input h6 {
  text-align: center;
  margin: 26px 0;
}

input.form-control {
  background-color: var(--dark-input-bg) !important;
}

.preview-added-image {
  width: 20rem;
  margin: 10px auto 0;
  position: relative;
}

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

.preview-cancel {
  position: absolute;
  z-index: 999;
  top: 5px;
  right: 5px;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--primary-color) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 50% !important;
}

.text-danger.selectfile {
  color: #dc3545 !important;
  margin-top: 0.5em;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: -12px;
  /* margin-left: 5em; */
}

.tag-input-container {
  display: flex;
  flex-direction: column;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #3a3a3a;
}

.tags-container input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  min-width: 100px;
  background-color: #3a3a3a;
  color: #fff;
}

.tag {
  /* display: flex;
  align-items: center; */
  display:grid;
  grid-template-columns: auto 50px;
  align-items: center;
  padding: 0.8em;
  background-color: #3a3a3a;
  border-radius: 8px;
  margin: 3px;
  font-size: 0.85em;
  border: 1px solid #ccc;
}

.tag span {
  margin-right: 5px;
}

.tag .close-btn {
  cursor: pointer;
  /* font-size: 2em; */
  color: #fff;
  /* margin-left: 5px; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ai-text-to-speech-image.img {
  height: 174px !important;
  height: 174px !important;
}

.active-tab.nav-link {
  background-color: var(--dark-light-color) !important;
  color: var(--primary-color) !important;
}

.default-tab.nav-link {
  color: #c7b7b7 !important;
}

.nav-pills .nav-link {
  font-weight: 600;
  font-size: 1em;
}

.state {
  overflow: hidden;
  width: 18ch;
}

.empty-frmae {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.generates-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
}

.no-data-found {
  width: 20em;
}

.typing-img {
  width: 5% !important;
}

.generate-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.error-msg {
  font-size: 0.8em;
  font-weight: 400;
  color: red;
  margin-top: 0.3em;
}

.react-loading-skeleton {
  opacity: 0.3;
}

.no-data-img-sec {
  text-align: center;
  height: 50vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.no-data-img {
  height: 15em;
  width: auto;
  object-fit: contain;
}

.no-data-img-sec h4 {
  font-size: .95em;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0em;
  margin-top: 1em;
  text-align: center;
}

.login-box .PhoneInput input {
  background-color: var(--dark-input-bg) !important;
}

button.hide-btn.btn.btn-primary {
  background: none;
  border: 0px;
}

.input-group-text {
  padding: .3em;
}

.ai-loader-frame.text-center {
  text-align: center;
  align-items: center;
}

.ai-image-upload-btn:hover {
  background-color: #fff;
  color: #000;
}
button.preview-cancel.btn.btn-link {
  z-index: 1;
}
.input-group-text {
    padding: .25em !important;
}

.otp-verify-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.otp-verify-header svg{
  cursor: pointer;
}
.form-control:disabled {
  background-color:var(--dark-action-bg) !important;
  opacity: 1;
}