html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
progress {
  vertical-align: baseline;
}
template,
[hidden] {
  display: none;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}
optgroup {
  font-weight: bold;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
header {
  background: rgba(255,255,255,0.7);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
@media (max-width: 768px) {
  header .container {
    display: block;
    padding: 0 10px;
    padding-top: 0;
    margin-bottom: 10px;
  }
}
header .container .hamb {
  display: none;
  position: absolute;
  width: 30px;
  height: 20px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  header .container .hamb {
    display: block;
  }
}
header .container .hamb-line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #00afca;
  margin-bottom: 6px;
  cursor: pointer;
}
header .container .hamb-line:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  header .container .header-left {
    text-align: center;
  }
}
header .container .header-left a.logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 42px;
  color: #00afca;
}
@media (max-width: 768px) {
  header .container .header-left a.logo {
    font-size: 36px;
  }
}
header .container .header-left a.logo span {
  color: #fec50c;
}
header .container .header-left a.logo:hover {
  color: #fec50c;
}
header .container .header-left a.logo:hover span {
  color: #00afca;
}
header .container .header-right {
  width: 40%;
  text-align: right;
}
@media (max-width: 768px) {
  header .container .header-right {
    width: 100%;
  }
}
header .container .header-right form {
  width: 100%;
  position: relative;
}
header .container .header-right form input {
  width: 100%;
  background: transparent;
  border: 2px solid #fec50c;
  padding: 5px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
header .container .header-right form input:focus {
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  outline: none;
  border-bottom: 2px solid #fec50c;
}
header .container .header-right form button {
  position: absolute;
  top: 6px;
  right: 12px;
  background: transparent;
  border: none;
  outline: none;
  width: 26px;
  height: 26px;
  color: #fec50c;
  border-radius: 50%;
  cursor: pointer;
  line-height: 26px;
  font-weight: 300;
  font-size: 18px;
}
header .container .header-right form button:hover {
  filter: brightness(1.1);
}
header .header-bottom {
  background: #00afca;
}
header .header-bottom .container {
  padding: 0;
}
header .header-bottom .container nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  header .header-bottom .container nav {
    display: none;
  }
}
header .header-bottom .container nav a {
  color: #fff;
  display: block;
  padding: 5px;
  padding-top: 10px;
  font-weight: 500;
  font-size: 15px;
  margin-right: 0px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}
