@font-face {
    font-family: 'Inter';
    src: url('../themes/your_theme/assets/fonts/Inter-Bold.woff2') format('woff2'),
        url('../themes/your_theme/assets/fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../themes/your_theme/assets/fonts/Inter-Black.woff2') format('woff2'),
        url('../themes/your_theme/assets/fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../themes/your_theme/assets/fonts/Inter-Light.woff2') format('woff2'),
        url('../themes/your_theme/assets/fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../themes/your_theme/assets/fonts/Inter-Regular.woff2') format('woff2'),
        url('../themes/your_theme/assets/fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../themes/your_theme/assets/fonts/Inter-Medium.woff2') format('woff2'),
        url('../themes/your_theme/assets/fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../themes/your_theme/assets/fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../themes/your_theme/assets/fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



body {
    margin: 0;
    padding: 0;
    color: #4F4F4F;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #F7F7FF;
}

* {
    box-sizing: border-box;
}



::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 6px;
    height: 0px;
    background-color:#99C8FF;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: -7px 0px 46px 1px #c7c7c7;
    background: rgba(196, 196, 196, 0.4);
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #99C8FF;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: gray;
  }
  
  ::-webkit-resizer {
    background-repeat: no-repeat;
    width: 7px;
    height: 0px;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }


img {
    max-width: 100%;
    height: auto;
}

button {
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

.container {
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    width:990px;
}

.container-md {
    max-width: 676px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.container-sm {
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    max-width: 229px;
}

/* header-page */

.header-page {
    padding: 10px 0;
    background: #FFFFFF;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    height: 70px;
    align-items: center;
    border-bottom:1px solid #99C8FF ;
}

.header-page__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header-page__logo-link {
    margin-right: 38px;
}


.navigation {

}

.navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navigation-list__item {
    margin-right: 36px;

}

.navigation-list__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 1px 0 0;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
    box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
}

.navigation-list__link:hover {
    color: #566895;
}

.btn-group {
    display: flex;
    align-items: center;
    margin-left: 33px;
}

.btn-ghost {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    text-decoration: none;
    margin-right: 33px;
    transition: color 0.3s ease-in-out;
}

.btn-ghost:hover {
    color: #566895;
}

.btn-primary {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
    background: #467AFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px;
    text-align: center;
    display: table;
    text-decoration: none;
    width: 146px;
    max-width: 100%;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #2965ff;
}


.sub-menu__box {
    padding: 30px 0;
    display: flex;
}

.sub-menu {
    display: none;
}

.sub-menu__right {
    width: 174px;
}

.sub-menu__title {

}

.sub-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-wrap: wrap;
    height: 170px;
}

.sub-menu-list__item {
    margin: 0 24px 16px 0;
}

.navigation-list__item-dropdown {
    display: flex;
    align-items: center;
}

.navigation-list__icon {
    margin-left: 3px;
    margin-top: 2px;
}

.sub-menu-list__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
    z-index: 11;
}

.sub-menu-list__link:hover {
    color: #566895;
}

/* header-page end */

/* search-form */


.search-form-box {

}

.search-form {

}

.search-form__btn {
    position: absolute;
    left: 9px;
    top: 8px;
}

.search-form__field-box {
    position: relative;
}

.search-form__field {
    padding: 7px 7px 7px 35px;
    background: #F6F7FF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 3px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    width: 193px;
    max-width: 100%;
}

.search-form__field:focus {
    border-color: #467AFF;
}

.search-form__field:placeholder {
    color: rgba(79, 79, 79, 0.5);
}

/* search-form end */

/* page */

.page {
    margin-top: 110px;
    margin-bottom: 40px;
    min-height: 55vh;
}
.page {
    margin-top: 70px;
}
.page-row  {
    display: flex;
    align-items: flex-start;
}

.page-inner-container {
    width: 716px;
}

/* page end */


/* content */

.content {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 30px 20px 40px;
    width: 716px;
}

.search-word-box {

}

.search-word {

}

.search-word__wrap {
    display: flex;
    align-items: center;
}

.search-word__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    flex-shrink: 0;
}

.search-word__field {
    background: #F6F7FF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 3px;
    padding: 7px 11px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    width: 100%;
    margin-left: 34px;
    outline: none;
}

.search-word__field:focus {
    border-color: #467AFF;
}


.categories-box {
    background: #F6F7FF;
    border-radius: 3px;
    padding: 22px 19px;
    display: flex;
    margin-top: 30px;
}

.categories-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.categories-list:nth-child(2) {
    margin-left: 70px;
}

.categories-list:nth-child(3) {
    margin-left: 80px;
}

.categories-list__item {
    padding-left: 12px;
    position: relative;
}

.categories-list__item::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    left:0;
    top:50%;
    transform: translateY(-50%);
    background: #467AFF;
}

.categories-list__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 36px;
    color: #566895;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}


.categories-list__link:hover {
    color: #467AFF;
}

.categories-link {
    margin-left: auto;
    width: 208px;
    margin-top: 15px;
}

/* content end */

/* sidebar */

.sidebar {
    width: 229px;
    margin-left: 15px;
}

.sidebar--padding {
    padding-top: 18px;
}

.box-list-items {

}

.box-list-items__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    margin: 30px 0 0 0;
}


.list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-items__value {
    margin-top: 15px;
}


/* sidebar end*/

/* book */

.book--small {

}

.book__img {

}

.book__link {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.book__link img{
    height: 216px;
}

.book__show {
    display: block;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}

.book--small {
    display: flex;
}


.book--small .book__info {
    margin-left: 10px;
}

.book--small .book__link {
    width: 90px;
    height: 131px;
    border-radius: 3px;
}

.book--small .book__show {
    width: 90px;
    height: 131px;
    flex-shrink: 0;
    object-position: bottom;
}

.list-items__value:hover .book__show {
    transform: scale(1.05);
}


.book--small .book__categories {
    margin-bottom: 7px;
}

.book--small .book__author {
    margin-top: 7px;
}

.book--small .book__name {
    width: 98px;
    display: block;
    transition: color 0.3s ease-in-out;
    word-break: break-word;
}


.book__name:hover {
    color: #2965ff;
}

.book__categories {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
}

.book__name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    text-decoration: none;
}

.book__author {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: #4F4F4F;
}

/* book end */

/* slider-box */

.slider-box {
    margin-top: 30px;
}

.slider-box--mb {
    margin-bottom: 30px;
}

.slider-heading {
    margin: 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #F6F7FF;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    max-width: 637px;
    margin-left: auto;
    margin-right: auto;
}

.slider-box-wrap {
    max-width: 637px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.slider-book-btns {
   
}

.slider-book-btn__left {
    top: 100px;
    position: absolute;
    left: -25px;
    cursor: pointer;
}

.slider-book-btn__right {
    top: 100px;
    position: absolute;
    right: -25px;
    cursor: pointer;
}

.book--medium {

}

.book--medium .book__categories {
    margin-top: 10px;
}

.book--medium .book__name {
    margin-top: 7px;
    display: block;
}

.book--medium .book__author{
    margin-top: 7px;
}

.slider-book {
    margin-top: 15px;
}

.book--medium:hover .book__show {
    transform: scale(1.05);
}


/* slider-box end*/


/* box-info */

.box-info {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(86, 104, 149, 0.1);
    box-sizing: border-box;
    border-radius: 5px;
    margin-top: 30px;
    padding: 40px;
}

.box-info__title {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
}

.box-info__title--border {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(86, 104, 149, 0.1);
}

.tags-box {

}

.tag {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #566895;
    text-decoration: none;
    padding: 5px 10px;
    background: #FFFFFF;
    border: 1px solid rgba(86, 104, 149, 0.1);
    border-radius: 3px;
    margin: 3px;
    margin-left: 0;
    display: inline-block;
}


.tag:hover {
    color: #467AFF;
}

.box-info p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #4F4F4F;
}

.box-info ul li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #566895;
}


/* box-info end*/


/* footer-page */

.footer-page {
    background: #566895;
    padding: 30px 0 14px;
}

.footer-page__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-page__title::after {
    content: '';
    width: 389px;
    max-width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    display: block;
    margin-top: 15px;
}


.footer-page__row {
    display: flex;
}

.footer-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 224px;
}

.footer-nav-list:nth-child(2) {
    margin-left: 40px;
}

.footer-nav-list__item {
    margin-top: 15px;
}

.footer-nav-list__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-nav-list__link:hover {
    color: #fff;
}

.groups-action {
    margin-left: 60px;
    margin-top: -20px;
}

.link-action {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    border-radius: 3px;
    height: 50px;
    width: 228px;
}

.link-action:hover {
    background-color: #556ca5;
}

.link-action__icon {
    margin-right: 8px;
    margin-left: 7px;
}

.link-action__text {

}

.link-action:nth-child(2) {
    margin-top: 15px;
}

.link-action:nth-child(2) .link-action__icon  {
    margin-right: 10px;
}


.social-box {
    margin-top: -22px;
    margin-left: 55px;
}

.social-box__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 15px;
}

.social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.social-list__item {
    margin-right: 15px;
}

.social-list__link {

}

.social-list__icon {

}

.alert {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
}

.alert-value {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
    padding: 4px 8px;
    background: #EC4141;
    border-radius: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    width: 40px;
    margin-right: 9px;
}

.alert-info {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 180px;
}

.line-information {
    padding-top: 18px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
}


/* footer-page end */

/* breadcrumb */

.breadcrumb ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li a,
.breadcrumb li span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: underline;
    color: rgba(79, 79, 79, 0.7);
}

.breadcrumb li span {
    text-decoration: none;
}

.breadcrumb li:not(:first-child):before {
    content: "/";
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 0.7);
    margin-left: 4px;
    margin-right: 4px;
}


/* breadcrumb end */

/* catalog */

.catalog-title {
    margin: 15px 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #566895;
    padding-bottom: 5px;
    border-bottom: 1px solid #99C8FF;
}


.list-genres {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.list-genres__item {
    margin-right: 28px;
    margin-bottom: 17px;
}

.list-genres__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    text-decoration-line: underline;
    color: #566895;
}

.sort-head {
    background: #FFFFFF;
    border-radius: 5px;
    display: flex;
    align-items: center;
}


.sort-head__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    margin-left: 12px;
    margin-right: 15px;
}

.sort-head__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(79, 79, 79, 0.7);
    padding: 13px 15px;
    text-decoration: none;
    margin-left: 3px;
    transition: 0.3s ease-in-out background;
}

.sort-head__link.is-active,
.sort-head__link:hover  {
    background: #F0F2FF;
}

/* catalog end*/


/* books-list */

.books-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.books-list__item {
    margin-top: 15px;
    padding: 15px;
    background: #FFFFFF;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out;
}

.books-list__item:hover {
    box-shadow: 0 4px 12px rgb(0 20 67 / 12%);
}

.book-card {
    display: flex;
    align-items: flex-start;
}

.book-card__show {
    width: 148px;
    
}

.book-card__link {
    border-radius: 3px;
    overflow: hidden;
    width: 148px;
    height: 216px;
    display: block;
}

.book-card__link img {
    width: 148px;
    height: 216px;
    display: block;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}

.book-card__link:hover img {
    transform: scale(1.05);
}

.book-card__icon {
    width: 14px;
    height: 14px;
    margin-left: 6px;
    margin-right: 6px;
    display: block;
}

.book-card__icon-wrap {
    position: relative;
}

.book-card__icon-wrap:after {
    content: '';
    width: 1px;
    height: 140%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.book-card__status {
    border-radius: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
    display: flex;
    height: 31px;
    align-items: center;
    width: 148px;
    margin-right: 19px;
}

.book-card__status--ready {
    background: #49BB03;
}
.book-card__status--buy_b {
    background: #467AFF;
    border-radius: 8px;
    height: 23px;
}
.book-card__status--process {
    background:  #467AFF;
}

.book-card__status-values {
    margin-left: 6px;
}

.book-card__status-values span {
    display: block;
}


.book-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book-card__author {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: #4F4F4F;
}

.library_ a{
  cursor: pointer;
}
.book-card__author a, .book__author a, .subscribtion-box__title a, .comment-head__name a, .book-card__status-values a{
    text-decoration: none;
    color: #4F4F4F;
}
.comment-head__name a{
    color: #566895;
}
.book-card__status-values a{
    color: #FFFFFF;
}
.book-card__info {
    margin-left: 15px;
    width: 100%;
}

.book-card__statistics {
    display: flex;
    align-items: center;
}


.book-card__reviews {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
    margin-left: 10px;
}

.book-card__rating {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    background: rgba(79, 79, 79, 0.5);
    border-radius: 3px;
    width: 33px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 5px;
}

.book-card__rating--m {
    background: #566895;
}

.book-card__rating--h {
    background: #49BB03;
}

.book-card__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.3s ease-in-out;
    max-width: 376px;
    display: block;
}

.book-card__title:hover {
    color: #467AFF;
}

.book-card__description,
.book-card__description p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    margin-top: 15px;
}

.book-card__more {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #566895;
    display: table;
    margin-left: auto;
    margin-top: 8px;
    text-decoration-skip: spaces;
}

.book-card__lines {
    width: 100%;
    height: 1px;
    background: #F6F7FF;
   
}

.book-card__present {
    margin-top: 16px;
    padding: 13px 0 21px;
    border-top: 1px solid #F6F7FF;
    border-bottom: 1px solid #F6F7FF;
}

.book-card__present span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
}

.book-card__present a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line:none;
    color: #566895;
}

.book-card__present a:hover{
    color: #467AFF;
}

.book-card__footer {
    margin-top: 15px;
    display: flex;
}

.book-card__action-user {
    display: flex;
    align-items: center;
}

.book-card__action-user img {

}

.book-card__action-user span {
    margin-left: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: rgba(79, 79, 79, 0.7);
}

.book-card__action-user--margin {
    margin-left: 30px;

}

.buy-action {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.discount {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: line-through;
    color: #EC4141;
}

.price {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    margin-left: 15px;
}

.buy {
    margin-left: 15px;
    display: table;
    background: #49BB03;
    border-radius: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    padding: 5px 28px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid  transparent;
    transition: all 0.3s ease-in-out;
}

.buy:hover {
    background-color: #fff;
    border-color: #49BB03;
    color: #49BB03;
}

/* books-list end*/

/* pagination */

.pagination {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
}

.pagination  li  a {
    margin: 0 5px;
    background: #FFFFFF;
    border: 1px solid #99C8FF;
    color: #4F4F4F;
    padding: 10px 16px;
    text-decoration: none;
    display: table;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    transition: background-color 0.3s ease-in-out;
}

.pagination .first a {
    border-radius: 3px 0px 0px 3px;
    margin-right: 0;
    border-right: 0;
}

.pagination .prev  {
    display: flex;
    align-items: center;
}

.pagination .prev a {
    margin-left: 0;
}

.pagination .prev svg {
}

.pagination .prev span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin-left: 13px;
}


