#back_ground {
    opacity: 0.5;
}

#back_ground_org {
    display: none;
}

.bk-icon {
    font-size: 2rem;
    padding: 1rem;
}

body {
    background-color: rgb(43, 43, 43);
    color: aliceblue;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    z-index: 1;
}

body>div.container>div.row.condition {
    border-radius: 3rem;
    background-color: rgba(0, 0, 0, 0.8) !important;
    padding: 1rem;
}

#result_test .card {
    border-radius: 3rem;
    background-color: rgba(0, 0, 0, 0.8) !important;
    padding: 1rem;
}

.form-check {
    display: inline;
    margin-right: 1rem;
}

.card {
    color: white;
    /* height: 100vh; */
}

.result {
    display: none;
}

#result_org {
    display: none;
}

.card-img-top {
    width: auto;
}

#add_list_btn,
#not_interested_btn {
    width: fit-content;
}

#add_list_btn {
    margin-right: 1rem;
}

#accordionWithoutGenres {
    width: fit-content;
}

figure blockquote p {
    text-decoration: underline;
}

#list {
    display: none;
}

p#title {
    font-size: 2rem;
}

#genres span {
    padding: 3px;
    border: 1px solid #ffffff;
    border-radius: 2px;
}

.fade_in {
    animation: fade-in 1s;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade_out_r {
    animation: fade_out_r 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fade_out_r {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}
.fade_out_l {
    animation: fade_out_l 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fade_out_l {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

.row.pickup {
    margin-top: 2rem;
    width: 100%;
    border-radius: 3rem;
    background-color: black;
    .row {
        margin-bottom: 2rem;
    }
}