html {
  font-size: 60%;
  scrollbar-width: thin;
  scrollbar-color: #555;
}

.hiddenP {
  display: none !important;
}

/*******popup for media link***********/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup .popup-content {
  position: relative;
  max-width: 400px;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.popup .popup-content .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.popup ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 10px;
}

.popup ul li {
  margin-bottom: 5px;
}

.popup a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.popup .input-container {
  display: flex;
  align-items: center;
}

.popup input[type="text"] {
  flex: 1;
  padding: 8px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/******popup links*************/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-container {
  background-color: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.popup-container input {
  margin-bottom: 10px;
}

.popup-container button {
  margin-right: 10px;
}

.sbtn {
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

input {
  height: 4rem;
  width: 80%;
  /*box-shadow: 0 0 15px #999999;*/
  font-size: 1.5rem;
  padding-left: 1rem;
  border-radius: 5px;
}
input[type="checkbox"] {
  display: inline-block;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #fff;
  margin-right: 0.5em;
  appearance: none;
}
input[type="checkbox"]:checked {
  background-color: #ff8363;
}
.copy-link-input {
  appearance: none;
  height: auto;
  padding: 0;
  width: 100%;
  color: #6c757d;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:hover img {
  filter: invert(1);
}
.form-connect label {
  display: block;
  margin-bottom: 8px;
}
.form-connect input[type="text"] {
  border-radius: 6px;
  padding-top: 0;
  padding-bottom: 0;
  height: 60px;
  line-height: 56px;
  border: 2px solid #fff;
  margin-right: 8px;
}
.form-control {
  font-size: 1.5rem;
  height: 4rem;
}
.form-control::placeholder {
  text-transform: capitalize;
}
.linkInput1 {
  width: 20%;
}

.linkInput2 {
  width: 40%;
}
.inputSocial1 {
  font-size: 1.5rem;
  width: 20%;
}

.inputSocial2 {
  font-size: 1.5rem;
  width: 30%;
}

.product-card {
  width: 80%;
  /*box-shadow: 0 0 15px #999999;*/
}
.linkForm {
  width: 80%;
  height: 180px;
  /*overflow: hidden;
  overflow-y: scroll;*/
  overflow-y: auto;
}

/* Styles pour la barre de dÃ©filement horizontale */
.linkForm::-webkit-scrollbar {
  height: 4px; /* Hauteur de la barre de dÃ©filement */
  width: 0.5rem;
  background-color: transparent; /* Fond transparent */
}

.linkForm::-webkit-scrollbar-thumb {
  background-color: #888; /* Couleur de la poignÃ©e de dÃ©filement */
  border-radius: 4px; /* Bordure arrondie de la poignÃ©e */
}

.linkForm::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Couleur de la poignÃ©e de dÃ©filement au survol */
}

.linkForm::-webkit-scrollbar-track {
  background-color: transparent; /* Fond transparent */
}

/* notification design*/
.notif {
  position: absolute;
  top: 12%;
  right: 25%;
  width: 200px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s;
}
.notif.openN {
  max-height: 300px;
  border-radius: 6px;
}

.notif .notif-sub {
  align-items: center;
  display: flex;
  flex-direction: column;
  background: #fff;
  /*padding: 1rem;
  margin: 1rem;*/
}
.notif .notif-sub hr {
  border: 0;
  height: 1px;
  width: 100%;
  background: #000;
}
.notif .notif-sub span {
  border-bottom: 1px solid #eee;
}
.notif .notif-sub span:last-child {
  border-bottom: none;
}
.notif .notif-sub span h3 {
  color: #000;
  font-family: "Open Sans", sans-serif;
  padding: 15px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}
.notif .notif-sub span h3:hover {
  background: #ccc;
}

.notif-content {
  width: 400px;
  margin: 3% auto;
  height: auto;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #000;
  border-radius: 5px;
}

/*nave dropdown*/
.sub-menu-wrap {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 200px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s;
  border-radius: 6px;
}
.sub-menu-wrap.open-menu {
  max-height: 315px;
}
.sub-menu {
  background: #fff;
  padding: 1rem;
  margin: 10px;
  border-radius: 6px;
}
.user-info {
  display: flex;
  align-items: center;
}
.user-info h3 {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.user-info img {
  margin-right: 0.5rem;
}
.sub-menu hr {
  border: 0;
  height: 1px;
  width: 100%;
  background: #000;
  margin: 15px 0 10px;
}
.sub-menu-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #525252;
  margin: 1rem 0;
  font-size: 16px;
}
.sub-menu-link p {
  width: 100%;
  margin-bottom: 0;
}
.sub-menu-link i {
  width: 40px;
  color: rgba(0, 0, 0, 0.8);
  background: #e5e5e5;
  border-radius: 50%;
  padding: 8px;
  margin-right: 15px;
}
.sub-menu-link span {
  font-size: 1.5rem;
  transition: transform 0.5s;
}
.sub-menu-link:hover span {
  transform: translateX(5px);
  color: rgba(0, 0, 0, 0.8);
}
.sub-menu-link:hover p {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

/**********profile page-*******************/

.card-profileSmall {
  width: 233.35px;
  margin: 3% auto;
  height: 477.38px;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 2rem;
  background: url(../images/main.png) center center no-repeat;
  background-size: cover;
}

.card-profileSmall img {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  border-radius: 50%;
}
.card-profileSmall div h3 {
  text-transform: capitalize;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1rem;
  font-size: 1rem;
}
.card-profileSmall h3 span {
  font-size: 16px;
  color: #ff6600;
}
.card-profileSmall ul {
  list-style: none;
}
.card-profileSmall ul li {
  display: inline-block;
  margin: 0.5rem 0.5rem;
}
.card-profileSmall ul li a {
  color: rgba(0, 0, 0, 0.8);
  background: #fff;
  font-size: 1rem;
  transition: 0.2s;
  border-radius: 10%;
  padding: 0.5rem 0.5rem;
}
.card-profileSmall .butt {
  text-decoration: none;
  width: 100%;
  border-radius: 5%;
  padding: 0.2rem 0.5rem;
  font-size: 1.5rem;
  margin-top: 1rem;
  display: inline-block;
  transition: 0.2s;
}
.card-profileSmall .cont {
  color: #fff;
  background: #ff6600;
  font-weight: bold;
}

.card-profileSmall .link {
  color: rgba(0, 0, 0, 0.8);
  background: hsl(0, 0%, 93%);
}

/* gbig profile page*/

.card-profile {
  width: 400px;
  margin: 3% auto;
  height: auto;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #000;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.card-profile img {
  width: 100px;
  height: 100px;
  display: block;
  margin: auto;
  border-radius: 50%;
}
.card-profile div h1 {
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 24px;
  font-size: 2rem;
}
.card-profile div h1 span {
  font-size: 1.7rem;
  letter-spacing: 0.8rem;
  color: #ff6600;
}
.card-profile div ul {
  list-style: none;
}
.card-profile div ul li {
  display: inline-block;
  margin: 1.5rem 1.5rem;
}
.card-profile div ul li a {
  color: rgba(0, 0, 0, 0.8);
  background: #fff;
  font-size: 1.8rem;
  transition: 0.2s;
  border-radius: 10%;
  padding: 0.8rem 0.8rem;
}
.card-profile .butt {
  text-decoration: none;
  width: 100%;
  border-radius: 5%;
  padding: 0.5rem 0.5rem;

  margin-top: 2rem;
  display: inline-block;
  transition: 0.2s;
}
.card-profile div .cont {
  color: #fff;
  background: #ff6600;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.card-profile div .link {
  color: rgba(0, 0, 0, 0.8);
  background: hsl(0, 0%, 93%);
  margin-bottom: 1rem;
}

/* share page*/

.share_page i {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 50%;
  padding: 0.5rem 0.5rem;
}

.share_page i span a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
}
.share_page i:hover {
  color: tomato;
}
.share_page i a:hover {
  color: tomato;
}
.delete_button {
  margin: 0 auto;
  display: flex;
  gap: 1.8rem;
}
.delete {
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/*select media button*/
.select-menu {
  width: 20%;
}

.select-menu .select-btn {
  display: flex;
  height: 60px;
  background: #fff;
  padding: 1.8rem;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.select-menu .options {
  position: absolute;
  padding: 1.8rem;
  margin-top: 1.3rem;
  color: #000;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 15rem;
  overflow-y: auto;
}
.select-menu.openSelect .options {
  display: none;
}

.select-menu .options {
  scrollbar-width: thin;
  scrollbar-color: #555;
}

.select-menu .options .option {
  display: flex;
  height: 40px;
  cursor: pointer;
  padding: 0 1rem;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.options .option:hover {
  background: #f2f2f2;
}
.options .option i {
  font-size: 16px;
  margin-right: 1.3rem;
}
.options .option .option-text {
  font-size: 16px;
}

/*qr content*/
.qrContent {
  width: 400px;
  margin: 3% auto;
  height: auto;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.qrContent small {
  text-align: center;
  margin-right: 7%;
  padding: 1rem 1rem;
  border: 1px solid #fff;
  margin-top: 1.5rem;
  cursor: pointer;
}
.qrContent small:hover {
  background: #fff;
}
.qrContent small:hover a {
  color: tomato;
  font-weight: 700;
}
.qrContent small a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
}

.edit-bio label {
  display: block;
  padding: 8px 0;
}

@media screen and (max-width: 768px) {
  input {
    /*height: 4rem;*/
    width: 100%;
    font-size: 1.5rem;
    padding-left: 1rem;
  }
  .form-control {
    font-size: 1.5rem;
    /*height: 4rem;*/
  }

  .product-card {
    width: 100%;
  }
  .linkForm {
    width: 100%;
    padding-top: 1rem;
    margin-right: 0.8rem;
  }
}

@media screen and (max-width: 576px) {
  .sbtn,
  .butt {
    width: 50%;
  }

  .linkInput1 {
    width: 30%;
  }

  .linkInput2 {
    width: 60%;
  }

  .inputSocial1 {
    font-size: 1.5rem;
    width: 30%;
  }

  .inputSocial2 {
    font-size: 1.5rem;
    width: 60%;
  }

  .produit-c {
    position: relative;
    width: 100%;
  }
  .product-card .mediaContent div a {
    position: absolute;
    top: 5%;
    margin-right: 1rem;
  }
  .product-card .mediaContent div input {
    width: 100%;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 450px) {
  .card-profile {
    width: 90%;
  }
  .qrContent {
    width: 90%;
  }

  .select-menu {
    width: 40%;
  }
  .themeForm div img {
    width: 100%;
  }
}
.modal-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.list-share a {
  text-decoration: none;
  color: #000;
}
.list-share li:hover {
  background-color: #f2f2f2;
}
.show-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.modal a:hover {
  color: #000;
}
.popup-container {
  width: 80%;
  max-width: 50%;
}
.popup-container .w-50 {
  width: 50%;
}
.popup-container button {
  margin-right: 0;
}
.btn-file {
  height: auto;
  padding: 0;
  margin: 0;
}
.theme-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}
.form-check-input + label {
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 8px;
}
.form-check-input:checked + label {
  border-color: #ff6600;
}
/*
.preview-phone {
  background: url(../images/phone.svg) center center no-repeat;
  background-size: cover;
  padding: 90px 23px;
} */
.preview-phone {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.preview-phone h3 {
  font-size: 20px;
}
.preview-phone h3 span {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  margin-top: 2em;
}
.preview-phone .btn-outline-light {
  height: 45px;
  line-height: 43px;
  font-weight: normal;
  font-size: 14px;
}
.preview-phone li a {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 99em;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.img-profile-phone {
  width: 120px;
  height: 120px;
}
*::placeholder {
  text-transform: lowercase;
}
.contact-form label {
  font-size: 14px;
}
.passForgot label {
  display: none;
}
.passForgot input[type="email"] {
  border: 1px solid #fff;
  width: 100%;
}

/* Profile */
