:root {
    --yellow: 243, 183, 0;
}

#inputSearch::placeholder {
    color: rgba(var(--yellow), 0.5);
}

#inputSearch {
    background-color: transparent;
    border: 1px solid rgb(var(--yellow));
    color: rgb(var(--yellow));
}

#btnMovie {
    background-color: transparent;
    border: 1px solid rgb(var(--yellow));
    color: rgb(var(--yellow));
    transition: all 0.2s ease;
}

#btnMovie:hover {
    background-color: rgba(var(--yellow), 0.1);
}

#MovieList .column {
    padding-top: 10px;
    transition: all 0.52s ease;
}

#MovieList .column:hover {
    padding-top: 6px;
    padding-bottom: 4px;
}

.modal-open nav,
.modal-open main {
    filter: blur(1px);
}

.w-60 {
    width: 60% !important;
}

h5.modal-title {
    font-weight: 700;
    font-size: 20px;
    color: rgb(var(--yellow)) !important;
}

.modal-body {
    scrollbar-width: none;
}

#MovieList .card-body .card-title {
    font-size: 16px;
}

#MovieList .card-body .card-subtitle {
    font-size: 12px;
    color: #020c1b;
    letter-spacing: 0.5px;
}

@media(width < 768px) {
    #MovieList .card-body .card-title {
        font-size: 14px;
    }

    #MovieList .card-body .card-subtitle {
        font-size: 10px;
    }

    #MovieList .card-body a {
        font-size: 12px;
    }
}

#not_found {
    background-color: rgb(10, 25, 47);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#not_found * {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    font-family: 'Ubuntu', sans-serif;
}

#not_found h3 {
    z-index: 2;
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    color: rgba(204, 214, 246, 0.5);
    margin: 0;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(204, 214, 246, 0.5);
}

#not_found div {
    z-index: 2;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: 100;
    color: rgb(136, 146, 176);
    letter-spacing: 1px;
}

#not_found p {
    margin: 0;
}

#not_found a {
    color: rgba(var(--yellow), 0.35);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

#not_found a:hover {
    color: rgb(var(--yellow), 0.75);
}