/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
.account-app-preloader {
  opacity: 1;
  transition: 300ms;
}
.account-app-preloader.removing {
  opacity: 0;
}
.account-app-preloader .profile {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 1599px) {
  .account-app-preloader .profile {
    grid-template-columns: 330px minmax(0, 1fr);
  }
}
@media (max-width: 1339px) {
  .account-app-preloader .profile {
    grid-template-columns: minmax(0, 1fr);
  }
}
.account-app-preloader .base-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  background-color: var(--gray-color-100);
  border-radius: 20px;
}
.account-app-preloader .base-loader .loader {
  position: static;
  width: 48px;
  height: 48px;
  z-index: 10;
}
.account-app-preloader .base-loader .loader::before {
  border-color: var(--base-color);
  border-width: 3px;
}
.skeleton-card {
  padding: 24px;
  background-color: var(--gray-color-100);
  border-radius: 24px;
}
@media (max-width: 1339px) {
  .skeleton-card {
    padding: 0;
  }
}
@media (max-width: 1339px) {
  .skeleton-sidebar {
    display: none;
  }
}
.skeleton-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.skeleton-sidebar-section:not(:last-child) {
  margin-bottom: 23px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--gray-color-200);
}
.skeleton-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.skeleton-section-item {
  height: 300px;
}
.skeleton-sidebar-link {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}
.skeleton {
  position: relative;
  overflow: hidden;
  background-color: var(--gray-color-200);
  border-radius: 24px;
}
.skeleton:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateX(-100%);
  z-index: 1;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 75%);
  animation: skeleton-animation 1.5s infinite;
}
@keyframes skeleton-animation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.h80 {
  height: 80px;
}
.h40 {
  height: 40px;
}
.h36 {
  height: 36px;
}
.h24 {
  height: 24px;
}
.h20 {
  height: 20px;
}
.h30 {
  height: 30px;
}
.h60 {
  height: 60px;
}
.h80 {
  height: 80px;
}
.w60 {
  width: 60px;
}
.w80 {
  width: 80px;
}
.w100 {
  width: 100px;
}
.w200 {
  width: 200px;
}
.w300 {
  width: 300px;
}
.r50p {
  border-radius: 50%;
}

.rich[contenteditable=true]{-webkit-user-modify:read-only;-moz-user-modify:read-only;user-modify:read-only}.account-app-wrapper{position:relative;min-height:60vh;padding:0 24px;max-width:1920px;margin:0 auto 20px;overflow:hidden}@media (min-width:768px){.account-app-wrapper{margin-top:32px}}@media (min-width:1440px){.account-app-wrapper{margin-top:40px}}