.pagination .next a {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.pagination .next span {

}

.pagination .next svg {
    margin-top: 3px;
    margin-left: 7px;
}

.pagination .last {

}


.pagination .last a {
    margin-left: 0;
    border-left: 0;
    border-radius: 0px 3px 3px 0px;
}

.pagination .is-active a {
    color: #FFFFFF;
    background-color: #467AFF;
    border: none;
    transition: background-color 0.3s ease-in-out;
}

.pagination li:not(.is-active) a:hover {
    background-color: #99C8FF;
}

/* pagination end*/

/* filter */

.filter-books {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px;
}

.filter-books__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #F6F7FF;
}


.choice-box {
    margin-top: 15px;
}

.choice-box label {
    display: block;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(79, 79, 79, 0.7);
    margin-bottom: 5px;
}

.select-box {
    position: relative;
}

.select {
    position: relative;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: #F0F2FF;
    border-radius: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
    padding: 13px 13px 13px 9px;
    border: none;
    outline: none;
}

.select-box:after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #4F4F4F transparent transparent transparent;
    pointer-events: none;

    position: absolute;
    top: 50%;
    right: 1rem;
    z-index: 1;
    margin-top: -3px;
}

.filter-books__button {
    margin-top: 15px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    padding: 15px 18px;
    width: 100%;
    background: #467AFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out;
}

.filter-books__button:hover {
    background-color: #2965ff;
}

/* filter end*/

/* inner card book */

.book-card-detailed {
    margin-top: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.book-card__sub-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin: 15px 0 5px 0;
}

.book-card__description--scroll {
    height: 166px;
    overflow-y: scroll;
    padding-bottom: 45px;
}

.book-card__description--scroll::-webkit-scrollbar {
    width: 5px;
}

.book-card__description-box {
    position: relative;
    overflow: hidden;
}

.book-card__description-box::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    width: calc(100% - 8px);
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 77.6%);
}

.book-card-detailed .book-card__show,
.book-card-detailed .book-card__link,
.book-card-detailed .book-card__link img {
    width: 224px;
    height: 328.41px;
}

.book-card__description--scroll,
.book-card__description--scroll p {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin-top: 0;
}

.book-card__title:hover {
    color: #566895;
}

.book-card-detailed .book-card__present {
    margin-top: 16px;
    padding: 13px 0 13px;
}

.add-favorite {
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    color: #467AFF;
    text-decoration: none;
    background: #F6F7FF;
    border: 1px solid #467AFF;
    box-sizing: border-box;
    border-radius: 3px;
    width: 56px;
    height: 30px;
    margin-right: 10px;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.add-favorite span{
    margin-right: 7px;
    transform: translateY(-2px);
}

.add-favorite svg {
    fill: #467AFF;
    transition: all 0.3s ease-in-out;
}

.add-favorite:hover {
    color: #fff;
    background-color: #467AFF;
}

.add-favorite:hover svg {
    fill: #fff;
}

/* inner card book end*/

/* rating */

.rating {
    display: inline-flex;
    flex-direction: row-reverse;
}

.rating__item{
    color: #C4C4C4;
    cursor: pointer;
    font-size: 30px;
    transition: .2s;
}
.rating_chapter_item{
    font-size: 20px;
}
.rating__item--not-hover{
    color: #C4C4C4;
    font-size: 30px;
}

.rating__item:hover,
.rating__item:hover ~ .rating__item{
    color: #ffa200;
}

.rating[data-total-value="1"] .rating__item:nth-child(n+10),
.rating[data-total-value="2"] .rating__item:nth-child(n+9),
.rating[data-total-value="3"] .rating__item:nth-child(n+8),
.rating[data-total-value="4"] .rating__item:nth-child(n+7),
.rating[data-total-value="5"] .rating__item:nth-child(n+6),
.rating[data-total-value="6"] .rating__item:nth-child(n+5),
.rating[data-total-value="7"] .rating__item:nth-child(n+4),
.rating[data-total-value="8"] .rating__item:nth-child(n+3),
.rating[data-total-value="9"] .rating__item:nth-child(n+2),
.rating[data-total-value="10"] .rating__item:nth-child(n+1){
    color: #ffa200;
}
.rating[data-total-value="1"] .rating__item--not-hover:nth-child(n+10),
.rating[data-total-value="2"] .rating__item--not-hover:nth-child(n+9),
.rating[data-total-value="3"] .rating__item--not-hover:nth-child(n+8),
.rating[data-total-value="4"] .rating__item--not-hover:nth-child(n+7),
.rating[data-total-value="5"] .rating__item--not-hover:nth-child(n+6),
.rating[data-total-value="6"] .rating__item--not-hover:nth-child(n+5),
.rating[data-total-value="7"] .rating__item--not-hover:nth-child(n+4),
.rating[data-total-value="8"] .rating__item--not-hover:nth-child(n+3),
.rating[data-total-value="9"] .rating__item--not-hover:nth-child(n+2),
.rating[data-total-value="10"] .rating__item--not-hover:nth-child(n+1){
    color: #ffa200;
}


.rating-box {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.rating-box-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    margin-right: 14px;
    transform: translateY(2px);
}


/* rating end*/

/* comment */

.comment-wrapper {
    padding: 15px;
    background-color: #fff;
}

.comment-quantity {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    margin: 0 0 15px;
}


.auth-block {
    position: relative;
    padding: 20px 20px 12px;
    margin: 0 0 20px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ddd;
}

.auth-block__info {
    font-weight: 300;
}

.auth-block__enter {
    margin-top: 15px;
    width: 80px;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment-list__item {
    border-bottom: 1px solid rgba(79, 79, 79, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}



.comment-head {
    display: flex;
    align-items: center;
}

.comment-head__avatar {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    overflow: hidden;
}

.comment-head__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.comment-head__text {
    margin-left: 10px;
}

.comment-head__name {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    margin-bottom: 5px;
}

.comment-head__time {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 0.7);
}


.comment-body {
    margin-top: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
}

.comment-action {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    display: table;
    color: rgba(79, 79, 79, 0.7);
    text-decoration: none;
    margin-top: 15px;
}


.comment-area-form {
    margin-top: 15px;
    display: block;
}

.comment-area-wrap {
    position: relative;
}

.comment-area {
    border: 1px solid rgba(79, 79, 79, 0.3);
    box-sizing: border-box;
    border-radius: 3px;
    height: 164px;
    width: 100%;
    outline: none;
    padding: 25px 25px 15px 25px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 1);
    padding-bottom: 60px;
}

.comment-area::placeholder {
    color: rgba(79, 79, 79, 0.7);
}


.comment-area-actions {
    position: absolute;
    padding-bottom: 22px;
    bottom: 5px;
    left: 25px;
    display: flex;
    align-items: center;
    width: calc(100% - 50px);
    background-color: #fff;
}

.comment-area-btn-add {
    background: #566895;
    border-radius: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.8);
    width: 94px;
    height: 30px;
    text-align: center;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-area-btn-close {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(79, 79, 79, 0.7);
}

.sumbol-quantity {
    margin-left: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 0.7);
    align-self: flex-end;
}

.comment-area-form {
    display: none;
}

.comment-area-form.is-show {
    display: block;
}

.comment-area-form-whrite {
    margin-bottom: 30px;
}


.comment-area-form-whrite:not(.full) {
    height: 40px;
    border: 1px solid rgba(79, 79, 79, 0.3);
    overflow: hidden;
    padding: 12px;
    background: #F0F2FF;
    border-radius: 3px;
}
.comment-area-form-whrite:not(.full) textarea {
    border: none;
    padding: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(79, 79, 79, 0.7);
    background: #F0F2FF;
}

.comment-action strong {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
}


.comment-list ul {
    list-style: none;
    border-left: 1px solid rgba(79, 79, 79, 0.3);
    padding-left: 15px;
}

.comment-list ul li {
    margin-top: 15px;
    border-bottom: none;
}

.show-comment-more {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #566895;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.last-itemShow {
    background: #F0F2FF;
    border-radius: 3px;
    border: none;
    margin-left: -15px;
    padding: 15px;
}

/* comment end*/


/* book-content */

.book-content {

}

.book-content__title {
    margin: 14px 0 0 0;
}

.book-content__title a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: #566895;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.book-content__title a:hover {
    color: #467AFF;
}

.book-content__title a::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #566895;
    position: absolute;
    left: 0;
    bottom: 0;
}

.book-content-action {
    margin-top: 32px;
    display: flex;
    width: 100%;
}

.select-box--white {
    width: 100%;
}


.select-box--white select{
    background: #fff;
    border-radius: 5px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    padding: 12px;
    cursor: pointer;
    width: 100%;
}


.zoom-box {
    display: flex;
    align-items: center;
    background: #F0F2FF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 3px;
    margin-left: 15px;
    width: 147px;
    flex-shrink: 0;
}

.zoom-box__icon {
    padding: 8px;
    flex-shrink: 0;
    position: relative;
}

.zoom-box__icon::after {
    content: '';
    width: 1px;
    height: 80%;
    background: #566895;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.zoom-box__btn {
    margin-top: 3px;
    flex-shrink: 0;
}

.zoom-box__btn--plus {
    margin-left: 19px;
}

.zoom-box__btn--minus {
    margin-left: 25px;
}

.wrapper-action-box {
    padding-bottom: 22px;
    border-bottom: 1px solid #C4C4C4;
}

.wrapper-action-box .pagination .last a,
.pagination--left .last a {
    margin-right: 0;
}

.wrapper-action-box .pagination {
    justify-content: flex-end;
    margin-top: 30px;
}

.text {
    margin-top: 30px;
    border-bottom: 1px solid #C4C4C4;
}

.text h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #566895;
    margin: 0 0 15px 0;
}



.text-js {
    font-family: 'Inter';
    font-style: normal;
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #4F4F4F;
}

.pagination--left {
    justify-content: flex-end;
    margin-top: 15px;
}

.book-card-box {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px;
}

.book-card__link--large {
    width: 199px;
    height: 295px;
}

.book-card__link--large img {
    width: 199px;
    height: 295px;
}

.book-card-action-box {
    display: flex;
}

.book-card-action-box {
    margin-top: 15px;
}

.book-card-box .book-card__author {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    margin-top: 15px;
}

.book-card__title-link {
    margin: 5px 0 0 0;
    padding: 0;
}

.book-card__title-link a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #566895;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.book-card__title-link a:hover {
    color: #2965ff;
}

.book-card-box .buy-action {
    margin-top: 30px;
}

.book-card-box .price {
    margin-left: 0;
}

.book-card-box .buy {
    margin-left: 10px;
}

.book-card-box .book-card__status {
    width: 100%;
    margin-top: 30px;
}

.book-card-box .add-favorite {
    width: 100%;
    margin-top: 10px;
}

.book-card-box .add-favorite .text-btn {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #467AFF;
    margin-left: 10px;
    transition: color 0.3s ease-in-out;
    margin-top: 2px;
}

.book-card-box .add-favorite:hover .text-btn {
    color: #fff;
}

.rating-box-wrap {
    margin: 15px 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* book-content end */

/* box-info-white */

.box-info-white {
    padding: 30px 40px 40px;
    background: #FFFFFF;
    border-radius: 5px;
    margin-top: 15px;
}

.box-info-white h1{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #566895;
    margin: 0 0 0px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #F6F7FF;
}

.box-info-white h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin-top: 30px;
}

.box-info-white strong {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.box-info-white p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.box-info-white a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #566895;
}

.box-info-white ul {
    padding: 0;
    margin-left: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin-bottom: 30px;
}

.rules {
    text-align: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: rgba(79, 79, 79, 0.7);
    margin-top: 15px;
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
}

/* box-info-white end */


/* search-page */


.search-words {
    display: flex;
    margin-bottom: 15px;
}

.search-words__name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
}

.search-words__value {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    margin-left: 5px;
}


.author-list {
    margin: 30px -15px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.author-list__item {
    display: flex;
    align-items: center;
    width: calc(100% / 12 * 4 - 30px);
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
}

.author-list__avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100%;
}


.author-list__avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-list__link {
    margin-left: 15px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #566895;
}

.author-list__link:hover {
    color: #2965ff;
}


/* search-page end*/

/* login page */

.login-page {
   padding-top: 20px;
   margin: 0;
}

.login-page .btn-form {
    margin-top: 20px;    
}

.login-page__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #566895;
    padding-bottom: 5px;
    margin: 0 0 30px;
    text-align: center;
    border-bottom: 1px solid #99C8FF;
}

.form-box {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 36px 30px 30px;
    max-width: 472px;
    margin-left: auto;
    margin-right: auto;
}



.field-box {
    margin-bottom: 15px;
}

.field-box__label {
    display: block;
    margin-bottom: 10px;
}

.field-box__label span:first-child {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
}

.field-box__label span:nth-child(2) {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
}

.field-box__label sup {
    color: #FB0303;
}


.field-box__input {
    width: 100%;
    background: #F0F2FF;
    padding: 11px 15px;
    outline: none;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: rgba(79, 79, 79, 1);
}


.field-box__input::-webkit-input-placeholder { /* Edge */
    color: rgba(79, 79, 79, 0.7);
}
  
.field-box__input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(79, 79, 79, 0.7);
}
  
.field-box__input::placeholder {
    color: rgba(79, 79, 79, 0.7);
}

.btn-form {
    width: 225px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
}


.info-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.info-form span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
}

.info-form a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #566895;
    margin-left: 5px;
}

.info-form a:hover {
    color: #2965ff;
}

.info-form--large {
    flex-direction: column;
    align-items: center;
    margin-top: 15;
}


.info-form + p {
    text-align:center;
    color:#FF3300;
}

/* login page end*/


/* person  */

.person {
    margin-left: 33px;
    display: flex;
    align-items: center;
    width: 210px;
    justify-content: flex-end;
}

.person__name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    text-decoration-line: underline;
    color: #566895;
    max-width: 100px;
    text-align: right;
}

.person__name:hover {
    color: #2965ff;
}

.person__avatar {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
    margin-left: 23px;
}

.person__avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* person end */


/* left nav */


.side-nav {
    background: #FFFFFF;
    border-radius: 5px;
    margin-top: 15px;
}

.sidebar-left {
    margin-right: 15px;
    margin-left: 0;
}

.side-nav-list {
    margin: 0;
    padding: 5px;
    list-style: none;
}

.side-nav-list__item {
    padding: 10px 5px 13px 10px;
    display: flex;
    align-items: center;
    height: 50px;
}



.side-nav-list__item:hover {
    background: #F0F2FF;
}

.side-nav-list__item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.side-nav-list__link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}


.side-nav-list__label {
    margin-left: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    background: #F6F7FF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 43px;
    padding: 3px 9px;
}

/* left nav end*/

/* library-action */

.library-action {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #99C8FF;
}

.library-action a {
    padding: 12px 15px;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #566895;
}

.library-action a.is-active {
    background: #FFFFFF;
    border: 1px solid #99C8FF;
    box-sizing: border-box;
    border-radius: 5px 5px 0px 0px;
    border-bottom: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
}

/* library-action */


/* many-box */


.many-box {
    background: #FFFFFF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 13px 15px;
}

.many-box__icon {
    margin-right: 31px;
}

.many-box__icon svg{

}

.many-box__info {

}

.many-box__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin-bottom: 5px;
}

