:root {
    --theme-primary-color: #4D6A6D;
    --theme-primary-color-hover: #364A4C;
    --theme-secondary-color: #2F2E41;
    --theme-tetriary-color: #2A3B3C;
    --theme-text-semidark: #818181;
    --theme-text-light: #FAFAFA;
    --theme-background-color: #FEFEFE;
    --theme-placeholder-color: #C4C4C4;
    --theme-lighter-grey: #606060;
    --theme-dark-grey: #525252;
    --theme-text-dark: #272727;
    --viewer-dark-background: #373838;
    --viewer-footer-background: #F9F9F9;
    --viewer-semilight-grey: #F6F6F6;
    --readnet-orange: #E3984C;
    --old-background-color: #F7F3EB;
    --light-sepia: #EEECE3;
    --dark-theme-sub: #1F1F1F;
    --gift-color: #CD4D4D;
    --success-green: #367300;
    --error-red: #B81C23;
}

.preload * {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

html,
body {
    background: var(--theme-background-color);
    font-family: 'Roboto', sans-serif;
    height: 100%;
}

header {
    width: 100%;
    z-index: 20;
    background: var(--theme-background-color);
    transition: 0.8s ease;
}

body {
    display: flex;
    flex-direction: column;
}

body:not(.e-viewer):not(.page-404) {
    scroll-behavior: smooth;
}

.scroll-lock {
    overflow-y: hidden;
}

.scroll-header {
    box-shadow: 0 1px 12px 0px #00000026;
}

.scroll-header .nav-bar {
    margin: 1rem auto 1rem auto;
}

.container-1500 {
    max-width: 1500px;
    margin-bottom: 5rem;
    margin-top: 1rem;
    transition: 0.7s ease;
}

a:hover {
    text-decoration: none !important;
}

a:not([href]) {
    outline: none;
}

a[data-toggle="popover"] {
    cursor: pointer;
}

.cta_primary {
    display: inline-block;
    background-color: var(--theme-primary-color);
    color: var(--theme-text-light);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.33;
    border-radius: 26px;
    transition: all .2s ease-in-out;
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
    min-width: 150px;
}

.btn.cta_primary {
    /* padding: 13px 16px; */
    padding: 11px 16px;
}

.cta_secondary {
    display: inline-block;
    background-color: var(--theme-background-color);
    color: var(--theme-primary-color);
    border: 2px solid var(--theme-primary-color);
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.33;
    border-radius: 20px;
    transition: all .2s ease-in-out;
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.08);
}

.cta_secondary.hh-bb-btn svg {
    fill: var(--theme-primary-color);
}

.cta_fixed_height {
    height: 46px;
}

.cta_primary:hover:not([disabled]),
.cta_secondary:hover:not([disabled]) {
    color: var(--theme-text-light);
    background-color: var(--theme-primary-color-hover);
}

.cta_secondary:hover:not([disabled]) {
    border-color: var(--theme-primary-color-hover);
}

.cta_secondary:hover:not([disabled]).hh-bb-btn svg, .cta_primary:active:not([disabled]).hh-bb-btn svg {
    fill: var(--theme-text-light);
}

.cta_primary:active:not([disabled]),
.cta_secondary:active:not([disabled]) {
    color: var(--theme-text-light);
    background-color: var(--theme-tetriary-color);
}

.cta_secondary:active:not([disabled]) {
    border-color: var(--theme-tetriary-color);
}

.textfield-primary {
    height: auto;
    color: var(--theme-primary-color);
    border-radius: 16px;
    padding: 12px 16px;
    line-height: 1.5;
}

.checkbox-primary input {
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .16);
    transition: all .25s;
    -webkit-appearance: none;
    cursor: pointer;
}

.checkbox-primary label {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 1.3rem;
    margin-top: 7.7px;
    cursor: pointer;
}

.checkbox-primary input:checked {
    background-color: var(--theme-secondary-color);
    border: 1px solid var(--theme-secondary-color);
}

.checkbox-primary input:checked:after {
    color: #ffffff;
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    position: relative;
    top: 17%;
    left: 15%;
}

