* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Nunito;
    src: url(../fonts/Nunitoregular.woff);
}

@font-face {
    font-family: Nunito;
    src: url(../fonts/Nunitobold.woff);
    font-weight: bold;
}

body {
    font-family: Nunito, serif;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    background: #F7F7F7;
    width: 250px;
    border-right: 1px solid #E2E2E2;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    flex-shrink: 0;
}

.logo {
    display: block;
    text-align: center;
    padding: 25px 0 27px 0;
}

.logo img {
    width: 87px;
}

.navigation ul {
    list-style: none;
}

.navigation-item.active a, .navigation-item a:hover {
    /* active/hover */
    background: #467DF2;
    border-radius: 5px;
    color: #fff;
}

.navigation-item svg path {
    fill: #858796;
}

.navigation-item.active svg path, .navigation-item a:hover path {
    fill: #fff;
}

.navigation-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 13px 15px;
    margin: 0 17px;
    color: #858796;
}

.navigation-item a span {
    font-size: 14px;
    line-height: 19px;
    margin-left: 10px;
}

.feedback {
    /* active/hover */
    box-sizing: border-box;
    border: 1px solid #F7F7F7;
    border-radius: 5px;
    margin: 17px 16px;
    padding: 14px 12px 13px 12px;
    position: sticky;
    bottom: 17px;
    left: 0;
}

.feedback:hover {
    border: 1px solid #467DF2;
}

.feedback > svg {
    float: left;
    margin-right: 6px;
    margin-bottom: 7px;
}

.feedback-text {
    font-size: 14px;
    line-height: 19px;
    color: #4F4E4F;
}

.feedback-text a {
    text-decoration: none;
}

.content {
    flex-grow: 1;
    background: #EDEEF3;
}


.header {
    background: #F7F7F7;
    border-bottom: 1px solid #E2E2E2;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px 15px 40px;
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu-button {
    border: 0;
    background: none;
    cursor: pointer;
    margin-right: 60px;
}

.header-menu a {
    font-size: 14px;
    line-height: 19px;
    color: #858796;
    text-decoration: none;
}

.header-menu > a {
    margin-right: 40px;
}

.header-menu a span {
    margin-right: 5px;
}

.header-menu a svg {
    fill: #858796;
}

.header-menu a:hover {
    color: #3D63D2;
}

.header-menu a:hover svg {
    fill: #3D63D2;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-action {
    position: relative;
}

.header-action-search {
    box-sizing: border-box;
    background: #EFEFF5;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    padding: 9px 20px 10px 44px;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    width: 373px;
    outline: none;
}

.header-action-search + svg {
    fill: #B3B3B3;
}

.header-action-search::placeholder {
    color: #B3B3B3;
}

.header-action svg {
    position: absolute;
    top: 12px;
    left: 20px;
}

.header-actions-statistic {
    border: 0;
    background: none;
    cursor: pointer;
    margin: 0 40px;
}

.header-actions-statistic svg {
    fill: #858796;
}

.header-actions-statistic:hover svg {
    fill: #467DF2;
}

.button {
    background: #467DF2;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    border: 0;
    cursor: pointer;
}

.button:hover {
    background: #2F54A3;
}

.header-menu-tasks {
    position: relative;
    display: flex;
}

.header-menu-tasks-date {
    display: none;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(102, 102, 102, 0.15);
    border-radius: 10px;
    padding: 30px 20px;
    position: absolute;
    width: 110px;
    top: 38px;
    left: -6px;
}

.header-menu-tasks-date-item {
    font-size: 14px;
    line-height: 19px;
    color: #686464;
}

.header-menu-tasks-date-item:first-of-type {
    margin-bottom: 15px;
}

.header-menu-tasks:hover .header-menu-tasks-date {
    display: block;
}

.container {
    padding: 25px 56px 73px 40px;
    background: #EDEEF3;
}

.container h2 {
    font-weight: bold;
    font-size: 35px;
    line-height: 48px;
    color: #4F4E4F;
    margin-bottom: 20px;
}

.videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(102, 102, 102, 0.15);
    border-radius: 10px;
    margin: 20px;
    max-width: 350px;
    position: relative;
}

.video-image img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.video:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-info {
    padding: 20px 27px;

}

.video-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: #4F4E4F;
    margin-bottom: 8px;
}

.video-extra {
    font-size: 15px;
    line-height: 30px;
    color: #4F4E4F;
    margin-bottom: 18px;
}

.video-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-action {
    border: 0;
    background: none;
    line-height: 0;
    cursor: pointer;
}

.video-action svg {
    fill: #858796;
}

.video-action:hover svg {
    fill: #467DF2;
}

.fix-block {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 5px;
}

.fix-block.moderation {
    color: #4F4E4F;
    background: rgba(247, 247, 247, 0.8);
}

.fix-block.published {
    background: #C6E0C3;
    color: #027900;
}

.fix-block.error {
    color: #DB0C0C;
    background: #FFBCBCCC;
}

.fixed-block {
    display: flex;
    transform: rotate(-90deg);
    position: fixed;
    right: -74px;
    top: calc(50% - 100px);
    background: #467DF2;
    border-radius: 10px 10px 0 0;
    padding: 10px 20px 9px 20px;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    box-sizing: border-box;
    cursor: pointer;
}

.fixed-block span {
    margin-left: 10px;
}

.fixed-block svg{
    transform: rotate(90deg);
}

.fixed-block:hover {
    background: #2F54A3;
    padding-bottom: 19px;
    top: calc(50% - 105px);
}