.many-box__value {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #566895;
    margin-bottom: 5px;
}

.many-box__conclusion {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    text-decoration-line: underline;
    color: #566895;
}

.many-box__conclusion:hover {
    color: #2965ff;
}

.wrap-lk {
    transform: translateY(-21px);
}

.many-box .checkbox__label {
    font-size: 14px;
}

/* many-box end*/

/* person-box */


.person-box {
    height: 180px;
    border-radius: 0px 0px 5px 5px;
    background-image: url(../themes/your_theme/assets/images/bg-person.jpg);
    background-size: cover;
    color: #fff;
    position: relative;
    margin-bottom: 10px;
}

.person-box:after {
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.2);
    border-radius: 0px 0px 5px 5px;
}

.person-box__avatar {
    width: 180px;
    height: 180px;
    position: absolute;
    border-radius: 5px;
    overflow: hidden;
    left: 15px;
    top: 25px;
    z-index: 2;
}

.person-box__avatar img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.person-box__name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    position: absolute;
    bottom: 30px;
    left: 244px;
    z-index: 1;
}

.person-box__action {
    background: #FFFFFF;
    border-radius: 3px;
    padding: 8px 10px;
    position: absolute;
    right: 10px;
    bottom: 30px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #566895;
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1;
}

.person-box__action:hover {
    background: #f1efef;
}

.person-box__action svg {

}

.person-box__action span {
    margin-left: 11px;
}

/* person-box end*/

/* list page comment */

.list-page-comment {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-page-comment__item {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.list-page-comment__head {
    display: flex;
}

.list-page-comment__info {
    display: flex;
}

.list-page-comment__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 0.7);
}

.list-page-comment__value {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #566895;
    text-decoration-skip-ink: none;
    margin-left: 3px;
}

.list-page-comment__date {
    margin-left: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 0.7);
}

.list-page-comment__body {
    margin-top: 10px;
    padding: 8px 10px;
    background: #FFFFFF;
    border-left: 2px solid #99C8FF;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
}

.list-page-comment__author {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
}


/* list page comment end*/


/* my romans */

.book-card__wrapper-info {
    display: flex;
    justify-content: space-between;
}

.book-card__content {
    max-width: 380px;
}

.book-card__status {}

.book-card__stat {
    margin-top: 10px;
    text-align: right;
}


.book-card__status--completed {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #49BB03;
}



.book-card__price-box {
    margin-top: 20px;
}

.book-card__price-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    margin-bottom: 5px;
}

.book-card__price-all {
    display: flex;
}


.books-list__item--edit .book-card__present {
    padding: 13px 0 14px;
    margin-top: 10px;
}

.btn-edit {
    margin-left: auto;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
}

.book-card__status--draft {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    color: #4F4F4F;
    text-transform: uppercase;
}


.add-books {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #99C8FF;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 13px;
    text-decoration: none;
    margin-top: 30px;
}

.add-books span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.add-books svg {
    margin-right: 15px;
}


.add-books:hover span {
    color: #2965ff;
}

.add-books:hover svg path {
    fill: #2965ff;
    transition: fill 0.3s ease-in-out;
}

/* my romans end*/


/* cycles page */

.book-card__description--large {
    min-height: 105px;
}

.book-card__footer--info {
    border-top: 1px solid #F6F7FF;
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book-card__quantity-info {
    display: flex;
    align-items: center;
}

.book-card__quantity-info span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #566895;
    margin-left: 10px;
}

.book-card__quantity-info svg {

}

.book-card__go-books {

}

/* cycles page end*/

/* roman edit page */

.wrapper {
    margin-top: 30px;
}

.tabs {
    display: flex;
}

.tab {
    background: #F0F2FF;
    border-radius: 5px 5px 0px 0px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    padding: 20px;
    display: block;
    width: 50%;
    text-align: center;
    cursor: pointer;
    width: 358px;
    max-width: 100%;
}

.tab_content {
    background-color: #fff;
    padding: 30px;
}

.wrapper .active { color: #566895; background-color: #fff; }

.add-box--chapter {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid #99C8FF;
    box-sizing: border-box;
    border-radius: 5px;
}

.add-box--chapter a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #566895;
    text-decoration-skip-ink: none;
}

.add-box--chapter a:hover {
    color: #2965ff;
    text-decoration: none;
}

.add-box--chapter span {
    margin-right: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}


.list-chapter {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.list-chapter__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 8px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    align-items: center;
}

.list-chapter__item:not(:last-child) {
    margin-bottom: 15px;
}

.list-chapter__info {

}

.list-chapter__value {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.list-chapter__status {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
    margin-top: 5px;
}

.list-chapter__date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    position: relative;
    padding-right: 15px;
}


.list-chapter__date::after {
    content: '';
    height: 31px;
    width: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background:  rgba(0, 0, 0, 0.1);
}

.list-chapter__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 467px;
}


.list-chapter__quantyti-sumbol {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
}


.list-chapter__other {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 195px;
}

.list-chapter__quantyti-sumbol {
    padding-left: 15px;
}

.list-chapter__action {

}


.list-chapter__action svg circle {
    transition: fill 0.3s ease-in-out;
}


.list-chapter__action:hover svg circle {
    fill: #566895;
}

.list-chapter__action.is-active svg circle {
    fill: #566895;
}


.list-chapter__action-wrapper {
    position: relative;
}

.context-menu {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(86, 104, 149, 0.3);
    border-radius: 5px;
    padding: 0 10px;
    width: 240px;
    position: absolute;
    z-index: 111;
    left: -199px;
    top: 30px;
    display: none;
}


.context-menu.is-show {
    display: block;
}


.context-menu a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    text-decoration: none;
    display: block;
    padding: 15px 5px;
}

.context-menu a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.context-menu a.del {
    color: #EC4141;
}


.context-menu a:not(.del):hover {
    color: #2965ff;
}


/* roman edit page  end*/


/* page edit profile */

.catalog-title--edit {
    margin-bottom: 24px;
}


.input__wrapper {
    position: relative;
    cursor:pointer;
}

.input__file {
    opacity: 0;
    /* visibility: hidden; */
    position: absolute;
}

.input__wrapper label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    text-decoration-line: underline;
    color: #566895;
    text-decoration-skip: none;
    cursor: pointer;
}

.head-edit-form {
    margin-top: 40px;
    margin-left: 15px;
    display: flex;
    justify-content: space-between;
}

.input__wrapper--bg {
    transform: translateY(-25px);
}

.person-box--small {
    height: 134px;
}

.person-box__avatar--small {
    width: 134px;
    height: 134px;
}

.person-box__information {
    position: absolute;
    bottom: 20px;
    left: 180px;
    z-index: 1;
}

.person-box__information-name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}

.person-box__information-date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    margin-top: 8px;
}

.box-form-action {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 20px 20px 30px 20px;
    margin-top: 30px;
}


.box-form-action__title {
    margin: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #F6F7FF;
    padding-bottom: 5px;
}


.form-wrap-field {

}

.form-wrap-field label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 15px;
    display: block;
}

.form-wrap-fields {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    border-bottom: 1px solid #F6F7FF;
    padding-bottom: 30px;
}

.form-wrap-fields .form-wrap-field {
    margin-top: 30px;
    margin-left: 12px;
    margin-right: 12px;
    width: calc(100% / 3 - 24px);
}

.form-wrap-field input,
.form-wrap-field .my-area {
    background: #F0F2FF;
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    padding: 0 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.form-wrap-field-br input, 
.form-wrap-field .my-area {
    border-radius: 5px;
}



.form-wrap-field-ts {
    transform: translateY(-14px);
    
}


.form-wrap-field .my-area--static-h {
    height: 129px;
    padding: 10px;
    resize: none;
}

.btn-primary--large {
    width: 209px;
    height: 40px;
    margin-top: 30px;
}

.box-form-action-info {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

/* page edit profile end*/

/* add ne cycle */

.add-new-cycle {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 15px 30px 15px;
}


.add-new-cycle .catalog-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.input__wrapper--cover {

}

.input__wrapper--cover  label{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    cursor: pointer;
    padding: 7px 15px;
    background: #FFFFFF;
    border: 1px solid #99C8FF;
    box-sizing: border-box;
    border-radius: 3px;
    text-decoration:none;
    transition: background-color 0.3s ease-in-out;
    display: block;
    margin-top: 5px;
    text-align: center;
}

.input__wrapper--cover  label:hover {
    background-color:#99C8FF;
}


.wrapper-box-cover {
    background-color: #F6F7FF;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
    width: 100%;
    height: 216px;
}

.new-cycle-box {
    display: flex;
}

.new-cycle-box__show {
    width: 148px;
}

.new-cycle-box__fields {
    width: 540px;
    margin-left: 15px;
}

.new-cycle-box__fields .form-wrap-field:first-child {
    margin-bottom: 15px;
} 

.btn-add-cycle {
    margin-left: auto;
    margin-top: 30px;
    width: 209px;
    height: 40px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

/* add ne cycle end*/


/* add new roman */


.choice-box-genres select {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #4F4F4F;
    cursor: pointer;
}

.choice-box-genres label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 10px;
}

.choice-box-group {
   display: flex; 
   margin-left: -8px;
   margin-right: -8px;
   margin-bottom: 20px;
}

.choice-box-group .choice-box-genres {
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 0;
    width: 50%;
}

.choice-box-group .choice-box--large {
    width: 75%;
}

.choice-box-group .choice-box--small {
    width: 25%;
}

.other-fields {
    margin-top: 20px;
}

.form-wrap-field_info {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
    margin-top: 10px;
}

.form-wrap-field .my-area-m-h {
    height: 80px;
    padding: 10px;  
}

.quotes-quotes {
    margin-top: 30px;
}

.quotes-quotes__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F; 
    margin: 0 0 15px 0;
}

.quotes-quotes label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
}

.quotes-quotes .form-wrap-field-br {
    margin-bottom: 15px;
}

.annotation {
    margin-top: 30px;
}

.form-wrap-field .my-area-height-b {
    height: 243px;
    resize: none;
    padding: 10px;
}

.alert-warning {
    padding: 23px 12px;
    background: #FFE2E2;
    border-radius: 5px;
    margin-top: 30px;
}

/* Checkbox */
.checkbox {
    position: relative;
}

.checkbox__input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}

.checkbox__label {
    padding-left: 25px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    cursor: pointer;
}

.checkbox__label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;

    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 3px;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    transition: background .1s linear, border .1s linear;
}

.checkbox__label:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;

    background: url("../themes/your_theme/assets/images/svg/check-box.svg") no-repeat;
    background-size: 12px 12px;
    opacity: 0;

    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 2;

    transition: opacity .1s linear;
}

.checkbox__input:checked + .checkbox__label:before {
    background-color: #2965ff;
    border-color: #2965ff;
}

.checkbox__input:checked + .checkbox__label:after {
    opacity: 1;
}

.checkbox__info {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
    margin-top: 5px;
    margin-left: 25px;
}


/* add new roman  end*/

/* book-publ */


.book-publ-box {
    padding: 30px 20px;
    background: #FFFFFF;
    border-radius: 0px 0px 5px 5px;
}

.form-wrap-field .form-wrap-field-area-max {
    height: 494px;
    resize: vertical;
    width: 100%;
}


.book-publ-box .form-wrap-field-br:nth-child(2) {
    margin-top: 30px;
}

/* Radio */
.radio {
    position: relative;
    margin-bottom: 1rem;
}

.radio__input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}

.radio__label {
    padding-left: 25px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    cursor: pointer;
}

.radio__label:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;

    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 50%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    transition: border .1s linear;
}

.radio__label:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;

    background-color:#2965ff;
    border-radius: 50%;
    opacity: 0;

    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 2;

    transition: opacity .1s linear;
}

.radio__input:checked + .radio__label:before {
    border-color: #2965ff;
}

.radio__input:checked + .radio__label:after {
    opacity: 1;
}

.book-publ-box__foot {
    margin-top: 30px;
}

.btn-publ  {
    margin-left: auto;
    width: 209px;
    height: 40px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

.book-publ-box__foot {
    display: flex;
    align-items: center;
}

textarea {
    resize: vertical;
}

/* book-publ end*/

/* subscribtion author */


.list-subscribtion {
    list-style: none;
    padding: 0;
    margin: 51px -7px 0;
    display: flex;
    flex-wrap: wrap;
}

.list-subscribtion__item {
    margin-left: 7px;
    margin-right: 7px;
    width: calc(100% / 12 * 6 - 14px);
    background: #FFFFFF;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.subscribtion-box {
    display: flex;
}

.subscribtion-box__avatar {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
}

.subscribtion-box__avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
}

.subscribtion-box__info {
    margin-left: 11px;
    flex-grow: 1;
}

.subscribtion-box__title {
    margin: 0;
}

.subscribtion-box__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 21px;
}

/* subscribtion author end*/

/* links page */


.soc-list-author {
    margin: 34px -12px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.soc-list-author__item {
    width: 210px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 30px;
}

.soc-list-author__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 10px;
}

.soc-list-author__link {
    background: #FFFFFF;
    padding: 11px 15px;
}

.soc-list-author__link a{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #467AFF;
}

.tab_item--p-low {
    margin-left: -15px;
    margin-right: -15px;
}

/* links page end */

/* finance page */

.table-finance {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 25px 15px 15px;
}


.table-finance__row {
    display: flex;
}

.table-finance__col {
    /* width: 120px; */
    width: 250px;
    margin-left: 10px;
    margin-right: 10px;
}

.table-finance__col:first-child {
    padding-left: 7px;
}

.table-finance__col:last-child {
    width: 200px;
}

.table-finance__col:nth-child(3) {
    width: 147px;
    text-align: center;
}

.table-finance__row--head {
    border-bottom: 1px solid #99C8FF;
    padding-bottom: 15px;
}

.table-finance__row--head .table-finance__col {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
}

.table-finance__row--body .table-finance__col {
    padding-top: 15px;
    padding-bottom: 11px;
}

.table-finance__row--body {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.table-finance__col--date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
}

.table-finance__col--action {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
}

.table-finance__col-payment-l {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: #566895;
}

.table-finance__col-payment-h { 
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: #49BB03;
}

.table-finance__col--book {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
}

.group-button-form {
    display: flex;
    justify-content: flex-end;
}

.group-button-form .btn-add-cycle {
    margin-left: 15px;
}

.group-button-form .btn-ghost {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    border: 1px solid #467AFF;
    border-radius: 3px;
    margin-left: 15px;
    margin-right: 0px;
}

.action-box-row-f {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.public_sw_action-ts {
    display:flex;
    margin-left: -23px;
    flex-wrap:wrap;
    margin-top: 10px;
}

.free-pay {
    margin-left: 27px;
       margin-top: 15px;
    margin-bottom: 15px;
}

.free-pay label {
    margin-left: 15px;
}


.checkboxes {
    margin-left: -1px;    
}

.checkboxes  .checkbox__info{
        margin-left: 7px;
}


/* add  */


.books-list-mobile__head .book-card__rating {
    margin-left: auto!important;
}

.books-list-mobile li {
    padding:0!important;
    background:transparent!important;
}


.book-card__author a, .book__author a {
    word-break: break-word;
}

.book-card__box-buy {
    margin-left: auto;    
}

.content .select-box {
    width:100%;    
}


@media(max-width:2000px) {
    .slider-box-wrap .book__link {
        height:233px;
        width: 160px;
        max-width:100%;
    }
}


.slider-box-wrap .book__link {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
   
}

@media(max-width:1190px) {
    .slider-box-wrap .book__link {
        padding-bottom: 146%;
        height: auto;
        width: auto;
    }
}

.slider-box-wrap .book__link img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-position: bottom;
}


