* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  -webkit-tap-highlight-color: transparent !important;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

img {
  max-width: 100%;
}

span, label {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Onest", sans-serif;
  font-style: normal;
  font-weight: 400;
}
body.bg-gray {
  background: #F4F5FA;
}

input {
  outline: none;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
  outline: 0;
}

address {
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.main_container {
  max-width: 1920px;
  padding: 0 160px;
  margin: 0 auto;
}
.main_title {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
}

.btn_white {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 407px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #000000;
  border-radius: 10px;
  border: 1px solid #C9CADC;
  transition: 0.3s ease;
}
.btn_white:hover {
  border: 1px solid transparent;
  background: #4867F6;
  color: #ffffff;
}
.btn_blue {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 407px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #ffffff;
  border-radius: 10px;
  background: #4867F6;
  transition: 0.3s ease;
}
.btn_blue:hover {
  background: #0423B6;
  color: #ffffff;
}

.form_inp {
  background: #fff;
  border: 1px solid #C9CADC;
  width: 100%;
  border-radius: 10px;
  outline: none;
  padding: 15px 15px 16px;
  font-size: 16px;
  line-height: 120%;
  color: black;
  transition: 0.3s ease all;
  resize: none;
}
.form_inp:hover, .form_inp:focus {
  border-color: #6A6773;
}

.breadcrumb {
  margin: 10px 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb span,
.breadcrumb a {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  color: #6A6773;
}
.header .header__bars {
  display: none;
}
.need_auth_hint {
  font-weight: 400;
  line-height: 1.5em;
  transform: translate(-100%, -50%);
  transition: opacity .2s;
  position: absolute;
  background-color: #F4F5FA;
  bottom: 20px;
  left: 75%;
  height: 60px;
  width: max-content;
  color: #000000;
  border-radius: 6px;
  padding: 15px;
  font-size: 12px;
  top: 50%;
  display: none;

}
.need_auth_hint>span {
  color: #0423B6 !important;
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 16px;
  cursor: pointer;
}
.pagination {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.pagination .prev_icon {
  margin-right: 10px;
}
.pagination .prev_icon:hover {
  background: transparent;
  border: 1px solid #6A6773;
}
.pagination .prev_icon:hover svg path {
  transition: 0.3s ease;
  stroke: #4867F6;
}
.pagination .next_icon {
  margin-left: 10px;
}
.pagination .next_icon:hover {
  background: transparent;
  border: 1px solid #6A6773;
}
.pagination .next_icon:hover svg path {
  transition: 0.3s ease;
  stroke: #4867F6;
}
.pagination a {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #C9CADC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.pagination a span {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: #000000;
  transition: 0.3s ease;
}
.pagination a svg path {
  transition: 0.3s ease;
}
.pagination a:hover {
  border: transparent;
  background: #4867F6;
}
.pagination a:hover span {
  color: #ffffff;
}
.pagination a:hover svg path {
  stroke: #ffffff;
}
.pagination a.active {
  background: #4867F6;
  border: transparent;
}
.pagination a.active span {
  color: #ffffff;
}

.authors_alphabet {
  margin: 40px 0 60px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.authors_alphabet .full {
  width: 50px;
}
.authors_alphabet .full span {
  text-transform: capitalize;
}
.authors_alphabet a {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #C9CADC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.authors_alphabet a span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: #000000;
  transition: 0.3s ease;
}
.authors_alphabet a:hover {
  border: 1px solid transparent;
  background: #4867F6;
}
.authors_alphabet a:hover span {
  color: #ffffff;
}
.authors_alphabet a.active {
  border: 1px solid transparent;
  background: #4867F6;
}
.authors_alphabet a.active span {
  color: #ffffff;
}

.login {
  display: flex;
  align-items: stretch;
  height: 100vh;
}
.login_img {
  max-width: 950px;
  position: relative;
}
.login_img .login_logo {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 150px;
}
.login_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.login_img .login_table_bg {
  display: none;
}
.login_img .login_mobile_bg {
  display: none;
}
.login_form {
  padding-left: 155px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}
.login_form h6 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
  margin: 30px 0;
}
.login_form form {
  width: 385px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login_form form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #6A6773;
  position: relative;
}
.login_form form label button {
  position: absolute;
  right: 20px;
  bottom: 12px;
}
.login_form form label button svg {
  width: 20px;
}
.login_form form label button svg:nth-child(1) {
  display: none;
}
.login_form form label.show button {
  bottom: 15px;
}
.login_form form label.show button svg {
  display: none;
}
.login_form form label.show button svg:nth-child(1) {
  display: block;
}
.login_form form input {
  padding: 15px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid #7B8781;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  color: #000000;
}
.login_form form input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  color: #000000;
}
.login_form form input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  color: #000000;
}
.login_form form input:hover {
  border: 1px solid #6A6773;
}
.login_form form input.error {
  border-color: #EB3232;
}
.login_form form .forget_password {
  color: #4867F6;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}
.login_form form p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #6A6773;
}
.login_form form p a {
  color: #4867F6;
}
.login_form .form_btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.login_form .form_btns a {
  width: 100%;
}
.login_form .back_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.login_form .back_btn span {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  font-family: "Manrope", sans-serif;
  color: #7B8781;
}

.header {
  padding: 30px 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header__left {
  display: flex;
  align-items: center;
}
.header__right {
  flex-shrink: 0;
}
.header .search_btn {
  display: none;
}
.header__bars {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F5FA;
}
.header__bars svg:last-child {
  display: none;
}
.header__bars.active svg {
  display: none;
}
.header__bars.active svg:last-child {
  display: block;
}
.header__search {
  position: relative;
}
.header__search input {
  border: 1px solid #C9CADC;
  padding: 0 66px 0 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 100%;
  height: 50px;
  width: 705px;
}
.header__search button {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4867F6;
  border-radius: 8px;
  transition: 0.3s ease all;
}
.header__search button:hover {
  background: #0423B6;
}
.header__logo {
  margin: 0 140px 0 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  color: black;
}
.header .btn_white {
  padding: 0 30px;
  width: auto;
  gap: 8px;
  transition: 0.3s ease all;
  flex-shrink: 0;
}
.header .btn_white svg path, .header .btn_white span {
  transition: 0.3s ease all;
}
.header .btn_white:hover {
  background: #4867F6;
  border-color: #4867F6;
}
.header .btn_white:hover svg path {
  fill: #FFF;
}
.header .btn_white:hover span {
  color: #fff;
}

.search_mb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
.search_mb__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.search_mb__content {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 20px;
}
.search_mb__inp {
  position: relative;
}
.search_mb__inp input {
  font-size: 14px;
  height: 50px;
  width: 100%;
  padding: 0 66px 0 20px;
  border-radius: 10px;
  border: 1px solid #C9CADC;
}
.search_mb__inp input:hover, .search_mb__inp input:focus {
  border-color: #6A6773;
}
.search_mb__inp button {
  background: #4867F6;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.3s ease all;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
.search_mb__inp button:hover {
  background: #0423B6;
}

.main .main_container {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  transition: 0.3s ease all;
}
.main_nav {
  flex-shrink: 0;
  overflow: hidden;
  width: 0;
  transition: 0.3s ease all;
}
.main_nav.active {
  width: 332px;
  margin-right: 30px;
}
.main_nav__close {
  display: none;
}
.main_nav__content {
  background: #F4F5FA;
  border-radius: 20px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 332px;
}
.main_nav__content a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500%;
}
.main_nav__content a svg {
  width: 20px;
}
.main_nav__content .accordion {
  border-radius: 10px;
  background: #FFFFFF;
}
.main_nav__content .accordion_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 500%;
}
.main_nav__content .accordion_btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main_nav__content .accordion_body {
  max-height: 494px;
  overflow-y: scroll;
  transition: max-height 0.3s ease-in-out;
}
.main_nav__content .accordion_body::-webkit-scrollbar {
  width: 4px;
}
.main_nav__content .accordion_body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #C9CADC;
}
.main_nav__content .accordion_body a {
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  padding: 8px 16px;
  display: block;
  transition: 0.3s ease all;
  color: #000;
}
.main_nav__content .accordion_body a:hover {
  font-weight: bold;
  text-decoration: underline;
}
.main_nav__content .accordion.hide {
  background: transparent;
}
.main_nav__content .accordion.hide .accordion_btn svg {
  transform: rotateZ(180deg);
}
.main_nav__content .accordion.hide .accordion_btn span svg {
  transform: rotate(0);
}
.main_nav__content .accordion.hide .accordion_body {
  max-height: 0;
}
.main .main_content {
  width: 100%;
  transition: 0.3s ease;
}
.main.active .main_container {
  gap: 80px;
}
.main.active .main_content {
  width: calc(100% - 412px);
}
.main.active .authors_card_books .action_book {
  width: calc(25% - 20px);
}
.main.active .authors_card_books .action_book:nth-child(n+5) {
  display: none;
}

