.similar-books-container {
    overflow-x: auto;
    align-items: center;
}

.similar-book {
    width: 120px;
    display: block;
    text-decoration: none;
}

.similar-book-image {
    height: 160px;
}

.similar-book-image img {
    width: 100%;
    height: 100%;
}

.similar-book-title {
    font-size: 12px;
    color: black;
}
.ql-container {
    height: auto;
}
.ql-editor {
    min-height: 300px;
}
.footer {
    background-color: #F8F9FA;
    color: #1c2035;
    padding-block: 60px;
}
.footer__columns {
    display: flex;
    flex-wrap: wrap;
}
.footer__column {
    display: flex;
    flex-direction: column;
}
.footer__column--first {
    row-gap: 8px;
    margin-right: 140px;
}
.footer__column--second {
    row-gap: 12px;
    margin-right: 100px;
}
.footer__column--third {
    row-gap: 16px;
    margin-right: auto;
}
.footer__column--second,
.footer__column--third {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.footer__mail {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.footer__column-menu {
    display: flex;
    flex-direction: column;
}
.footer__form {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 364px;
}
.footer__form-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}
.footer__form-input {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: inherit;
    padding: 12px;
    border: 1px solid #0d0d0e;
    border-radius: 8px;
}
.footer__form-input::placeholder {
    color: #858585;
}
.footer__link {
    color: #858585;
}
.footer__form-submit {
    margin-top: 4px;
}
.footer__form-privacy {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer__privacy-input {
    appearance: none;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 1px solid #1c2035;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.footer__privacy-input::after {
    position: absolute;
    content: "";
    left: 5px;
    width: 6px;
    height: 12px;
    background-color: transparent;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.footer__privacy-input:checked {
    background-color: #1c2035;
}