@media(max-width:992px) {

    .book--small {
        flex-direction:column;    
    }
    
    .book--small { 
        
    }    
    
    
    .book--small .book__info {
        margin-left: 0;    
    }  


    .list-items {
        justify-content: flex-start!important;
        margin-left: -2.5px;
        margin-right: -2.5px;
    }
    
    .list-items__value {
        width: calc(100%/12 *3 - 5px);
       margin-left: 2.5px;
        margin-right: 2.5px;
    }
    
    .book--small .book__link {
        width:auto;
        height:auto;
        position:relative;
        padding-bottom: 135%;
        margin-bottom: 5px;
    }
    
     .book--small .book__link img{
          width:100%;
          height:100%;
          position:absolute;
          object-fit:cover;
          left:0;
          top:0;
    }
    
    .book--small {
         width:auto!important;
    }
    
    .books-list-mobile__body .book-card__status {
        width:auto;    
    }
    
    .books-list-mobile__body .price{
        text-align:right;    
    }
    
}

@media(max-width:768px) {
    .slider-box-wrap .book__categories {
        display:none;
    }
    
    .slider-box-wrap .book__author {
        font-size:8px;    
    }
    
    
    .slider-box-wrap .book--medium .book__author {
        margin-top:2px;    
    }
    
    .book--small .book__categories {
        display:none;    
    }
    
    .book--small .book__name {
        margin-top: 5px;    
    }
    
    .book--small .book__author {
        margin-top: 4px;
        font-size: 10px;
    }
    
    
    .content {
        padding:30px 0px;
        background:transparent;
    }
    
    .book--medium .book__name,
    .book--small .book__name {
        font-size:12px!important;    
    }
    
    .book-card__description-box::after {
        display:none;    
    }
    
    .m-book-box__body {
        flex-grow:1;    
    }
    
    .public_sw_action-ts {
        margin-left: 0;
        flex-direction: column;
    }
}




@media(max-width:576px) {
    .list-items__value {
        width:calc(100%/12 *4.25 - 15px)!important;
       margin-left: 2.5px!important;
        margin-right: 2.5px!important;
    }
    
    .checkboxes .bloks_center{
        flex-wrap:wrap;
        justify-content: flex-start;

    }
    
    .checkboxes .radio {
        width: 51px;
    margin-right: 21px;    
    }
}



/* finance page end*/


.btn-m {
    margin-top: 25px;    
}


.bloks_center{
    text-align: center;
    justify-content: space-around;
     align-items: center;
    display: flex;    
    /* flex-wrap: nowrap; */
}
.bloks_center a{
    text-decoration: none;
    color: #fff!important;
        display: flex;
    align-items: center;
    justify-content: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
    display:none;
}

.slider_span{
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A696C8;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider_span:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 2px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.slider_input:checked + .slider_span {
  background-color: #467AFF;
}
.slider_input:disabled + .slider_span {
  background-color: #ccc;
}
.slider_input:focus + .slider_span {
  box-shadow: 0 0 1px #467AFF;
}

.slider_input:checked + .slider_span:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.many-box__info2 .reader_a,
.many-box__info2 .author_a{
    color: #ccc;
}
.many-box__info2 .reader_a.is-active{
    color: #A696C8;
}
.many-box__info2 .author_a.is-active{
    color: #467AFF;
}
.slider_input:is(.disabled), .slider_span.disabled {
    cursor: not-allowed!important;
}
.mob_back {
    display: none;
}
/*banner sart*/
.info-block {
    display: flex;
    min-height: 334px;
    background-image: url('../themes/your_theme/assets/images/firstfone.png');
    background-repeat: no-repeat;
    background-position: right;
    background-color: #fff;
    margin-bottom: 16px;
    border-radius: 5px;
}

.info-block__text {
    max-width: 351px;
    margin-left: 40px;
}

.info-block__text h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 56px;
    color: #566895;
    margin: 45px 0 16px 0;
}

.info-block__update {
    display: flex;
    align-items: center;
}

.info-block__update-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #19C218;
}

.info-block__icon-group {
    margin-left: 24px;
    margin-top: 6px;
}

.info-block__show {
    margin-right: 42px;
    margin-top: 24px;
    margin-left: 135px;
}

.info-block__foot {
    display: flex;
    margin-top: 25px;
    align-items: center;
}

.info-block__link {
    background: #467AFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.info-block__link:hover {
    background-color: #2965ff;
}

.info-block__link span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

.info-block__link svg {
    
}

.info-block__foot-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}



@media(max-width:992px) {
    .info-block__show {
        display: none;
    }

    .info-block{
        background-image: none;
    }
}

@media(max-width:576px) {

    .info-block h2 {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 700;
        font-size: 31px;
        line-height: 40px;
        color: #566895;
        margin: 40px 0 16px 0;
        max-width: 290px;
    }

    .info-block__text {
        max-width: 351px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .info-block__update-text {
        font-size: 18px;
    }

    .info-block {
        min-height: 275px;
    }

    .info-block__icon-group svg {
        width: 20px;
        height: 20px;
    }

}

@media(max-width:360px) {
    .info-block__foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-block__link {
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .info-block h2 {
        margin-top: 29px;
    }
}
/* banner end */

.book-card-box_lib_del{
    padding: 0 15px;
}

.book-card-box_lib_del .add-favorite{
    margin-top: 0px;
}


/* footer */

.action-boxes {
    margin-left: auto;
    margin-top: 17px;
}

.link-tiket {
    padding: 15px;
    width: 228px;
    text-decoration: none;
    text-align: center;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    display: block;
    transition: all 0.3s ease-in-out;
}


.link-tiket:hover {
    background-color: #fff;
    color: #566895;
}


.my-social {
    margin-top: 30px;
}

.my-social-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 15px;
}

.my-social__wrapper {
    display: flex;
    align-items: center;
}

.my-social__wrapper a {
    text-decoration: none;
    margin-right: 15px;
}

.footer-nav-list:nth-child(2) {
    margin-left: 110px;
    flex-shrink: 0;
}

.footer-nav-list {
    max-width: 100%;
}

.footer-page__row {
    margin-top: 15px;
}

.info-message {
    display: flex;
    align-items: center;
    margin-top: 28px;
}

.info-message__age {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.info-message__text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 16px;
}

.box-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    margin-top: 20px;
    padding-bottom: 16px;
}