.book-swp {
  margin-bottom: 70px;
}
.book-swp__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.book-swp__head_right {
  display: flex;
  align-items: center;
}
.book-swp__head_right a {
  height: 40px;
  width: auto;
  padding: 0 20px;
  gap: 8px;
}
.book-swp__head_right a svg path {
  transition: 0.3s ease;
}
.book-swp__head_right a:hover svg path {
  fill: #fff;
}
.book-swp__head_right button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C9CADC;
  border-radius: 10px;
  transition: 0.3s ease all;
}
.book-swp__head_right button svg path {
  transition: 0.3s ease all;
}
.book-swp__head_right button:hover {
  border-color: #6A6773;
}
.book-swp__head_right button:hover svg path {
  stroke: #4867F6;
}
.book-swp__btn_prev {
  margin: 0 20px 0 40px;
}

.popular-genres {
  margin-bottom: 120px;
}
.popular-genres__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.popular-genres__head_right {
  display: flex;
  align-items: center;
}
.popular-genres__head_right a {
  height: 40px;
  width: auto;
  padding: 0 20px;
  gap: 8px;
}
.popular-genres__head_right a svg path {
  transition: 0.3s ease;
}
.popular-genres__head_right a:hover svg path {
  fill: #fff;
}
.popular-genres__head_right button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #C9CADC;
  transition: 0.3s ease;
}
.popular-genres__head_right button svg path {
  transition: 0.3s ease;
}
.popular-genres__head_right button:hover {
  border-color: #6A6773;
}
.popular-genres__head_right button:hover svg path {
  stroke: #4867F6;
}
.popular-genres__btn_prev {
  margin: 0 20px 0 40px;
}
.popular-genres__card {
  height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F4F5FA;
  border-radius: 15px;
  padding: 15px;
}
.popular-genres__card h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}
.popular-genres__card p {
  font-size: 12px;
  line-height: 120%;
  color: #6A6773;
}

