.creator_maintitle {
    position: relative;
    top: -22px;
    left: 2px;
}
.creator_maintitle > small {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
}

.videolist {
}
.item {
    background: #e9e9e9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.video-meta h2 {
    background: transparent;
    color: var(--sBasic_1);
    box-shadow: none !important;
    line-height: normal;
    padding: 0;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}
.item h3 {
    margin: 0;
    font-size: 19px;
    font-weight: bold;
    color: var(--sBasic_1);
    line-height: normal;
}
.item p { margin: 0; color: #555; line-height: 1.5; }
a.button {
    padding: 10px 16px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    &:hover {
        transition: 0.5s;
        background-color: #987952;
    }
}
video {
    width: 100%;
    max-height: calc(100vh - 100px);
}
.back_navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    
    a.back_to_list {
        text-align: center;
        display: inline-flex;
        background: #222222;
        border-radius: 4px;
        padding: 6px 10px;
        text-decoration: none;
        transition: 0.5s;
        color: white;

        &:hover {
            transition: 0.5s;
            background-color: #987952;
        }
    }
}
.video-meta {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 61px;
    margin-bottom: 15px;
    .video-title {
        font-weight: bolder;
        font-size: large;
    }
}

form {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5px;
    max-width: 380px;
    margin: 0 auto;

    input {
        width: calc(100% - 32px);
        border: 1px solid var(--grey-3);
        padding: 8px 16px;
        border-radius: 10px;
        height: 50px;
        color: var(--grey-3);
        font-family: Roboto, sans-serif;
    }
    button {
        width: 200px;
        border: 1px solid var(--grey-3);
        padding: 8px 16px;
        border-radius: 10px;
        height: 50px;
        transition: 0.5s;
        color: white;
        background: #222222;
        margin-top: 15px;
        font-family: 'Michroma', arial;

        &:hover {
            transition: 0.5s;
            cursor: pointer;
            background-color: #987952;
        }
    }
}
.back_to {
    margin-top: -19px;
    display: block;
    width: calc(100% - 100px);

    a {
        color: black;
        text-decoration: none;
        transition: 0.5s;
        margin-right: 20px;

        &:hover {
            transition: 0.5s;
            cursor: pointer;
            color: #987952;
        }
    }
}

.logout {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

    a {
        color: black;
        text-decoration: none;
        transition: 0.5s;
        margin-right: 20px;

        &:hover {
            transition: 0.5s;
            cursor: pointer;
            color: #987952;
        }
    }
}