.form-check:not(.form-check-inline) {
    display: flex;
    align-items: center;
    margin-bottom: 1.05rem;
}

.radio-primary {
    background-color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 16%);
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: 0;
}

.radio-primary+label {
    position: relative;
    top: 2px;
    cursor: pointer;
    margin-left: 1.3rem;
}

.radio-primary:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    position: relative;
    top: 25%;
    left: 25%;
    background-color: #fff;
}

.radio-primary:checked:after {
    background-color: var(--theme-tetriary-color);
}

.form-check-inline .radio-primary+label {
    margin-left: .5rem;
}

.theme-select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM2NTY1NjUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tZG93biI+PHBvbHlsaW5lIHBvaW50cz0iNiA5IDEyIDE1IDE4IDkiPjwvcG9seWxpbmU+PC9zdmc+");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: 1.05em auto, 100%;
    background-color: transparent;
    padding-left: 16px;
    padding-right: 30px;
    border-radius: 16px;
}

.form-group label:not(.errorField) {
    font-weight: 500;
    line-height: 1.33;
    color: var(--theme-tetriary-color);
}

.form-group label .required,
.form-group label span {
    color: var(--red);
}

.theme-file-upload {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: dashed 2px var(--theme-primary-color);
    border-radius: 16px;
    padding: 15px 45px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--theme-tetriary-color);
    width: 100%;
}

.theme-file-upload span {
    margin-left: auto;
}

.theme-file-upload svg {
    margin-left: 11px;
    margin-right: auto;
}

.maintenance-banner,
.announcement-banner {
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
}

.announcement-banner p {
    margin-bottom: 0;
}

.notification.alert {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    width: 100%;
    z-index: 5;
    transition: all .3s ease-in-out;
}

.notification.alert.dismissed {
    transform: translateY(150px);
}

.nav-bar {
    margin: .9rem auto 1rem auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 820px;
    transition: all .2s ease-in-out;
}

.mobile-nav-bar {
    padding: 1rem .85rem;
    margin-bottom: 0;
}

.mobile-nav-bar .logo-div {
    margin-left: auto;
    margin-right: auto;
}

.mobile-nav-bar .logo-div a {
    margin-left: -15px;
}

.mobile-nav-bar .logo-div span {
    display: block;
    max-width: max-content;
    font-size: 12px;
    margin-top: -12px;
    margin-left: auto;
    color: var(--theme-primary-color);
}

#mobile-search-open {
    margin-top: 4px;
}

.loginNav-bar {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
}

.navbarItem {
    text-decoration: none;
    color: var(--theme-primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-right: 2.5vw;
}

.hello-div {
    font-size: 30px;
    margin-left: .5rem;
}

.hello-div p {
    margin-bottom: 0;
}

.hello {
    font-size: 30px;
    font-weight: 600;
    color: var(--theme-primary-color);
    line-height: 1.15;
}

.hello-sub {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-tetriary-color);
}

.navi-div {
    display: flex;
    align-items: center;
    margin-left: auto;
    z-index: 9;
}

.page-title {
    text-decoration: none;
    color: var(--theme-primary-color);
    font-size: 18px;
    font-weight: 500;
    margin-right: 2.5vw;
}

.page-header-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: var(--theme-primary-color);
    margin-bottom: 0;
}

.page-simple-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--theme-primary-color);
}

.page-simple-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.33;
    color: var(--theme-lighter-grey);
}

.everified-container img {
    width: 90%;
    max-width: 400px;
    margin-top: -4rem;
}

.user-favicon,
.page-title {
    margin-top: 4px;
}

.user-favicon,
.page-title:not(.theme-active) {
    margin-bottom: 4px;
}

.page-title:not(.theme-active) {
    transition: all .15s ease-in-out;
}

.page-title:not(.theme-active):hover {
    margin-bottom: 0;
    border-bottom: 4px solid var(--theme-primary-color);
}

.user-favicon a {
    cursor: pointer;
}

.user-favicon a img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--theme-placeholder-color);
}

.user-favicon .dropdown-menu.show {
    top: 19px !important;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding-left: 5px;
    padding-right: 5px;
    border: none;
}

