@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #e9e9e9;
  font-style: normal;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  padding: 0 20px;
  backdrop-filter: blur(15px) brightness(0.5);
  -webkit-backdrop-filter: blur(15px) brightness(0.5);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .header-logo .content-logo {
  width: 132px;
  height: 60px;
}
.header-main .header-logo .content-logo a {
  text-decoration: none;
  color: #fff;
}
.header-main .header-logo .content-logo img {
  width: 130px;
  height: 45px;
  cursor: pointer;
  transition: all 0.5s;
}
.header-main .header-logo .content-logo img:hover {
  transform: scale(1.2);
}
.header-main .header-menu {
  display: flex;
  flex-direction: row;
  flex: 2;
  align-items: center;
  margin-right: -15px;
}
.header-sub-menu {
  display: flex;
  margin: auto;
  gap: 8px;
}
.header-main .header-menu .header-menu-item {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  font-size: 0.9em;
  transition: all 0.1s ease;
  padding: 12px 12px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.header-main .header-menu .header-menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  border-bottom: 2px solid transparent;
  animation: header_menu 15s ease infinite;
  opacity: 0;
}
.header-main .header-menu .header-menu-item:hover::after {
  opacity: 1;
}
.header-main .header-menu .header-menu-item-btn {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  font-size: 0.9em;
  transition: all 0.1s ease;
  padding: 12px 15px;
  text-decoration: none;
  color: #fff;
  position: relative;
  background-image: linear-gradient(-45deg, #6a11cb, #3b82f6, #645af3, #4a00e0);
  animation: header_menu_gradient 15s ease infinite;
  background-size: 400% 400%;
  border: none;
  border-radius: 50px;
}
.header-main .header-menu .sub-menu {
  display: inline-flex;
  margin: auto;
  gap: 8px;
}
.header-main .header-menu .header-menu-item.active {
  border-bottom: 2px solid #fff;
}
.header-dropdown {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header-dropdown-arrow {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.25s ease;
}
.header-dropdown:hover .header-dropdown-arrow {
  transform: rotate(180deg);
}
.header-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  overflow: hidden;
  padding: 6px 0;
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header-dropdown:hover .header-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.header-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.header-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header-dropdown-item i {
  width: 16px;
  text-align: center;
  opacity: 0.75;
}
.btn-animated {
  position: relative;
  overflow: hidden;
  color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: width 0.3s ease;
  width: 60px;
}
.btn-animated .icon {
  font-size: 1.2rem;
}
.btn-animated .text {
  overflow: hidden;
  white-space: nowrap;
  margin-left: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: 600;
}
.btn-animated:hover,
.btn-animated:focus {
  width: 200px;
  background-color: transparent;
  border-color: 2px solid currentColor;
}
.btn-animated:hover .text,
.btn-animated:focus .text {
  opacity: 1;
}

.content-overlay-h-background:not(.separated-sty) {
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  pointer-events: none;
  background-size: cover;
  opacity: 80%;
  --media-object-fit: cover;
  --media-object-position: top center;
}
.section-overlay-h {
  padding: 140px 20px;
  background-size: cover;
  position: relative;
  align-items: center;
  display: flex;
}
.section-overlay-h .content-section {
  max-width: 1200px;
  margin: auto;
  position: relative;
  width: 100%;
  align-items: center;
  row-gap: 40px;
  display: flex;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
.section-overlay-h .content-section .content-lg {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  flex: 1;
  width: 100%;
}
.section-overlay-h .content-section h1 {
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  font-size: 4rem;
  color: #101f3c;
}
.section-overlay-h.bg-darker .content-section h1,
.section-overlay-h.bg-darker .content-section h2,
.section-overlay-h.bg-darker .content-section p {
  color: #e9e9e9;
}
.section-overlay-h .content-section h2 {
  font-size: 3.2rem;
  letter-spacing: -1px;
  font-weight: 900;
  line-height: 1;
  color: #101f3c;
}
.section-overlay-h .content-section p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #101f3c;
}
.section-overlay-h .content-button {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.section-overlay-h .content-button a {
  background-image: linear-gradient(-45deg, #6a11cb, #3b82f6, #645af3, #4a00e0);
  background-size: 400% 400%;
  animation: header_menu_gradient 15s ease infinite;
  padding: 14px 29px;
  position: relative;
  font-size: 1em;
  border-radius: 100px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  transition: all 50ms ease;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  align-items: center;
  z-index: 1;
  outline: 0;
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
  justify-content: center;
}
.section-overlay-h .content-button a::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border-radius: 100px;
  filter: blur(15px) saturate(200%);
  opacity: 0;
  transition: all 0.15s ease;
  background-image: linear-gradient(-45deg, #6a11cb, #3b82f6, #645af3, #4a00e0);
  background-size: 400% 400%;
  animation: header_menu_gradient 15s ease infinite;
}
.section-overlay-h .content-button a:hover::before {
  opacity: 0.5;
}
.section-overlay-h .content-lf {
  flex-direction: row-reverse;
}
.section-overlay-h .content-lr {
  flex-direction: row;
}
.section-overlay-h ul {
  color: #a1a1a1;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 20px;
}
.section-overlay-h li {
  color: #a1a1a1;
  font-size: 1rem;
  line-height: 1.5;
}
.section-overlay-h.bg-darker ul,
.section-overlay-h.bg-darker li {
  color: #101f3c;
}
.section-overlay-h .content-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  width: 100%;
  align-items: center;
  row-gap: 40px;
  display: flex;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
.section-overlay-h h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.section-overlay-h .button-overlay-h {
  border: 2px solid #fff;
  color: #fff;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  outline: none;
  line-height: 1.1;
  width: 250px;
  background-color: transparent;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: all 0.4s;
}
.section-overlay-h .button-overlay-h:hover {
  background-color: #fff;
  color: #101f3c;
}

.media_default {
  position: relative;
  flex: 0 0 25%;
}
.media_small {
  flex: 0 0 25%;
  width: 25%;
  margin: auto;
}
.media_medium {
  flex: 0 0 40%;
  width: 40%;
  margin: auto;
}
.media_default img {
  margin: auto;
  width: 100%;
  height: auto;
}

.store-icons {
  padding: 30px 0;
  display: flex;
  width: 70%;
  margin-left: 15%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.store-icons .store-icons-slider {
  display: flex;
  gap: 30px;
  animation: slider_brands 40s linear infinite;
}
.store-icons img {
  width: 130px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}
.store-icons .text-s {
  line-height: 2;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1.4px;
}

.footer-h {
  padding: 60px 80px;
  background-color: #f9f9f9;
  position: absolute;
  left: 0;
  width: 100%;
}
.footer-columns {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 20px;
}
.footer-header {
  font-size: 1.3rem;
  font-weight: 700;
  color: #101f3c;
  margin-bottom: 1rem;
}
.footer-h ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #101f3c;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-h li {
  font-size: 1rem;
  color: #101f3c;
  line-height: 1.5;
}
.footer-h a {
  color: #101f3c;
  text-decoration: none;
}
.footer-h .socials-links {
  display: flex;
  justify-content: left;
  flex-direction: row;
  gap: 20px;
  margin-top: 2rem;
}
.footer-h .socials-links a {
  font-size: 1.5rem;
  margin-right: 0.7rem;
  transition: all 0.3s;
}
.footer-h .socials-links a:hover {
  font-size: 1.8rem;
  color: #101f3c;
}
.footer-h .language-select {
  display: flex;
  justify-content: right;
  flex-direction: row;
  margin-top: 2rem;
}
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px;
}
.flag-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.2em;
  width: 1.33333333em;
  line-height: 1em;
}
#content-language-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 10px 0 35px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  cursor: pointer;
}
.custom-select-wrapper:hover,
#content-language-select:focus + .flag-icon ~ .custom-select-wrapper {
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  border-color: #007bff;
}
#content-language-select:focus-visible {
  outline: none;
}
.custom-select-wrapper:active {
  transform: scale(0.98);
}

