@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    font-family: "Montserrat", serif;
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --main-background:#f6f6f9;
    --action-color:#1570EF;
    --action-hover-color:#3D8BFF;
    --accent-background:#F2F4F7;
}

body{
    background:var(--main-background);
}

/*Страница авторизации*/
.login-page{
    width:100vw;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}
.login-page__window{
    width:1000px;
    max-width:90%;
    height:500px;
    max-height:80%;
    background:white;
    display:flex;
    align-items:center;
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.login-page__banner{
    width:40%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    box-shadow: inset -1px 0 0 rgba(0,0,0,0.05);
}
.login-page__banner img{
    height:100%;
}
.login-page__form{
    display:flex;
    align-items:center;
    justify-content:center;
    width:80%;
    padding:0 20px;
}
.login-page__form-content{
    width:350px;
    max-width:100%;
}
.login-page__title{
    font-size:25px;
    font-weight:600;
}
.login-page__subtitle{
    font-size:14px;
    margin:0 0 30px 0;
}
.login-page__vega-label{
    font-size:12px;
    margin:40px 0 0 0;
    color:#999999;
    line-height:20px;
    text-align:center;
}
.login-page__button-line{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.login-page__remember{
    display:flex;
    align-items:center;
}
.login-page__remember .text{
    font-size:14px;
}
/*Страница авторизации*/

/*Макет*/
#dashboard{
    width:100vw;
    height:100vh;
    display:flex;
    align-items:flex-start;
    overflow-x:hidden;
}
.dashboard__nav{
    height:100%;
    display:flex;
    align-items:flex-start;
    position: sticky;
    top: 0;
    left: 0;
    z-index:2;
}
.dashboard__side-bar{
    width:55px;
    min-width:55px;
    height:100%;
    background:white;
    border-right:1px solid #eaeaef;
}
.dashboard__side-bar .nav-buttons{
    padding:12px 0;
}
.dashboard__logo{
    display:flex;
    align-items:center;
    justify-content:center;
    border-bottom:1px solid #eaeaef;
    width:100%;
    height:55px;
}
.dashboard__logo img{
    width:30px;
}
.dashboard__menu{
    display:none;
    width: 230px;
    min-width: 230px;
    height: 100%;
    border-right: 1px solid #dcdce4;
    padding: 24px 0 0 0;
}
.dashboard__menu--shown{
    display:block;
}
.dashboard__menu .title {
    color: #32324d;
    font-weight: 600;
    font-size: 18px;
    padding: 0 0 0 24px;
}
.dashboard__menu .line {
    width: 42px;
    height: 1px;
    background: #dcdce4;
    margin: 16px 0 0 24px;
}
.dashboard__menu .s-title {
    margin: 20px 0 10px 0;
    color: #666687;
    font-weight: 600;
    font-size: 11px;
    padding: 8px 0 8px 24px;
}
.dashboard__menu .button {
    text-decoration: none;
    padding: 8px 0 8px 32px;
    color: #32324d;
    font-size: 14px;
    display: flex;
    align-items: Center;
    transition: 0.1s;
}
.dashboard__menu .button--active {
    border-right: 2px solid var(--action-color);
    background: #eaedfb;
    font-weight: 500;
    color: var(--action-color);
}
.dashboard__menu .button .marker {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #666687;
    margin: 0 8px 0 0;
}
.dashboard__working-space{
    width:100%;
    height:100%;
    padding:40px 33px;
    transition:0.1s;
    overflow:auto;
    position:relative;
}
.dashboard__working-space--load-process{
    opacity:0.5;
}
/*Макет*/

/*Home*/
.home-page{
    height:100%;
    display:grid;
    grid-template-columns:1fr 300px;
    gap:30px;
}
.home-page__content{}
.home-page__user-bar{
    align-self: start;
    padding:30px 0;
}
.home-page__user-bar .user{}
.home-page__user-bar .user .avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:100%;
    width:200px;
    height:200px;
    margin:0 auto;
}
.home-page__user-bar .user .avatar img{
    width:100%;
    height:100%;
    object-fit: cover; 
}
.home-page__user-bar .user .name{
    font-size:24px;
    font-weight:600;
    text-align:center;
    margin:20px 0 5px 0;
}
.home-page__user-bar .user .groups{
    margin:0 0 5px 0;
}
.home-page__user-bar .user .groups .group{
    color:#666687;
    font-size:12px;
    font-weight:500;
    margin:0 0 0 0;
    text-align:center;
}
.home-page__user-bar .user .icons{}
.home-page__user-bar .user .icons .vui-icon-buttons--line{
    justify-content:center;
}
.home-page__about-system-blocks{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:24px;
}
.home-page__about-system{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 20px;
}
.home-page__about-system .logo{
    display:flex;
    align-items:center;
    justify-content:center;
}
.home-page__about-system .logo img{
    max-height:50px;
    max-width:100px;
}
.home-page__about-system .info{}
.home-page__about-system .info .label{
    font-size:30px;
    font-weight:600;
}
.home-page__about-system .info .version{
    font-size:14px;
    color:#666687;
}
.home-page__about-system .info .version b{
    font-weight:500;
}
/*Home*/

/*Медиа галерея*/
.media-galery{}
.media-galery__upload{}
.media-galery__upload .drop-zone{
    height:200px;
}
.media-galery__upload .drop-zone .text{
    color:#666687;
    font-size:14px;
    font-weight:600;
}
.media-galery__upload .drop-zone .parameters{}
.media-galery__galery{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.media-galery__galery .images{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:10px;
}
.media-galery__galery .images .item{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:10px;
}
.media-galery__galery .images .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-galery__galery .info{
    width:200px;
    min-width:200px;
    display:none;
    margin:0 0 0 24px;
    position:sticky;
    top:0;
    left:0;
}
.media-galery__galery .info.shown{
    display:block;
}
.media-galery__galery .info .view-image{
    width:100%;
}
.media-galery__galery .info .src{
    color: #666687;
    font-size: 13px;
    margin: 10px 0;
    font-weight: 500;
}
/*Медиа галерея*/