.checked-box:checked{
    background: #1C64F2 !important;
}

.aside-frame{
    height: calc(100vh - 73px);

}

.aside-frame::-webkit-scrollbar{
    width: 5px;
}
.aside-frame::-webkit-scrollbar-track{
    background: #34475F;
    border-radius: 10px;
}
.aside-frame::-webkit-scrollbar-thumb{
    background: #607A98;
    border-radius: 10px;
}

/* Site styles */

.bg-dark{
    background-color: rgb(24, 24, 24) !important;
}

.text-white{
    color: #fff;
}

.flexbox{
    display: flex;
}

.justify-between{
    justify-content: space-between;
}

.justify-center{
    justify-content: center;
}

.justify-evenly{
    justify-content: space-evenly;
}

.hero-headline{
    font-size: 37px !important;
    font-weight: 700 !important;
}

.download_form{
    text-align: center;
}

.download_form > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.download_form > input{
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #ffffff;
    color: rgb(31, 31, 31);
    font-weight: 700;
    font-size: 18px;
    border-radius: 20px;
    text-transform: uppercase;
}

.download_form > div > label{
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

.download_form > div > input{
    width: 80%;
    padding: 10px 15px;
    background-color: #52525228;
    border: 2px #7c7c7c79 solid;
    border-radius: 10px;
    font-size: 18px;
    color: #eeeeee;
}

.success-message{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #51ff00;
}

.error-message{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #ff0000;
}

.shop-button{
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    border: none;
    border-radius: 20px;
    background-color: #FFF033;
    transition: 150ms ease-in-out;
}
.shop-button:hover{
    transform: scale(1.1);
}

.button-links{
    transition: 150ms ease-in-out;
    transform: scale(0.8);
}
.button-links:hover{
    transform: scale(0.9);
}

.books-show{
    flex-direction: row-reverse;
}

.loader{
    margin: 0 auto;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 3px #fff solid;
    border-top: 3px transparent solid;
    border-radius: 100%;
    animation: spin 0.7s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 991px) {
    .main-image{
        margin: 200px 0 0 -50px;
    }
}

@media screen and (max-width: 600px){
    .books-show{
        flex-direction: column !important;
    }
}
