.account__card-link {
  transition: all .3s;
  text-decoration: none;
}
.salons__pic {
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  height: 130px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: all .3s;
  background-color: #2E2F31;
}
.account__card-pic {
  border-radius: 12px;
  width: 100%;
  transition: all .3s;
  overflow: hidden;
  position: relative;
}
.account__card-text {
  font-family: 'Roboto600';
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  /* display: none; */
}
.account__card-img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  transition: all .3s;
}
.salons-img,
.salons__no-logo {
  border-radius: 50%;
  min-width: 70px;
  width: 70px;
  height: 70px;
}

.salons__no-logo {
  font-family: 'Roboto500';
  font-size: 12px;
  padding: 8px;
  text-align: center;
  color: #ccc;
  border: 2px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.salon-list,
.brand-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.expert-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.salon-card.hidden {
  display: none;
}
.salon-card.hidden.show {
  display: block;
}
.account__folder-pic {
  height: 288px;
  background-color: #2E2F31;
}
.account__folder-img {
  width: 50% !important;
  border-radius: 0;
  min-width: 50% !important;
}
.account__folder-text {
  position: absolute;
  font-size: 16px;
  line-height: 22px;
  z-index: 2;
  bottom: 20px;
  right: 20px;
  max-width: 225px;
}
.salon-detail__folders,
.brand-detail__folders,
.expert-detail__folders {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.salon-detail__images,
.brand-detail__images,
.expert-detail__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lenta__loader-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.generation-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.my-styles__wrapper {
  display: flex;
}
.my-styles__slide {
  position: relative;
  height: 190px;
}
.swiper-my__image {
  height: 166px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-my__img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.me-styles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.salon-detail__subfolders,
.brand-detail__subfolders,
.expert-detail__subfolders {
  margin-bottom: 20px;
}

.your-style__icon-active,
.your-style__icon-noactive {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
  margin-left: 10px;
  z-index: 2;
}
.notification-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  animation: fadeInOut 2s ease forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  15% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  85% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}

.account__card-content {
  position: relative;
}
.account__expert-info {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 50%;
  height: 80px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: end;
  padding: 0 16px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.account__expert-name {
  font-family: 'Roboto600';
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  text-align: end;
}
.account__expert-avatar {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account__expert-img {
  border-radius: 50%;
  min-width: 100%;
  height: 52px;
  object-fit: cover;
  object-position: center;
}
.account__card-pic.expert-pic {
  margin-bottom: 0;
  height: 288px;
  background-color: #2E2F31;
}

/* show more */
.tariff-business__btn-more svg {
  transition: transform 0.3s ease;
}
.tariff-business__btn-more.expanded svg {
  transform: rotate(180deg);
}
.tariff-business__btn-more {
  width: 220px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0 auto;
  gap: 10px;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: .5px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: transparent;
  transition: all .3s;
}
.tariff-business__btn-more:hover {
  color: #1D1C1C;
  background-color: #fff;
}
.tariff-business__btn-more:hover svg path {
  stroke: #1D1C1C;
}


/* modal */

#delete-style-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
}

#delete-style-modal .modal__content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #161616;
}

#delete-style-modal .modal__overlay {
  display: none;
}

#delete-style-modal .modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}

#delete-style-modal.modal.show {
  display: flex !important;
}

.layout {
  position: relative;
}

.modal__text {
  font-family: 'Roboto600';
  font-size: 20px;
  line-height: 27px;
  color: #fff;
  margin-top: -40px;
  margin-bottom: 20px;
}

.btn__gray {
    font-size: 16px;
    color: #fff;
    height: 48px;
    border-radius: 8px;
    background-color: #CDD2D8;
    border: none;
}
.btn {
    font-family: 'Roboto600';
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn__pink {
    font-size: 16px;
    width: 200px;
    height: 48px;
    background-color: #FF1493;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
.btn.btn_pink.banner__btn {
    font-family: var(--family-bebas700) !important;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
}
.modal__icon img {
    width: 100%;
}
.delete__btns {
  display: flex;
  gap: 8px;
}
.delete-style__btn {
  width: 48%;
}
.logout__btn {
  width: 48%;
}


