@font-face {
    font-family: movie-italic;
    src: url(/public/fonts/OpenSans-Italic.ttf);
}

@font-face {
    font-family: movie-regular;
    src: url(/public/fonts/OpenSans-VariableFont.ttf);
}

@font-face {
    font-family: movie-regular-title;
    src: url(/public/fonts/LibreBaskerville-Regular.ttf);
}

@font-face {
    font-family: title-web;
    src: url(/public/fonts/Bree_Serif/BreeSerif-Regular.ttf);
}

@font-face {
    font-family: arimo-title-italic;
    src: url(/public/fonts/Arimo-Italic-VariableFontt.ttf);
}

@font-face {
    font-family: arimo-title;
    src: url(/public/fonts/Arimo-VariableFont.ttf);
}

.spinner {
    position: absolute;
    margin-left: 52px;
    margin-top: 90px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 11.5px solid #3182f5;
    animation: spinner-b 0.6400000000000001s infinite linear alternate,
        spinner-o 1.2800000000000002s infinite linear;
}

@keyframes spinner-b {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}

@keyframes spinner-o {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

hr {
    opacity: 0.7;
}

html,
body {
    background-color: #212123;
    text-align: -webkit-center;
    margin: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body {
    position: relative;
    min-height: 100vh;
}

* {
    scrollbar-width: auto;
    scrollbar-color: #010101 #131313;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #131313;
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(145 161 185);
    border-radius: 2px;
    border: 1px solid rgb(51, 78, 118);
}

.error {
    color: #9E9E9E;
    font-family: sans-serif;
    font-size: 40px;
    font-weight: bold;
    max-width: 1200px;
    justify-content: center;
    text-align: center;
}

.no-results {
    color: #9E9E9E;
    font-family: sans-serif;
    font-weight: 100;
    text-align: center;
}

.header {
    border-bottom: 0.05em solid #505050;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-content: space-around;
    flex-wrap: wrap;
    background-color: #212123f2;
    color: #fff;
    text-align: center;
    position: sticky;
    top: 0px;
    z-index: 1;
    box-shadow: 0px -2px 11px 8px black;
    padding: 10px 0px 10px 0px;
}

.div-title {
    display: flex;
    gap: 10px;
    cursor: pointer;
    margin: -10px 0px 0px 0px;
}

.icon-page {
    align-self: center;
    width: 45px;
}

.title {
    align-self: center;
    font-family: title-web;
    font-size: 35px;
    margin: 0;
}

@media screen and (max-width: 1300px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .div-title {
        margin: -6px 0px -10px 0px;
    }

    .icon-page {
        width: 30px;
    }

    .title {
        font-size: 22px;
    }
}

.div-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px 10px 0px;
}

@media screen and (max-width: 972px) {
    .menu {
        padding: 5px 0px 5px 0px;
    }

    .menu-item {
        padding: 0px 0px 5px 0px;
    }

    .search-results {
        margin-top: 40px;
    }
}

.menu-item {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 17px;
    font-family: arimo-title;
    font-weight: bold;
    color: #8f8f8f;
    cursor: pointer;
    text-shadow: 0 0 2px black;
    width: fit-content;
    transition: .2s ease-in-out;
    margin: 0px 20px 0px 20px;
}

.menu-item:hover {
    color: #8BC34A;
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media screen and (max-width: 640px) {

    .menu-item {
        font-size: 15px;
        margin: 0px 8px 0px 8px;
    }
}

.download-app-item {
    color: #f3d25be0;
}

.download-app-item:hover {
    color: #f3d25b;
}

.genres-dropdown {
    display: none;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    background-color: #212123;
    border: 1px solid;
    width: max-content;
    max-height: 320px;
    border-radius: 4px;
    box-shadow: 0px 6px 6px 0px rgb(0 0 0 / 60%);
    padding: 10px;
    margin-top: 20px;
    z-index: 1;
    cursor: auto;
}

.menu-item:hover .genres-dropdown {
    display: flex;
}

.genres-item {
    color: #898989;
    padding: 6px 15px 6px 15px;
    text-shadow: 0 0 2px black;
    cursor: pointer;
}

.genres-item:hover {
    background-color: #8BC34A;
    box-shadow: 0px 0px 3px 0px black;
    border-radius: 2px;
    color: #fff;
    transition: .2s ease-in-out;
}

.search-container {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 332px;
}

.search-container-items {
    position: relative;
    display: flex;
    justify-content: center;
}

.input-search-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 3px;
    margin-left: 4px;
    border-right: 1px solid #646464;
    background: url("/public/images/search.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    cursor: text;
}

.input-search {
    align-self: center;
    background-color: #2e323b;
    border: 2px solid #cfd8dc;
    border-radius: 5px;
    color: #fff;
    height: 25px;
    width: 170px;
    font-family: sans-serif;
    font-size: 17px;
    text-align: center;
    outline: none;
    transition: .2s ease-in-out;
    padding: 0px 24px 0px 30px;
    transition-delay: .05s;
}

.input-search:focus {
    border: 2px solid #8BC34A;
    width: 275px;
}

.input-clear {
    position: absolute;
    margin-right: 6px;
    right: 0;
    margin-top: -3px;
    top: 0;
    font-size: 30px;
    cursor: pointer;
    transition: .2s ease-in-out;
    display: none;
}

.input-clear:hover {
    color: #BDBDBD;
    text-shadow: 0 0 3px #000000;
}

.input-search:focus+.input-clear {
    display: block;
}

.input-search:not(:placeholder-shown)+.input-clear {
    display: block;
}

.input-loader {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 5px;
    margin-right: 6px;
    width: 18px;
    height: 18px;
    border: 2px solid #fff0;
    border-bottom-color: #8bc34a;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation .8s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-results {
    padding-top: 6px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: auto;
    width: 300px;
    height: auto;
    background: #343439;
    position: absolute;
    border-radius: 2px;
    border: 1px solid #8BC34A;
    border-radius: 4px;
    box-shadow: 0px 0px 8px 4px black;
    z-index: -1;
    margin-top: 0px;
    opacity: 0;
    transition: .1s ease-in-out;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.result-movie-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    padding: 8px;
    margin-top: 15px;
    margin-left: 10px;
    margin-right: 10px;
    background: #1f1f21;
    border-radius: 4px;
    box-shadow: 0px 0px 4px black;
    cursor: pointer;
}

.result-movie-container:hover {
    background: #333339;
    box-shadow: 0px 0px 2px 1px #7dc34a;
}

.result-movie-img {
    min-width: 55px;
    width: 55px;
    height: 85px;
    border-radius: 2px;
    border: 1px solid;
    margin-top: auto;
    margin-bottom: auto;
}

.container-info-search {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-left: 12px;
}

.result-movie-title {
    text-align: left;
    font-family: arimo-title;
    font-size: 16px;
    margin: 0px;
}

.result-movie-year {
    text-align: left;
    font-family: arimo-title-italic;
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 0px;
    color: #7dc34a;
}

.result-movie-calification {
    display: list-item;
    margin-left: 15px;
    text-align: left;
    font-family: arimo-title-italic;
    font-size: 11px;
    margin-top: 4px;
    margin-bottom: 0px;
}

.result-movie-genres {
    display: list-item;
    margin-left: 15px;
    text-align: left;
    font-family: arimo-title-italic;
    font-size: 11px;
    margin-top: 4px;
    margin-bottom: 0px;
}

.result-movie-not-found {
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100%;
    font-family: arimo-title;
    font-size: 16px;
}

.result-search-more {
    margin-top: 15px;
    margin-bottom: 5px;
    width: 100%;
    font-family: arimo-title;
    font-size: 15px;
    cursor: pointer;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.more-movies {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.a-more {
    font-size: 17px;
    font-family: arimo-title;
    font-weight: 600;
    color: white;
    text-shadow: 0px 0px 4px black;
    cursor: pointer;
    margin-right: 60px;
    margin-bottom: 5px;
    display: inline-flex;
    transition: .2s ease-in-out;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.a-more:hover {
    color: #8bc34a;
}

.advanced-search-container {
    position: relative;
    display: flex;
    width: auto;
    background: #121214;
    border-top: 1px solid #3b3b3b;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.advanced-search-form-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 85%;
    height: 80px;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
}

.advanced-search-label-input-container {
    width: 700px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
}

.advanced-form {
    content-visibility: auto;
    width: 100%;
    transition: .5s ease;
    max-height: 340px;
}

.label-input-advanced-search {
    color: #5a5a5a;
    font-family: 'arimo-title';
    font-weight: 600;
    padding-bottom: 4px;
    font-size: 22px;
    margin-left: 10px;
    margin-bottom: 4px;
    letter-spacing: .04em;
}

.input-advanced-search {
    height: 35px;
    border: none;
    border-radius: 3px;
    background: #2f2f2f;
    font-family: arimo-title;
    color: #c3c3c3;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    padding: 0px 28px 0px 10px;
}

.input-advanced-search::placeholder {
    font-size: 14px;
}

.input-advanced-search:focus {
    outline: none;
}

.input-advanced-search-clear {
    position: absolute;
    color: white;
    margin-right: 6px;
    right: 0;
    margin-top: 34px;
    top: 0;
    font-size: 34px;
    cursor: pointer;
    transition: .1s ease-in-out;
    opacity: 0;
    display: none;
}

.input-advanced-search-clear:hover {
    color: #BDBDBD;
    text-shadow: 0 0 3px #000000;
}

.btn-advanced-search {
    margin-left: 40px;
    height: 36px;
    border: none;
    border-radius: 3px;
    background: #729b42;
    font-family: arimo-title;
    color: white;
    font-weight: 500;
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    transition: .2s ease-in-out;
    letter-spacing: 1px;
}

.btn-advanced-search:hover {
    background: #7dc34a;
    box-shadow: 0px 0px 4px 0px #00ff6f;
}

.advanced-search-items-container {
    display: flex;
    flex-direction: row;
    width: 85%;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.loader-advanced-search-items-container {
    display: none;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    border: 4px solid #e7e7e729;
    border-bottom-color: #8bc34a;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation .6s linear infinite;
}

.label-select-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.label-select-advanced-search {
    color: #5a5a5a;
    font-family: 'arimo-title';
    font-weight: 600;
    padding-bottom: 4px;
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: 4px;
    letter-spacing: .04em;
}

.select-advanced-search {
    background: #2f2f2f;
    color: #c3c3c3;
    border: none;
    width: 140px;
    height: 35px;
    margin: 0px 10px 0px 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: arimo-title;
    text-align-last: center;
}

.select-advanced-search:focus {
    outline: none;
}

option {
    text-align: center;
}

.btn-advanced-clear {
    margin-top: 24px;
    margin-bottom: 20px;
    margin-left: 9px;
    height: 36px;
    border: none;
    border-radius: 3px;
    background: #2f2f2f;
    font-family: arimo-title-italic;
    color: #c3c3c3;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    transition: .2s ease-in-out;
    letter-spacing: 1px;
}

.btn-advanced-clear:hover {
    background: #872929;
    box-shadow: 0px 0px 4px 0px #872929;
}

.form-display {
    width: 28px;
    height: 28px;
    background: #8bc34a;
    position: absolute;
    display: flex;
    bottom: -15px;
    border-radius: 50%;
    color: white;
    font-size: 19px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.form-display-up {
    background: url("/public/images/expand_less.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
}

.form-display-down {
    background: url("/public/images/expand_more.svg") 0 0 no-repeat;
    width: 24px;
    height: 23px;
}

.browse-title-results {
    margin: 0px;
    color: #c3c3c3;
    font-family: 'arimo-title';
    line-height: 25px;
    font-weight: 600;
    max-width: 95%;
}

.browse-filters-span {
    display: inline-block;
    background: #00000059;
    color: #8de169;
    border: 1px solid #616161;
    border-radius: 4px;
    padding: 1px 5px 1px 5px;
    margin-top: 4px;
    box-shadow: 0px 0px 4px 1px #121214;
}

.premieres-container,
.popular-container,
.movies-container,
.download-container,
.help-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191a1e57;
    border-bottom: 1px solid #3b3b3b66;
    border-top: 1px solid #3b3b3b;
    box-shadow: 0px 0px 10px 0px #00000054;
    padding-top: 20px;
    min-height: 414px;
}

.loader-containers {
    display: none;
    margin: 50px;
    width: 90px;
    height: 90px;
    border: 6px solid #e7e7e729;
    border-bottom-color: #8bc34a;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation .6s linear infinite;
}

.movies-container {
    margin-bottom: 155px;
    min-height: 200px;
}

.title-line {
    background: #6aaf4c;
    height: 1px;
    margin: 50px 0px 40px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.premieres {
    max-width: 1500px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
    justify-content: space-evenly;
}

.popular {
    max-width: 1500px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
    justify-content: space-evenly;
}

.titles-panels {
    letter-spacing: 1px;
    background: #212123;
    padding: 0px 30px 0px 30px;
    font-family: 'movie-regular';
    font-weight: bolder;
    font-size: 22px;
    color: white;
    text-shadow: 0 0 4px black;
}

.movies {
    max-width: 1500px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
    justify-content: space-evenly;
}

.help {
    max-width: 1200px;
    margin: 0px 15px 20px 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
    justify-content: space-evenly;
}

.card {
    background-color: #1d2128;
    border: 2px solid #CFD8DC;
    border-radius: 5px;
    box-shadow: 0 0 10px 2px rgb(0 0 0);
    color: #fff;
    height: 300px;
    width: 200px;
    overflow: hidden;
    text-decoration: none;
    margin: 5px 10px 50px 10px;
    transition: .2s ease-in-out;
}

.card:hover {
    border: 2px solid rgb(76, 103, 143);
}

.pLoad {
    width: inherit;
    position: absolute;
    margin-top: 210px;
    font-family: sans-serif;
    font-size: 26px;
    color: #9E9E9E;
}

.movie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transform: scale(1);
    transition: .1s ease-in-out;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    transition: .2s ease-in-out;
}

.movie-title {
    margin-left: 2px;
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    margin-top: 7px;
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-family: movie-regular;
    transition: .1s ease-in-out;
    cursor: pointer;
}

.movie-title:hover {
    color: #BDBDBD;
}

.movie-title:focus {
    outline: none;
    color: #BDBDBD;
}

.movie-year {
    margin-left: 2px;
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    margin-top: 28px;
    text-align: left;
    text-decoration: none;
    color: #8bc34a;
    font-family: sans-serif;
    pointer-events: none;
}

.movie-info {
    color: #fff;
    height: 300px;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: -304px;
    position: relative;
    opacity: 0;
    transition: .2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card:hover .movie-info {
    opacity: 1;
}

.card:hover .movie-img {
    transform: scale(1.1);
}

.card:hover .more-info {
    margin-top: 220px;
    opacity: 1;
}

.calification {
    position: absolute;
    margin-top: -250px;
    margin-left: 40px;
    font-family: sans-serif;
    font-size: 22px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    width: fit-content;
    font-weight: bold;
}

.icon-calification {
    position: absolute;
    background: url("/public/images/star.svg") 0 0 no-repeat;
    margin-top: -255px;
    margin-left: -80px;
    width: 40px;
    height: 40px;
}

.duration {
    position: absolute;
    margin-top: -190px;
    font-family: sans-serif;
    margin-left: 18px;
    font-size: 12px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    width: fit-content;
    font-weight: 600;
}

.icon-duration {
    position: absolute;
    background: url("/public/images/clock.svg") 0 0 no-repeat;
    margin-top: -192px;
    margin-left: -62px;
    width: 24px;
    height: 24px;
}

.genre {
    padding: 5px;
    font-family: sans-serif;
    font-size: 22px;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    width: fit-content;
    font-weight: bold;
    text-shadow: 0 0 6px black;
}

.more-info {
    position: absolute;
    opacity: 0;
    margin-top: 380px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.more-info:hover {
    background-color: #347c36;
    box-shadow: 0px 0px 6px 1px #3d4c6d;
}

.more-info:active {
    box-shadow: 0px 0px 6px 1px #3d4c6d;
    transform: scale(1.05);
    transition: .1s ease-in-out;
}

@media screen and (max-width: 1351px) {

    .spinner {
        margin-top: 60px;
        margin-left: 40px;
        width: 65px;
        height: 65px;
    }

    .pLoad {
        margin-top: 175px;
        font-size: 22px;
    }

    .card {
        height: 250px;
        width: 170px;
    }

    .movie-title {
        font-size: 11px;
        margin-top: 5px;
    }

    .movie-year {
        font-size: 9px;
        margin-top: 20px;
    }

    .movie-info {
        height: 250px;
        width: 170px;
        margin-top: -254px;
    }

    .calification {
        margin-top: -204px;
        margin-left: 40px;
        font-size: 18px;
    }

    .icon-calification {
        margin-top: -210px;
        margin-left: -60px;
        width: 40px;
        height: 40px;
    }

    .duration {
        margin-top: -146px;
        margin-left: 30px;
        font-size: 11px;
    }

    .icon-duration {
        margin-top: -147px;
        margin-left: -50px;
        width: 24px;
        height: 24px;
    }

    .genre {
        font-size: 20px;
    }

    .more-info {
        margin-top: 325px;
        font-size: 14px;
    }

    .card:hover .more-info {
        margin-top: 180px;
    }
}

@media screen and (max-width: 1171px) {

    .popular {
        max-width: 740px;
    }

    .premieres {
        max-width: 740px;
    }

    .movies {
        max-width: 740px;
    }
}

.modal {
    display: none;
    opacity: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: .2s ease-in-out;
    cursor: pointer;
}

.modal-content {
    position: relative;
    background-color: #212123;
    padding: 20px;
    border: 1px solid #9ed95a;
    width: 80%;
    max-width: 1000px;
    max-height: 70%;
    height: fit-content;
    overflow: auto;
    border-radius: 3px;
    box-shadow: 0 0 10px 2px rgb(0 0 0);
    cursor: auto;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-container-img-dow {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.modal-close {
    width: 0px;
    position: sticky;
    top: 0px;
    height: 46px;
    font-size: 45px;
    float: right;
    font-weight: bold;
    color: #9ed95a;
    cursor: pointer;
    transform: translateY(-11px) translateX(-33px);
    transition: .2s ease-in-out;
}

.modal-close:hover {
    color: #71c312;
    transform: scale(1.2) translateY(-10px) translateX(-30px);
}

.modal-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
    height: 100%;
}

.modal-img {
    box-shadow: 0px 0px 14px 2px #37474F;
    border-radius: 4px;
    border: 2px solid #607D8B;
    width: 250px;
    height: 350px;
    object-fit: cover;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    transition: .2s ease-in-out;
    margin-top: 40px;
}

.modal-img:hover {
    box-shadow: 0px 0px 14px 8px #37474F;
    filter: contrast(1.1);
    transform: scale(1.15) translateY(-12px);
}

.modal-download {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    cursor: pointer;
    background-color: #6aaf4c;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: .2s ease-in-out;
    text-shadow: 0 0 2px black;
}

.modal-download-span {
    filter: drop-shadow(0px 0px 1px black);
    background: url("/public/images/download.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
}

.modal-download:hover {
    background-color: #78b33f;
    box-shadow: 0px 0px 6px 0px #3d4c6d;
    transform: scale(1.01);
}

.modal-download:active {
    background-color: #6bac2f;
    box-shadow: 0px 0px 6px 0px #3d4c6d;
    transform: scale(1.05);
    transition: .1s ease-in-out;
}

.disabled {
    cursor: auto;
    background-color: #3f4a5a;
    box-shadow: 0px 0px 2px 0px #3d4c6d;
}

.disabled:hover {
    background-color: #383e47;
    transform: scale(1);
    box-shadow: 0px 0px 2px 0px #3d4c6d;
}

.modal-download-subtitle {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
    background-color: #4c74af;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: .2s ease-in-out;
    text-shadow: 0 0 2px black;
}

.modal-download-subtitle-span {
    filter: drop-shadow(0px 0px 1px black);
    background: url("/public/images/subtitles.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 3px;
}

.modal-download-subtitle:hover {
    background-color: #3f64b3;
    box-shadow: 0px 0px 6px 0px #3d4c6d;
    transform: scale(1.01);
}

.modal-download-subtitle:active {
    background-color: #2f5292;
    box-shadow: 0px 0px 6px 0px #3d4c6d;
    transform: scale(1.05);
    transition: .1s ease-in-out;
}

.modal-info {
    width: 500px;
    margin-top: 20px;
    margin-left: 10px;
}

@media screen and (max-width: 975px) {

    .modal-info {
        width: 100%;
    }

}


.modal-title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 30px;
    font-family: arimo-title;
    color: #6aaf4c;
    font-weight: 600;
    text-shadow: 1px 1px 8px black;
    background: -webkit-linear-gradient(#004eff, #ededed);
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffffab;
}

.modal-title-original {
    font-size: 12px;
    font-family: 'movie-regular';
    color: #c7c7c7;
    font-weight: 600;
    text-shadow: 1px 1px 8px black;
    text-align: left;
    margin: 0px;
}

.modal-year {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 5px;
    color: white;
    font-family: movie-italic;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    float: left;
    align-items: baseline;
    margin-left: 20px;
    text-shadow: 1px 1px 8px black;
}

.modal-realse-date {
    margin-top: 20px;
    margin-top: 8px;
    margin-bottom: 5px;
    color: white;
    font-family: movie-italic;
    font-weight: 400;
    margin-left: 8px;
    text-shadow: 1px 1px 8px black;
    font-size: 12px;
}

.modal-genres {
    margin-top: 20px;
    width: 100%;
    color: white;
    font-family: movie-italic;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    margin-left: 20px;
    text-shadow: 1px 1px 8px black;
    margin-bottom: 10px;
    line-height: 1.4;
    column-gap: 10px;
    row-gap: 6px;
    align-items: center;
}

.modal-genre-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.modal-genre-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    white-space: nowrap;
}

.modal-genre-separator {
    color: #9ed95a;
    opacity: 0.9;
    font-family: arimo-title;
    font-weight: 700;
}

.modal-qualities {
    margin-top: 20px;
    width: 100%;
    align-items: center;
    color: white;
    font-family: 'movie-regular';
    font-weight: 900;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    margin-left: 20px;
    text-shadow: 1px 1px 8px black;
}

.span-quality {
    margin-left: 5px;
    margin-right: 5px;
    padding: 1px 4px 1px 4px;
    background: #00000059;
    border: 1px solid #616161;
    border-radius: 4px;
    color: #8de169;
    transition: .1s ease-in-out;
}

.span-quality:hover {
    background: #00000000;
    border: 1px solid #8de169;
}

.modal-icon-exclamation {
    background: url("/public/images/info.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.modal-duration {
    margin-top: 20px;
    width: 100%;
    align-items: center;
    color: white;
    font-family: 'movie-regular';
    font-weight: 900;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    float: left;
    margin-left: 20px;
    text-shadow: 1px 1px 8px black;
}

.modal-icon-duration {
    background: url("/public/images/clock.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin-right: 6px;
    margin-top: -1px;
    margin-left: 6px;
}

.p-duration {
    color: #8de169;
    font-family: movie-regular;
    font-size: 15px;
    letter-spacing: .1em;
}

.p-date-published {
    font-family: 'movie-italic';
    font-size: 13px;
    color: #91918d;
    float: right;
    top: 100%;
    position: sticky;
    text-align: end;
    text-shadow: 1px 1px 4px black;
}

.modal-calification {
    width: 100%;
    align-items: center;
    color: white;
    font-family: 'movie-regular';
    font-weight: 900;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    float: left;
    text-shadow: 1px 1px 8px black;
    margin-top: 15px;
}

.modal-calification-star {
    display: flex;
    gap: 8px;
}

.icon-modal-calification {
    background: url("/public/images/star.svg") 0 0 no-repeat;
    width: 40px;
    height: 40px;
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.icon-modal-imdb {
    background: url("/public/images/logo-imdb.svg") 0 0 no-repeat;
    width: 41px;
    height: 18px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-left: 10px;
    box-shadow: 0px 0px 2px #cdb232;
    transition: .2s ease-in-out;
}

.icon-modal-imdb:hover {
    box-shadow: 0px 0px 6px #cdb232;
    transform: scale(1.05);
}

.modal-p-calification {
    border: 1px solid grey;
    padding: 1px 6px 1px 6px;
    border-radius: 4px;
}

.modal-p-calification-votes {
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 12px;
    padding-left: 15px;
    font-family: 'movie-italic';
    margin-top: 1.2em;
}

.modal-trailer-title {
    font-weight: bolder;
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 22px;
    color: #d7d7d7;
    font-family: movie-italic;
    text-shadow: 1px 1px 8px black;
}

.modal-trailer {
    max-width: 840px;
    text-align: justify;
    width: 100%;
}

.modal-trailer-container {
    display: flex;
    margin: 0px 10px 0px 10px;
}

.video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 1px solid rgb(113 195 18 / 40%);
    border-radius: 4px;
    box-shadow: 0px 0px 6px 0px black;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: rgb(0, 0, 0);
}

.no-trailer {
    font-size: 18px;
    font-family: 'movie-regular';
    font-weight: bolder;
    margin-left: auto;
    margin-right: auto;
    color: #898989;
    text-shadow: 0px 0px 4px black;
}

.modal-images-title {
    font-weight: bolder;
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 22px;
    color: #d7d7d7;
    font-family: movie-italic;
    text-shadow: 1px 1px 8px black;
}

.modal-images {
    max-width: 840px;
    text-align: justify;
    text-shadow: 1px 1px 8px black;
    width: 100%;
}

.modal-images-container {
    height: 165px;
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0px 10px 0px 10px;
    align-items: center;
}

.img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.images {
    border-radius: 2px;
    max-width: 140px;
    min-width: fit-content;
    height: 140px;
    min-height: 140px;
    display: flex;
    content-visibility: auto;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.images:hover {
    transform: scale(1.1);
    filter: brightness(1.2), contrast(1.2);
    padding: 0px 20px 0px 20px;
}

.modal-description-title {
    font-weight: bolder;
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 22px;
    color: #d7d7d7;
    font-family: movie-italic;
    text-shadow: 1px 1px 8px black;
}

.modal-description {
    font-size: 17px;
    color: #919191;
    max-width: 840px;
    line-height: 26px;
    font-family: movie-regular;
    text-align: justify;
    text-shadow: 1px 1px 8px black;
    width: 100%;
}

.modal-downloads {
    z-index: 100;
    display: none;
    opacity: 0;
    position: fixed;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: .2s ease-in-out;
    cursor: pointer;
}

.modal-downloads-container {
    margin-top: -150%;
    width: 60%;
    max-width: 700px;
    max-height: 65%;
    height: auto;
    background: #212123;
    border-radius: 6px;
    box-shadow: 0 0 10px 2px rgb(57 57 57), inset 0 0 4px 0px rgb(57 57 57);
    border: 1px solid #9ed95a;
    transition: .2s ease-in-out;
    padding: 20px;
    cursor: auto;
    overflow: auto;
    text-align: center;
}

.modal-downloads-container::-webkit-scrollbar {
    width: 8px;
}

.modal-close-downloads {
    width: 0px;
    position: sticky;
    top: 0px;
    height: 46px;
    font-size: 35px;
    float: right;
    font-weight: bold;
    color: #9ed95a;
    cursor: pointer;
    transform: translateY(-10px) translateX(-20px);
    transition: .2s ease-in-out;
}

.modal-close-downloads:hover {
    color: #77b333;
    transform: scale(1.1) translateY(-9px) translateX(-19px);
}

.modal-downloads-title {
    font-weight: bolder;
    margin-top: 10px;
    font-size: 22px;
    color: #a3bbcd;
    font-family: 'movie-regular';
    margin-bottom: 0px;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.modal-cards-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.card-download {
    background: #1b1b1c;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 260px;
    height: auto;
    padding: 5px;
    margin: 15px 5px 15px 5px;
    border-radius: 4px;
    border: 1px solid #9ed95a;
    box-shadow: 0 0 4px 0px rgb(158 217 90);
    align-items: center;
    justify-content: space-evenly;
}

.card-download-quality-2160 {
    margin-top: 10px;
    background: url("/public/images/2160p.svg") 0 0 no-repeat;
    width: 183.165px;
    height: 110.44px;
}

.card-download-quality-1080 {
    margin-top: 10px;
    background: url("/public/images/1080p.svg") 0 0 no-repeat;
    width: 183.165px;
    height: 110.44px;
}

.card-download-quality-720 {
    margin-top: 10px;
    background: url("/public/images/720p.svg") 0 0 no-repeat;
    width: 183.165px;
    height: 110.44px;
}

.card-download-subtitle {
    margin-top: 10px;
    background: url("/public/images/subtitle.svg") 0 0 no-repeat;
    width: 149.925px;
    height: 83.2px;
}

.card-download-size {
    display: list-item;
    margin: 5px 0px 0px 0px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'movie-regular';
    color: white;
}

.size {
    margin: 5px 0px 0px 0px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'movie-italic';
    color: #aec5d5;
}

.card-download-date {
    display: list-item;
    margin: 5px 0px 0px 0px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'movie-regular';
    color: white;
}

.date {
    margin: 5px 0px 0px 0px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'movie-italic';
    color: #aec5d5;
}

.card-download-author {
    display: list-item;
    margin: 10px 0px 0px 0px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'movie-regular';
    color: white;
}

.card-download-author-name {
    margin: 5px 0px 0px 0px;
    font-size: 18px;
    font-weight: 900;
    font-family: 'movie-regular';
    color: #aec5d5;
}

.card-download-comment-title {
    display: list-item;
    margin: 5px 0px 0px 0px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'movie-regular';
    color: white;
}

.card-download-comment {
    margin: 5px 0px 0px 0px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'movie-regular';
    color: #aec5d5;
}

.card-download-buttons-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.card-download-button {
    background-color: #9ed95a;
    width: 180px;
    border: none;
    color: black;
    font-weight: 700;
    padding: 5px 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    display: flex;
    font-size: 18px;
    font-family: 'movie-regular';
    border-radius: 4px;
    cursor: pointer;
    transition: .2s ease-in-out;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.card-download-button:hover {
    background-color: #81c531;
    box-shadow: 0 0 6px 0px rgb(57 57 57);
    transition: .2s ease-in-out;
}

.card-download-button:active {
    transition: .1s ease-in-out;
    background-color: #52bb24;
    transform: translateY(3px);
    box-shadow: 0 0 0px 0px rgb(57 57 57);
    transition: .2s ease-in-out;
}

@media screen and (max-width: 965px) {
    .card-download {
        width: 80%;
    }

    .card-download-button {
        width: 180px;
    }
}

.card-download-source-icon {
    align-self: center;
    background: url("/public/images/download.svg") 0 0 no-repeat;
    width: 32px;
    height: 32px;
}

.pagination {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 15px 0px 5px 0px;
    text-align: center;
}

.btn-pagination {
    padding: 4px 11px 4px 11px;
    margin: 5px 5px 5px 5px;
    background: #1f1f21;
    border-radius: 4px;
    color: white;
    font-family: arimo-title;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 0 2px black;
    border: 1px solid #4b4b4b;
    transition: .15s ease-in-out;
    cursor: pointer;
}

.btn-pagination-static {
    padding: 4px 5px 4px 5px;
    margin: 1px 3px 10px 3px;
    background: #1f1f21;
    border-radius: 4px;
    color: white;
    font-family: arimo-title;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 0 2px black;
    border: none;
}

.btn-pagination:hover {
    background: #8bc340;
}

.btn-pagination:disabled {
    display: none;
}

.btn-pagination-current {
    color: #9ddd53;
    background-color: #121214;
    border: none;
    cursor: auto;
}

.btn-pagination-current:hover {
    background-color: #121214;
    transform: none;
}

@media screen and (max-width: 700px) {
    .btn-pagination {
        padding: 3px 10px 3px 10px;
        margin: 4px 4px 4px 4px;
        background: #1f1f21;
        border-radius: 4px;
        color: white;
        font-family: arimo-title;
        font-size: 14px;
        font-weight: 500;
        text-shadow: 0 0 2px black;
        border: 1px solid #4b4b4b;
        transition: .15s ease-in-out;
        cursor: pointer;
    }

    .btn-pagination-static {
        padding: 3px 4px 3px 4px;
        margin: 2px 4px 11px 4px;
        background: #1f1f21;
        border-radius: 4px;
        color: white;
        font-family: arimo-title;
        font-size: 14px;
        font-weight: 500;
        text-shadow: 0 0 2px black;
        border: none;
    }

    .btn-pagination-current {
        color: #9ddd53;
        background-color: #121214;
        border: none;
        cursor: auto;
    }
}

.pagination-icon-home {
    background: url("/public/images/home.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin: -3px 1px -3px 1px;
    display: block;
}

.pagination-icon-right {
    background: url("/public/images/right.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin: -3px 1px -3px 2px;
    display: block;
}

.pagination-icon-left {
    background: url("/public/images/left.svg") 0 0 no-repeat;
    width: 24px;
    height: 24px;
    margin: -3px 2px -3px 1px;
    display: block;
}

.pagination-title {
    width: 100%;
    margin: 10px 0px 0px 0px;
    color: white;
    font-family: 'arimo-title';
    font-size: 14px;
}

.pagination-input {
    background: none;
    border: none;
    font-size: 14px;
    font-family: arimo-title;
    width: 15px;
    color: white;
    border: 1px solid #5d5454;
    border-radius: 4px;
    text-align-last: center;
}

.pagination-input:focus {
    outline: none;
    border: 1px solid #9ddd53;
}

/* remove arrow input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.footer {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #121214;
    height: 80px;
    box-shadow: 0px 1px 4px 0px black;
    border-top: 1px solid #838383;
    justify-content: center;
    text-align: center;
}

.footer-movies {
    color: white;
    font-family: 'arimo-title';
    font-weight: 600;
    font-size: 14px;
    margin: 0px;
    padding: 10px;
}

.footer-movies-number {
    color: #9ddd53;
}

.footer-date {
    color: white;
    font-family: 'movie-regular';
    font-weight: 600;
    font-size: 17px;
    margin: 0px;
}

.accordion {
    background-color: #171816;
    color: #fffff0;
    font-family: 'arimo-title';
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
    font-weight: bold;
}

.active,
.accordion:hover {
    border-radius: 8px 8px 0px 0px;
    background-color: #8bc340;
    color: black;
}

.accordion:after {
    content: '\002B';
    color: #ffffff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
    color: black;
}

.panel {
    padding: 0px 18px 0px 18px;
    background-color: #616c6f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 5px;
    width: -webkit-fill-available;
    width: -moz-available;
    border-radius: 0px 0px 8px 8px;
}

.panel-text {
    color: #e7e7e7;
    text-shadow: 1px 1px 1px black;
    font-family: 'movie-regular';
    font-size: 16px;
    margin: 0px;
    padding: 5px;
    font-weight: bold;
    display: list-item;
    width: max-content;
}