.content-pricing-plans {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: auto;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  gap: 20px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10px,
    #000 calc(100% - 10px),
    transparent
  );
  scrollbar-width: auto;
  scrollbar-color: #333 #333;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.content-pricing-plans:first-of-type {
  margin-left: auto;
}
.content-pricing-plans .pricing-plan {
  position: relative;
  flex: 0 0 280px;
  scroll-snap-align: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  padding: 30px 20px;
  background-color: #1a1a1a;
  background-clip: padding-box;
  border: 6px solid transparent;
  border-radius: 20px;
  transition: all 0.1s ease-in;
}
.content-pricing-plans .pricing-plan.c-blue,
.content-pricing-plans .pricing-plan.c-green,
.content-pricing-plans .pricing-plan.c-yellow {
  --plan-color-1: #008cff;
  --plan-color-2: #3d00cc;
}
.content-pricing-plans .pricing-plan::before {
  opacity: 1;
  position: absolute;
  content: "";
  inset: -6px;
  pointer-events: none;
  border-radius: 20px;
  transition: all 0.1s ease-in;
  background: linear-gradient(to bottom right, var(--plan-color-1), #555);
  z-index: -2;
  background: linear-gradient(
    to bottom right,
    var(--plan-color-1),
    var(--plan-color-2)
  );
}
.pricing-plan .pricing-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  white-space: nowrap;
}
.pricing-plan .pricing-price {
  font-weight: 900;
  letter-spacing: 0;
  font-size: 3rem;
  margin: 10px 0 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-plan .pricing-desc {
  font-weight: 400;
  font-size: 0.9rem;
  color: #ccc;
  margin: 15px 0;
  margin-bottom: 40px;
}
.pricing-plan .pricing-button {
  text-decoration: none !important;
  color: #fff;
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  white-space: nowrap;
  text-transform: uppercase;
  background: transparent;
  z-index: 100;
  border: 0;
  transition: all 0.1s ease-in;
}
.pricing-plan .pricing-button:hover {
  box-shadow: inset 0 0 0 3px #333;
  background-clip: padding-box;
  cursor: pointer;
}

.content-overlay-about-background {
  position: absolute;
  inset: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  pointer-events: none;
  background-size: cover;
  opacity: 60%;
  --media-object-fit: cover;
  --media-object-position: top center;
}

.content-contact .form-group {
  margin-bottom: 1rem;
}
.content-contact button {
  margin-left: 40%;
  margin-top: 2rem;
  border-radius: 50px;
  padding: 15px;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  background-color: transparent;
  color: #6c757d;
  font-weight: 600;
  border-width: 2px;
  line-height: 1.7;
}
.content-contact button:hover {
  transform: scale(1.1);
  font-weight: 500;
}

.content-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.content-social-icons a {
  margin: 0 20px;
  font-size: 32px;
  color: #008cff;
  transition: color 0.4s;
}
.content-social-icons a:hover {
  color: #101f3c;
  transform: scale(1.1);
}
.content-social-icons a.tiktok:hover,
.socials-links a.tiktok:hover {
  color: #69c9d0;
}
.content-social-icons a.facebook:hover,
.socials-links a.facebook:hover {
  color: #3b5998;
}
.content-social-icons a.instagram:hover,
.socials-links a.instagram:hover {
  color: #e1306c;
}
.content-social-icons a.youtube:hover,
.socials-links a.youtube:hover {
  color: #ff0000;
}
.content-social-icons .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 1px;
}

