/**************** Goggle Fonts CDN ****************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #dd2859;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui;
}

ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.login_form_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

.login_box {
  padding: 50px;
}

.login_img {
  background: #ffe1e9;
}

.logo a img {
  width: 20%;
  margin-bottom: 50px;
}

.login_form h2 {
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 15px;
}

.login_form h2 strong {
  color: var(--primary);
}

.login_form p {
  margin-bottom: 40px;
}

.login_form p span {
  color: var(--primary);
  font-weight: 700;
}

.form-floating > label {
  position: absolute;
  top: 15px;
  left: 0;
  height: auto;
  padding: 4px 10px;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  line-height: 1;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 1;
  transform: scale(0.85) translateY(-33px) translateX(15px);
  background: #fff;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 0;
  padding-bottom: 0;
}

.form-floating i {
  position: absolute;
  top: 22px;
  right: 20px;
  color: #777;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--primary);
  outline: 0;
  box-shadow: none;
}

.login_form form a {
  margin-left: auto;
  display: table;
  font-size: 15px;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.submit-button:hover {
  background-color: #c41745;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}

.line {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.autofetch_link {
  display: grid;
  gap: 15px;
}

.autofetch_link button {
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  width: 100%;
  border-radius: 30px;
  transition: 0.3s;
}

.autofetch_link button:hover {
  background-color: transparent;
}

.autofetch_link button img {
  width: 24px;
}

.login_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back_btn {
  margin-bottom: 30px;
}

.back_btn a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

/* plan_area css */
.plan_area {
  padding: 100px 0;
}

.plan_area .heading {
  margin-bottom: 100px;
}

.heading h2 {
  font-size: 42px;
  font-weight: 700;
}

.plan_area .card {
  border-radius: 30px !important;
  position: relative;
}

.header_tag {
  background: #0158ab;
  padding: 10px 20px;
  border-radius: 30px;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.header_tag p {
  margin-bottom: 0;
  color: #fff;
  display: block;
  white-space: nowrap;
}

.card_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.card_heading h3 {
  font-weight: 700;
  font-size: 25px;
}

.card-header {
  padding: 50px 20px 20px;
  border-radius: 30px !important;
}

.card-header p {
  font-size: 16px;
  font-weight: 600;
}

.card_heading input[type="checkbox"] {
  border: none;
  outline: 2px solid transparent;
  width: 25px;
  height: 25px;
  accent-color: white;
  background: transparent;
  cursor: pointer;
}

.plan_area .card .card-body {
  min-height: 406px;
}

.card-body p {
  font-size: 18px;
  font-weight: 500;
}

.card-body ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 15px;
}

.card-body ul li {
  display: flex;
  align-items: b;
  gap: 10px;
  padding-left: 12px;
  color: #787878;
}

.card-body ul li i {
  color: var(--primary);
}

.card-footer {
  padding: 30px;
  border: 0;
  background: transparent;
}

.card-footer strong {
  font-size: 20px;
  display: block;
}

.card-footer span {
  font-size: 14px;
  font-weight: 400;
  color: #787878;
  display: block;
}

.card.active {
  border-color: var(--primary);
}

.plan_area .card.active .card-header {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}

/***************** select template css *****************/
.template_area {
  padding: 100px 0;
}

.template_wrapper {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 47px 20px;
}

.template_thumbnail {
  flex-basis: 240px;
  border-radius: 22px;
  transition: 0.2s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.template_thumbnail.active {
  border: #fff 5px solid;
  box-shadow: 0px 0px 0px 2px rgb(222 40 89);
}

.template_thumbnail a img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  /* border: 1px solid #e5e5e5; */
  object-position: top center;
}

.progress {
  max-width: 500px;
  margin: auto;
  margin-bottom: 20px;
  height: 8px;
}

.progress-bar {
  background-color: var(--primary);
}

.custom_btn {
  margin: 20px auto 0px;
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.btn-danger {
  border-radius: 50px;
  padding: 12px 25px;
  background: #e91e63;
  border: #fea7be 2px solid;
  color: #ffffff;
  font-weight: 500;
}

.btn-grey {
  border-radius: 50px;
  padding: 12px 30px;
}

.social_media_row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  place-items: center;
  max-width: 800px;
  margin: 0px auto;
  gap: 20px;
}