header .header-bottom .container nav a:hover {
  border-color: #fec50c;
}
@media (max-width: 768px) {
  header .header-bottom .container nav a {
    font-size: 20px;
    margin-bottom: 5px;
    padding: 10px;
    outline: 3px solid #FFF;
  }
}
.show {
  display: block !important;
}
.main-content.category h1 {
  display: inline-block;
  background: #ffd453;
  font-weight: 300;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .main-content.category h1 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 500;
  }
}
.main-content.category .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  padding: 0;
}
.main-content.category .container .sidebar {
  width: 15%;
  background: #00afca;
}
@media (max-width: 768px) {
  .main-content.category .container .sidebar {
    display: none;
  }
}
.main-content.category .container .content {
  width: 84%;
  padding: 20px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0px 0px 10px 0px #e2e2e2;
}
@media (max-width: 768px) {
  .main-content.category .container .content {
    width: 100%;
    padding: 5px;
    padding-top: 0;
    box-shadow: none;
  }
}
.main-content.category .container .content .books-by-class h2 {
  margin: 20px 0;
  margin-top: 0;
  display: inline-block;
  background: #ffd453;
  font-weight: 300;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class h2 {
    margin-bottom: 5px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .main-content.category .container .content .books-by-class h2:first-child {
    margin-top: 10px;
  }
}
.main-content.category .container .content .books-by-class .books-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-content.category .container .content .books-by-class .books-flex .book {
  width: 49%;
  height: 190px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  outline: 2px solid #fed452;
  position: relative;
}
.main-content.category .container .content .books-by-class .books-flex .book:hover {
  background: rgba(254,197,12,0.5);
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class .books-flex .book {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    height: auto;
    margin: 10px 0;
  }
}
.main-content.category .container .content .books-by-class .books-flex .book .book-cover {
  width: 29%;
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class .books-flex .book .book-cover {
    width: 25%;
  }
}
.main-content.category .container .content .books-by-class .books-flex .book .book-cover img {
  max-width: 100%;
  height: 190px;
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class .books-flex .book .book-cover img {
    height: auto;
  }
}
.main-content.category .container .content .books-by-class .books-flex .book .book-desc {
  width: 69%;
  position: relative;
  padding-top: 5px;
}
.main-content.category .container .content .books-by-class .books-flex .book .book-desc p {
  margin: 0;
  padding: 0;
  font-weight: 300;
  margin-bottom: 3px;
  font-size: 15px;
}
.main-content.category .container .content .books-by-class .books-flex .book .book-desc b {
  font-weight: 700;
}
.main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-title {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-authors,
  .main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-publisher,
  .main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-year, .book-link {
    font-size: 12px;
  }
}
.main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-subject-name {
  background: #ffd453;
  padding: 0px 5px;
  display: inline-block;
  margin-top: 5px;
  font-weight: 100;
  position: absolute;
  right: 0;
  bottom: 5px;
}
@media (max-width: 768px) {
  .main-content.category .container .content .books-by-class .books-flex .book .book-desc .book-subject-name {
    bottom: 0;
  }
}
ul,
li {
  margin: 0;
  padding: 0;
}
.menu-classes {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  z-index: 11;
  margin-bottom: 20px;
}
.menu-classes li {
  z-index: 3;
  list-style: none;
  position: relative;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.menu-classes .class-item:before {
  content: '+';
  position: absolute;
  display: block;
  right: 20px;
  font-size: 16px;
  top: 10px;
  color: #fff;
}
.menu-classes li span, .menu-classes li a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.menu-classes li ul {
  display: none;
  background: #fff;
  z-index: 11;
  color: #000;
  position: relative;
}
.menu-classes li:hover {
  background: #fec50c;
  color: #000;
}
.menu-classes li:hover > a {
  color: #fff;
}
.menu-classes li ul li a {
  white-space: nowrap;
  text-transform: none;
  padding: 5px 0 5px 20px;
  color: #000;
}
.menu-classes li ul li {
  cursor: pointer;
}
.menu-classes li ul li:hover {
  background: #fec50c;
}
.selected {
  background: #b5c548;
}
.show {
  display: block !important;
}
#vk_groups {
  margin: 0 auto;
  margin-bottom: 20px;
}
.no-find-book {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  background: #ffd453;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 16px;
}
.no-find-book.first-menu {
  margin-bottom: 0;
}
.no-find-book:hover {
  filter: brightness(1.1);
}
.vk-group-img {
  display: block;
  margin-bottom: 10px;
}
.vk-group-img img {
  width: 100%;
  transition: 0.2s;
}
.vk-group-img img:hover {
  transform: scale(1.05);
}
h1.post-head {
  font-size: 26px !important;
  padding: 0 0px 0px 5px;
}
@media (max-width: 768px) {
  h1.post-head {
    font-size: 18px !important;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .post-content {
    margin-top: 10px;
  }
}
.post-content .book-cover {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.post-content .book-cover img {
  max-width: 100%;
  height: 200px;
}
@media (max-width: 768px) {
  .post-content .book-cover img {
    height: 160px;
  }
}
.post-content .book-desc p {
  margin: 0;
  padding: 0;
  font-weight: 300;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .post-content .book-desc p {
    font-size: 14px;
    line-height: 18px;
  }
}
.post-content .book-desc b {
  font-weight: 700;
}
.post-content .book-desc .book-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .post-content .book-desc .book-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .post-content .book-desc .book-authors,
  .post-content .book-desc .book-publisher,
  .post-content .book-desc .book-year, .book-link {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .post-content .book-desc .book-year {
    margin-bottom: 10px;
  }
}
.post-content .book-desc .book-seo-text p {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .post-content .book-desc .book-seo-text p {
    margin-bottom: 5px;
  }
}
.post-content .book-tasks h3 {
  font-size: 22px;
  font-weight: 300;
  margin: 10px 5px;
}
@media (max-width: 768px) {
  .post-content .book-tasks h3 {
    font-size: 18px!important;
  }
}
.post-content .book-tasks h4 {
  font-size: 18px;
  font-weight: 400!important;
  margin: 0!important;
}
@media (max-width: 768px) {
  .post-content .book-tasks h4 {
    font-size: 16px!important;
  }
}
.post-content .book-tasks .structure-link {
  text-decoration: none;
  display: inline-block;
  line-height: 18px;
  color: #000;
  background: #ffd453;
  padding: 8px 5px;
  width: auto;
  min-width: 6%;
  margin: 5px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  z-index: 999;
  font-weight: 500;
}
.post-content .book-tasks .structure-link:hover {
  background: #00afc9;
  color: #fff;
}
@media (max-width: 768px) {
  .post-content .book-tasks .structure-link {
    min-width: 14%;
    font-size: 14px;
    margin: 3px;
  }
}
.post-content .book-tasks .tasks-head {
  background: transparent;
  margin-bottom: 20px;
  padding-left: 5px;
  margin: 5px 0;
  font-weight: 500;
}
h2.tasks-head {
  display: block;
  text-align: center;
  background: #dffbff!important;
  box-shadow: 0px 0px 10px 0px #e2e2e2;
  margin-top: 20px!important;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .post-content .book-tasks .tasks-head {
    font-size: 20px;
  }
}
.post-content .task-container .task-btn-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .post-content .task-container .task-btn-container {
    margin: 5px 0;
  }
}
.post-content .task-container .task-btn-container a {
  background: #ffd453;
  color: #000;
  text-decoration: none;
  display: inline-block;
  padding: 5px;
  font-weight: 300;
  font-size: 18px;
  width: auto;
}
.post-content .task-container .task-btn-container a:hover {
  background: #00afc9;
  color: #fff;
}
@media (max-width: 768px) {
  .post-content .task-container .task-btn-container a {
    font-size: 14px;
  }
}
.post-content .task-container h4 {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 5px 0;
}
.post-content .task-container h4 span{
  font-size: 16px;
}
@media (max-width: 768px) {
  .post-content .task-container h4 {
    margin-top: 10px;
  }
}
.post-content .task-container .task-img {
  width: 100%;
  margin: 10px 0;
}
.task-active {
  background: #00afc9 !important;
  color: #fff !important;
}
.no-task {
  width: 100%;
}
.no-task-btn {
  background: #ffd453;
  border: none;
  outline: none;
  display: inherit;
  font-weight: 300;
  font-size: 24px;
  padding: 15px !important;
  cursor: pointer;
  width: 50% !important;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
}
.no-task-btn:hover {
  background: #00afc9;
  color: #fff;
}
.no-task-number_input {
  display: none;
}
.wpcf7-mail-sent-ok {
  display: none;
}
.screen-reader-response {
  text-align: center;
  font-size: 36px;
  font-weight: 300;
}
.disabled-link {
  pointer-events: none;
  background: #d2d2d2 !important;
  color: #828282 !important;
}
.post-comments {
  margin-top: 0px;
}
h4.related-head {
  text-align: center;
  margin-bottom: 10px !important;
  display: block;
}
.related-books {
  display: flex;
  width: 100%;
}
.related-books .book {
  width: 48%;
  height: 180px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
}
.related-books .book:hover {
  background: rgba(254,197,12,0.5);
}
@media (max-width: 768px) {
  .related-books .book {
    width: 100%;
    margin-bottom: 0;
    padding: 12px 0 10px 0;
    border-bottom: 1px solid #ffd453;
    height: auto;
  }
}
.related-books .book .book-cover {
  width: 48%;
  margin: 0;
}
@media (max-width: 768px) {
  .related-books .book .book-cover {
    width: 25%;
  }
}
.related-books .book .book-cover img {
  max-width: 100%;
  height: 180px;
}
@media (max-width: 768px) {
  .related-books .book .book-cover img {
    height: auto;
  }
}
.related-books .book .book-desc {
  width: 48%;
  position: relative;
}
.related-books .book .book-desc p {
  margin: 0;
  padding: 0;
  font-weight: 300;
  margin-bottom: 3px;
  font-size: 15px;
}
.related-books .book .book-desc b {
  font-weight: 700;
}
.related-books .book .book-desc .book-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .related-books .book .book-desc .book-title {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .related-books .book .book-desc .book-authors,
  .related-books .book .book-desc .book-publisher,
  .related-books .book .book-desc .book-year, .book-link {
    font-size: 14px;
  }
}
.related-books .book .book-desc .book-subject-name {
  background: #ffd453;
  padding: 5px 10px;
  display: inline-block;
  margin-top: 5px;
  font-weight: 100;
  position: absolute;
  right: 0;
  bottom: 5px;
}
.share-to-friend {
  background: #fed452;
  display: inline-block;
  padding: 5px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .share-to-friend {
    margin-top: 10px;
    font-size: 14px;
  }
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  height: 100%;
  background: #CCCCCC ;
  font-family: 'Ubuntu';
  color: #000;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wrapper {
  flex: 1 0 auto;
}
h1 {
  font-weight: 300;
  margin-top: 0;
}
.container {
  width: 1155px;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 1700px) {
  .container {
    width: 960px;
    margin: 0;
    margin-left: 10px;
    padding: 0 10px;
  }
}
@media (max-width: 980px) {
  .container {
    width: 100%;
    margin-left: 0;
  }
}
.main-content {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .main-content {
    margin-top: 0;
  }
}
.main-content .container {
  padding: 20px;
}
.main-content .table-container {
  padding: 0;
  background: transparent;
  position: relative;
}
.main-content .table-container h1 {
  margin: 0;
  display: inline-block;
  background: #ffd453;
  padding: 10px;
}
@media (max-width: 768px) {
  .main-content .table-container h1 {
    font-size: 22px;
    font-weight: 500;
    background: rgba(255,255,255,0.7);
    padding: 0 5px;
    margin-bottom: 5px;
  }
}
.main-content .table-container .vk_group_link {
  position: absolute;
  top: 0;
  right: 0;
  width: 230px;
}
.main-content .table-container .vk_group_link:hover {
  filter: brightness(1.2);
}
@media (max-width: 1700px) {
  .main-content .table-container .vk_group_link {
    display: none;
  }
}
.main-content .table-container .vk_group_link img {
  width: 100%;
}
.main-content .table-container .vk_group_link_mobile {
  display: none;
  position: relative;
  width: 100%;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .main-content .table-container .vk_group_link_mobile {
    display: block;
  }
}
.main-content .table-container .table {
  width: 100%;
  margin: 0;
  background: rgba(255,255,255,0.7);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .main-content .table-container .table {
    margin-top: 5px;
  }
}
.main-content .table-container .table .table-line {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 768px) {
  .main-content .table-container .table .table-line {
    justify-content: start;
    margin-bottom: 5px;
  }
}
.main-content .table-container .table .table-line:hover span {
  border-color: #00afca;
}
.main-content .table-container .table .table-line:first-child {
  background: rgba(254,197,12,0.5);
}
@media (max-width: 768px) {
  .main-content .table-container .table .table-line:first-child {
    background: transparent;
    display: none;
  }
}
.main-content .table-container .table .table-line:first-child span {
  padding: 10px;
  font-weight: 100;
  background: transparent;
}
.main-content .table-container .table .table-line:first-child span:hover {
  color: #000;
}
.main-content .table-container .table .table-line:first-child a {
  padding: 10px;
  font-weight: 100;
}
.main-content .table-container .table .table-line:first-child a:hover {
  background: #fff;
  color: #000;
}
.main-content .table-container .table .table-line span {
  font-weight: 500;
  text-align: left;
  width: 17.5%;
  font-size: 24px;
  padding: 0;
  display: block;
  background: rgba(254,197,12,0.5);
  border-left: 6px solid transparent;
}
@media (max-width: 768px) {
  .main-content .table-container .table .table-line span {
    width: 100%;
    margin-bottom: 5px;
  }
  .main-content .table-container .table .table-line span a {
    padding: 5px 0 !important;
  }
}
.main-content .table-container .table .table-line span:hover {
  background: #00afca;
  color: #fff;
}
.main-content .table-container .table .table-line span:hover a {
  color: #fff;
}
.main-content .table-container .table .table-line span a {
  padding: 20px 5px;
  width: 100%;
  font-weight: 500;
}
@media (max-width: 768px) and (max-width: 768px) {
  .main-content .table-container .table .table-line span a {
    font-weight: 500;
  }
}
.main-content .table-container .table .table-line a {
  width: 8.2%;
  color: #000;
  text-decoration: none;
  display: block;
  font-size: 22px;
  padding: 20px 10px;
}
@media (max-width: 768px) {
  .main-content .table-container .table .table-line >a {
    display: none;
    padding: 3px 10px;
    margin: 5px;
    margin-right: 20px;
    margin-bottom: 15px;
    /* background: #00afca; */
    background: #caf8ff;
    color: #000;
    font-weight: 500;
    width: 45px;
    font-size: 24px;
    outline: 2px solid #000000;
  }
}
.main-content .table-container .table .table-line a.not-active {
  color: rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .main-content .table-container .table .table-line a.table-active {
    display: block;
  }
}
.main-content .table-container .table .table-line a.table-active:hover {
  background: #00afca;
  color: #fff;
}
.main-content h4 {
  display: block;
  background: #ffd453;
  font-weight: 300;
  font-size: 22px;
  padding: 0 20px;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .main-content h4 {
    font-size: 18px;
    padding: 0 10px;
  }
}
.main-content .popular-books {
  background: rgba(255,255,255,0.7);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .main-content .popular-books {
    padding: 10px;
    padding-top: 15px;
  }
}
.main-content .popular-books .book {
  width: 49%;
  height: 190px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  outline: 2px solid #fed452;
}
.main-content .popular-books .book:hover {
  background: rgba(254,197,12,0.5);
}
@media (max-width: 768px) {
  .main-content .popular-books .book {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    margin: 10px 0;
    border-bottom: 1px solid #ffd453;
    height: auto;
  }
}
.main-content .popular-books .book .book-cover {
  width: 26%;
}
@media (max-width: 768px) {
  .main-content .popular-books .book .book-cover {
    width: 25%;
  }
}
.main-content .popular-books .book .book-cover img {
  width: 100%;
  height: 190px;
}
@media (max-width: 768px) {
  .main-content .popular-books .book .book-cover img {
    height: auto;
  }
}
.main-content .popular-books .book .book-desc {
  width: 72%;
  padding-top: 5px;
}
.main-content .popular-books .book .book-desc p {
  margin: 0;
  padding: 0;
  font-weight: 300;
  margin-bottom: 3px;
  font-size: 14px;
}
.main-content .popular-books .book .book-desc b {
  font-weight: 700;
}
.main-content .popular-books .book .book-desc .book-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 22px;
}
@media (max-width: 768px) {
  .main-content .popular-books .book .book-desc .book-title {
    margin-bottom: 5px;
  }
}
.main-content .popular-books-narrow .popular-books .book {
  height: 160px;
}
@media (max-width: 768px) {
  .main-content .popular-books-narrow .popular-books .book {
    height: auto;
  }
}
@media (max-width: 768px) {
  .main-content .popular-books-narrow .popular-books .book .book-cover {
    margin-bottom: 0;
  }
}
.main-content .popular-books-narrow .popular-books .book .book-cover img {
  height: 160px;
}
@media (max-width: 768px) {
  .main-content .popular-books-narrow .popular-books .book .book-cover img {
    height: auto;
  }
}
.main-content .popular-books-narrow .popular-books .book .book-desc {
  width: 69%;
}
.main-content .seo-text {
  background: rgba(255,255,255,0.7);
  padding: 20px 10px;
  padding-top: 10px;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 100;
  line-height: 28px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .main-content .seo-text {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
  }
}
.main-content .seo-text p:first-child {
  margin-top: 0;
}
.main-content .seo-text p:last-child {
  margin-bottom: 0;
}
footer {
  flex: 0 0 auto;
  background: #00afca;
  color: #fff;
  padding: 10px 0;
  font-weight: 300;
  font-size: 18px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  footer {
    padding: 0;
  }
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .container p:first-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  footer .container p {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}
footer .container a {
  color: #fff;
}
footer .container a:hover {
  text-decoration: none;
}
.breadcrumbs {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 10px;
    color: #6f6f6f;
  }
}
.breadcrumbs a {
  color: #000;
  font-weight: 300;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .breadcrumbs a {
    color: #6f6f6f;
  }
}
.breadcrumbs .breadcrumbs__current {
  font-weight: 300;
}
@media (max-width: 768px) {
  .on-desktop {
    display: none!important;
  }
}
.on-mobile {
  display: none!important;
  font-weight: 300;
}
@media (max-width: 768px) {
  .on-mobile {
    display: block!important;
  }
}
.hide {
  display: none !important;
}
.task-container .screen-reader-response {
  padding-top: 100px;
}
.no-task-btn {
  display: none;
}
.wpcf7 {
  margin-bottom: 60px !important;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
  margin: 0;
  display: block;
  border: none;
  text-align: center;
  font-size: 32px;
  margin-top: -40px;
}
.ask-book-input {
  background: transparent;
  border: 2px solid #fec50c;
  padding: 5px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 300;
  outline: none;
}
.ask-book-btn {
  background: #ffd453;
  border: none;
  outline: none;
  padding: 10px;
  display: block;
  font-weight: 300;
  font-size: 24px;
  margin-top: 15px;
  cursor: pointer;
}
.ask-book-btn:hover {
  background: #00afc9;
  color: #fff;
}
.no-find-book-mobile {
  background: #00afca;
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
  display: none;
}
@media (max-width: 768px) {
  .no-find-book-mobile {
    display: block;
  }
  .corona-mobile {
    display: block!important;
  }
  .corona-link {
    display: none;
  }
}
#vk_like {
  width: auto !important;
  clear: none !important;
}