.read-book {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}
.read-book__card {
  width: 234px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.read-book__content .main_title {
  margin-bottom: 30px;
}
.read-book__content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.read-book__content ul li {
  font-size: 14px;
  line-height: 140%;
}
.read-book__content_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4867F6;
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
}
.read-book__content p {
  margin-bottom: 15px;
}

.book-cover {
  padding: 55px 0 51px 388px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  margin-top: 10px;
}
.book-cover__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #4A5768, #6F8093);
  z-index: -1;
  border-radius: 30px;
}
.book-cover .main_title {
  color: #fff;
  margin-bottom: 10px;
  margin-right: 25%;
}
.book-cover .main_title br {
  display: none;
}
.book-cover .subtitle {
  font-size: 14px;
  line-height: 140%;
  color: #C9CADC;
  margin-bottom: 10px;
}
.book-cover .author_list {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.book-cover .author_list a {
  font-size: 14px;
  line-height: 140%;
  color: #C9CADC;
}
.book-cover .links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: row;
  flex-wrap: wrap;
}
.book-cover .links a {
  padding: 7px 10px;
  color: #F4F5FA;
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  background: #39475A;
  border-radius: 30px;
}
.book-cover .btn_white {
  position: absolute;
  top: 40px;
  right: 40px;
  width: auto;
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 8px;
  transition: 0.3s ease all;
}
.book-cover .btn_white svg path {
  transition: 0.3s ease all;
}
.book-cover .btn_white:hover {
  border-color: #4867F6;
  background: #4867F6;
}
.book-cover .btn_white:hover svg path {
  fill: #FFF;
}
.book-cover__example {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 288px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.book-cover__example img {
  width: 100%;
}
.book-cover__example a {
  width: 100%;
  transition: 0.3s ease all;
}
.book-cover__example a:hover {
  background: #0423B6;
}

.book-description {
  padding-left: 388px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}
.book-description__left {
  width: 100%;
}
.book-description__left h2 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 10px;
}
.book-description__left .descriptions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-description__left .descriptions p {
  font-size: 14px;
  line-height: 140%;
  color: #6A6773;
}
.main.active .main_content .book-description {
  flex-direction: column;
}
.main.active .main_content .book-description__right {
  width: 100%;
}
.book-description__right {
  width: 345px;
  flex-shrink: 0;
}
.book-description__right_head {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.book-description__right_head h3 {
  font-size: 30px;
  line-height: 140%;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.book-description__right_head h3 span {
  font-size: 12px;
  line-height: 120%;
  color: #6A6773;
  margin-bottom: 8px;
}
.book-description__right .degree {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.book-description__right .degree li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.book-description__right .degree li span {
  color: #6A6773;
  font-size: 14px;
  line-height: 140%;
  width: 10px;
  flex-shrink: 0;
}
.book-description__right .degree .line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #F5A623;
  border-radius: 10px;
}
.book-description__right .degree .line_wrap {
  width: 100%;
  position: relative;
  height: 9px;
  background: #F4F5FA;
  border-radius: 10px;
}

.reviews {
  margin-left: 388px;
  margin-bottom: 60px;
  background: #F4F5FA;
  border-radius: 20px;
  padding: 30px;
}
.reviews .main_title {
  margin-bottom: 20px;
}
.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reviews__list_item {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
}
.reviews__list .degree {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}
.reviews__list .item_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}
.reviews__list .item_user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews__list .item_user .letter {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4867F6;
  font-size: 20px;
  line-height: 110%;
  font-weight: bold;
  color: #fff;
  flex-shrink: 0;
}
.reviews__list .item_user h4 {
  font-size: 14px;
  line-height: 110%;
  margin-bottom: 5px;
}
.reviews__list .item_user p {
  font-size: 12px;
  line-height: 110%;
  color: #6A6773;
}
.reviews__list .item_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews__list .item_content p {
  font-size: 14px;
  line-height: 140%;
}

.similar-book {
  margin: 120px 0 50px;
}
.similar-book__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.similar-book__head_right {
  display: flex;
  align-items: center;
}
.similar-book__head_right .btn_white {
  width: auto;
  padding: 13px 20px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease all;
}
.similar-book__head_right .btn_white svg path {
  transition: 0.3s ease all;
}
.similar-book__head_right .btn_white:hover {
  background: #4867F6;
  border-color: #4867F6;
  color: #fff;
}
.similar-book__head_right .btn_white:hover svg path {
  fill: #fff;
}
.similar-book__head_right button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #C9CADC;
  transition: 0.3s ease all;
}
.similar-book__head_right button svg path {
  transition: 0.3s ease all;
}
.similar-book__head_right button.btn_prev {
  margin: 0 20px 0 40px;
}
.similar-book__head_right button:hover {
  border-color: #6A6773;
}
.similar-book__head_right button:hover svg path {
  stroke: #4867F6;
}
.similar-book__card {
  width: 100%;
}
.similar-book__card a {
  width: 100%;
  height: 253px;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}