.social_media_row > a,
.profile_icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
  border: #fff 4px solid;
  transition: 0.3s;
}

.social_media_row > a.active,
.profile_icon.active {
  transform: scale(0.9);
  box-shadow: 0px 0px 0px 2px black;
}

.social_media_row > a.active::before,
.profile_icon.active::before {
  content: "✔ ";
  width: 20px;
  height: 20px;
  position: absolute;
  background: #000;
  right: 0px;
  top: 0px;
  border-radius: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  rotate: 18deg;
}

.insta {
  background: radial-gradient(
      circle farthest-corner at 35% 90%,
      #fec564,
      transparent 50%
    ),
    radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
    radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 20% -50%,
      #5258cf,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(
      ellipse farthest-corner at 60% -20%,
      #893dc2,
      transparent 50%
    ),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(
      #6559ca,
      #bc318f 30%,
      #e33f5f 50%,
      #f77638 70%,
      #fec66d 100%
    );
}

.youtube {
  background-color: #ed1d24;
}

.tiktok {
  background-color: #000000;
}

.amazon {
  background-color: #232f3e;
}

.spotify {
  background-color: #1ed760;
}

.social_media_row > a.link {
  background-color: #f3f3f1;
  color: #000;
}

.facebook {
  background-color: #1877f2;
}

.whatsapp {
  background-color: #25d366;
}

.tweeter {
  background-color: #000;
}

.soundcloud {
  background-color: #ff7700;
}

.social_media_row > a.snapchat {
  background-color: #fffc00;
  color: #000;
}

.pinterest {
  background-color: #000;
}

.threads {
  background-color: #000;
}

.selection ul li {
  display: flex;
  flex-direction: column;
  gap: 2px 15px;
  align-items: stretch; /* Ensure children take full width */
  width: 100%; /* Ensure li takes full width */
}

.selection ul li > .input-container > div {
  width: 48px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0; /* Prevents div from shrinking */
}

.selection ul li > .input-container > .link {
  color: #000;
  border: #ddd 1px solid;
}

.selection ul {
  display: grid;
  gap: 15px;
}

.selection h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.selection ul li > .input-container {
    display: flex; /* Keeps first div and input on the same line */
    align-items: center;
    gap: 0 15px; /* Adjust spacing if needed */
    width: 100%; /* Ensure input-container takes full width */
    margin-bottom: 0; /* Remove any bottom margin */
    padding-bottom: 0; /* Ensure no extra padding */
}

.selection ul li > .input-error {
    color: red;
    margin-top: 0;
    padding-top: 0;
    margin-left: 64px;
    display: none;
    font-size: 10px;
}

}

.selection .form-control {
  border: #e5e1e1 1px solid;
  font-size: 14px;
  height: 45px;
  flex: 1;
  width: 100%; /* Ensures input takes available width */
}

.disabled {
  opacity: 0.4;
  cursor: default !important;
  pointer-events: none;
}

.prifiles {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.profile_icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.profile_form {
  display: grid;
  gap: 15px;
}

.poster_ss {
  display: table;
  margin: 0px auto;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
}

.poster_ss > img {
  border-radius: 10px;
}

.template_thumbnail {
  position: relative;
}

.title {
  border: transparent;
  padding: 10px 30px;
  text-align: center;
  border-radius: 30px;
  max-width: 120px;
  line-height: 1;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffff;
}

.title h4 {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
}

.title i {
  font-size: 12px;
}

.selection ul li .call {
  background: crimson;
}

.selection ul li .email {
  background: blue;
}

.selection ul li .website {
  background: darkturquoise;
}

.selection ul li .linkedin {
  background: #0077b5;
}

.selection ul li .twitter {
  background: #000;
}

.selection ul li .address {
  background: sienna;
}

.digital_media_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  max-width: 800px;
  margin: 0px auto;
  gap: 20px;
}

.digital_media_row .item {
  text-align: center;
  display: grid;
  gap: 10px;
}