.corona-link {
  width: 100%;
}
.corona-mobile {
  display: none;
}
.corona-link img {
  width: 100%;
  margin-top: 5px;
}
.corona-link:hover {
  filter: brightness(1.2);
}
.book-link {
  color: #0066c8;
  font-size: 18px;
}
.book-link:hover {
  text-decoration: none;
}

.task-error-wrapper {
  width: 100%;
  text-align: center;
  margin: 10px auto;
}
.task-error {
  background: #ff8353;
  outline: none;
  border: none;
  color: #000;
  font-weight: 300;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 22px;
}
.task-error-input {
  border: 2px solid #ff8353;
  padding: 5px 10px;
  font-size: 18px;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .task-error {
    font-size: 14px;
  }
  .task-error-send {
    font-size: 14px;
  }
}
.task-error-send {
  margin-top: 0;
}
.task-error:hover {
  filter: brightness(1.2);
}

.banner-desc {
  min-height: 95px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.nurbaga-link-post {
  background: #caf8ff;
  padding: 10px;
  border-radius: 3px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  outline: 1px solid #000000;
  display: inline-block;
  text-align: center;
  clear: both;
  margin-bottom: 10px;
}
.nurbaga-link-post:hover {
  background: #008ca3;
}

@media (max-width: 768px) {
  .nurbaga-link-post {
    display: block;
    font-size: 14px;
  }
}

.new-book {
  position: relative;
}

.new-book::before {
  content: 'new';
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  /* width: 20px;
  height: 20px; */
  color: #fff;
  padding: 3px 5px;
  font-size: 18px;
  border-radius: 10px;
  line-height: 18px;
  background: #dc3545;
}

@media (max-width: 768px) {
  .new-book::before {
    top: -10px;
    right: -20px;
    font-size: 14px;
  }
}

.main-content .table-container .table .table-line a.table-active:hover::before{
  background: red;
}

.oqylyq-link {
  color: #000000;
  text-decoration: none;
  font-size: 24px;
  text-align: left;
  background: #ffd453;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}
.oqylyq-link:hover {
  filter: brightness(1.1);
}

.mobile-show {
  display: none!important;
}

@media (max-width: 768px) {
  .oqylyq-link {
    display: none;
  }
  .mobile-show {
    display: block!important;
  }
  .banner-mob-table {
    display: block;
  }
}

.clear {
  clear: both;
}

.banner-mob-table {
  /* display: none; */
  width: 100%;
  margin: 10px 0;
}

.task-error-msg-error {
  font-size: 22px;
  margin: 0;
  color: #f00
}

.task-file-head {
  font-size: 24px;
  text-align: center;
}

.task-file-link {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 36px;
  text-decoration: none;
  background: #ffd453;
  border-radius: 5px;
  padding: 10px;
  justify-content: center;
  color: #000;
  border: 1px solid #000;
  transition: box-shadow .3s;
}
.task-file-link:hover {
  box-shadow: 0 0 11px rgba(33,33,33,.2);
}
.task-file-link img {
  width: 40px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .task-file-link {
    width: 90%;
    font-size: 26px;
  }
}

.banner {
  /* display: block; */
  width: 100%;
  margin: 10px auto;
}
/* .banner-books {
  
} */
.banner-structure {
  margin: 10px 0;
}
@media (max-width: 768px) {
  .banner-books {
    width: 100%;
    margin: 10px 0;
  }
}
.right-fixed-banner{
  width: 170px;
  height: 610px;
  position: fixed;
  top: 10px;
  right: 0;
}
@media (max-width: 1140px) {
  .right-fixed-banner{
    display: none;
  }
}

/* .sor-soch {
  display: inline-block;
  font-size: 24px;
  width: 130px;
  text-decoration: none;
  color: #000;
  background: #ffd453;
  padding: 10px;
  border-radius: 10px;
} */

.new-year {
  position: absolute;
  bottom: 10px;
  left: 180px;
  background: rgb(255 97 28 / 82%);
  padding: 10px;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
}