.similar-book__card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.similar-book__card h4 {
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 5px;
}
.similar-book__card p {
  color: #6A6773;
  font-size: 14px;
  line-height: 120%;
  margin-bottom: 10px;
}
.similar-book__card_review {
  display: flex;
  align-items: center;
  gap: 3px;
}
.similar-book__card_review_rating{
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
}
.similar-book__card_review_count {
  font-size: 12px;
  line-height: 120%;
  color: #6A6773;
}

.action_books {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0 50px 0;
}
.action_book {
  width: calc(12.5% - 27px);
}
.action_book_img {
  border-radius: 15px;
  overflow: hidden;
}
.action_book_img img {
  width: 100%;
}
.action_book h6 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  color: #000000;
}
.action_book p {
  margin: 5px 0 10px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  color: #6A6773;
}
.action_book .comment {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 3px;
}
.action_book .comment img {
  transform: translateY(-2px);
}
.action_book .comment h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  color: #000000;
}
.action_book .comment span {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: #6A6773;
}

.authors_cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 50px;
}
.authors_card {
  display: flex;
  align-items: start;
  gap: 80px;
}
.authors_card_title {
  width: 332px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.authors_card_title h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}
.authors_card_title span {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #6A6773;
}
.authors_card_title .btn_white {
  width: 148px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.authors_card_title .btn_white svg path {
  transition: 0.3s ease;
}
.authors_card_title .btn_white:hover svg path {
  fill: #ffffff;
}
.authors_card_books {
  display: flex;
  gap: 30px;
  width: 100%;
}
.authors_card_books .action_book {
  width: calc(16.6666666667% - 25px);
}
.authors_card_books .action_book img {
  width: 100%;
}
.authors_card_books .action_book .comment img {
  width: 22px;
}

.action_list_cards {
  margin: 60px 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}
.action_list_card {
  border: 1px solid #C9CADC;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: start;
  gap: 30px;
  position: relative;
}
.action_list_card_img {
  flex-shrink: 0;
}
.action_list_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.action_list_card_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.action_list_card_title{
  margin-right: 17%;
}
.action_list_card_text h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  margin-bottom: 5px;

}
.action_list_card_text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.action_list_card_text span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  color: #6A6773;
}
.action_list_card_text .more_link {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  color: #6A6773;
}
.action_list_card_level {
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
  position: absolute;
  right: 20px;
  top: 20px;
}
.action_list_card_level img {
  width: 29px;
  height: 29px;
}
.action_list_card_level h6 {
  width: 79px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #000000;
}
.action_list_card_level span {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: #6A6773;
}
.action_list_btns {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.action_list_btns a {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.action_list_btns .btn_white svg path {
  transition: 0.3s ease;
}
.action_list_btns .btn_white span {
  color: #000000;
  transition: 0.3s ease;
}
.action_list_btns .btn_white:hover span {
  color: #ffffff;
}
.action_list_btns .btn_white:hover svg path {
  fill: #ffffff;
}

.categories_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0 50px 0;
}
.categories_list {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.categories_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.categories_block .list_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}
.categories_block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.categories_block .book_link {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #000000;
  padding: 7px 10px;
  border-radius: 30px;
  border: 1px solid #C9CADC;
  transition: 0.3s ease;
}
.categories_block .book_link:hover {
  background: #39475A;
  color: #F4F5FA;
  border: 1px solid transparent;
}

.footer {
  background: #000000;
  position: relative;
  padding-top: 100px;
}
.footer .footer_white_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #ffffff;
  border-radius: 0 0 100px 100px;
}
.footer_logo {
  margin-bottom: 30px;
}
.footer_top {
  padding: 103px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.footer_top_left p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #C9CADC;
  max-width: 571px;
}
.footer_top_left .footer_text {
  margin-top: 15px;
}
.footer_social {
  width: 200px;
  padding: 20px;
  border-radius: 15px;
  background: #6A6773;
}
.footer_social h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: #C9CADC;
  margin-bottom: 20px;
}
.footer_social ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer_social ul a {
  width: 40px;
  height: 40px;
  background: #C9CADC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_bottom {
  padding: 20px 40px;
  border-radius: 30px 30px 0 0;
  background: #6A6773;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_bottom p,
.footer_bottom a {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  color: #C9CADC;
}
.footer_bottom a {
  text-decoration: underline;
}

.book-page {
  padding: 20px 0 70px;
}
.book-page__container {
  max-width: 790px;
  margin: 0 auto;
}
.book-page__head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.book-page__head a {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  color: #7B8781;
}
.book-page__head p {
  font-size: 12px;
  line-height: 110%;
  color: #7B8781;
  margin-bottom: 5px;
}
.book-page__head h2,  .book-page__head h1{
  font-size: 16px;
  line-height: 110%;
  font-weight: 500;
  margin-top: 50px;
  color: #1D211F;
}
.book-page__content {
  background: white;
  border-radius: 20px;
  padding: 10px 20px 20px;
  margin-bottom: 20px;
}
.book-page__content.grey-theme {
  background: #DDD7CA;
}
.book-page__content.light-theme {
  background: #F6F6F6;
}
.book-page__content.dark-theme {
  background: #1D211F;
}
.book-page__content.dark-theme .book-page__content_head .theme p {
  color: #fff;
}
.book-page__content.dark-theme .book-page__content_text p {
  color: #fff;
}
.book-page__content_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DBDBDB;
}
.book-page__content_head .theme {
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-page__content_head .theme p {
  font-size: 14px;
  line-height: 110%;
  font-weight: 500;
  color: #1D211F;
  padding-right: 11px;
  flex-shrink: 0;
}
.book-page__content_head .theme button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  flex-shrink: 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-page__content_head .theme button svg {
  width: 10px;
  display: none;
}
.book-page__content_head .theme button.grey {
  background: #DDD7CA;
}
.book-page__content_head .theme button.light {
  background: #F6F6F6;
}
.book-page__content_head .theme button.dark {
  background: #1D211F;
}
.book-page__content_head .theme button.dark svg path {
  fill: #fff;
}
.book-page__content_head .theme button.active {
  border-color: #A3D95D;
}
.book-page__content_head .theme button.active svg {
  display: block;
}
.book-page__content_head .zoom {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.book-page__content_head .zoom button {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-page__content_head .zoom .pin {
  margin-left: 20px;
}
.book-page__content_text {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  gap: 10px;
}
.book-page__content_text p {
  font-size: 16px;
  line-height: 140%;
  color: #1D211F;
}
.book-page__content_pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.book-page__content_pagination .pagination_left {
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-page__content_pagination .pagination_left p {
  font-size: 14px;
  line-height: 110%;
  color: #7B8781;
}
.book-page__content_pagination .pagination_left__btn {
  border: 1px solid #DBDBDB;
  background: #fff;
  padding: 4px 4px 4px 45px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  position: relative;
}
.book-page__content_pagination .pagination_left__btn input {
  color: #6A6773;
  font-size: 16px;
  line-height: 120%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 4px 40px 4px 10px;
  border: 0;
  outline: none;
  background: transparent;
}
.book-page__content_pagination .pagination_left__btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.book-page__content_pagination .pagination_right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.book-page__content_pagination .pagination_right button {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  transition: 0.3s ease all;
}
.book-page__content_pagination .pagination_right button svg path {
  transition: 0.3s ease all;
}
.book-page__content_pagination .pagination_right button:hover {
  border-color: #6A6773;
}
.book-page__content_pagination .pagination_right button:hover svg path {
  stroke: #4867F6;
}
.book-page__content_pagination .pagination_right p {
  font-size: 14px;
  line-height: 110%;
  font-weight: 500;
  color: #1D211F;
}
.book-page__content_pagination .pagination_right p.sm {
  display: none;
}

.review_form {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review_form.review_gray {
  background: #F4F5FA;
  margin-left: 388px;
}
.review_form__subtitle {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  color: #6A6773;
}
.review_form__subtitle span {
  color: #F43E2D;
}
.review_form .line {
  height: 1px;
  width: 100%;
  background: #EBEBEB;
}
.review_form .star {
  display: flex;
  align-items: center;
  gap: 20px;
}
.review_form .star p {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: black;
}
.review_form .star_group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.review_form .star_group button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review_form .star_group button.active svg path {
  fill: #F5A623;
}
.review_form .form_control {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.review_form .form_control label {
  font-size: 14px;
  line-height: 140%;
  color: #6A6773;
}
.review_form .form_control label span {
  color: #F43E2D;
}
.review_form .form_control textarea {
  height: 144px;
}
.review_form__submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.review_form__submit button {
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  padding: 18px 30px;
  width: auto;
  height: auto;
  transition: 0.3s ease all;
}
.review_form__submit button:hover {
  background: #0423B6;
}

@media only screen and (max-width: 1700px) {
  .header__search input {
    width: 573px;
  }
  .header__logo {
    margin: 0 106px 0 33px;
  }
  .main_nav__content {
    width: 305px;
  }
  .main_nav.active {
    width: 305px;
  }
  .main.active .main_container {
    gap: 70px;
  }
  .main.active .main_content {
    width: calc(100% - 375px);
  }
  /*.main.active .main_content .book-description {
    flex-direction: column;
  }*/
  /*.main.active .main_content .book-description__right {
    width: 100%;
  }*/
  .book-cover {
    padding: 55px 0 51px 365px;
  }
  .book-cover__example {
    width: 275px;
  }
  .book-description {
    padding-left: 375px;
  }
  /*.book-description__right {
    width: 267px;
  }*/
  .reviews {
    margin-left: 375px;
  }
  .review_form.review_gray {
    margin-left: 375px;
  }
  .similar-book__card a {
    height: 230px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .main_nav__content {
    width: 276px;
  }
  .main_nav.active {
    width: 276px;
  }
  .main.active .main_container {
    gap: 70px;
  }
  .main.active .main_content {
    width: calc(100% - 346px);
  }
  .main.active .main_content .book-cover {
    padding: 55px;
  }
  .main.active .main_content .book-cover__example {
    position: static;
    width: 100%;
    align-items: center;
    margin-top: 27px;
  }
  .main.active .main_content .book-cover__example img, .main.active .main_content .book-cover__example a {
    width: 275px;
  }
  .main.active .main_content .book-description {
    /*flex-direction: column;*/
    padding-left: 0;
  }
  /*.main.active .main_content .book-description__right {
    width: 100%;
  }*/
  .main.active .main_content .reviews, .main.active .main_content .review_form.review_gray {
    margin-left: 0;
  }
}
@media (min-width: 1500px) and (max-width: 1530px) {
  .main.active .main_content .book-cover .main_title br {
    display: block;
  }
}
@media (min-width: 1500px) and (max-width: 1615px) {
  .book-cover .main_title {
    margin-right: 210px;
  }
}
@media only screen and (max-width: 1500px) {
  .header__container {
    gap: 57px;
  }
  .header__left {
    width: 100%;
  }
  .header__search {
    width: 100%;
  }
  .header__search input {
    width: 100%;
  }
  .header__logo {
    margin: 0 76px 0 30px;
  }
  .book-cover {
    padding: 55px 0 55px 335px;
  }
  .book-cover__example {
    width: 275px;
    left: 20px;
    top: 20px;
  }
  .book-description {
    padding-left: 335px;
  }
  /*.book-description__right {
    width: 201px;
  }*/
  .reviews {
    margin-left: 335px;
  }
  .review_form.review_gray {
    margin-left: 335px;
  }
  .similar-book__card a {
    height: 206px;
  }
  .popular-genres__card {
    height: 98px;
  }
  .read-book__content .main_title {
    max-width: 278px;
  }
}
@media only screen and (max-width: 1620px) {
  .main.active .authors_card_books .action_book {
    width: calc(33.3333333333% - 20px);
  }
  .main.active .authors_card_books .action_book:nth-child(n+4) {
    display: none;
  }
  .main.active .action_book {
    width: calc(20% - 24px);
  }
  .action_book {
    width: calc(14.2857142857% - 26px);
  }
  .authors_card {
    gap: 70px;
  }
  .authors_card_books .action_book {
    width: calc(20% - 22px);
  }
  .authors_card_books .action_book:nth-child(n+6) {
    display: none;
  }
  .login_img {
    max-width: 808px;
  }
  .login_img .login_logo {
    width: 127px;
  }
  .login_form {
    padding-left: 116px;
  }
  .login_form form {
    width: 407px;
  }
}
@media only screen and (max-width: 1350px) {
  .main.active .action_list_card {
    position: relative;
  }
  .main.active .action_list_card_level {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}
@media only screen and (max-width: 1300px) {
  .main_container {
    padding: 0 140px;
  }
  .main_title {
    font-size: 26px;
    line-height: 26px;
  }
  .main.active .authors_card_books .action_book {
    width: calc(25% - 20px);
  }
  .main.active .authors_card_books .action_book:nth-child(n+4) {
    display: none;
  }
  .login_img {
    max-width: 727px;
  }
  .login_img .login_logo {
    width: 114px;
  }
  .login_form {
    padding-left: 99px;
  }
  .login_form form {
    width: 313px;
  }
  .authors_card {
    gap: 60px;
  }
  .authors_card_books .action_book {
    width: calc(25% - 20px);
  }
  .authors_card_books .action_book:nth-child(n+5) {
    display: none;
  }
  .action_list_card_level h6 {
    width: 70px;
    font-size: 26px;
    line-height: 31px;
  }
}
@media only screen and (max-width: 1200px) {
  .login {
    height: auto;
  }
  .header__container {
    gap: 20px;
  }
  .header__left {
    width: 100%;
  }
  .header__search {
    width: 100%;
  }
  .header__search input {
    width: 100%;
  }
  .header__logo {
    margin: 0 20px;
    flex-shrink: 0;
  }
  .header .btn_white {
    padding: 0 15px;
    height: 50px;
  }
  .header .btn_white span span {
    display: none;
  }
  .header .header__bars {
      display: flex;
  }
  .main_container {
    padding: 0 40px;
  }
  .main .main_content {
    width: 100% !important;
  }
  .login_img {
    max-width: 301px;
  }
  .login_img .login_table_bg {
    display: block;
  }
  .login_img .login_desktop_bg {
    display: none;
  }
  .login_form {
    padding-left: 99px;
  }
  .login_form form {
    width: 329px;
  }
  .action_book {
    width: calc(25% - 23px);
  }
  .authors_card {
    gap: 30px;
    flex-direction: column;
  }
  .authors_card_title {
    flex-direction: row;
    width: 100%;
  }
  .categories_lists {
    flex-direction: column;
    gap: 40px;
  }
  .categories_list {
    width: 100%;
  }
  .footer_top {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 70px 0;
  }
  .footer_social h6 {
    text-align: left;
  }
  .footer_bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer_bottom .footer_bottom_link_one {
    order: 1;
  }
  .footer_bottom .footer_bottom_link_two {
    order: 2;
  }
  .footer_bottom .footer_bottom_text {
    order: 3;
  }
  .main_title {
    font-size: 26px;
  }
  .main .main_container {
    gap: 0px;
  }
  .main_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: none;
  }
  .main_nav__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .main_nav__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: 2;
  }
  .main_nav__content {
    position: relative;
    border-radius: 0;
    width: 330px;
    height: 100%;
  }
  .main_nav__content .accordion_body {
    max-height: calc(100svh - 245px);
  }
  .main_nav.active {
    width: 100%;
    display: block;
  }
  @keyframes navBgActive {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .main_nav.active .main_nav__bg {
    animation: navBgActive 0.2s linear 1;
  }
  @keyframes navContentActive {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translate(0);
    }
  }
  .main_nav.active .main_nav__content {
    animation: navContentActive 0.2s linear 1;
  }
  .main_nav.end-active {
    display: block;
  }
  @keyframes navBgEndActive {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  .main_nav.end-active .main_nav__bg {
    animation: navBgEndActive 0.2s linear 1;
    opacity: 0;
  }
  @keyframes navContentEndActive {
    from {
      transform: translate(0);
      opacity: 1;
    }
    to {
      transform: translateX(-100%);
      opacity: 1;
    }
  }
  .main_nav.end-active .main_nav__content {
    animation: navContentEndActive 0.2s linear 1;
    opacity: 0;
  }
  .main.active .main_container {
    gap: 0px;
  }
  .book-cover {
    padding: 30px;
    margin-bottom: 60px;
  }
  .book-cover .main_title {
    font-size: 26px;
  }
  .book-cover .btn_white {
    width: 50px;
    height: 50px;
    padding: 0;
    top: 30px;
    right: 30px;
  }
  .book-cover .btn_white span {
    display: none;
  }
  .book-cover__example {
    position: static;
    align-items: center;
    width: 100%;
    margin-top: 27px;
  }
  .book-cover__example img, .book-cover__example a {
    width: 275px;
  }
  .book-description {
    padding-left: 0;
    flex-direction: column;
  }
  /*.book-description__right {
    width: 100%;
  }*/
  .reviews {
    margin-left: 0;
    padding: 25px;
  }
  .review_form.review_gray {
    margin-left: 0;
  }
  .read-book {
    position: relative;
    padding-left: 225px;
  }
  .read-book__card {
    height: 100%;
    width: 185px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .read-book__content ul li:nth-child(n+4) {
    display: none;
  }
}
.ya-share2__item_service_vkontakte .ya-share2__icon {
  background-image: url(/images/icons/vk.svg) !important;
}
.ya-share2__badge, .ya-share2__mobile-popup-badge{
  background-color: transparent !important;
}
.ya-share2__item_service_odnoklassniki .ya-share2__icon {
  background-image: url(/images/icons/ok.svg) !important;
}
.ya-share2__item_service_telegram .ya-share2__icon {
  background-image: url(/images/icons/tg.svg) !important;
}
.form_btns .btn_blue {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
.footer_mid_info {
  padding: 0 10px;
  color: #C9CADC;
  font-size: 16px;
  font-weight: 400;
}
.footer_mid_info a {
  text-decoration: underline;
}
.footer_mid_info a:hover {
  text-decoration: none;
}
.footer_mid_info .footer_bottom_text {
  margin-top: 10px;
}