* {
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

.navbar {
    width: 100%;
    height: 50px;
    background-color: var(--primary-color)
}

body {
    font-family: "Roboto", sans-serif;
}

.navbar {
    width: 100%;
    height: 50px;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
}

.navbar-in {
    display: flex;
    align-items: center;
    padding: 0 50px;
    height: 100%;
    color: var(--secondary-color);
    font-family: "Sen", sans-serif;
}

.logo-in {
    flex: 1;
}

.logo {
    font-size: 30px;
    color: #a5043d;
}

.menu-in {
    flex: 6;
}

.menu-list {
    display: flex;
    list-style: none;
}


/*-----------------------_---------------------------------------*/

.menu-list-item {
    margin-right: 30px;
    border-radius: 20%;
    width: 60px;
    padding: 0.5%;
    text-align: center;
    transition: transform .2s;
}

.menu-list-item.active {
    font-weight: bold;
}

.profile-in {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.profile-text-in {
    margin: 0 20px;
}

.profile-picture {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

:root {
    --primary-color: #2986CC;
    --secondary-color: #f5f1f3;
}

.dark-theme {
    --primary-color: #212121;
    --secondary-color: #edf2fc;
}

#icon {
    width: 30px;
    cursor: pointer;
}

.sidebar {
    width: 50px;
    height: 100%;
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.left-menu-item {
    color: white;
    font-size: 20px;
    margin-bottom: 40px;
    transition: transform .2s;
}

.container {
    background-color: #151515;
    min-height: calc(100vh - 50px);
    color: white;
}

.content-container {
    margin-left: 50px;
}

.topscreen {
    height: 50vh;
    padding: 50px;
}

.topscreen-desc {
    width: 500px;
    color: lightgray;
    margin: 30px 0;
}

.topscreen-button {
    background-color: #4dbf00;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-weight: bold;
}

.movie-list {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
}

.movie-list-container {
    padding: 15px;
}

.movie-list-image {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border: solid var(--secondary-color);
    transition: transform .4s;
}

.movie-list-image:hover {
    transform: scale(1.2);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.movie-list-item {
    margin-right: 10px;
    position: relative;
}

.movie-list-item-title {
    /*
    background-color: grey;
    border: 1px black solid;
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    width: 150px;
    */
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    background: rgb(0, 0, 0);
    /* Fallback color */
    background: rgba(0, 0, 0, 0.5);
    /* Black background with 0.5 opacity */
    color: #f1f1f1;
    /* Grey text */
    width: 180px;
    /* Full width */
    padding: 10px;
    /* Some padding */
}

.description-movie-list {
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    background: rgb(0, 0, 0);
    /* Fallback color */
    background: rgba(0, 0, 0, 0.5);
    /* Black background with 0.5 opacity */
    color: #f1f1f1;
    /* Grey text */
    width: 180px;
    /* Full width */
    padding: 10px;
    /* Some padding */
}

.movie-list-item-btn {
    background-color: #4dbf00;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-weight: bold;
}

.movie-list-item-btn:hover {
    background-color: gold;
}

.menu-list-item:hover {
    background-color: #4dbf00;
    transform: scale(1.05);
}

.left-menu-item:hover {
    color: #4dbf00;
    transform: scale(1.2);
}

.topscreen-button:hover {
    background-color: gold;
}

.order {
    display: flex;
}

.submitbtn {
    background-color: #4dbf00;
    color: white;
    padding: 5px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-weight: bold;
}

.submitbtn:hover {
    background-color: gold;
}

.searchbox {
    width: 150px;
    height: 20px;
    background-color: whites;
    border: solid #4dbf00 3px;
}

.fas.fa-caret-down {
    transition: transform .4s;
}

.fas.fa-caret-down:hover {
    color: #4dbf00;
    transform: scale(1.2);
}