.content-dashboard {
  width: 100%;
  min-height: 350px;
  display: flex;
  padding-top: 80px;
}

.container-sidebar {
  width: 250px;
  height: 100vh;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  animation: gradient 5s infinite alternate;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  flex-shrink: 0;
}
.content-sidebar {
  padding: 10px 0;
  font-size: 1.3em;
}
.content-sidebar .item-sidebar {
  list-style: none;
  cursor: pointer;
  padding: 10px 15px;
  margin-bottom: 5px;
  border-radius: 10px;
  transition: all 0.3s;
  letter-spacing: 1.5px;
}
.content-sidebar .item-sidebar a {
  text-decoration: none;
  color: currentColor;
}
.content-sidebar .item-sidebar:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #e9e9e9;
}
.content-sidebar .item-sidebar.active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #e9e9e9;
  text-transform: uppercase;
  text-decoration: underline;
}

.content-dashboard .contnt {
  flex: 1;
  padding: 40px 100px;
}

#table-content-db-loading {
  display: flex;
  justify-content: center;
}
.content-group-create {
  width: 100%;
  min-height: 300px;
  max-height: 650px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 5rem;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 25px;
}
.content-group-create .title-content {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  text-align: center;
}
#content-opts-dbh {
  margin-top: 3rem;
}
.content-group-create .col-md {
  border: 2px solid #3b82f6;
  border-radius: 5px;
  padding: 15px;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.3);
  max-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-group-create .col-md .icon {
  width: 80px;
  height: 80px;
  background-color: #3b82f6;
  border-radius: 50px;
  padding: 10px;
  color: #fff;
  text-align: center;
  margin: auto;
}
.content-group-create .col-md .icon img {
  width: 90%;
  margin-top: 2px;
}
.content-group-create .col-md .text {
  width: 100%;
  height: 40px;
  text-align: center;
  margin: auto;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: -25px;
  line-height: 1.2;
  letter-spacing: 1.3px;
}
.content-group-create .col-md .btn {
  margin-top: 3.5rem;
  color: #3b82f6;
  background-color: transparent;
  border-color: transparent;
}
.content-group-create .col-md:hover .btn {
  color: #fff;
  border-color: #fff;
}
.content-group-create .col-md:hover {
  background-color: #3b82f6;
  color: #fff;
  transform: scale(1.1);
  border-color: transparent;
}
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
  color: #999;
}
.step.active {
  color: #007bff;
}
.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ddd;
  line-height: 30px;
  margin-right: 10px;
}
.step.active .step-number {
  background-color: #007bff;
  color: #fff;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.portada-container {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}
.portada-box {
  width: 300px;
  height: 300px;
  border: 2px dashed #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
}
.portada-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #999999;
  text-align: center;
}
.portada-placeholder img {
  max-width: 100%;
  max-height: 100%;
  display: none;
}
.portada-info {
  max-width: 500px;
}
.portada-info h6 {
  margin-bottom: 10px;
}
.portada-info ul {
  list-style-type: disc;
  padding-left: 20px;
}
.portada-info ul li {
  font-size: 14px;
  margin-bottom: 8px;
}
#portadaPreview img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.track-select-modal {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}
.track-select-modal::before {
  background-color: #007bef;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  content: "Desde tu ordenador";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.2s;
}
.track-select-modal:hover::before {
  background-color: #04be6e;
}
#src-track1 {
  cursor: pointer;
  opacity: 0;
  width: 100%;
  display: inline-block;
}
#src-track1::before {
  content: "Seleccionar Archivo 1";
}
#section-info-track table {
  font-size: 0.8rem;
}
#section-info-track #chkIsrc-1 {
  cursor: default;
}
.container-details-preview #title {
  font-weight: bold;
}
#modal-group-preview-single * {
  font-size: 15px;
}
.pay-button-stp {
  background-color: #6772e5;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.pay-button-stp:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.pay-button-stp .icon {
  font-size: 24px;
  margin-right: 10px;
}
.pay-button-stp::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  width: 300%;
  height: 300%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}