.user-favicon .dropdown-item {
    border-radius: 12px;
    transition: all .2s ease-in-out;
}

.user-favicon .logout-dropdown-item:hover {
    background-color: var(--danger);
    color: var(--theme-text-light);
}

.assistance-title {
    display: none;
}

.search-field {
    display: flex;
    align-items: center;
    border: 1px solid var(--theme-secondary-color);
    border-radius: 26px;
    background: transparent;
    margin-left: 3.5rem;
    margin-right: auto;
    padding: 8px 22px;
    font-size: 14px;
    width: 90%;
    max-width: 500px;
}

.search-field input {
    border: none;
    width: 100%;
}

.search-field a {
    display: none;
    cursor: pointer;
}

.theme-active {
    border-bottom: 4px solid var(--theme-tetriary-color);
}

#sidebar {
    width: 75%;
    max-width: 400px;
    position: fixed;
    top: 0;
    left: -500px;
    height: 100vh;
    z-index: 999;
    background: #fff;
    color: var(--theme-dark-grey);
    transition: all .3s ease-in-out;
    overflow-y: auto;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
}

#sidebar.active {
    transform: translateX(500px);
}

#sidebar .sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(77, 106, 109, 0.25);
    margin-bottom: 1.5rem;
}

.inner-sidebar li a {
    margin-left: 18px;
}

#sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-tetriary-color);
}

#sidebar ul li a span {
    margin-top: 2px;
}

#sidebar ul li.active {
    background-color: rgba(77, 106, 109, 0.15);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-right: 10px;
}

#sidebar .account-link img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.sidebar-dropdown {
    border-top: 1px solid rgba(77, 106, 109, 0.25);
    border-bottom: 1px solid rgba(77, 106, 109, 0.25);
    margin-top: 1.5rem;
    padding-top: 8px;
    padding-bottom: 8px;
}

.sidebar-dropdown ul {
    margin-left: 18px;
}

