
@keyframes shine-avatar {
  0% {
    background-position: -10%;
  }
  40%{
    background-position:80%;
  }
  100% {
    background-position:100%;
  }
}
.skeleton-page{
    position: fixed;
    left:0;
    right:0;
    bottom: 0;
    top:0;
}
.header.skeleton{
    display: flex;
    background: #fff;
    color: #44444F;
    height: 6.4rem;
    align-items: center;
    padding: 0px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    
}
.header.skeleton .toggle-menu{
    display: none;
}

.header.skeleton .header__inner-wrapper.skeleton{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 1002;
}
.header.skeleton .header__inner-wrapper.skeleton .header__right_group{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.aside.skeleton{
    z-index: 12;
    background: #151d3a;
    color: #fff;
    transition: flex-basis 0.2s;
    width: var(--asideNavBarWidth);
    position: fixed;
    top: 6.4rem;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding-top: 28px;
}
.aside.skeleton .skeleton-menu-item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    padding: 0px 16px;
    margin-bottom: 8px;
    margin-top: 8px;
    
}
.content-skeleton{
    position: relative;
    padding: 30px;
    margin-top:6.4rem;
    width: calc(100% - var(--asideNavBarWidth));
    height: calc(100vh - 10.1rem);
    margin-left: var(--asideNavBarWidth);
    transition: margin-left 0.5s;
}

.content-skeleton .page-container-skeleton{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}
.content-skeleton .page-container-skeleton.white{
    background-color: white;
}
.content-skeleton .page-container-skeleton .page-container-inner{
    position: relative;
    background: #fff;
    width: 90rem;
    border-radius: 2rem;
    box-shadow: 0 0 1.5rem 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    padding: 3rem;
    text-align: center;
}

.content-skeleton .page-container-skeleton .page-container-inner .skeleton-line{
    margin-bottom: 1.6rem;
    margin-left: auto;
    margin-right: auto;
}



.footer.skeleton{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4.5rem;
    width: 100%;
    background: #151d3a;
    z-index: 300;
    padding: 0 3.4rem 0 4.8rem;
}
.skeleton-line{
    width: 8rem;
    height: 1.6rem;
    border-radius: 6px;
    background-image: -o-linear-gradient(left, #678AFF66 0px, rgba(229, 229, 229, 0.8) 40px, #678AFF66 80px);
      background-image: linear-gradient(90deg, #678AFF66 0px, rgba(229, 229, 229, 0.8) 40px, #678AFF66 80px);
      background-size: 600px;
      -webkit-animation: shine-avatar 2s infinite ease-out;
              animation: shine-avatar 2s infinite ease-out; 
}
.skeleton-line.wide{
    width: 12rem;
    height: 1.9rem;
}
.skeleton-line.long{
    width:16rem;
}
.skeleton-line.square{
    width: 55rem;
    margin: 0.8rem;
    border-radius: 1.6rem;
    margin-left: auto;
    margin-right: auto;
    height: 29rem;    
}

.skeleton-circle{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: -o-linear-gradient(left, #678AFF66 0px, rgba(229, 229, 229, 0.8) 40px, #678AFF66 80px);
      background-image: linear-gradient(90deg, #678AFF66 0px, rgba(229, 229, 229, 0.8) 40px, #678AFF66 80px);
      background-size: 600px;
      -webkit-animation: shine-avatar 2s infinite ease-out;
              animation: shine-avatar 2s infinite ease-out; 
}
.skeleton-circle.small{
    width: 28px;
    height: 28px;
}
.skeleton-block {
    margin-bottom: 8px;
    display: flex;
    gap: 16px;
    justify-content: center;
}
.skeleton-block .skeleton-line{
    margin:0;
    width: 25%;
    height: 3.8rem;
}
@media screen and (max-height: 700px) {
    .skeleton-line.square{
        width: 224px;
        min-height: 150px;
        height: calc((var(--vh, 1vh)* 100 - 40rem) / 2);    
    }
    
  }
  @media screen and (max-width: 1229px){
    .aside.skeleton{
        display: none;
    }
    .header.skeleton{
        padding: 0;
    }
    .header.skeleton .toggle-menu{
        background: #151d3a;
        width: 60px;
        height: var(--headerHeightMobile);
        padding-right: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
    }
    .header.skeleton .toggle-menu::after {
        width: 20px;
        height: 100%;
        display: block;
        content: " ";
        position: absolute;
        right: 0px;
        top: 0;
        background: #fff;
        border-radius: 0 0 0 20px;
    }
    .header.skeleton .logotype{
        height: 44px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .header.skeleton .skeleton-line{
        display: none;
    }
    .header.skeleton .skeleton-circle{
        position: absolute;
        right: 1.3rem;
        top: 1.3rem;
        width: 3.8rem;
        height: 3.8rem;
    }
  }
  @media screen and (max-width: 600px){
    .content-skeleton{
        left:0;
        margin-left:0;
        width: 100%;
    }
    
    .content-skeleton .page-container-skeleton{
        padding: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
    }
    .content-skeleton .page-container-skeleton.white{
        background-color: white;
    }
    .content-skeleton .page-container-skeleton .page-container-inner{
        position: relative;
        background: #fff;
        width: 90rem;
        border-radius: 2rem;
        box-shadow: 0 0 1.5rem 2px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        padding: 3rem;
        text-align: center;
    }
    .skeleton-line.square{
        width: 100%;
        height: 16.8rem;
    }
    .skeleton-block.buttons{
        display: block;
    }
    .skeleton-block .skeleton-line{
        width:100%;
    }
  }
  .modal {
    display: none;
    height: 500px;
    max-width: 600px;
    width: calc(100% - 50px);
    border: 1px solid #ccc;
    border-radius: 15px;
    margin: 10rem auto;
    background: #fff;
    text-align: center;
    vertical-align: center;
    
  }
  .modal .close{
    position:absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 1;
  }
  .modal .modal__link {
    display: flex;
    margin: 0 auto;
    padding: 0 5rem;
    justify-content: space-between;
  }
  .modal .modal__link .browsLink {
    width: 64px;
    display: flex;
  }
  .chrome-icon {
    transform: scale(1.07);
  }