.pay-button-stp:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.btn-table-opts {
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  --bs-btn-padding-x: 5px;
}
.btn-table-opts .fas {
  font-weight: 500;
}
.btn-table-opts:hover {
  background-color: transparent;
  color: #000;
}
#modal-group-create-album .modal-dialog,
#modal-group-edit-album .modal-dialog,
#modal-group-create-ep .modal-dialog,
#modal-group-edit-ep .modal-dialog,
#modal-content-edit .modal-dialog {
  --bs-modal-width: 1020px !important;
}
#modal-group-create-album .portada-box,
#modal-group-edit-album .portada-box,
#modal-content-edit .portada-box {
  width: 400px;
  height: 320px;
}
#modal-content-edit .portada-info {
  margin-left: 3rem;
}

.content-info {
  margin-bottom: 2rem;
}
.content-info .avatar {
  display: inline-block;
  margin-bottom: 0;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
}
.content-info .avatar .avatar-title {
  background: #d7d7d7;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 19px;
}
.content-info i {
  color: #fff;
}
.dataTables_filter {
  margin-bottom: 1rem;
}
.dataTables_filter label {
  font-weight: 600;
  letter-spacing: 1px;
}
.dataTables_filter input {
  outline: none;
}
.dataTables_info,
.dataTables_paginate {
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #555555;
  margin-top: 1rem;
  cursor: default;
}
.paginate_button:not(.current):not(.next):not(.previous) {
  background-color: #f8f9fa !important;
  color: #111 !important;
  border: 1px solid #f8f9fa !important;
  border-radius: 3px !important;
  transition: all 0.3s;
  outline: none;
}
.paginate_button:hover {
  background-color: #d3d4d5 !important;
  border: 1px solid #c6c7c8 !important;
}