.mobile-search-dropdown {
    position: fixed;
    top: -500px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 998;
    transition: all .3s ease-in-out;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
    background-color: var(--theme-background-color);
    padding: 1rem;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.mobile-search-dropdown.active {
    transform: translateY(500px);
}

.mobile-search-input {
    border: 1px solid var(--theme-secondary-color);
    border-radius: 26px;
    background: transparent;
    padding: 12px 16px;
    font-size: 12px;
    width: 100%;
}

.sidebar-overlay {
    position: fixed;
    width: 120vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
    z-index: -2;
    top: 0;
    opacity: 0;
    transition: all .5s ease-in-out;
    margin-left: -30px;
    margin-right: -30px;
}

.sidebar-overlay.active {
    z-index: 997;
    opacity: 1;
}

.spacer {
    border-bottom: 1px solid rgba(230, 221, 201, 0.46);
    width: 80%;
    margin: auto;
}

.library-row {
    overflow: hidden;
}

.library {
    margin-top: 2vw !important;
    display: flex;
    flex-wrap: wrap;
}

.my-library .col {
    max-width: 210px;
    min-height: calc(344px + 2rem);
}

.library a {
    text-decoration: none;
}

.product-col {
    display: inline-block;
    position: relative;
    max-width: 180px;
    height: max-content;
}

.search-container .my-library .col,
.favorites-container .my-library .col {
    min-height: calc(373px + 2rem);
}

.my-library .product-col {
    width: 170px;
}

.book-thumbnail {
    position: relative;
}

.book-thumbnail .own-it-outer-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.book-thumbnail .own-it-outer-div .own-it-inner-div {
    position: absolute;
    top: 1.7rem;
    left: 1.7rem;
    box-shadow: 1px 1px 5px 0px #00000059;
    background: white;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 7px;
}

.book-thumbnail .own-it-outer-div .own-it-inner-div p {
    color: var(--theme-text-light);
}

.thumbnail-overlay {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
    pointer-events: none;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.thumbnail-overlay-buttons-container {
    position: relative;
    width: 160px;
}

.thumbnail-overlay-buttons {
    position: absolute;
    top: 250px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 5px;
    background-color: var(--theme-primary-color);
    border-radius: 8px;
    width: 100%;
    transition: none;
}

.thumbnail-overlay-buttons .view-link {
    color: var(--theme-background-color);
}

.thumbnail-overlay-buttons .view-link.full-vl {
    display: block;
    text-align: center;
}

.product-col:hover .thumbnail-overlay {
    background-color: rgba(0, 0, 0, .12);
    margin-left: -5px;
    margin-top: -5px;
    transition: opacity .3s ease-in-out;
    opacity: 1;
}

.book-thumbnail img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.thumbnail-info {
    text-align: center;
}

.thumbnail-title {
    font-weight: bold;
    color: var(--theme-tetriary-color);
    line-height: 1.33;
    margin-top: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.thumbnail-description {
    font-size: 14px;
    color: var(--theme-tetriary-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.thumbnail-price {
    font-weight: bold;
    line-height: 1.33;
    color: var(--theme-primary-color);
}

.thumbnail-category {
    padding: 3px;
    border-radius: 6px;
    margin-top: 4px;
}

.thumbnail-category a {
    display: block;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}

.thumbnail-category a:hover {
    color: rgba(0, 0, 0, .85);
}

.category-header-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 22px;
}

.category-header-row span {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: var(--theme-tetriary-color);
}

.category-header-row .mr-2 {
    font-weight: normal;
}

.category-header-row a {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: var(--theme-tetriary-color);
}

.category-header-row a svg {
    transition: all .2s ease-in-out;
}

.category-header-row a:hover svg {
    transform: translate(5px, 0);
}

.category-header-row a:hover span {
    text-decoration: underline;
}

.library .category-books-row .col {
    padding-left: 0;
    padding-right: 0;
    margin-right: min(6%);
    max-width: max-content;
    max-height: calc(344px + 2rem);
}

.library .category-books-row .col:last-child {
    margin-right: 0;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 2rem;
    margin-left: 4rem;
}

.breadcrumb p {
    margin: 0;
}

.footer {
    margin-top: auto;
    background-color: var(--theme-secondary-color);
    color: var(--theme-text-light);
    padding: 2rem 1rem 1rem 1rem;
}

.footer a {
    color: var(--theme-text-light);
    transition: all .2s ease-in-out;
}

.footer .social-icons a svg {
    transition: all .2s ease-in-out;
}

.footer .social-icons a:hover svg {
    filter: brightness(1.3);
}

.footer a:hover:not(.cta_secondary):not(.alertbox) {
    color: var(--readnet-orange);
}

.footer .top-footer {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    font-size: 18px;
}

.top-footer .row {
    width: 100%;
}

.footer .top-footer .cta_one {
    font-size: 18px;
}

.footer .copyright-footer {
    position: relative;
    align-items: flex-end;
    text-align: center;
}

.copyright-footer .img-div img {
    width: 160px;
}

.copyright-footer .qmail {
    margin-top: 10px;
}

.footer-readnet-logo {
    position: absolute;
    right: 0;
    bottom: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--theme-secondary-color);
    color: var(--theme-text-light);
    width: 100%;
    padding: 1rem;
    z-index: 500;
    box-shadow: 0 -10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
    transition: transform .3s ease-in-out;
}

.cookie-banner.accepted-cookies {
    transform: translateY(200px);
}

.cookie-banner .d-flex {
    max-width: max-content;
    margin: auto;
}

.cookie-banner img {
    width: 50px;
    margin-right: 6px;
    margin-top: -8px;
}

.cookie-banner .btn {
    margin-left: 4vw;
}

.cookie-banner a,
.cookie-banner a:hover {
    color: var(--theme-text-light);
    text-decoration: underline !important;
}

.footer .copyright-footer .copyright-text {
    font-size: 18px;
    opacity: .26;
    margin-right: 1rem;
}

textarea:focus,
input:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0 30px var(--theme-background-color) inset !important;
    -webkit-box-shadow: 0 0 0 30px var(--theme-background-color) inset !important;
}

.not-found-div {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    width: 80%;
}

.not-found-div svg {
    opacity: .35;
}

.not-found-title {
    font-size: 26px;
    font-weight: bold;
    color: var(--theme-primary-color);
    line-height: 1.5;
    margin-top: .75rem;
    margin-bottom: 0;
}

.not-found-subtitle {
    font-size: 18px;
    font-weight: 500;
}

.not-found-link {
    text-decoration: underline;
}

.search-container .header-row {
    margin-bottom: 2rem;
}

.search-header {
    margin-left: -45px;
}

.search-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    color: var(--theme-primary-color);
    margin-bottom: 0;
}

.search-subtitle {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    opacity: .45;
    margin-bottom: 0;
}

.page-404,
.page-404 body,
.page-404 .container-404,
.page-404 .container-404 .row {
    height: 100%;
}

.svg-404 {
    width: 80%;
    height: 80%;
    max-width: 400px;
    max-height: 400px;
}

.modal-content {
    border: none;
    border-radius: 16px;
}

.modal-header {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.modal-footer {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.modal-header.border-none {
    border: none;
}

.rdh-notif-div {
    display: flex;
    align-items: center;
    position: fixed;    
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    background-color: var(--theme-primary-color);
    color: #ffffff;
    padding: 5px 5px 5px 15px;
    border-radius: 16px;
    width: 90%;
    max-width: max-content;
    z-index: 5;    
    box-shadow: 0 1px 12px 0px #00000026;
    transition: bottom .4s ease-in-out;
}

.rdh-notif-div.shown {
    bottom: 100px;
}

#close-rdh {
    background-color: rgb(73 124 130);
    border-radius: 50%;
}

.rdh-end-div {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--body-background);
    padding: 48px;
    border-radius: 26px;
    box-shadow: 0 1px 12px 0px #00000026;
    width: 90%;
    max-width: 650px;
    text-align: center;
    z-index: 16;
}

.rdhed-title {
    font-size: 22px;
    font-weight: bold;
}

.rdhed-svg-div img, .rdhed-svg-div svg {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 0 auto;  
}

.sm-text {
    font-size: 12px;
}

.rdh-end-overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--footer-background);    
    z-index: 15;    
}

