.document {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    color: var(--black, #000);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-color-secondary);
    border: 1px solid var(--color-text-accent);
    color: var(--color-text-primary);
    border-radius: var(--border-radius);
}
.document:visited {
    color: var(--color-text-primary);
}
.view-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-form,
.funds-links-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.funds-links-container {
    width: 100px;
    flex-direction: column;
    align-items: center;
}
.view {
    width: 100%;
}
table,
.FondTable,
tr,
td {
    border: none;
    box-shadow: none;
}
.CodeShort {
    display: block;
    margin: 0px;
    width: 60px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
table {
    width: 100%;
    font-size: var(--search-default-font-size);
    line-height: var(--search-default-line-height);
}
.CodeRow > td:first-child {
    width: 50px;
    padding-right: 10px;
}
.Title {
    font-size: var(--title-books-font-size);
    line-height: var(--title-books-line-height);
}
.TitleCont {
    font-family: Roboto-Reg;
    font-weight: normal;
}
td[align="right"] > a,
td[align="right"] > span,
.d-none {
    display: none !important;
}
tr {
    margin-top: 5px;
    margin-bottom: 5px;
}
.hidden {
    display: none;
}
.elres-link {
    user-select: none;
    color: var(--color-text-accent);
    cursor: pointer;
}
#elres-popup {
    box-sizing: border-box;
    padding: 40px;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 30%;
    width: 50%;
    z-index: 110;
    border-radius: 5px;
    background-color: var(--color-text-secondary);
    box-shadow: 0px 0px 100px 2000px var(--black-30);
}
#elres-popup-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
}
#elres-popup-message p,
#elres-popup-message h3 {
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
}
#elres-popup-message p {
    font-size: var(--elres-popup-message-font-size);
    line-height: var(--elres-popup-message-line-height);
    font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: normal;
}
#elres-popup-message h3 {
    font-size: 1.3rem;
    line-height: 1.35rem;
}
#elres-popup-link {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.5rem;
}
#elres-popup-img {
    margin-bottom: 20px;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
    border: 10px solid var(--color-text-accent);
    box-shadow: 0px 5px 10px var(--border-shadow, rgba(0, 83, 164, 0.2));
}

/* menu icon */

#elres-popup-menu-icon {
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    cursor: pointer;
    padding: 20px 12px;
    user-select: none;
    z-index: 101;
    border-radius: var(--border-radius);
    background-color: var(--color-text-secondary);
}

#elres-popup-navicon {
    background: var(--color-text-accent);
    display: block;
    height: 2px;
    position: relative;
    width: 18px;
    background: var(--transparent-color);
}

#elres-popup-navicon:before,
#elres-popup-navicon:after {
    background: var(--color-text-accent);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
}

#elres-popup-navicon:before {
    transform: rotate(-45deg);
}

#elres-popup-navicon:after {
    transform: rotate(45deg);
}
@media (max-width: 800px) {
    .view-container {
        flex-wrap: wrap;
        justify-content: end;
    }
    .CodeRow {
        display: flex;
        flex-direction: column;
    }
    .order-form {
        margin-top: 15px;
    }
}