.box-text::before {
    content: '';
    display: block;
    width: 391px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

@media (max-width: 992px){
    .footer-nav-list:nth-child(2) {
        margin-left: 0;
    }

    .action-boxes {
        margin-right: auto;
        margin-top: 40px;
    }

    .my-social {
        text-align: center;
    }

    .my-social__wrapper {
        justify-content: center;
    }

    .info-message {
        flex-direction: column;
        text-align: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .info-message__text {
        margin-top: 15px;
    }

    .footer-page_row-fiirst {
        text-align: center;
    }

    .box-text {
        text-align: center;
    }

    .box-text::before {
        margin-left: auto;
        margin-right: auto;
    }

    .info-message__text {
        margin-left: 0;
    }
}

@media(max-width:576px) {
    .box-text::before {
        width: 239px;
    }    
}

/* footer end */

/* add all chapters start */
.container-1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.book-add-page-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
}

.book-add-page__row {
    display: flex;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.book-add-page__content {
    width: 60%;
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.book-add-page__chapter-box {
    width: 40%;
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.chapter-box-field {
    margin-top: 25px;
}

.chapter-box-field input {
    resize: none;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #FFFFFF;
    height: 40px;
    width: 100%;
    padding: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #4F4F4F;
}

.chapter-box-field textarea {
    resize: none;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #FFFFFF;
    width: 100%;
    height: 247px;
    padding: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #4F4F4F;
}

.chapter-box__button {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #566895;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    width: 100%;
    border: 1px solid #99C8FF;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 26px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.chapter-box__button:hover {
    background-color: #566895;
    color: #fff;
    text-decoration: none;
}

.list-chapter__main--long {
    width: 800px;
}

.list-chapter-h {
        height: 190px;
        overflow-y: auto;
}
.list-chapter__other_all {
    width: 250px;
}
.add-box--chapter_double{
    display: flex;
    justify-content: space-between;
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.add-box--chapter:last-child {
    background:#566895;
    color:#fff;
}

.add-box--chapter:last-child a {
    color:#fff;
}


.add-box--chapter_double .add-box--chapter {
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.add-box--chapter_double .add-box--chapter{
    width: 100%;
}
.btn-publish {
    width: 340px;
    max-width: 100%;
    margin-left: auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    display: block;
    padding: 12px;
    margin-top: 30px;
}

@media(max-width:1100px) {
    .book-add-page__content {
        display: none;
    }

    .book-add-page__chapter-box {
        width: 100%;
    }
}

@media(max-width:500px) {
    .wrapper-list-chapter-h {
        overflow: hidden;
        overflow-x: auto;
    }

    .list-chapter-h {
        width: 485px ;
    }
}
/* add all chapters end */


/* question start */
.catalog-title-center {
    text-align: center;
    margin-top: 39px;
    padding-bottom: 15px;
}

/* accardion */

.accordion__wrap {
    padding: 30px 15px;
    background: #FFFFFF;
    border-radius: 6px;
    margin-top: 25px;
}

button.accordion{
    width : 100%;
    padding: 16px;
    background-color: transparent;
    border: none;
    outline: none;
    display : flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    justify-content: space-between;
    background: #E4EFFC;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: left;
 }
 

 button.accordion::after{
    content: '';
    background-image: url(../themes/your_theme/assets/css/acc.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 27px;
    height: 27px;
    margin-right:5px;
    transition: transform 0.3s ease-in-out;
 }
 
 button.accordion.is-open::after{
    content: '';
    background-image: url(../themes/your_theme/assets/css/acc.svg);
    transform: rotate(-180deg);
 }
 

 button.accordion.is-open {
    border-radius: 5px 5px 0px 0px;
 }

 .accordion__content{
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
 }

 .accordion__inner {
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 5px 5px;
    padding: 20px 16px;
 }

/* accardion end*/

.accordion__line:not(:last-child) {
    margin-bottom: 25px;
}

.box-questions-form {
    background-color: #fff;
    padding: 30px 15px;
    margin-top: 30px;
}

.box-questions-form__container {
    max-width: 412px;
    margin-left: auto;
    margin-right: auto;
}

.box-questions-form h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #566895;
    margin: 0 0 30px 0;
    text-align: center;
}

.btn-questions-form {
    padding: 10px;
    width: 100%;
    text-align: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-top: 25px;
}


@media(max-width:576px) {
    button.accordion { 
        padding: 10px;
        font-size: 14px;
    }
}
/* question end */
/* user-search start */

.form-search-line {

}

.form-search-line__box {
    position: relative;
    margin-top: 20px;
}

.form-search-line__box  input {
    background: #F0F2FF;
    border-radius: 4px;
    width: 100%;
    padding: 10px 10px 10px 54px;
    outline: none;
    border: none;
    height: 36px;
}

.form-search-line__box  input::placeholder {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #467AFF;
}

.form-search-line__btn {
    position: absolute;
    left: 15px;
    top: 5px;
}


/* Radio */
.radio-check {
    position: relative;
    margin-bottom: 1rem;
}

.radio-check__input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}

.radio-check__label {
    padding-left: 25px;

    font-size: 1rem;
    color: #444;
    cursor: pointer;
}

.radio-check__label:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;

    opacity: 0.4;

    border: 1px solid #566895;
    border-radius: 2px;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    transition: border .1s linear;
}

.radio-check__label:after {
    content: "";
    display: block;
    width: 13px;
    height: 9.45px;
    background-image: url('/checko.svg');
    opacity: 0;

    position: absolute;
    top: 8px;
    left: 6px;
    z-index: 2;

    transition: opacity .1s linear;
}

.radio-check__input:checked + .radio-check__label:before {
    opacity: 0.4;
    border: 1px solid #566895;
    border-radius: 2px;
}

.radio-check__input:checked + .radio-check__label:after {
    opacity: 1;
}

.radio-check-group {
    display: none;
}

.radio-check-group__wrapper {
    display: flex;
    align-items: center;
}

.radio-check-group__label {
    display: flex;
    align-items: center;
}

.radio-check-group__label svg {
    margin-left: 8px;
    transform: translateY(1px);
}

.radio-check {
    margin-left: 36px;
    transform: translateY(5px);
}

.radio-check-group__wrapper:last-child {
    margin-left: 70px;
}

.radio-check-group__label span,
.radio-check-group__label svg {
    opacity: 0.4;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.radio-check-group__wrapper {
    margin-top: 30px;
}

.radio-check-group__wrapper.is-active .radio-check-group__label span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    opacity: 1;
}

.radio-check-group__wrapper.is-active .radio-check-group__label svg {
    opacity: 1;
}

.author-list-top {
    margin-top: 30px;
    margin-left: -48px;
    margin-right: -48px;
    display: flex;
    flex-wrap: wrap;
}

.author-list-top__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #467AFF;
    padding-bottom: 4px;
    margin-bottom: 20px;
    margin-left: 48px;
    margin-right: 48px;
    margin-bottom: 20px;
    width: calc(100% / 12 * 6 - 96px);
}

.author-list-top__avatar {
    width: 68px;
    height: 68px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-list-top__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-list-top__info {
    margin-left: 16px;
}

.author-list-top__fio a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    margin: 0 0 8px 0;
    text-decoration: none;
}

.author-list-top__fio {
    margin-right: 10px;
}

.author-list-top__books {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
}

.author-list-top__likes {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.author-list-top__likes span{
    margin-left: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #467FC2;
}

.author-list-top__likes svg {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #467FC2;
}

.author-list-top-btn {
    margin-top: 52px;
    width: 278px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

.author-list-top__fio a:hover {
    color: #467AFF;
}

@media(max-width:768px) {
    .author-list-top__item {
        margin-left: 24px;
        margin-right: 24px;
        width: calc(100% / 12 * 6 - 48px)
    }

    .author-list-top {
        margin-left: -24px;
        margin-right: -24px;
    }
}

@media(max-width:700px) {
    .author-list-top__item {
        margin-left: 24px;
        margin-right: 24px;
        width: calc(100% / 12 * 12 - 48px)
    }
}


@media(max-width:576px) {
    .radio-check-group {
        flex-direction: column;
    }

    .radio-check-group__wrapper:last-child {
        margin-left: 0;
    }

    .radio-check-group__wrapper {
        margin-top: 10px;
    }

    .radio-check-group {
        margin-top: 20px;
    }
}
/* user-search end */


/* ppassowrd */

.field-box-password {
     position:relative;   
}

.password-eya {
    position:absolute;
    right: 10px;
    top: 37px;
    cursor:pointer;
    z-index: 10;
}

.field-box-password input {
    padding-right:45px;  
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -moz-user-select: all;
  -webkit-user-select: all;
  -ms-user-select: all;
  user-select: all;
}

.field-box-password input:focus {
    
    -moz-user-select: -moz-none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
    
    

/* password end */
/* comments deleatung start */
.action-chapter {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 42px;
    margin-bottom: 30px;
}

.btn-icon-action {
    background: #E4EFFC;
    border-radius: 3px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    max-width: 100%;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #467FC2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    cursor: pointer;
}
.btn-icon-action2 {
    background: #E4EFFC;
    border-radius: 3px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 263px;
    max-width: 100%;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #467FC2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    cursor: pointer;
}

.btn-icon-action span {

}

.btn-icon-action svg {
    margin-left: 15px;
    transition: transform 0.3s ease-in-out;
}


.description-chapter {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: #4F4F4F;
    opacity: 0.6;
    margin-top: 15px;
}

.chapter-btn-groups {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 488px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.btn-comments {
    padding: 16px 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
    background: #467AFF;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out;
}

.btn-comments:hover {
    background-color: #2965ff;
}

.btn-complaint {
    padding: 16px 27px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    border: 1px solid #99C8FF;
    border-radius: 3px;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.btn-complaint:hover {
    background-color: #99C8FF;
}



.btn-icon-action.is-active {
    background: #467FC2;
    color: #fff;
}

.btn-icon-action.is-active svg {
    fill: #fff;
}

.book-card__statistics-new {
    display: flex;
    align-items: center;
}

.new-reviews {
    display: flex;
    align-items: center;
}

.new-reviews span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #566895;
}

.new-reviews svg {
    margin-right: 5px;
}

.book-card__description--scroll {
    height: 136px;
}

.book-card__description-box::after {
    display: none;
}

.book-card__head-border-n {
    border: none;
}


.book-card__second-line {
    display: flex;
    align-items: flex-start;
}

.book-like-box {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-top: 5px;
    transform: translateY(1px);
}

.book-like-box span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #467FC2;
    
}

.book-like-box svg {
    margin-right: 10px;
}

.book-card__title-mr {
    margin-right: 10px;
}

.book-card__sub-title {
    margin-top: 30px;
}

.book-card__link {
    position: relative;
}


.limit-age {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    line-height: 11px;
    color: #FFFFFF;
    border-radius: 1px 0px 1px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    width: 22px;
    height: 14px;
}


.limit-age--large {
    width: 36px;
    height: 22px;
    font-size: 12px;
}

.book__link {
    position: relative;
}


.limit-age_18 {
    background: #D9447C;
}

.limit-age_16 {
    background: #D944AF;
}

.limit-age_14 {
    background: #F8A529;
}

.limit-age_12 {
    background: #99C8FF;
}

.limit-age_6 {
    background: #87DB54;
}

.limit-age_0 {
    background: #4cb77d;
}

.book-card__description--scroll {
    margin-top: 5px;
}


.book-card-detailed .book-card__present{
    padding: 0;
    border: none;
}

.book-card__description--scroll {
    padding-bottom: 0;
}

.comment-head__wrapper {
    display: flex;
    justify-content: space-between;
}

.comment-head__action{
    display: flex;
}

.comment-headn__element-action {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    display: table;
    color: rgba(79, 79, 79, 0.7);
    text-decoration: none;
    margin-left: 7px;
    margin-right: 7px;
    cursor: pointer;
    margin-top: 10px;
}

/* popup */

.popup-comment__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.popup-comment__wrapper.is-show {
    display: flex;
    z-index: 999;
}

.popup-comment {
    width: 813px;
    max-width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

.popup-comment__head {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.popup-comment__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
}

.popup-comment__close {
    cursor: pointer;
}

.popup-comment__body {
    padding: 15px 30px;
}

.popup-comment__text {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    height: 136px;
    width: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    resize: none;
    padding: 15px 12px;
    outline: none;
}

.popup-comment__text::placeholder {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    opacity: 0.6;
}

.popup-comment__footer {
    padding: 0px 30px 15px;
}

.popup-comment__footer button {
    margin-left: auto;
    margin-right: 0;
}

@media(max-width: 430px) {
    .chapter-btn-groups {
        flex-direction: column;
    }
    .comment-head__wrapper .btn-form{
        width: auto;
    }
    .btn-complaint {
        margin-top: 20px;
    }
}
/* comments deleatung end */

.m-book-box__img, .books-list-mobile__img{
    position:relative;
}
.delete_from_list{
    height: 100%;    
}
.pagination .prev a {
    margin: 0;
}

.wrap-mob-action-icons {
    display: flex;
    align-items: center;
}

.wrap-mob-action-icons .com-text {
    display: none;    
}

.wrap-mob-action-icons .book-like-box {
    margin-left: 0px;
    margin-top: 22px;
    width: 60px;
    margin-left: 25px;
}

.wrap-mob-action-icons .comments_amount_load {
      margin-left: 10px;
}

.m-book-box__line .book-card__action-user--margin {
      width: 60px;
    margin-left: 25px;
}

/* tikets start */
.tiket-wrapper {
    margin-top: 40px;
    display: flex;
}
.tiket-action {
    width: 229px;
    flex-shrink: 0;
    margin-right: 15px;
}

.tiket-link {
    background: #FFFFFF;
    border-radius: 3px;
    padding: 15px;
}

.tiket-link a {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #566895;
    text-decoration: none;
}

.tiket-link a svg {
    margin-left: 16px;
}

.tiket-list {
    background: #FFFFFF;
    border-radius: 3px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    min-height: 503px;
}

.tiket-item {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.tiket-item.is-active-page {
    background: #F6F6F6;
    border-bottom: 1px solid transparent
}


.tiket-item__head {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.tiket-item__id {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    opacity: 0.6;
}
.tiket-item__status {
    display: flex;
    align-items: center;
}




.tiket-item__status--circle {
    width: 18px;
    height: 18px;
    background-color: rgba(79, 79, 79, 0.5);
    border-radius: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDEyIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxjaXJjbGUgY3g9IjEiIGN5PSIxIiByPSIxIiBmaWxsPSJ3aGl0ZSIvPgo8Y2lyY2xlIGN4PSI2IiBjeT0iMSIgcj0iMSIgZmlsbD0id2hpdGUiLz4KPGNpcmNsZSBjeD0iMTEiIGN5PSIxIiByPSIxIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-position: center;
}

.tiket-item--answer .tiket-item__status--circle {
    background-color: #467AFF;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDRMNCA3TDkgMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KPC9zdmc+Cg==');
}


.tiket-item__status--text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: rgba(79, 79, 79, 0.5);
    margin-left: 10px;
}

.tiket-item--answer .tiket-item__status--text {
    color: #467AFF;
}

.tiket-item__date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #566895;
    margin-left: auto;
}

.tiket-item__time {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 8px;
    line-height: 10px;
    color: #566895;
    margin-left: 10px;
}

.tiket-item__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin: 20px 0 0 0;
    display: block;
    text-decoration: none;
}



.send-support {
   width: 100%;
}

.send-support__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #566895;
    margin: 0;
    padding: 15px 0 11px;
    border-bottom: 1px solid #467AFF;
    text-align: center;
}

.tiket-form-box {
    background-color: #fff;
    border-radius: 3px;
    margin-top: 15px;
}

.tiket-form {
    display: block;
}

.tiket-form__head{
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.tiket-form__head--link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.tiket-form__head span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
}

.tiket-form__head svg {
    margin-left: 11px;
}

.tiket-form__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 20px;
}

.tiket-form__body {
    padding: 20px 15px 40px;
}


.title-message {

}

.title-message__select {
    position: relative;
    display: block;
    width: 100%;
}

.title-message__select::after {
    content: "";
    display: block;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #4F4F4F transparent transparent transparent;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 1rem;
    z-index: 1;
    margin-top: 10px;
}


.title-message__select-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    margin-bottom: 10px;
}

.title-message__select select {
    position: relative;
    display: block;
    width: 100%;
    outline: none;
    border: 1px solid #EBF0FF;
    border-radius: 5px;
    padding: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -o-appearance: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 20px;
}

select::-ms-expand {
    display: none;
}

.tiket-text {
    border: 1px solid #EBF0FF;
    border-radius: 5px;
    padding: 15px;
    height: 169px;
    width: 100%;
    resize: none;
    outline: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
}

.tiket-text::placeholder {
    opacity: 0.6;
}

.tiket-btn {
    width: 100%;
    padding: 16px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin-top: 32px;
}


.tiket-box {
    width: 100%;
}

.tiket-box__head {
    background: #FFFFFF;
    border-radius: 3px;
    padding: 8px 15px;
    min-height: 49px;
}

.tiket-box__id {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    opacity: 0.6;
}

.tiket-box__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.tiket-box__person-avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 100%;
    flex-shrink: 0;
}

.tiket-box__person-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.tiket-box__body {
    margin-top: 15px;
    height: 400px;
    overflow-y: auto;
}

.tiket-box__person-info {
    margin-left: 20px;
}

.tiket-box__person-date {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
}

.tiket-box__person-name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    margin-top: 6px;
}

.tiket-box__person {
    display: flex;
    align-items: center;
}

.tiket-box__text {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 20px;
    max-width: 473px;
    margin-left: 65px;
    margin-top: 15px;
}

.estimate-answer__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    opacity: 0.6;
    margin-top: 40px;
}

.emogi-list {
    margin: 10px -7.5px 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.emogi-list__item {
    margin-left: 7.5px;
    margin-right: 7.5px;
    cursor: pointer;
}

.tiket-box__message:not(:last-child) {
    margin-bottom: 30px;
}

.estimate-answer {
    display: none;
}

.tiket-box__message--support .estimate-answer {
    display: block;
}

.tiket-send-form {
    display: block;
    margin-top: 34px;
}

.tiket-send-form__box {
   padding: 17px 15px;
   border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    display: flex;
}

.tiket-send-form__field {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 7px;
    outline: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(79, 79, 79, 1);
    padding-left: 54px;
}

.tiket-send-form__btn {
    width: 172px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

.tiket-send-form__field::placeholder {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(79, 79, 79, 0.5);
}

.container-auto {
    width: auto;
}

.tiket-link--mobile {
    display: none;
}


@media(max-width:992px) {
    .tiket-wrapper {
        flex-direction: column-reverse;
    }

    .tiket-action {
        width: auto;
        margin-top: 30px;
    }

    .tiket-list {
        min-height: unset;
    }

    .tiket-link--mobile {
        display: block;
        margin-bottom: 30px;
    }

    .tiket-link-desctop {
        display: none;
    }
}


@media(max-width:576px) {
    .tiket-box__text {
        margin-left: 25px;
    }

    .tiket-send-form__box {
        flex-direction: column;
    }

    .tiket-send-form__btn {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .tiket-send-form__field {
        padding: 10px;
    }

    .emogi-list__item {
        width: 25px;
    }
}
/* tikets end */


/* card start */
.card-box {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 15px 30px 15px;
}

.card-box {
    margin-bottom: 100px;
}

.card-box .catalog-title {
    margin: 0;
    padding-bottom: 11px;
}

.card-add-list {
    margin: 0 -7px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card-add-list__item {
    margin-left: 7px;
    margin-right: 7px;
}

.card-add-list__name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin-top: 15px;
}

.card-add-list__btn {
    border: 1px solid #467AFF;
    border-radius: 3px;
    padding: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    width: 244px;
    max-width: 100%;
    margin-top: 30px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    cursor:pointer;
}

.card-add-list__btn:hover {
    background-color: #467AFF;
    color: #fff;
}

.card-add-list__one-item {

}

.card-add-list__one-item .card-add-list__item{
    margin-left: auto;
    margin-right: auto;
}

.card-data {
    background: linear-gradient(104.93deg, #467AFF -28.9%, #EBF1F8 94.26%);
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 10px;
    width: 244px;
    height: 126px;
    margin-top: 15px;
}


.card-data__info {
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
}

.card-data__name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
}

.card-data__number {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}


@media(max-width:768px) {
    .card-add-list {
        flex-direction: column;
    }

    
    .card-add-list__item {
        margin-bottom: 30px;
    }
}
/* card end */
/**
 * Swiper 8.0.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 1, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-open {
  overflow: initial;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none !important;
}

.choices[data-type*='select-one'] {
  cursor: pointer;
}

.choices[data-type*='select-one'] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*='select-one'] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
  margin: 0;
}

.choices[data-type*='select-one'] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}

.choices[data-type*='select-one'] .choices__button:hover, .choices[data-type*='select-one'] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*='select-one'] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00bcd4;
}

.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
  display: none;
}

.choices[data-type*='select-one']:after {
  content: '';
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*='select-one'].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*='select-one'][dir='rtl']:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*='select-one'][dir='rtl'] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*='select-multiple'] .choices__inner,
.choices[data-type*='text'] .choices__inner {
  cursor: text;
}

.choices[data-type*='select-multiple'] .choices__button,
.choices[data-type*='text'] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  /* border-left: 1px solid #008fa1; */
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMiAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik05LjMzMzMzIDIuNjY2NzVWMi4wMDAwOEM5LjMzMzMzIDEuNjQ2NDYgOS4xOTI4NiAxLjMwNzMyIDguOTQyODEgMS4wNTcyN0M4LjY5Mjc2IDAuODA3MjI0IDguMzUzNjIgMC42NjY3NDggOCAwLjY2Njc0OEg0QzMuNjQ2MzggMC42NjY3NDggMy4zMDcyNCAwLjgwNzIyNCAzLjA1NzE5IDEuMDU3MjdDMi44MDcxNCAxLjMwNzMyIDIuNjY2NjcgMS42NDY0NiAyLjY2NjY3IDIuMDAwMDhWMi42NjY3NUgwLjY2NjY2N0MwLjQ4OTg1NiAyLjY2Njc1IDAuMzIwMjg2IDIuNzM2OTkgMC4xOTUyNjIgMi44NjIwMUMwLjA3MDIzNzkgMi45ODcwMyAwIDMuMTU2NiAwIDMuMzMzNDJDMCAzLjUxMDIzIDAuMDcwMjM3OSAzLjY3OTggMC4xOTUyNjIgMy44MDQ4MkMwLjMyMDI4NiAzLjkyOTg0IDAuNDg5ODU2IDQuMDAwMDggMC42NjY2NjcgNC4wMDAwOEgxLjMzMzMzVjExLjMzMzRDMS4zMzMzMyAxMS44NjM4IDEuNTQ0MDUgMTIuMzcyNiAxLjkxOTEyIDEyLjc0NzZDMi4yOTQxOSAxMy4xMjI3IDIuODAyOSAxMy4zMzM0IDMuMzMzMzMgMTMuMzMzNEg4LjY2NjY3QzkuMTk3MSAxMy4zMzM0IDkuNzA1ODEgMTMuMTIyNyAxMC4wODA5IDEyLjc0NzZDMTAuNDU2IDEyLjM3MjYgMTAuNjY2NyAxMS44NjM4IDEwLjY2NjcgMTEuMzMzNFY0LjAwMDA4SDExLjMzMzNDMTEuNTEwMSA0LjAwMDA4IDExLjY3OTcgMy45Mjk4NCAxMS44MDQ3IDMuODA0ODJDMTEuOTI5OCAzLjY3OTggMTIgMy41MTAyMyAxMiAzLjMzMzQyQzEyIDMuMTU2NiAxMS45Mjk4IDIuOTg3MDMgMTEuODA0NyAyLjg2MjAxQzExLjY3OTcgMi43MzY5OSAxMS41MTAxIDIuNjY2NzUgMTEuMzMzMyAyLjY2Njc1SDkuMzMzMzNaTTggMi4wMDAwOEg0VjIuNjY2NzVIOFYyLjAwMDA4Wk05LjMzMzMzIDQuMDAwMDhIMi42NjY2N1YxMS4zMzM0QzIuNjY2NjcgMTEuNTEwMiAyLjczNjkgMTEuNjc5OCAyLjg2MTkzIDExLjgwNDhDMi45ODY5NSAxMS45Mjk4IDMuMTU2NTIgMTIuMDAwMSAzLjMzMzMzIDEyLjAwMDFIOC42NjY2N0M4Ljg0MzQ4IDEyLjAwMDEgOS4wMTMwNSAxMS45Mjk4IDkuMTM4MDcgMTEuODA0OEM5LjI2MzEgMTEuNjc5OCA5LjMzMzMzIDExLjUxMDIgOS4zMzMzMyAxMS4zMzM0VjQuMDAwMDhaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
  background-size: 13px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}

.choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus,
.choices[data-type*='text'] .choices__button:hover,
.choices[data-type*='text'] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 10px;
  background: #F0F2FF;
  border-radius: 10px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir='rtl'] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 500;
  margin-right: 7px;
  margin-bottom: 7px;
  background-color: #99C8FF;
  border: none;
  color: #ffffff;
  word-break: break-all;
  box-sizing: border-box;
  border-radius: 5px;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir='rtl'] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  /* background-color: #00a5bb;
  border: 1px solid #008fa1; */
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.choices__list--dropdown.is-active {
  visibility: visible;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir='rtl'] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir='rtl'] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir='rtl'] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