.digital_media_row .item > a,
.profile_icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
  border: #fff 4px solid;
  transition: 0.3s;
  position: relative;
  margin: auto;
  background: #000000;
}

.digital_media_row .item > a.active,
.profile_icon.active {
  transform: scale(0.9);
  box-shadow: 0px 0px 0px 2px var(--primary);
  background-color: var(--primary);
}

.digital_media_row .item > a.active::before,
.profile_icon.active::before {
  content: "✔ ";
  width: 20px;
  height: 20px;
  position: absolute;
  background: #000;
  right: 0px;
  top: 0px;
  border-radius: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  rotate: 18deg;
}

.digital_media_row .item span {
  font-size: 14px;
  font-weight: 600;
}

.thumbnail {
  position: relative;
  display: inline-block;
}

.thumbnail img {
  max-width: 100px;
  max-height: 100px;
}

.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
}

.promodal .modal-dialog {
  max-width: 1100px;
}

.modal-body.modal_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.content {
  padding: 20px 30px;
}

.content h2 {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 20px;
}

.content ul {
  display: grid;
  gap: 10px;
}

.content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.content ul li i {
  color: var(--primary);
}

.img_box {
  background: #ffffff;
}

/* Mobile Frame CSS */
.frame_container {
  max-width: 400px;
  margin: auto;
}

.frame_wrapper {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin: auto;
  padding: 12px 12px 50px 12px;
}

.profile_info {
  position: relative;
  min-height: 210px;
  padding: 30px 20px 0 20px;
  z-index: 5;
}

.profile_info::after {
  content: "";
  background: var(--primary);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0, 100% 59%, 0 100%, 0% 100%);
  border-radius: 8px 8px 0 0;
}

.frame_header {
  position: relative;
}

.profile_info h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.profile_info p {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.profile_info span {
  color: #fff;
  opacity: 0.8;
}

.profile_img {
  position: absolute;
  bottom: 10px;
  right: 15px;
  z-index: 9;
  width: 130px;
  height: 130px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 4px;
  overflow: hidden;
}

.profile_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.frame_body {
  padding: 20px 20px;
}

.frame_body p {
  font-weight: 500;
  font-size: 14px;
  text-align: justify;
  line-height: 26px;
}

.frame_contact {
  text-align: center;
}

.frame_contact p {
  font-weight: 600;
}

.frame_contact a {
  border: 2px solid transparent;
  background: var(--primary);
  padding: 10px 15px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  color: #fff;
  margin: 10px 0;
  transition: 0.3s;
  text-align: left;
  align-items: center;
}

.frame_contact a:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.frame_contact a i {
  background: #fff;
  color: var(--primary);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.frame_contact a:hover i {
  background: var(--primary);
  color: #fff;
}

.frame_contact a span {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}

.frame_flow {
  margin-top: 30px;
}

.frame_flow p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

.frame_flow ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.frame_flow ul li img {
  width: 30px;
  transition: 0.3s;
}

.frame_flow ul li:hover img {
  transform: translateY(-4px);
}

@media (max-width: 575px) {
  .frame_container {
    padding: 30px 10px 180px;
  }
}

.dropdown-icon {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNzA3MTQsNC4yOTI4N0wxLjcwNzE0LDUuNzA3MTNDMS43MDcxNCw1Ljg1NzA2LDEuNzU3MDYsNS45OTI4NywxLjg1NzA2LDYuMDkyODdMMTIsMTYuMjQxM0wxMi4xNDE0LDE2LjI0MTNDMTIuMjQxNCwxNi4yNDEzLDEyLjM3NzE0LDE2LjE5MjYsMTIuNDI4NzEsMTYuMDkyODdMMTQuMjQxMyw0LjI5Mjg3QzE0LjI5Mjg3LDQuMTQxNDMsMTQuMjQxMyw0LDE0LjA5Mjg3LDRIMi4wOTI4N0MxLjk0MTQzLDQsMS44NTcxNCw0LjE0MTQzLDEuNzA3MTQsNC4yOTI4N1oiIGZpbGw9IiMwMDAwMDAiLz4KPC9zdmc+Cg==') no-repeat right 10px center;
  background-size: 12px;
  padding-right: 30px;
}