.edit-profile-container {
  max-width: 600px;
  margin: 40px auto;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.edit-profile-title {
  font-size: 24px;
  font-weight: bold;
  color: #4e73df;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.edit-profile-container .btn-primary {
  background-color: #4e73df;
  border-color: #4e73df;
}
.edit-profile-container .btn-primary:hover {
  background-color: #3b5fb1;
  border-color: #3b5fb1;
}
.edit-profile-container .error-message {
  color: red;
  font-size: 0.9em;
  display: none;
}

.custom-sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.custom-sidebar a {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.custom-sidebar a:hover {
  color: #f1f1f1;
}
.custom-sidebar .closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.header-main .openbtn {
  display: none;
  background-color: transparent;
  border: none;
  color: #f9f9f9;
  font-size: 18px;
  cursor: pointer;
  font-weight: 300;
}
.text-info-section-d {
  color: #f9f9f9;
  padding: 0 120px;
}
.help-text {
  font-size: 0.7rem;
  font-weight: lighter;
  margin-top: 0.5rem;
  font-family: "Arial", sans-serif;
  display: block;
}
.help-text a {
  text-decoration: none;
}
.help-text a:hover {
  text-decoration: underline;
}
.btn#add-link {
  margin-top: 0.3rem;
  font-size: 0.8rem;
}
.contnt.d-flex {
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.contnt.d-flex .edit-profile-container {
  flex: 1;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.publisher-post {
  width: 450px;
  min-width: 350px;
  height: 300px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-left: 3rem;
  margin-top: 3rem;
}
.publisher-post img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
  object-fit: fill;
}

.bg-sm-link {
  background-position: center;
  -moz-filter: blur(20px);
  -o-filter: blur(20px);
  -ms-filter: blur(20px);
  filter: blur(20px);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  background-attachment: fixed;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
}
.container-sm-link .ld-page {
  width: 100%;
  max-width: 480px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
}
.container-sm-link .ld-page .lk-content {
  box-shadow: 2px 2px 5px 3px #00000059;
  border-radius: 5px;
}
.container-sm-link .ld-page .lk-content .img-preview {
  position: relative;
}
.container-sm-link .ld-page .lk-content .img-preview img {
  width: 100%;
  height: 100%;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  vertical-align: middle;
}
.container-sm-link .ld-page .lk-content .holder {
  color: #222;
  background-color: rgba(255, 255, 255, 1);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.container-sm-link .ld-page .lk-content .holder .lk-artist {
  padding-top: 16px;
  text-align: center;
  font-size: 0.9em;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: default;
}
.container-sm-link .ld-page .lk-content .holder .lk-title {
  text-align: center;
  font-size: 2.1em;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: default;
}
.container-sm-link .ld-page .lk-content .holder .links {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  color: #222;
  padding: 0 15px;
  border-bottom: 1px solid #e9e9e9;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background-color: transparent;
  margin-top: 15px;
  padding-bottom: 10px;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href:hover {
  background-color: #e9e9e9;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href img {
  max-width: 42px;
  object-fit: contain;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href .group-img-t {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href .text {
  margin-top: 15px;
  font-weight: 500;
  font-size: 1.1em;
  color: #555;
  text-transform: capitalize;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href .btn {
  display: inline-block;
  width: 100px;
  text-transform: uppercase;
  text-align: center;
  padding: 3px;
  font-size: 0.8em;
  background-color: #e9e9e9;
  color: #111;
  transition: all 0.3s ease;
  font-weight: 400;
  user-select: none;
  border: 1px solid transparent;
  line-height: 1.5;
  border-radius: 0.35rem;
  letter-spacing: 1.2px;
}
.container-sm-link .ld-page .lk-content .holder .links .lk-href .btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.powered-sm-link {
  background-color: rgba(255, 255, 255, 1);
  color: #111;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}
.cards-withdraw {
  margin-top: 120px;
  justify-content: center;
}
.cards-withdraw .content {
  width: 80%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.cards-withdraw #count {
  font-weight: bold;
}

/* ADJUST */
.content-lg {
  row-gap: 20px;
}
.content-mg-auto {
  margin: auto;
}
mark {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(-45deg, #6a11cb, #3b82f6, #645af3, #4a00e0);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-darker {
  background-color: #1c1e1f;
}
.section-gradient {
  background:
    center 100%
      radial-gradient(ellipse at bottom, hsla(0, 0%, 8%, 0.8) 10% 10%, #141414),
    50% / 400% no-repeat
      linear-gradient(-45deg, #00ef86, #008cff, #ec3258, #fcda00);
  animation: section_gradient 15s ease infinite;
}
.load-tb {
  width: 3rem;
  height: 3rem;
}
#loadingModal .modal-backdrop,
#loadingModal .modal.fade.show {
  pointer-events: none;
}

/* ANIMATIONS */
@keyframes header_menu {
  0% {
    border-color: #ec3258;
  }
  20% {
    border-color: #ec3258;
  }
  40% {
    border-color: #ec3258;
  }
  60% {
    border-color: #008cff;
  }
  80% {
    border-color: #008cff;
  }
  100% {
    border-color: #ec3258;
  }
}
@keyframes header_menu_gradient {
  0% {
    background-position: 0 50%;
  }
  20% {
    background-position: 20% 50%;
  }
  40% {
    background-position: 40% 50%;
  }
  60% {
    background-position: 60% 50%;
  }
  80% {
    background-position: 80% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  20% {
    background-position: 20% 50%;
  }
  40% {
    background-position: 40% 50%;
  }
  60% {
    background-position: 60% 50%;
  }
  80% {
    background-position: 80% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes section_gradient {
  0% {
    background-position: 0 50%;
  }
  20% {
    background-position: 20% 50%;
  }
  40% {
    background-position: 40% 50%;
  }
  60% {
    background-position: 60% 50%;
  }
  80% {
    background-position: 80% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes slider_brands {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* RESPONSIVE */
@media screen and (min-width: 768px) {
  .section-overlay-h {
    min-height: 70vh;
    text-align: center;
  }

  .section-overlay-h .content-button {
    justify-content: center;
  }
}

@media (max-width: 1200px) {
  .header-main {
    height: 70px;
    padding: 0 15px;
  }
  .header-main .header-logo .content-logo {
    width: 120px;
    height: 55px;
  }
  .header-main .header-logo .content-logo img {
    width: 115px;
    height: 40px;
  }
  .header-main .header-menu .header-menu-item {
    font-size: 0.85em;
    padding: 10px 12px;
  }
  .section-overlay-h .content-section h1 {
    font-size: 3.5rem;
  }
  .section-overlay-h .content-section h2 {
    font-size: 3rem;
  }
  .section-overlay-h .content-section p {
    font-size: 1.1rem;
  }
  .store-icons {
    width: 80%;
    margin-left: 10%;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .header-main {
    height: 60px;
    padding: 0 10px;
  }
  .header-main .header-logo .content-logo {
    width: 110px;
    height: 50px;
  }
  .header-main .header-logo .content-logo img {
    width: 100px;
    height: 35px;
  }
  .header-main .header-menu .header-menu-item {
    font-size: 0.8em;
    padding: 8px 10px;
  }
  .section-overlay-h .content-section h1 {
    font-size: 3rem;
  }
  .section-overlay-h .content-section h2 {
    font-size: 2.5rem;
  }
  .section-overlay-h .content-section p {
    font-size: 1rem;
  }
  .store-icons {
    width: 100%;
    margin-left: 0;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-pricing-plans {
    padding: 5px;
  }
  .content-pricing-plans .pricing-plan {
    flex: 0 0 70%;
    padding: 20px 15px;
  }
  .content-pricing-plans .pricing-plan .pricing-name {
    font-size: 12px;
  }
  .content-pricing-plans .pricing-plan .pricing-price {
    font-size: 2.5rem;
    margin: 5px 0 0;
  }
  .content-pricing-plans .pricing-plan .pricing-desc {
    font-size: 0.8rem;
    margin: 10px 0;
  }
  .content-pricing-plans .pricing-plan .pricing-button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .header-main .header-menu .header-menu-item,
  .header-main .header-menu .header-menu-item-btn {
    display: none;
  }
  .header-main .header-menu .header-sub-menu {
    display: flex;
    margin: 0;
    margin-left: auto;
  }
  .header-main .header-menu .header-sub-menu .header-menu-item {
    display: block;
  }
  .content-pricing-plans {
    padding: 5px;
    flex-direction: column;
  }
  .content-pricing-plans .pricing-plan {
    flex: 0 0 90%;
    padding: 15px 10px;
    margin: 10px auto;
  }
  .content-pricing-plans .pricing-plan .pricing-name {
    font-size: 11px;
  }
  .content-pricing-plans .pricing-plan .pricing-price {
    font-size: 2rem;
  }
  .content-pricing-plans .pricing-plan .pricing-desc {
    font-size: 0.75rem;
    margin: 5px 0;
  }
  .content-pricing-plans .pricing-plan .pricing-button {
    padding: 8px 16px;
    font-size: 11px;
  }

  .text-info-section-d {
    font-size: 1.3rem;
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .header-main {
    height: 50px;
    padding: 0 5px;
  }
  .header-main .header-logo .content-logo {
    width: 100px;
    height: 45px;
  }
  .header-main .header-logo .content-logo img {
    width: 90px;
    height: 30px;
  }
  .header-main .header-menu .header-menu-item {
    font-size: 0.75em;
    padding: 6px 8px;
  }
  .section-overlay-h .content-section h1 {
    font-size: 2.5rem;
  }
  .section-overlay-h .content-section h2 {
    font-size: 2rem;
  }
  .section-overlay-h .content-section p {
    font-size: 0.9rem;
  }
  .text-info-section-d {
    font-size: 1.1rem;
    padding: 0 55px;
  }

  .store-icons .store-icons-slider {
    animation: none;
    flex-direction: column;
    gap: 20px;
  }

  .container-sm-link .ld-page .lk-content .holder .links .lk-href .btn {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .header-main {
    height: 40px;
    padding: 0 5px;
  }
  .header-main .header-logo .content-logo {
    width: 90px;
    height: 40px;
  }
  .header-main .header-logo .content-logo img {
    width: 80px;
    height: 25px;
  }
  .header-main .header-menu .header-menu-item {
    display: none;
  }
  .header-main .header-menu .header-sub-menu,
  .header-main .header-menu .sub-menu {
    display: none;
  }
  .header-main .openbtn {
    display: inline-flex;
  }

  .section-overlay-h {
    padding: 40px 20px;
  }
  .section-overlay-h .content-section h1 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
  .section-overlay-h .content-section #text-overlay-home {
    margin-top: 2rem;
  }
  .section-overlay-h .content-section h2 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1.2px;
  }
  .section-overlay-h .content-section p {
    font-size: 1rem;
    text-align: center;
  }
  .section-overlay-h .content-button {
    justify-content: center !important;
  }
  .section-overlay-h .content-button a {
    font-size: 0.8em;
  }
  .section-overlay-h .content-lf,
  .section-overlay-h .content-lr {
    flex-direction: column-reverse;
  }

  .media_small {
    width: 50%;
  }
  .media_medium {
    width: 70%;
  }

  .text-info-section-d {
    font-size: 0.9rem;
    padding: 0 40px;
  }

  .footer-h {
    padding: 20px;
  }
  .footer-h .socials-links {
    justify-content: center;
    margin-top: 3.5rem;
  }

  .container-sm-link .ld-page .lk-content .holder .links .lk-href .btn {
    width: 65px;
  }

  .container-sm-link .ld-page .lk-content .holder .links .lk-href .text {
    max-width: 70%;
  }

  .content-dashboard {
    padding-top: 50px;
  }
  .content-dashboard .contnt {
    padding: 0 20px;
  }

  .content-group-create .title-content {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    max-width: 320px;
    line-height: 1.4;
    text-align: left;
  }
  #content-opts-dbh {
    max-width: 400px;
  }
  .content-group-create .col-md {
    max-width: 190px;
    max-height: 210px;
    margin-right: 10px;
  }
  .content-group-create .col-md .btn {
    margin-top: 3rem;
  }
  .content-group-create .col-md-2,
  .card-earnings-user {
    max-width: 250px !important;
  }
}