.choices__input {
    padding: 0!important;
}
/*=====  End of Choices  ======*/

/*update start*/
.wrapper-sub-menu-box {
  position: absolute;
  top: 98%;
  padding-top: 10px;
  transform: translateY(-30px);
  user-select: none;
}
.navigation-list__item-dropdown:hover .wrapper-sub-menu-box__inner {
  opacity: 1;
  z-index: 11;
  display: flex;
}

.wrapper-sub-menu-box__inner {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(86, 104, 149, 0.1);
  border-radius: 3px;
  padding: 15px;
  width: 90px;
  z-index: -1111;
  opacity: 0;
  display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }

.wrapper-sub-menu-box a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #566895;
  text-decoration: none;
}

.wrapper-sub-menu-box a:hover {
  color: #467aff;
}

.wrapper-sub-menu-box a:not(:last-child) {
  margin-bottom: 10px;
}

.search-form__field-box-desctop .search-form__field {
  background: rgba(240, 242, 255, 0.6);
  border: 1px solid #467aff;
  border-radius: 4px;
}

.search-form__field-box-desctop .search-form__field::placeholder {
  color: #467aff;
}

.close-search-field {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  display: none;
}

.close-search-field.isShow {
  display: block;
}

.header-page__row {
  width: 990px;
  max-width: 990px;
  justify-content: flex-start;
}

.header-page {
  background: #ebf0ff;
  border: unset;
}

.navigation-list__link--background {
  background: #ffffff;
  border-radius: 3px;
  padding: 10px 17px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #566895;
}

.search-form__btn {
  position: absolute;
  left: 10px;
  top: 6px;
}

.search-form__field {
  padding: 9px 10px 10px 44px;
  width: 472px;
}

.header-group-actions {
  margin-left: 15px;
  display: flex;
}

.header-notification {
  background: #eef1ff;
  border: 1px solid #467aff;
  border-radius: 3px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #467aff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
}

.header-link-login {
  width: 170px;
  height: 37px;
  background: #467aff;
  border-radius: 3px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 20px;
  transition: background-color 0.3s ease-in-out;
}

.header-link-login:hover {
  background-color: #3862cc;
}

body {
  background: #ebf1f8;
}

@media(max-width:992px) {
    html.dark-theme body {
        background: #171720;
    }    
}

.content--no-backgraund {
  background-color: transparent;
  padding: 0;
}

.slider-box {
  background: #ffffff;
  border-radius: 3px;
  padding: 15px;
}

.slider-box__head {
  display: flex;
  justify-content: space-between;
}

.slider-box__head {
  display: flex;
  align-items: center;
}

.slider-box__title-head {
  margin: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #566895;
}

.slider-box__nav {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.slider-box__nav-batton {
  width: 35px;
  height: 28px;
  border: 1px solid #467aff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  margin-right: 15px;
}

.slider-box-wrap-with-auto {
  width: auto;
  max-width: 100%;
}

.book__categories {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: rgba(79, 79, 79, 0.5);
}

.book--medium .book__categories {
  margin-top: 5px;
}

.book--medium .book__name {
  line-height: 17px;
  margin-top: 5px;
}

.book--medium .book__author {
  font-size: 12px;
}

.book--medium .book__author {
  margin-top: 5px;
}

.slider-link-all-see {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #467aff;
  display: table;
  margin-left: auto;
  margin-top: 15px;
}

.box-list-wrapper-items {
  background: #ffffff;
  border-radius: 3px;
  padding: 15px;
  margin-top: 12px;
}

.box-list-wrapper-items h3 {
  margin: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #566895;
}

.list-items--background {
   /* background: #ffffff; */
    border-radius: 3px;
    /* padding: 15px; */
    margin-top: 15px;
}

.mobile-overlay-new {
    display: none;
}

.list-items--background .list-items__value {
  margin-top: 0;
}

.list-items--background .list-items__value:not(:last-child) {
  margin-bottom: 15px;
}

.box-list-wrapper-items-mt {
  margin-top: 30px;
}

.list-items-author {
  display: flex;
}

.list-items-author:not(:last-child) {
  margin-bottom: 15px;
}

.list-items-author__avatar {
  /* width: 70px;
  height: 70px; */
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink:0;
}

.list-items-author__avatar img {
  /* width: 70px;
  height: 70px; */
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: top;
}

.list-items-author__info {
  margin-left: 10px;
}

.list-items-author__name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #4f4f4f;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease-in-out;
}

.list-items-author__name:hover {
  color: #2965ff;
}

.list-items-author__likes {
}

.book-like-box {
}

.slider-box__head--edit {
  display: flex;
}

.button-edit-slider {
  margin-right: 15px;
}

.choice-combobox {
  display: flex;
  align-items: center;
}

.choice-combobox__label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #4f4f4f;
  opacity: 0.6;
  margin-right: 10px;
}

.choice-combobox__select {
}

.popular_choice {
}

.choice-combobox__select {
  position: relative;
}

.choice-combobox__select select {
  position: relative;
  display: block;
  width: 138px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  padding-right: 25px;
  background-color: transparent;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #566895;
  opacity: 0.6;
  cursor: pointer;
}

.choice-combobox__select svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  margin-top: -3px;
}

.button-save-slider {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #467aff;
  margin-left: auto;
}

.choice-combobox-ml {
  margin-left: 100px;
}

.header-page.is-active {
  box-shadow: 0px 4px 4px rgba(70, 122, 255, 0.06);
  transition: box-shadow 0.3s ease-in-out;
}

.page-login {
  /* background-image: url('../../assets/images/bk-bg.jpg'); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
  margin-top: 0;
}

.box-login-form {
  width: 375px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 7px;
  padding: 43px 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 60px;
  position: relative;
}

.box-login-form__back-link {
  position: absolute;
  right: 20px;
  top: 25px;
  cursor: pointer;
  text-decoration: none;
}

.box-login-form__logo {
  margin-bottom: 40px;
  text-align: center;
}

.box-login-form__title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #566895;
  text-align: center;
  margin-bottom: 25px;
}

.field-box--br {
  background: #ebf0ff;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.field-box--br .field-box__input {
  padding: 17px 15px;
}

.btn-fill {
  background: #467aff;
  border-radius: 3px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}

.btn-fill:hover {
  background-color: #3862cc;
}

.resset-password {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-decoration-line: underline;
  color: #566895;
  text-align: center;
  display: block;
  margin-top: 15px;
  margin-bottom: 30px;
}

.btn-outline {
  padding: 16px;
  border-radius: 3px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #467aff;
  width: 100%;
  border: 2px solid #467aff;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-outline:hover {
  background-color: #467aff;
  color: #fff;
}

.auth-social {
  margin-top: 40px;
  margin-bottom: 30px;
}

.auth-social__title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #566895;
  margin-bottom: 30px;
}

.auth-social__list {
  display: flex;
  width: 297px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.auth-social__item {
}

.box-login-form__title-restore {
  margin-bottom: 40px;
}

.recovery-action-box {
  text-align: center;
  margin-top: 40px;
}

.recovery-action-box a {
  margin-top: 15px;
  display: block;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #467aff;
  text-decoration: none;
}

.recovery-action-box__info {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #4f4f4f;
}

.field-box__label-entry {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #4f4f4f;
  opacity: 0.7;
}

.field-box__wrap .field-box--br {
  margin-bottom: 15px;
}

.box-login-form--mt {
  margin-top: 24px;
}

.btn-register {
  margin-top: 40px;
}

.register-action-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.register-action-box a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #467aff;
  margin-left: 15px;
}

.field-box--pass {
  position: relative;
}

.field-box__see-btn-password {
  position: absolute;
  right: 15px;
  top: 13px;
  outline: none;
}

.person-avatar__mobile {
  display: none;
}

.mobile-person-menu {
  display: none;
}

.checkbox__save {
    display: none;
    margin-left: auto;
}

.list-items--background--slider,
.author-slider-mobile {
    display: none;
}

.choice-combobox-wrapper {
    display: flex;
}

@media (max-width: 992px) {
  .header-page__row {
    max-width: 647px;
    width: auto;
  }

  .author-slider-mobile {
    display: block;
    background: #ffffff;
    border-radius: 3px;
    padding: 10px 15px 10px;
    margin-top: 10px;
  }

  .list-items--background-desctop {
    display: none!important;
  }


  .list-items-author {
    align-items: center;
  }

  .author-slider-mobile .list-items-author {
    flex-direction: column;
    text-align: center;
  }

  .author-slider-mobile .list-items-author__info {
    margin-left: 0;
  }

  .author-slider-mobile .list-items-author__name {
    height: 30px;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .author-slider-mobile .book-like-box {
    justify-content: center;
    margin-top: 10px;
  }

  .header-group-actions {
    display: none;
  }

  .search-form__field {
    width: 320px;
  }

  .close-search-field {
    display: block;
  }

  .close-search-field {
    right: 8px;
    top: 8px;
  }

  .person-avatar__mobile {
    display: block;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 100%;
    margin-left: 20px;
    flex-shrink: 0;
  }

  .person-avatar__mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .menu-open {
    margin-left: 20px;
  }

  .header-page__logo-link {
    flex-shrink: 0;
  }

  .mobile-overlay-new {
    background-color: #fff;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-overlay-new.is-active {
    transform: translateY(0%);
  }

  .header-page__logo-link {
    position: relative;
    z-index: 102;
  }

  .mobile-overlay-new {
  }

  .mobile-overlay-new a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #566895;
    text-decoration: none;
    margin-bottom: 15px;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .search-form__field-box-desctop.d-block {
    animation: fadeIn 0.5s;
  }



  .mobile-person-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 30000;
    padding:  20px;
    display: none;
  }

  .mobile-person-menu.is-active {
    display: block;
    overflow-y: auto;
  }

  .mobile-person-menu {
    background-color: #fff;
  }

  .mobile-person-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: fixed;
    left: 20px;
    right: 20px;
    background-color: #fff;
    z-index: 100;
    top: 0;
    padding: 10px 0;
  }
  .mobile-person-menu__user {
    display: flex;
    align-items: center;
  }
  .mobile-person-menu__user-avatar {
    display: block;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 100%;
  }

  .mobile-person-menu__user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-person-role {
    margin-top: 40px;
  }

  .mobile-person-menu__user-name {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    margin-left: 6px;
  }

  .menu-open {
    z-index: 300!important;
  }

  .role-label {
    padding: 6px 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #4F4F4F;
    opacity: 0.6;
    background: #EBF0FF;
    border-radius: 3px;
    margin-right: 20px;
  }

  .role-check:checked+label  {
    background: #467AFF;
    border-radius: 3px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    opacity: 1;
  }

  .coins-box {
    margin-top: 30px;
  }

  .coins-box span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
  }

  .coins-box svg {
    margin-left: 9px;
  }

  .me-coins {
    margin-top: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
  }

  .payment-link {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-decoration-line: underline;
    color: #566895;
    margin-top: 10px;
    display: block;
  }

  .list-person-link {
    padding: 10px 0 0 0;
    margin: 0;
    list-style: none;
  }

  .list-person-link li {
    display: flex;
    align-items: flex-end;
    padding-top: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
  }

  .list-person-link li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .list-person-link a {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
    text-decoration: none;
  }

  .coins-btn svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
  }

  .coins-btn.is-active svg{
    transform: rotate(0deg);
  }

  .coins-wrap {
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
  }

  .coins-wrap.is-active {
    height:55px;
  }

  .coins-box-reading {
    display: none;
  }

  .choice-combobox-ml {
    margin-left: 40px;
  }

  .list-mobile-slider-popular {
    background: #ffffff;
    border-radius: 3px;
    padding: 0px 15px 10px;
    overflow: hidden;
    margin-top: 10px;
  }

  .list-mobile-slider-popular .slider-book {
    margin-top: 0;
  }

  .list-mobile-slider-popular .list-items__value {
    width: unset!important;
    margin-left: 0!important;
    margin-right: 0!important;
  }

  .list-mobile-slider-popular .list-items__value .book__categories,
  .list-mobile-slider-popular .list-items__value .book__name,
  .list-mobile-slider-popular .list-items__value .book__author {
    display: none;
  }

  .list-items--background-desctop {
    display: none;
  }

  .list-items--background--slider {
    display: block;
  }
}

@media(max-width:768px) {
    .slider-box-wrap .book__categories {
        display: block;
    }

    .choice-combobox__label {
        display: none;
    }

    .button-save-slider {
        display: none;
    }

    .checkbox__save {
        display: block;
    }

    .choice-combobox__select select {
        font-size: 12px;
        width: 120px;
    }
    
    .slider-box {
          background: transparent;
          border-radius: 3px;
          padding: 0px;
    }

}
@media (max-width: 670px){
    .book-card-detailed--mobile {
        margin-bottom: 22px;
    }
}
@media (max-width: 576px) {
  .box-login-form {
    width: auto;
    margin: 0;
    border-radius: 0;
    min-height: 400px;
  }

  .auth-social__list {
    width: 220px;
  }

  .search-form__field {
    max-width: 260px;
    width: 100%;
  }

  .sear-btns {
    margin-left: auto;
  }
  
  .coins-box{
   
  }

  .list-person-link {
    
  }

  .slider-box__nav-batton:first-child {
    display: none;
  }

  .slider-box__nav-batton:nth-child(2) {
    border: none;
  }

  .slider-box__title-head {
    font-size: 13px;
  }
  .book--medium .book__name, .book--small .book__name {
    font-size: 13px!important;
    word-break: break-word;
  }

  .book--medium .book__author {
    font-size: 10px;
  }

  .slider-box__nav-batton {
    justify-content: flex-end;
  }

  .box-list-wrapper-items h3 {
    text-align: center;
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 460px) {
  .d-none-mb {
    display: none;
  }

  .header-page .search-form-box {
    width: 100%;
  }

  .search-form__field {
    max-width: 100%;
  }

  .choice-combobox-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }

  .choice-combobox-ml {
    margin-left: 0;
    margin-top: 15px;
  }

  .slider-box__head--edit {
    align-items: center;
  }
}

button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
} 
.mobile-person-role .many-box {
    padding: 0;
}
.mobile-person-role .many-box {
    padding-top: 32px;
}
@media (min-width: 992px) {
    .list-mobile-slider-popular{
        display:none;    
    }    
}
/*update end*/
.box-login-form .remember{
    margin-left: 100px;
}


/* upload start*/

.box-upload {
    margin-top: 15px;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 20px;
    max-width: 472px;
    margin-left: auto;
    margin-right: auto;
}

.box-upload__title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin: 0 0 15px 0;    
    color: #4F4F4F;
}