.grovio-logo {
    width: 126px;
}

@media only screen and (min-width: 900px) {
     ::-webkit-scrollbar {
        width: 10px;
        height: 10px;
        background: var(--theme-background-color);
    }
     ::-webkit-scrollbar-track {
        background: transparent;
    }
     ::-webkit-scrollbar-thumb {
        background: var(--theme-primary-color);
        border-radius: 10px;
    }
}

@media only screen and (max-width: 900px) {
    .accordion-section .panel-body p {
        font-size: 15px !important;
    }
    .accordion-section .panel-default .panel-title a {
        font-size: 15px !important;
    }
    .maintenance-banner,
    .announcement-banner {
        font-size: 14px;
    }

    .scroll-header .loginNav-bar {
        margin: 0;
    }
    .cta_primary,
    .theme-select {
        font-size: 14px;
    }
    .cta_primary_lgf {
        font-size: 18px;
    }
    .cta_secondary {
        font-size: 14px;
        border-width: 1px;
    }
    .checkbox-primary input {
        width: 24px;
        height: 24px;
    }
    .checkbox-primary label {
        font-size: 14px;
        margin-left: 1rem;
        margin-top: 7px;
    }
    .checkbox-primary input:checked:after {
        top: 11%;
        left: 11%;
    }
    .textfield-primary {
        font-size: 14px;
        line-height: 1.33;
    }
    .form-group label,
    .textfield-primary-div label,
    .textfield-primary-label {
        font-size: 14px;
    }
    .theme-file-upload {
        border-width: 1px;
        font-size: 14px;
        line-height: 1.33;
    }
    .theme-file-upload svg {
        width: 14px;
        height: 14px;
    }
    .top-navi-div {
        display: flex;
        align-items: center;
    }
    .desktop-menu-icon {
        display: none;
    }
    .hello-div {
        font-size: 20px;
    }
    .page-simple-title {
        font-size: 18px;
    }
    .page-simple-subtitle {
        font-size: 14px;
    }
    .library a {
        margin-left: auto;
        margin-right: auto;
    }
    .my-library .col {
        min-height: calc(300px + 3.5rem);
    }
    .category-container .my-library .col {
        min-height: calc(300px + 2.5rem);
    }
    .my-library .product-col,
    .product-col {
        width: 150px;
    }
    .search-container .my-library .col,
    .favorites-container .my-library .col {
        min-height: calc(340px + 2rem);
    }
    .navbarItem {
        display: none;
    }
    .loginNav-bar {
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
    }
    .loginNav-bar .navi-div {
        margin-left: auto;
    }
    .loginNav-bar .hello-div {
        margin: 0 auto;
    }
    .rbooks-logo {
        width: 130px;
    }
    .thumbnail-title {
        font-size: 14px;
    }
    .thumbnail-description {
        font-size: 14px;
    }
    .thumbnail-info {
        padding: 5px 10px;
    }
    .thumbnail-category {
        margin-top: 0;
    }
    .book-thumbnail .own-it-outer-div .own-it-inner-div svg {
        width: 24px;
    }
    .book-thumbnail .own-it-outer-div .own-it-inner-div p {
        font-size: 12px;
    }
    .breadcrumb {
        font-size: 14px;
        margin-left: 0;
    }
    .footer {
        padding: 2rem 1rem 1rem 1rem;
    }
    .top-footer .row {
        font-size: 14px;
        width: unset;
    }
    .footer .copyright-footer .copyright-text {
        display: block;
        font-size: 14px;
        width: 100%;
    }
    .copyright-footer .cf-left {
        font-size: 14px;
    }
    .footer-readnet-logo {
        position: inherit;
        display: block;
        margin-right: auto;
        max-width: max-content;
    }
    .cookie-banner {
        font-size: 14px;
    }
    .cookie-banner .btn {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
    .gj-picker {
        z-index: 10 !important;
    }
    .not-found-div {
        top: 30%;
    }
    .not-found-div svg {
        width: 70px;
        height: 70px;
    }
    .not-found-title {
        font-size: 18px;
        line-height: 1.33;
    }
    .not-found-subtitle {
        font-size: 16px;
    }
    .not-found-link,
    .search-subtitle {
        font-size: 14px;
    }
    .search-header {
        margin-left: 0;
    }
    .search-title {
        font-size: 18px;
    }
    .container-1500 {
        margin-top: 3rem;
    }

    .rdh-end-div {
        padding: 24px;
    }

    .rdh-end-div p:not(.rdhed-title) {
        font-size: 14px;
    }

    .rdhed-title {
        font-size: 20px;
    }

    .rdhed-svg-div img, .rdhed-svg-div svg {
        max-width: 200px;
    }
}

@media (max-width: 640px) {
    .thumbnail-category a {
        font-size: 10px;
    }
}

@media (max-width: 585px) {
    .loginNav-bar {
        margin: 0;
        padding-top: .6rem;
        padding-bottom: .6rem;
    }
    .rbooks-logo {
        width: 150px;
    }
}

@media only screen and (max-width: 420px) {
    .loginbutton,
    .loginbuttonFill {
        padding: 13px 20px;
    }
    .rbooks-logo {
        width: 130px;
    }
}

.footerBtn {
    background: transparent;
}

.heading {
    font-weight: 600;
    color: #4D6A6D;
    font-size: 36px;
}

.heading.heading-title {
    font-size: 70px;
}

.accordion-section {
    margin-bottom: 5em;
}

.accordion-section .panel-default>.panel-heading {
    border: 0;
    border-bottom: 1px solid #4D6B6D;
}

.accordion-section .panel-default .panel-title a {
    display: block;
    text-align: initial;
    font-size: 18px;
    color: var(--theme-tetriary-color);
}

.acc-btn span {
    margin-right: 20px;
}

.acc-btn svg {
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -ms-transition: -ms-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}

.acc-rotate-img {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion-section .panel-title {
    margin: 0;
}

.accordion-section .panel-body p {
    text-align: left;
}

.faqContainer, .aff-container {
    max-width: 750px;
}

.aff-container input {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.affc-title {
    color: var(--theme-primary-color);
    font-size: 24px;
    font-weight: 600;
}

.affc-title a {
    color: #000000;
}

.aff-lnk-result, .aff-cnt-result {
    display: none;
}

.aff-lnk-result, .aff-cnt-result {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    box-shadow: 0 8px 15px 0 rgb(0 0 0 / 8%);
    border-radius: 26px;
    padding: 20px;
}

.error-text {
    color: var(--red);
    font-weight: 600;
}

#get_aff_lnk .error-text {
    display: none;
}

.rgb-cp-success {
    display: none;
    font-size: 12px;
    color: var(--success-green);
}

@media (max-width: 667px) {
    .faqContainer {
        width: 100%;
    }
}

@media only screen and (max-width: 380px) {
    .my-library .product-col,
    .product-col {
        width: 120px;
    }
    .thumbnail-title {
        font-size: 12px;
    }
    .thumbnail-description {
        font-size: 12px;
    }
    .thumbnail-category a {
        font-size: 9px;
    }
}

@media only screen and (max-width: 900px) and (orientation: landscape) {
    .my-library .col {
        min-height: calc(340px + 2rem);
    }
    .search-container .my-library .col,
    .favorites-container .my-library .col {
        min-height: calc(360px + 2rem);
    }
    .library .category-books-row .product-container-col:nth-child(odd) {
        margin-right: max(45px);
    }
    .library .category-books-row .product-container-col:nth-child(even) {
        margin-right: max(45px);
    }
    .cookie-banner .btn {
        display: block;
        width: auto;
        margin-left: 12px;
        margin-top: 0;
    }
}

.leave_discount_alert {
    text-align: center;
    z-index: 8;
    margin-top: 9em;
    position: absolute;
    width: 100%;
    padding: 0 1em;
}

@media(max-width:810px) {
    .leave_discount_alert {
        margin-top: 7em;
        font-size: 14px;
    }
}

.alertbox {
    margin: 0 0 0 5px;
    /* padding: 3px 3px 3px 8px; */
    /* background-color: #008105; */
    font-size: 12px;
    /* border-top-right-radius: 5px;
    border-bottom-right-radius: 5px; */
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .4px;
    position: relative;
    white-space: nowrap;
    top: -3px;

    background-color: #E0F4FF;
    color: #008DDC !important;
    border-radius: 5px;
    padding: 3px 8px 3px 8px;
}

/* .alertbox:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 5px solid #008105;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
} */

.grecaptcha-badge {
    visibility: hidden;
    z-index: -500;
}

@media(max-width:421px) {
    .alertbox:before {
        content: "";
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-right: 5px solid transparent;
    }
    .alertbox {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
}

@media(max-width:992px) {
    .footer .top-footer {
        margin-bottom: 0;
    }
}

ul.ks-cboxtags {
    list-style: none;
    padding: 20px;
    text-align: center;
}

ul.ks-cboxtags li {
    display: inline;
}

ul.ks-cboxtags li label {
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid rgb(111 111 111 / 30%);
    color: #6b6b6b;
    border-radius: 25px;
    white-space: nowrap;
    margin: 7px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}

ul.ks-cboxtags li label {
    padding: 8px 12px;
    cursor: pointer;
    text-transform: capitalize;
}

ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label,
ul.ks-cboxtags li label:hover {
    border: 2px solid var(--theme-primary-color);
    background-color: var(--theme-primary-color);
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
    display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.cu-page-title span {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--theme-primary-color);
    margin-left: 8px;
}

.cu-page-title {
    display: flex;
    align-items: center;
    margin-left: 16px;
    margin-bottom: 4rem;
}

.header-href {
    font-size: 18px;
    font-weight: bold;
    color: var(--theme-tetriary-color);
}

.last-mb-5 {
    margin-bottom: 5em;
}

.gp_beta-badge {
    font-size: 14px;
    max-width: max-content;
    padding: 8px 20px;
    margin: auto;
    background-color: #D8E0F4;
    color: #225CEB;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.qp_bb-icon {
    margin-left: 6px;
}

@media only screen and (max-width: 900px) {
    .affc-title {
        font-size: 18px;
    }

    .header-href {
        font-size: 16px;
    }

    .popover-body {
        font-size: 14px;
    }

    .gp_beta-badge {
        font-size: 12px;
        text-align: center;
    }
}