.box-upload__text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4F4F4F;
}

.upload-form {
    display: block;
    margin-top: 30px;
}

.upload-form__label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #4F4F4F;
    margin: 0;
    margin-bottom: 15px;
}

.upload-form__group {
    display: flex;
    justify-content: center;
}

.upload-form__box:first-child {
    margin-right: 44px;
}

.upload-form__box span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin-right: 12px;
}

.upload-form__field {
    border: 1px solid #467AFF;
    border-radius: 3px;
    outline: none;
    padding: 4px;
    width: 35px;
    height: 35px;
}
.upload-form__field.disabled{
    cursor: not-allowed;
}

.upload-btn__field {
    display: none;
}

.upload-btn__label {
    background: #566895;
    border-radius: 3px;
    width: 100%;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 62px;
}
.upload-btn__label.disabled{
    cursor: not-allowed;
}

.upload-btn__label-upload,
.upload-doc__success {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    margin-left: 10px;
}

.upload-doc__wrapper {
    display: flex;
    align-items: center;
}

.d-none {
    display: none!important;
}

.upload-btn__text,
.field-btn__text {
    margin-top: 10px;
    color: #cf6060;
    display: block;
    text-align: center;
}

.field-btn__text {
    height: 20px;
    display: block;
}

.upload-btn__text.success {
    color: #30a591;
}

.upload-doc__clear {
    color: #fff;
    font-size: 25px;
    margin-left: 10px;
}

.container-file {
    width: 990px;
    max-width: 100%;
}

.add-box__group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
}

.add-box__group .add-box--chapter {
    width: calc(50% - 26px);
    margin-left: 13px;
    margin-right: 13px;
}

.add-box__group .add-box--chapter:nth-child(1),
.add-box__group .add-box--chapter:nth-child(2) {
    margin-bottom: 30px;
}

.add-box__group .add-box--chapter {
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.add-box__group .add-box--chapter:nth-child(2),
.add-box__group .add-box--chapter:nth-child(3) {
    background-color: #566895;
    color: white;
}
.add-box__group .add-box--chapter:nth-child(4){
    background-color: white;
    color: #566895;
    cursor:pointer;
}


.add-box__group .add-box--chapter:hover {
    background-color: #566895;
    color: white;
}

.add-box__group .add-box--chapter:nth-child(2):hover,
.add-box__group .add-box--chapter:nth-child(3):hover { 
    background-color: white;
    color: #566895;
}

.new-text-uloads{
    margin: 0 0 15px 0;
}

@media(max-width:768px) {
    .add-box__group {
        flex-direction: column;
    }

    .add-box__group .add-box--chapter:not(:last-child) {
        margin-bottom: 30px;
    }
}
/* upload end*/


/* promo upload start*/
.page-row__line {
    display: flex;
}


.page-row__line .new-cycle-box__show {
    width: 140px;
    flex-shrink: 0;
}

.page-row__line-info {
    width: 100%;
    margin-left: 24px;
}

.box-inforamtion-upload {
    display: flex;
}

.box-inforamtion-upload .form-wrap-field {
    margin-top: 15px;
}

.box-inforamtion-upload .form-wrap-field input {
    height: 42px;
}

.box-inforamtion-upload .form-wrap-field label {
    margin-bottom: 10px;
}

.box-inforamtion-upload .choice-box {
    width: 50%;
}


.box-inforamtion-upload .form-wrap-field {
    width: 50%;
    margin-left: 16px;
}

.box-inforamtion-action {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.choice-box-genres--mt-no {
    margin-top: 2px;
}

.box-inforamtion-action__info {
    margin-left: 12px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
}

.other-information-upload .form-wrap-field .my-area-height-b {
    height: 80px;
}

.info-text-input {
    margin-top: 4px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
}

.information-box-upload {
    padding-top: 27px;
    border-top: 1px solid  #99C8FF;
    margin-top: 30px;
}

.information-box-upload__row {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}

.information-box-upload__col h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin: 0;
}

.information-box-upload__col p {
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
}

.information-box-upload__col:last-child {
    margin-left: 15px;
}

.information-box-upload__col:first-child {
    margin-right: 25px;
}


.generation-box_field-wrap {

}

.generation-box_label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 15px;
    display: block;
}

.generation-box_field {
    background: #F0F2FF;
    height: 40px;
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    height: 240px;
}

.generation-box__fileupload-box {
    margin-top: 16px;
}

.file-box-main {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}


.file-box-main__label {
	position: relative;
	display: inline-block;
    cursor: pointer;
}

.file-box-main__field {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.file-box-main__span {
    display: flex;
    align-items: center;
    border: 1px solid #99C8FF;
    border-radius: 3px;
    padding: 5px;
    width: 210px;
}

.file-box-main__span span {
    margin-left: 7px;
}

.file-box-main__delete {
    cursor: pointer;
    margin-left: 10px;
    opacity: 0;
}


.file-box-main__delete.show {
    opacity: 1;
}

.file-box-main__label .file {

}

.file-box-main__span svg {
    flex-shrink: 0;
}

.file-box-main__count {
    margin-right: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    width: 15px;
}

.generation-box__fileupload-row {
    display: flex;
    margin-top: 10px;
}

.generation-box__fileupload__col:nth-child(even) {
    margin-left: 20px;
}

.add-button-box {
    background: #FFFFFF;
    border: 1px solid #99C8FF;
    border-radius: 5px;
    cursor: pointer;
    padding: 13px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.add-button-box span {
    margin-left: 15px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #566895;
}

.combo-box {
    margin-bottom: 30px;
}

.color-gamma {
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid #99C8FF;
    border-bottom: 1px solid #99C8FF;
}

.color-gamma {

}

.color-gamma h3 {
    margin: 0 0 8px 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
}

.color-gamma--info {
    margin-bottom: 20px;
}


.promo-hero {
}

.promo-hero__row {

}

.promo-hero__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-hero__head h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #4F4F4F;
}

.promo-hero__info {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(79, 79, 79, 0.7);
    max-width: 460px;
}

.hero-item__head {
    display: flex;
    align-items: flex-end;
}

.hero-item__head .file-box-main__label {
    margin-left: 50px;
}

.hero-item {
    margin-top: 30px;
    margin-bottom: 35px;
}

.hero-item__body {
    margin-top: 16px;
}

.hero-item__body .generation-box_field {
    height: 80px;
}


.promo-footer {
    margin-top: 70px;
}

.block-page-promo .form-wrap-field label,
.block-page-promo .generation-box_label {
    margin-bottom: 13px;
}

.promo-footer__action {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    margin-left: -10px;
    margin-right: -10px;
}

.promo-btn {
    padding: 10px;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #467AFF;
    cursor: pointer;
    border: 1px solid #467AFF;
    border-radius: 3px;
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
    transition: background-color 0.3s ease-in-out , color 0.3s ease-in-out;
}

.promo-btn:hover {
    background-color: #467AFF;
    color: #fff;
}

.promo-btn--primary {
    background-color: #467AFF;
    color: #fff;
}

.promo-btn--primary:hover {
    background-color: #fff;
    color: #467AFF;
}

switch--big {

}
.switch--big .slider_input {

}
.switch--big .slider_span {

}

.switch--big .slider_span:before {
    width: 26px;
    height: 26px;
}

.switch--big .slider_span {
    width: 56px;
    height: 28px;
}

.switch--big .slider_span:before {
    bottom: 1px;
}


/* Добавил 26.12 */

.file-box-main__wrapper-img {
    width: 100px;
    height: 100px;
}

.file-box-main__wrapper-img  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:800px) {
    .box-inforamtion-action__info {
        display: none;
    }
}

@media(max-width:576px) {
    .page-row__line-info {
        margin-left: 0;
    }

    .page-row__line {
        flex-direction: column;
    }

    .box-inforamtion-upload {
        flex-direction: column;
    }

    .box-inforamtion-upload .choice-box {
        width: 100%;
    }

    .page-row__line-info {
        margin-top: 30px;
    }

    .box-inforamtion-upload .form-wrap-field {
        width: 100%;
        margin-left: 0px;
    }

    .information-box-upload__row {
        flex-direction: column;
    }

    .information-box-upload__col:last-child {
        margin-left: 0px;
    }

    .page-row__line-info .select-box {
        width: 100%;
    }

    .generation-box__fileupload-row {
        flex-direction: column;
        margin-top: 20px;
    }

    .generation-box__fileupload__col:nth-child(even) {
        margin-left: 0;
    }

    .hero-item__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-item__head .file-box-main__span {
        margin-top: 22px;
    }

    .hero-item__head .file-box-main__label {
        margin-left: 0;
    }

    .promo-footer__action {
        flex-direction: column;
    }

    .promo-footer__action a,
    .promo-footer__action button {
        margin-top: 15px;
    }
}
/* promo upload end*/



/*top-author slider*/

.author-top-slide__wrap {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 2px solid #467AFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.author-top-slide__wrap--box {
  border-radius: 100%;
  width: 76px;
  height: 76px;
  overflow: hidden;
}

.author-top-slide__avatar {
  width: 76px;
  height: 76px;
  object-fit: cover;
  object-position: top;
}

.author-top-slide__name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: #566895;
  margin: 5px 0 0 0;
  text-decoration: none;
  display: block;
}

.author-top-slide-count {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #467AFF;
  margin-left: 5px;
}

.author-top-slide__state-like,
.author-top-slide__state-read,
.author-top-slide__state-coin {
  display: flex;
  align-items: center;
}

.author-top-slide__state-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 3px;
}

.author-top-slide__state-bottom {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.author-top-slide__state-read span {
  margin-bottom: 2px;
}

.author-state-box {
  margin-top: 19px;
  border-bottom: 1px solid #99C8FF;
  padding-bottom: 6px;
}

.author-state-box .author-top-slide__state-like {
  transform: translateY(1px);
}

.author-state-box .author-top-slide__state-read {
  transform: translateY(2px);
}

.author-state-box--mob {
  display: none;
}

.author-top-slide__state-pwa {
  display: flex;
}

.author-top-btn {
  display: flex;
  align-items: center;
  margin-top: 30px!important;
  margin-left: auto;
  width: 110px;
}

.author-top-btn span {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #2470A0;
  margin-left: 4px;
}

.author-top-slide__state-pwa .author-top-slide__state-top span {
  font-size: 14px;
  color: #2470A0;
}

.author-top-slide__state-pwa .author-top-slide__state-top {
  justify-content: flex-start;
}

.author-top-slide__state-pwa .author-top-slide__state-read,
.author-top-slide__state-pwa .author-top-slide__state-bottom {
  margin-left: 20px;
}

.author-top-slide__state-pwa {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184, 186, 189, 0.3);
}

.author-top-slide__state-pwa .author-top-slide__state-bottom {
  margin-top: 0;
}

html.dark-theme .author-top-slide__state-pwa .author-top-slide__state-top span,
html.dark-theme .author-top-btn span{
  color: #84ACC5;
}

html.dark-theme .author-top-slide__state-pwa {
  border-bottom-color: #84ACC5;
}

html.dark-theme .author-top-slide__state-pwa .author-top-slide__state-like path,
html.dark-theme .author-top-slide__state-pwa .author-top-slide__state-read path,
html.dark-theme .author-top-slide__state-pwa .author-top-btn path {
  stroke: #84ACC5;
}
html.dark-theme .author-top-slide__state-pwa .author-top-slide__state-coin path {
  fill: #84ACC5;
}

.subscribe_01 {
  margin-left: auto;
}

@media(min-width:1920px) {
    .slider-box-wrap .book__link {
        min-height:234px    
    }
}

@media(max-width: 992px) {
  .author-state-box--mob {
    display: block;
  }
}

@media(max-width: 576px) {
  .author-top-slide-count {
    font-size: 10px;
  }

  .author-top-slide__wrap {
    width: 75px;
    height: 75px;
  }

  .author-top-slide__wrap--box,
  .author-top-slide__avatar {
    width: 66px;
    height: 66px;
  }

  .author-state-box {
    margin-top: 0;
    transform: translateY(-15px);
  }

}

/*top-author slider end*/
.menu-open,
.mobile-overlay,
.sear-btns,
.d-none,
.choice-box--main,
.book-card-detailed--mobile,
.books-list-mobile,
.btn-edit--icon svg,
.mob-nav {
    display: none;
}

.page {
    overflow-x: hidden;
}

.d-none {
    display: none!important;
}

.d-block {
    display: block!important;
}

.d-block {
    display: block;
}

.no-scroll {
    overflow: hidden;
}

@media(max-width:992px) {

    .mob-nav {
        margin-top: 30px;
    }

    .person-box__name {
        font-size: 16px;
        left: 120px;
    }

    .person-box__avatar,
    .person-box__avatar img {
        width: 100px;
        height: 100px;
    }
    
    .person-box {
        height: 140px;
    }

    .person-box__avatar {
        top: 60px;
    }

    .choice-box-border__bottom label{
        margin-bottom: 0;
        margin-top: 15px;
        margin-left: 8px;
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
    }

    .mob-nav {
        margin-bottom: 10px;
        display: flex;
        flex-wrap: wrap;
    }

   

    .mob-nav a {
        margin-bottom: 15px;
        margin-right: 15px;
    }

    .sidebar-desctop {
        display: none;
    }

    .choice-box-mb {
        margin-top: 0;
    }

    .list-genres-desctop,
    .sort-head-desctop {
        display: none;
    }

    .choice-box-border {
        border: 1px solid rgba(86, 104, 149, 0.1);
    }

    .choice-box-border__bottom {
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(79, 79, 79, 0.5);
    }

    .choice-box-border__bottom select {
        background-color: transparent;
    }

    .new-cycle-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .new-cycle-box__fields {
        width: 100%;
        margin-left: 0px;
    }

    .page-row {
        flex-wrap: wrap;
    }

    .content {
        width: 100%;
    }

    .sidebar {
        width: 100%;
        max-width: 647px;
        margin-left: auto;
        margin-right: auto;
    }

    .box-info {
        max-width: 647px;
        margin-left: auto;
        margin-right: auto;
    }

    .content {
        max-width: 647px;
        margin-left: auto;
        margin-right: auto;
    }

    .list-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .container {
        max-width: 647px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-page__row {
        flex-direction: column;
        align-items: center;
    }

    .footer-page__title {
        text-align: center;
    }

    .footer-page__title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .categories-list__item::before {
        content: '';
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 100%;
        left: 0;
        top: 13px;
        transform: translateY(0%);
        background: #467AFF;
    }

    .groups-action,
    .social-box {
        margin-top: 0;
        margin-left: 0;
    }

    .groups-action,
    .social-box {
        margin-top: 40px;
    }

    .footer-nav-list:nth-child(2) {
        margin-left: 0;
    }

    .alert {
        flex-direction: column;
    }

    .footer-nav-list {
        text-align: center;
    }

    .categories-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .categories-list:nth-child(2),
    .categories-list:nth-child(3) {
        margin-left: 0;
    }

    .categories-list {
        width: 179px;
    }

    .categories-list__link {
        line-height: 30px;
    }

    .search-word__wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-word__field {
        margin-left: 0;
    }

    .categories-link {
        margin-right: auto;
    }

    .box-info {
        padding: 15px;
    }

    .line-information {
        text-align: center;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .container {
        width: 100%;
    }


    .menu-open {
        width: 24px;
        height: 17px;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        outline-color: transparent;
        position: relative;
        z-index: 400;
        background-color: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        word-wrap: break-word;
        z-index: 9999999;
        margin-left: 30px;
    }

    .menu-open:hover .menu-open__line {
        /* background: #2A3035;
        border-radius: 1px */
    }

    .menu-open:focus {
        outline: none
    }

    .menu-open.is-active .menu-open__line:nth-child(2) {
        width: 0;
        opacity: 0
    }

    .menu-open.is-active .menu-open__line {
        background-color: #467AFF;
    }

    .menu-open.is-active .menu-open__line:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
        width: 24px;
        -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
        transition: width 0.3s ease, -webkit-transform 0.3s ease;
        -o-transition: width 0.3s ease, transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease
    }

    .menu-open.is-active .menu-open__line:first-child {
        -webkit-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg)
    }

    .menu-open__line {
        display: block;
        width: 24px;
        height: 3px;
        background-color: #467AFF;
        border-radius: 3px;
        -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
        transition: width 0.3s ease, -webkit-transform 0.3s ease;
        -o-transition: width 0.3s ease, transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease
    }

    .menu-open__line:nth-child(2) {
        width: 24px;
        -webkit-transition: width 0.3s ease;
        -o-transition: width 0.3s ease;
        transition: width 0.3s ease
    }

    .menu-open__line:nth-child(3) {
        width: 24px;
        -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
        transition: width 0.3s ease, -webkit-transform 0.3s ease;
        -o-transition: width 0.3s ease, transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease
    }

    .btn-group-desctop {
        display: none;
    }

    .header-page__row {
        justify-content: flex-start;
    }

    .header-page .search-form-box {
        margin-left: auto;
    }

    .mobile-overlay {
        display: block;
        overflow-y: auto;
        position: fixed;
        transform: translateX(-100%);
        left: 0;
        top: 0;
        bottom: 0;
        width: 233px;
        height: 100%;
        background-color: #fff;
        transition: transform 0.3s ease-in-out;
    }

    .mobile-overlay.is-active {
        transform: translateX(0%);
    }

    .mobile-overlay-person {
        height: 99px;
    }

    .mobile-overlay-person {
        background-size: contain;
    }

    .mobile-overlay-person__avatar {
        width: 50px;
        height: 50px;
        border-radius: 100%;
        overflow: hidden;
    }

    .mobile-overlay-person__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-overlay-person__name {
        margin-left: 15px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #FFFFFF;
    }

    .person-box-m {
        display: flex;
        align-items: center;
    }

    .mobile-overlay-person {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-form__field-box-desctop {
        display: none;
    }

    .sear-btns {
        display: block;
    }


    .search-word__title {
        text-align: left;
    }

    /* потом отключить */
    .header-page .navigation {
        display: none;
    }

    .choice-box--main {
        display: block;
        width: 100%;
    }

    .categories-list--mob-not,
    .categories-link-not {
        display: none;
    }

    .categories-box-mob {
        padding: 0;
        margin-top: 0;
        background-color: transparent;
    }

    .breadcrumb ul {
        flex-wrap: wrap;
    }

    .breadcrumb ul li {
        margin-bottom: 8px;
    }

    .box-info-white {
        padding: 30px 20px 30px;
    }

    .page-row-revers {
        flex-wrap: wrap-reverse;
    }

    .book-card-box--bl {
        text-align: center;
        margin-bottom: 40px;
    }

    .book-card-box--bl .buy-action,
    .book-card-box--bl .book-card-action-box {
        justify-content: center;
    }

    .book-card-box--bl .book-card__link--large {
        margin-left: auto;
        margin-right: auto;
    }

    .book-card-box--bl .rating-box-wrap {
        align-items: center;
    }

    .book-card-box--bl .book-card__status,
    .book-card-box--bl .add-favorite {
        max-width: 190px;
        margin-left: auto;
        margin-right: auto;
    }

    .book-card-box--bl .book-card__status-values {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }

    .sidebar-mobile-not {
        display: none;
    }

    .book-publ-box__foot {
        flex-direction: column;
    }

    .btn-publ {
        margin-right: auto;
        margin-top: 30px;
    }

    .wrap-lk {
        display: none;
    }

    .page-inner-container {
        max-width: 100%;
    }

    .table-finance-wrap {
        overflow: hidden;
        overflow-x: scroll;
    }

    .table-finance {
        width: 716px;
    }

    .book-card__wrapper-info {
        flex-direction: column;
    }

    .book-card__stat {
        text-align: left;
    }

    .book-card__wrapper-info  .price {
        margin-left: 0;
    }

    .btn-edit--icon span {
        display: none;
    }

    .btn-edit--icon {
        width: auto;
        padding: 4.5px;
    }

    .book-card__footer {
        align-items: center;
    }

    .btn-edit--icon svg {
        display: block;
        width: 20px;
        height: 20px;
    }

    .group-button-form {
        flex-wrap: wrap;
    }

    .tab_content {
        padding: 20px;
    }

    .tab_item--p-low {
        margin: 0;
    }
    .mob_back {
        display: flex;
    }
}


@media (max-width:690px) {
    .list-subscribtion__item {
        width: calc(100% / 12 * 12 - 14px);
    }

    .subscribtion-box__bottom .book-card__quantity-info {
        margin-bottom: 4px;
    }
}

@media (max-width:670px) {

   


    .catalog-title {
        font-weight: 600;
        font-size: 14px;
        line-height: 17px;
    }

    .slider-book-btn__right,
    .slider-book-btn__left  {
        display: none;
    }

    .books-list-desctop {
        display: none;
    }
    
    .books-list-mobile {
        display: block;
    }

    .books-list-mobile li {
        display: flex;
        margin-top: 15px;
        padding: 15px;
        background: #FFFFFF;
        border-radius: 5px;
        transition: box-shadow 0.3s ease-in-out;
    }

    .books-list-mobile__img {
        width: 100px;
        height: 140px;
        display: block;
        text-decoration: none;
        border-radius: 3px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .books-list-mobile__img img {
        width: 100px;
        height: 140px;
        display: block;
    }

    .books-list-mobile__body {
        margin-left: 10px;
        flex-grow: 1;
    }

    .books-list-mobile__head {
        display: flex;
    }

    .books-list-mobile__head .book-card__title {
        font-size: 12px;
    }

    .books-list-mobile__head .book-card__rating {
        margin-top: 3px;
        margin-left: 18px;
        font-size: 10px;
    }

    .books-list-mobile .book-card__author {
        margin-top: 5px;
    }

    .books-list-mobile .book-card__reviews {
        margin-top: 9px;
        margin-left: 0;
    }

    .book-card__box-buy .buy-action {
        flex-direction: column;
        align-items: flex-end;
    }

    .book-card__box-buy .discount{
        margin-bottom: 3px;
        font-weight: 500;
        font-size: 10px;
    }

    .book-card__box-buy .price{
        margin-bottom: 6px;
        font-weight: 600;
        font-size: 14px;
    }

    .book-card__box-buy .buy {
        font-size: 12px;
        padding: 5px 12px;
    }

    .author-list__item {
        min-width: 185px;
    }

    .form-box {
        padding: 30px 20px;
    }

    .choice-box-group .choice-box--small {
        box-sizing: border-box;
    }


    .choice-box-group .choice-box-genres {
        width: 97.5%;
        margin-bottom: 15px;
    }

    .choice-box-genres select {
        box-sizing: border-box;
    }

    .choice-box-group {
        flex-direction: column;
    }

    .choice-box-group {
        margin-bottom: 15px;
    }

    .select-box {
        width: 100%;
    }

    .book-card-detailed--mobile {
        display: block;
    }

    .book-card-detailed-desctop {
        display: none;
    }

    .m-book-box {
        display: flex;
        align-items: flex-start;
        margin-top: 21px;
    }

    .m-book-box__img {
        width: 127.79px;
        height: 186px;
        border-radius: 3px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .m-book-box__img img {
        width: 127.79px;
        height: 186px;
    }

    .m-book-box__body {
        margin-left: 17px;
    }

    .m-book-box .book-card__title{
        font-size: 14px;
        margin-bottom: 6px;
    }

    .m-book-box .book-card__statistics{
        margin-top: 22px;
    }

    .m-book-box .book-card__reviews {
        margin-left: 0;
    }

    .m-book-box__line {
        display: flex;
        margin-top: 15px;
    }
    
    .m-book-box .book-card__status {
        margin-top: 20px;
    }

    .book-card-detailed--mobile .book-card__sub-title{
        margin-top: 0;
    }

    .m-book-box__foot {
        display: flex;
        margin-top: 20px;
    }

    .comment-area-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-area-btn-close {
        margin-top: 15px;
    }

    .comment-area-actions {
        position: relative;
        margin-top: 30px;
        left: 0;
        width: auto;
        background-color: transparent;
    }

    .book-card-detailed--mobile .book-card__status {
        width: auto;
        max-width: 150px;
    }

    .book-card__description--large {
        height: 60px;
        overflow: hidden;
        min-height: 60px;
    }

    .books-list .book-card__footer--info{
        flex-direction: column;
    }

    .book-card__quantity-info {
        margin-bottom: 15px;
    }

    .book-card__go-books {
        width: auto;
    }

    .list-page-comment__head {
        flex-direction: column-reverse;
    }

    .list-page-comment__date {
        margin-left: 0;
        margin-bottom: 6px;
    }

    .list-page-comment__info {
        flex-direction: column;
    }

    .list-page-comment__value {
        margin-left: 0;
    }
}

@media(max-width:576px) {

    .mob-nav {
        margin-top: 0px;
    }

    .tab_content {
        overflow: hidden;
        overflow-x: auto;
    }

    .tab_item:first-child {
        width: 576px;
    }

    .book--medium .book__name,
    .book--small .book__name {
        font-size: 10px;
    }

    .library-action a {
        padding: 10px;
    }

    .book--small {
        flex-direction: column;
        width: 90px;
    }

    .book--small .book__info {
        margin-left: 0;
    }

    .book--small .book__categories {
        margin-top: 10px;
    }

    .list-items {
        justify-content: center;
        margin-left: -8px;
        margin-right: -8px;
    }

    .box-list-items__title {
        text-align: left;
    }

    .pagination li a {
        padding: 6px 10px;
        min-height: 31px;
        min-width: 31px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .pagination .next span,
    .pagination .prev span {
        /* display: none; */
       /*  min-height: 31px; */
    }

    .pagination .next svg {
        margin-top: 0px;
        margin-left: 0px;
    }

    .book-publ-box {
        padding: 20px 10px;
    }

    .books-list .book-card__link {
        border-radius: 3px;
        width: 120px;
        height: 180px;
    }

    .books-list .book-card__link img {
        width: 120px;
        height: 180px;
    }

    .books-list .book-card__title {
        font-size: 14px;
    }

    .books-list .book-card__footer--info {
        align-items: flex-start;
    }
    .form-wrap-fields .form-wrap-field {
        width: calc(100% / 2 - 24px);
    }

    .person-box__avatar {
        width: 100px;
        height: 100px;
    }

    .person-box__avatar img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    .person-box__avatar--small {
        width: 100px;
        height: 100px;
    }

    .person-box-mb {
        margin-bottom: 60px;
    }

    .person-box-mb  .person-box__avatar {
        top: 60px;
    }

    .person-box__action {
        bottom: auto;
        top: 20px;
    }

    .person-box__action span {
        display: none;
    }

    .person-box { 
        height: 140px;
    }

    
    .person-box__avatar {
        top: 45px;
        left: 10px;
    }

    .person-box__information {
        left: 120px;
    }

    .person-box__information-name {
        font-size: 16px;
    }

    .person-box__name {
        font-size: 16px;
    }

    .person-box__name {
        left: 120px;
        max-width: 200px;
    }

    .action-box-row-f {
        flex-direction: column;
        align-items: flex-start;
    }
    .free-pay {
        margin-left: 0;
    }

    .book-card-vertical {
        flex-direction: column;
    }

    .book-card-vertical .book-card__info {
        margin-left: 0;
    }

    .book-card-vertical .book-card__link  {
        margin-bottom: 15px;
    }

    .book-card-vertical .book-card__link img {
        width: 148px;
        height: 180px;
    }
    .book-card-vertical .book-card__action-user {
        display: none;
    }

    .new-cycle-box .new-cycle-box__show {
        margin-bottom: 25px;
    }

    .select-box {
        width: 97.5%;
    }

    .tab {
        padding: 10px;
        font-size: 14px;
    }

    .person-box-mb {
        margin-bottom: 45px;
    }
}

@media(max-width:350px) {
    .form-wrap-fields .form-wrap-field {
        width: calc(100% / 1 - 24px);
    }
    .pagination li a {
        padding: 3px 4px;
        min-height: 26px;
        min-width: 25px;
    }

    .pagination li a {
        font-size: 12px;
    }

    .book-card-vertical .book-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-card-vertical .book-card__reviews {
        margin-left: 0;
    }

    .book-card-vertical .book-card__statistics {
        margin-top: 10px;
    }

    .soc-list-author__item {
        width: 100%;
    }
}

.upload-form {
    margin-top: 0!important;    
}
