.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select.open,
.nice-select:active,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: 700;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
body,
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.wrapper {
  flex: 1 0 auto;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.container.wide {
  max-width: 1338px;
}
.container.default {
  max-width: 1232px;
}
.container.narrow {
  max-width: 800px;
}
.container.extra-narrow {
  max-width: 728px;
}
.content {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.content .main_content {
  width: calc(100% - 380px);
  margin-right: 20px;
}
.content .main_content > :not(:last-child) {
  width: 100%;
  margin-bottom: 20px;
}
.content .main_content.full-width {
  width: 100% !important;
  margin: 0 !important;
}
.content .sidebar {
  min-width: 360px;
  width: 360px;
}
.content .sidebar > :not(:last-child) {
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1139.9px) {
  .content {
    flex-direction: column;
  }
  .content .main_content {
    width: 100%;
    margin: 0 0 20px;
  }
  .content .sidebar {
    min-width: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .content {
    padding-bottom: 20px;
  }
}
.large-container {
  max-width: 1166px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .large-container {
    padding: 0 20px;
  }
}
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e6e9ee;
  background-color: #2a3052;
}
.header-content {
  height: 60px;
}
.header-content,
.header-content .right-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-content .right-part {
  flex: 1;
  height: 100%;
  padding-left: 30px;
}
.header-content .search-form_container {
  max-width: 240px;
  width: 100%;
}
.header-content .site-nav,
.header-content .site-nav .nav-list,
.header-content .site-nav .nav-list > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-content .site-nav .nav-list > li {
  margin: 0 15px;
}
.header-content .site-nav .nav-list > li:first-child {
  margin-left: 0;
}
.header-content .site-nav .nav-list > li:last-of-type {
  margin-right: 0;
}
.header-content .site-nav .nav-list > li .nav-item {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: red;
}
.header-content .site-nav .nav-list > li .nav-item:focus,
.header-content .site-nav .nav-list > li .nav-item:hover {
  color: #33E6FF;
}
.header-content .site-nav .nav-list > li.dropdown {
  position: relative;
}
.header-content .site-nav .nav-list > li.dropdown .nav-item {
  cursor: pointer;
}
.header-content .site-nav .nav-list > li.dropdown .nav-item .svg-icons {
  position: relative;
  top: 1px;
  margin-left: 5px;
}
.header-content .site-nav .nav-list > li.dropdown .dropdown-content {
  display: none;
  width: 100%;
  height: auto;
  list-style: none;
  margin: 0;
  transition: all 0.3s;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.08),
    0 12px 28px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e6e9ee;
  z-index: 100;
}
@media only screen and (min-width: 1024px) {
  .header-content .site-nav .nav-list > li.dropdown .dropdown-content {
    position: absolute;
    top: calc(100% - 25px);
    left: -50%;
    min-width: 270px;
    padding: 15px 0;
    transform: translateX(-20%);
  }
  .header-content .site-nav .nav-list > li.dropdown .dropdown-content:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-right: 1px solid #e6e9ee;
    border-top: 1px solid #e6e9ee;
    transform: translateX(-50%) rotate(-45deg);
  }
}
.header-content
  .site-nav
  .nav-list
  > li.dropdown
  .dropdown-content
  .dropdown-list
  li {
  list-style-position: outside;
  overflow: hidden;
  margin: 0 0 10px;
  text-align: center;
}
.header-content
  .site-nav
  .nav-list
  > li.dropdown
  .dropdown-content
  .dropdown-list
  li:last-of-type {
  margin: 0;
}
.header-content
  .site-nav
  .nav-list
  > li.dropdown
  .dropdown-content
  .dropdown-list
  li
  a {
  padding: 0 15px;
  line-height: 1.75;
  font-size: 16px;
  color: #394652;
}
.header-content
  .site-nav
  .nav-list
  > li.dropdown
  .dropdown-content
  .dropdown-list
  li
  a:focus,
.header-content
  .site-nav
  .nav-list
  > li.dropdown
  .dropdown-content
  .dropdown-list
  li
  a:hover {
  color: #33E6FF;
}
.header-content .site-nav .nav-list > li.dropdown:focus .dropdown-content,
.header-content .site-nav .nav-list > li.dropdown:hover .dropdown-content {
  display: block;
}
.header-content .hidden-btns {
  display: none;
}
@media only screen and (max-width: 1023.9px) {
  .header-content {
    height: 63px;
  }
  .header-content .right-part {
    position: relative;
    padding-left: 40px;
  }
  .header-content .site-nav {
    display: none;
    position: absolute;
  }
  .header-content .site-nav.show {
    display: block;
    top: 100%;
    right: -15px;
    z-index: 1000;
    padding: 0 16px;
    background-color: #fff;
    width: 320px;
    border-top: 1px solid #e6e9ee;
    border-bottom: 1px solid #e6e9ee;
    border-left: 1px solid #e6e9ee;
    border-radius: 0 0 0 4px;
    box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
    height: auto;
  }
  .header-content .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-end;
  }
  .header-content .site-nav .nav-list > li {
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    border-top: 1px solid #e6e9ee;
  }
  .header-content .site-nav .nav-list > li:first-child {
    border-top: none;
  }
  .header-content .site-nav .nav-list > li .nav-item {
    padding: 10px 0;
  }
  .header-content .site-nav .nav-list > li.dropdown {
    flex-direction: column;
    align-items: flex-end;
    width: auto;
  }
  .header-content .site-nav .nav-list > li.dropdown .dropdown-content {
    padding: 0;
    box-shadow: none;
    border: none;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list {
    padding-bottom: 10px;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    > li {
    margin-bottom: 6px;
    text-align: right;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    > li:last-of-type {
    margin: 0;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    > li
    a {
    padding: 0;
    line-height: 1.5;
    font-size: 15px;
  }
  .header-content .hidden-btns {
    display: flex;
    align-items: center;
  }
  .header-content .hidden-btns > div {
    margin-right: 10px;
  }
  .header-content .hidden-btns > div:last-of-type {
    margin: 0;
  }
  .header-content .hidden-btns .burger_btn {
    display: inline-flex;
    align-items: center;
  }
  .header-content .hidden-btns .burger_btn .svg-icons {
    font-size: 25px;
    color: #394652;
  }
  .header-content .hidden-btns .search-form_btn {
    display: none;
  }
  .header-content .hidden-btns .search-form_btn .svg-icons {
    font-size: 19px;
    color: #394652;
  }
  .header-content .hidden-btns .burger_btn.active .svg-icons,
  .header-content .hidden-btns .search-form_btn.active .svg-icons {
    color: #33E6FF;
  }
}
@media only screen and (max-width: 767.9px) {
  .header-content .right-part {
    position: static;
    justify-content: flex-end;
  }
  .header-content .right-part .site-nav.show {
    right: 0;
  }
  .header-content .search-form_container {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 15px 16px;
    background: #fff;
    border-bottom: 1px solid #e8e8e9;
  }
  .header-content .search-form_container.show {
    display: flex;
  }
  .header-content .search-form_container.show .search-form.header {
    position: relative;
  }
  .header-content .hidden-btns .search-form_btn {
    display: inline-flex;
    align-items: center;
  }
}
@media only screen and (max-width: 414px) {
  .header-content .site-nav.show {
    left: 0;
    right: 0;
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
  }
}
.search-form {
  display: flex;
  position: relative;
  width: 100%;
}
.search-form .search-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 50px 0 15px;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: 600;
  font-family: Open Sans, sans-serif;
  color: #6a7f9e;
}
.search-form .search-input:focus,
.search-form .search-input:hover {
  outline: none;
}
.search-form .sbmt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border-radius: 4px;
  padding: 0;
  border: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
  color: #33E6FF;
  cursor: pointer;
}
.search-form .sbmt-btn:hover {
  color: #394652;
}
.search-form .search-results {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  padding: 16px;
  z-index: 1000;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 24px -6px rgba(160, 179, 235, 0.42);
  border: 1px solid #e6e9ee;
}
.search-form .search-results.hide {
  display: none;
}
.search-form .search-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-form .search-results ul li {
  margin-bottom: 6px;
  line-height: 1;
}
.search-form .search-results ul li:last-child {
  margin-bottom: 0;
}
.search-form .search-results ul li a {
  display: inline-block;
  max-width: 100%;
  line-height: 1.5;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #7c89a5;
}
.search-form .search-results ul li a span {
  font-weight: 600;
  color: #33E6FF;
}
.search-form .search-results ul li a:focus,
.search-form .search-results ul li a:hover {
  font-weight: 600;
  color: #394652;
}
.search-form.header .search-results {
  right: 0;
}
@media only screen and (max-width: 767.9px) {
  .search-form.header {
    flex-direction: column;
  }
  .search-form.header .search-results {
    position: static;
    margin-top: 5px;
  }
}
.site-footer {
  padding: 40px 0 30px;
  background-image: linear-gradient(180deg, #2a3052, #2a3052);
}
.footer_content .top-part {
  display: flex;
  justify-content: space-between;
}
.footer_content .top-part .info-block {
  max-width: 390px;
  width: 100%;
}
.footer_content .top-part .info-block .text {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.5;
  color: hsla(0, 0%, 100%, 0.6);
}
.footer_content .top-part .right-part {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-left: 130px;
}
.footer_content .top-part .footer_block .title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  color: #fff;
}
.footer_content .top-part .footer_block .footer_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer_content .top-part .footer_block .footer_list li {
  margin-bottom: 10px;
}
.footer_content .top-part .footer_block .footer_list li:last-of-type {
  margin: 0;
}
.footer_content .top-part .footer_block .footer_list li a {
  line-height: 1.86;
  font-size: 14px;
  color: hsla(0, 0%, 100%, 0.6);
}
.footer_content .top-part .footer_block .footer_list li a:focus,
.footer_content .top-part .footer_block .footer_list li a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer_content .bottom-part {
  margin-top: 10px;
}
.footer_content .bottom-part .social-btns_container {
  display: flex;
  align-items: center;
}
.footer_content .bottom-part .social-btns_container .title {
  margin-right: 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.56;
  color: #fff;
}
.footer_content .bottom-part .copyright {
  margin-top: 5px;
  font-size: 12px;
  color: #e6e9ee;
  opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
  .footer_content .top-part .right-part {
    padding-left: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .footer_content .top-part .info-block {
    max-width: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .footer_content .top-part {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .footer_content .top-part .info-block {
    max-width: 100%;
  }
  .footer_content .top-part .right-part {
    margin-top: 30px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 640px) {
  .footer_content .top-part .right-part {
    flex-wrap: wrap;
  }
  .footer_content .top-part .right-part .footer_block:last-of-type {
    width: 100%;
    margin-top: 30px;
  }
  .footer_content
    .top-part
    .right-part
    .footer_block:last-of-type
    .footer_list {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .footer_content
    .top-part
    .right-part
    .footer_block:last-of-type
    .footer_list
    li:not(:last-of-type) {
    margin-right: 40px;
  }
}
.rating.type1 {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 0;
  overflow: hidden;
}
.rating.type1,
.rating.type1 .rating-info {
  justify-content: center;
  width: 88px;
  height: 16px;
}
.rating.type1 .rating-info {
  display: inline-flex;
  background-size: cover;
  background-repeat: no-repeat;
}
.rating.type1 .empty-rating {
  background-position: 0 0;
}
.rating.type1 .zero-point-five {
  background-position: 0 -20px;
}
.rating.type1 .one {
  background-position: 0 -40px;
}
.rating.type1 .one-point-five {
  background-position: 0 -60px;
}
.rating.type1 .two {
  background-position: 0 -80px;
}
.rating.type1 .two-point-five {
  background-position: 0 -100px;
}
.rating.type1 .three {
  background-position: 0 -120px;
}
.rating.type1 .three-point-five {
  background-position: 0 -140px;
}
.rating.type1 .four {
  background-position: 0 -160px;
}
.rating.type1 .four-point-five {
  background-position: 0 -180px;
}
.rating.type1 .five {
  background-position: 0 -200px;
}
.app-billet.card1 {
  display: flex;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24), 0 0 3px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.app-billet.card1:focus,
.app-billet.card1:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 0 3px 0 rgba(0, 0, 0, 0.12);
}
.app-billet.card1 .logo-container {
  display: flex;
  align-items: flex-start;
}
.app-billet.card1 .logo-container img {
  max-width: 100%;
}
.app-billet.card1 .concise-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-billet.card1 .concise-info .title {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.5;
  color: #394652;
}
.app-billet.card1 .concise-info .rating-block {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.app-billet.card1.vertical {
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 36px;
}
.app-billet.card1.vertical .logo-container {
  width: 100%;
  justify-content: center;
}
.app-billet.card1.vertical .concise-info {
  width: 100%;
  margin: 16px 0 0;
}
@media only screen and (min-width: 641px) {
  .app-billet.card1.vertical .concise-info {
    align-items: center;
  }
}
.app-billet.card1.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 16px 20px;
}
.app-billet.card1.horizontal .logo-container {
  min-width: 80px;
  width: 80px;
}
.app-billet.card1.horizontal .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-billet.card1.horizontal .concise-info {
  width: calc(100% - 80px);
  padding-left: 16px;
}
.app-billet.card1.horizontal .concise-info .title {
  margin-bottom: 2px;
}
@media only screen and (max-width: 640px) {
  .app-billet.card1.horizontal,
  .app-billet.card1.vertical {
    flex-direction: row;
    padding: 12px 12px 16px;
  }
  .app-billet.card1.horizontal .logo-container,
  .app-billet.card1.vertical .logo-container {
    min-width: 72px;
    width: 72px;
    height: 72px;
  }
  .app-billet.card1.horizontal .concise-info,
  .app-billet.card1.vertical .concise-info {
    width: calc(100% - 72px);
    margin: 0;
    padding-left: 12px;
  }
  .app-billet.card1.horizontal .concise-info .title,
  .app-billet.card1.vertical .concise-info .title {
    margin: 0;
  }
  .app-billet.card1.horizontal .concise-info .rating-block,
  .app-billet.card1.vertical .concise-info .rating-block {
    margin-top: 5px;
  }
}
.blog-billet.card3 {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 8px;
  background: #fff;
  border: 1px solid #f7f9fa;
  border-radius: 4px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24), 0 0 3px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.blog-billet.card3:focus,
.blog-billet.card3:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 0 3px 0 rgba(0, 0, 0, 0.12);
}
.blog-billet.card3 .poster-container {
  display: flex;
}
.blog-billet.card3 .poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.blog-billet.card3 .concise-info .text-part {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.blog-billet.card3 .concise-info .text-part .descr,
.blog-billet.card3 .concise-info .text-part .title {
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  overflow: hidden;
}
.blog-billet.card3 .concise-info .text-part .title {
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
  line-height: 1.33;
  font-size: 20px;
  font-weight: 700;
  color: #394652;
}
.blog-billet.card3 .concise-info .text-part .descr {
  line-height: 1.6;
  font-size: 15px;
  color: #555963;
}
.blog-billet.card3 .concise-info .bottom-part {
  display: flex;
  justify-content: space-between;
}
.blog-billet.card3 .concise-info .bottom-part .details-list {
  display: flex;
  max-width: calc(100% - 140px);
}
.blog-billet.card3 .concise-info .bottom-part .details-list li {
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
  line-height: 1.71;
  font-size: 14px;
  color: #999;
}
.blog-billet.card3 .concise-info .bottom-part .details-list li:last-of-type {
  margin: 0;
}
.blog-billet.card3 .concise-info .bottom-part .read-more_link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 600;
  color: #33E6FF;
}
.blog-billet.card3 .concise-info .bottom-part .read-more_link .svg-icons {
  margin-left: 4px;
  font-size: 16px;
}
.blog-billet.card3.vertical {
  flex-direction: column;
  padding: 24px 24px 28px;
}
.blog-billet.card3.vertical .poster-container {
  width: 100%;
  height: 180px;
}
.blog-billet.card3.vertical .concise-info {
  padding: 20px 0 0;
}
.blog-billet.card3.vertical .concise-info .text-part {
  margin: 4px 0 16px;
}
.blog-billet.card3.vertical .concise-info .text-part .title {
  font-size: 18px;
}
.blog-billet.card3.vertical .concise-info .text-part .descr {
  -webkit-line-clamp: 3;
}
.blog-billet.card3.horizontal {
  flex-direction: row;
  padding: 24px 32px 24px 24px;
}
.blog-billet.card3.horizontal .poster-container {
  height: 216px;
  min-width: 200px;
  width: 200px;
}
.blog-billet.card3.horizontal .concise-info {
  padding: 8px 0 0 24px;
}
.blog-billet.card3.horizontal .concise-info .text-part {
  margin: 4px 0 20px;
}
.blog-billet.card3.horizontal .concise-info .text-part .descr {
  -webkit-line-clamp: 4;
}
@media only screen and (max-width: 767.9px) {
  .blog-billet.card3.horizontal {
    flex-direction: column;
    padding: 24px;
  }
  .blog-billet.card3.horizontal .poster-container {
    min-width: 0;
    width: 100%;
  }
  .blog-billet.card3.horizontal .concise-info {
    padding: 16px 0 0;
  }
}
@media only screen and (max-width: 640px) {
  .blog-billet.card3.horizontal,
  .blog-billet.card3.vertical {
    padding: 20px 20px 24px;
  }
  .blog-billet.card3.horizontal .poster-container,
  .blog-billet.card3.vertical .poster-container {
    height: 164px;
  }
  .blog-billet.card3.horizontal .concise-info,
  .blog-billet.card3.vertical .concise-info {
    padding-top: 16px;
  }
  .blog-billet.card3.horizontal .concise-info .text-part,
  .blog-billet.card3.vertical .concise-info .text-part {
    margin-bottom: 16px;
  }
  .blog-billet.card3.horizontal .concise-info .text-part .title,
  .blog-billet.card3.vertical .concise-info .text-part .title {
    line-height: 1.33;
    font-size: 18px;
  }
  .blog-billet.card3.horizontal
    .concise-info
    .bottom-part
    .read-more_link
    .svg-icons,
  .blog-billet.card3.vertical
    .concise-info
    .bottom-part
    .read-more_link
    .svg-icons {
    display: none;
  }
}
.social-btns {
  display: flex;
  align-items: center;
}
.social-btns li {
  margin-right: 15px;
  line-height: 1;
  font-size: 0;
}
.social-btns li:last-of-type {
  margin: 0;
}
.social-btns li a .svg-icons {
  font-size: 18px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.social-btns li a:hover .svg-icons {
  color: hsla(0, 0%, 100%, 0.6);
}
.social-btns li:last-of-type a .svg-icons {
  font-size: 22px;
}
.social-btn_type2 {
  display: flex;
}
.social-btn_type2 li {
  margin-right: 10px;
}
.social-btn_type2 li a {
  font-size: 30px;
}
.social-btn_type2 li a.fb {
  color: #3b5998;
}
.social-btn_type2 li a.tw {
  color: #00b6f1;
}
.social-btn_type2 li a.pinterest {
  color: #bb232c;
}
.social-btn_type2 li a:focus,
.social-btn_type2 li a:hover {
  opacity: 0.7;
}
.breadcrumbs {
  display: flex;
}
.breadcrumbs li {
  position: relative;
  line-height: 1;
  font-size: 0;
  padding-right: 8px;
}
.breadcrumbs li:last-of-type {
  padding-right: 0;
}
.breadcrumbs li:last-of-type:after {
  display: none;
}
.breadcrumbs li:after {
  content: "/";
  position: relative;
  top: 1px;
  margin-left: 8px;
  font-size: 12px;
}
.breadcrumbs li a {
  line-height: 1.5;
  font-size: 12px;
  color: #4f607a;
}
.breadcrumbs li a:focus,
.breadcrumbs li a:hover {
  text-decoration: underline;
}
.breadcrumbs li span {
  line-height: 1.5;
  font-size: 12px;
  cursor: default;
  color: #4f607a;
}
@media only screen and (max-width: 767.9px) {
  .breadcrumbs {
    display: none;
  }
}
.pagination {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination li {
  margin-right: 8px;
}
.pagination li:last-child {
  margin: 0;
}
.pagination li:first-child.disabled a,
.pagination li:last-child.disabled a {
  background: #fff;
  cursor: not-allowed;
}
.pagination li:first-child.disabled a .svg-icons,
.pagination li:first-child.disabled a:focus .svg-icons,
.pagination li:first-child.disabled a:hover .svg-icons,
.pagination li:last-child.disabled a .svg-icons,
.pagination li:last-child.disabled a:focus .svg-icons,
.pagination li:last-child.disabled a:hover .svg-icons {
  color: #acb4ba;
}
.pagination li.active span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  border-radius: 4px;
  background: #33E6FF;
  color: #fff;
  cursor: default;
}
.pagination li.active span:focus,
.pagination li.active span:hover {
  color: #fff;
}
.pagination li > * {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 36px;
  color: #5d677a;
}
.pagination li span {
  cursor: default;
}
.pagination li a {
  background: #fff;
  border-radius: 4px;
}
.pagination li a .svg-icons {
  font-size: 18px;
  color: #5d677a;
}
.pagination li a:focus,
.pagination li a:hover {
  background: #33E6FF;
  color: #fff;
}
.pagination li a:focus .svg-icons,
.pagination li a:hover .svg-icons {
  color: #fff;
}
.pagination.simple {
  justify-content: center;
  width: 100%;
}
.pagination.simple .page-item:first-child .page-link .svg-icons {
  transform: rotate(180deg);
}
.pagination.simple .page-item .page-link {
  width: auto;
  padding: 0 15px;
}
@media only screen and (max-width: 640px) {
  .pagination li:first-child a .text,
  .pagination li:last-child a .text {
    display: none;
  }
}
.blog-categories .list > li {
  margin-bottom: 10px;
}
.blog-categories .list > li:last-child {
  margin: 0;
}
.blog-categories .list a {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
  color: #33E6FF;
}
.blog-categories .list a:focus,
.blog-categories .list a:hover {
  text-decoration: underline;
}
.scrtabs-tab-container {
  height: 41px;
}
.scrtabs-tabs-fixed-container {
  height: 41px;
  overflow: hidden;
  width: 100%;
}
.scrtabs-tabs-movable-container {
  position: relative;
  height: 41px;
}
.scrtabs-tabs-movable-container .tab-content {
  display: none;
}
.scrtabs-tab-container.scrtabs-rtl
  .scrtabs-tabs-movable-container
  > ul.nav-tabs {
  padding-right: 0;
}
.scrtabs-tab-scroll-arrow {
  border: 1px solid #e6e9ee;
  border-top: none;
  color: #f8f7ff;
  display: none;
  float: left;
  font-size: 12px;
  height: 41px;
  margin-bottom: -1px;
  padding-left: 2px;
  padding-top: 13px;
  width: 20px;
}
.scrtabs-tab-scroll-arrow:hover {
  background-color: #fff;
}
.scrtabs-tab-scroll-arrow,
.scrtabs-tab-scroll-arrow .scrtabs-click-target {
  cursor: pointer;
}
.scrtabs-tab-scroll-arrow.scrtabs-with-click-target {
  cursor: default;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable,
.scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
  color: #ddd;
  cursor: default;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable:hover {
  background-color: initial;
}
.scrtabs-tabs-fixed-container ul.nav-tabs > li {
  white-space: nowrap;
}
.scrtabs-tab-container {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
  border-bottom: 1px solid #e6e9ee;
}
.scrtabs-tab-scroll-arrow.scrtabs-tab-scroll-arrow-left {
  border-top: 1px solid #e6e9ee;
  border-radius: 3px 3px 0 0;
}
.scrtabs-tab-scroll-arrow .svg-icons {
  color: #394652;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable .svg-icons {
  color: #ddd;
}
.review-navigation {
  display: flex;
  height: 41px;
}
.review-navigation li {
  margin-right: 6px;
  border-bottom: 1px solid #e6e9ee;
}
.review-navigation li:last-child a {
  margin: 0 30px 0 0;
}
.review-navigation li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 41px;
  padding: 0 20px;
  background: #f8f7ff;
  border: 1px solid #e6e9ee;
  border-radius: 3px 3px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.57;
  text-align: left;
  white-space: nowrap;
  color: #4f607a;
}
.review-navigation li a:focus,
.review-navigation li a:hover {
  background: #fff;
}
.review-navigation li.active a.active {
  pointer-events: none;
  cursor: default;
  border-bottom-color: transparent;
  background: #fff;
}
.review-navigation li.active a.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #394652;
  border-radius: 3px 3px 0 0;
}
.pros-cons_block {
  display: flex;
  width: calc(100% + 30px);
  margin: -10px;
}
.pros-cons_block > .item {
  width: 50%;
  padding: 10px;
}
.pros-cons_block > .item .title {
  margin-bottom: 12px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 700;
  color: #394652;
}
.pros-cons_block > .item .list {
  display: flex;
  flex-direction: column;
}
.pros-cons_block > .item .list > li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
}
.pros-cons_block > .item .list > li:last-child {
  margin: 0;
}
.pros-cons_block > .item .list > li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33E6FF;
}
@media only screen and (max-width: 640px) {
  .pros-cons_block {
    flex-direction: column;
    width: 100%;
    margin: -10px 0;
  }
  .pros-cons_block > .item {
    width: 100%;
    padding: 10px 0;
  }
}
.progress-bar_block {
  margin-top: 25px;
}
.progress-bar_block .progress-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.progress-bar_block .progress-group:last-child {
  margin: 0;
}
.progress-bar_block .progress-group label {
  display: inline-flex;
  margin-bottom: 5px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 700;
  color: #394652;
}
.progress-bar_block .progress-group progress {
  width: 100%;
  height: 15px;
  border-radius: 2px;
}
.progress-bar_block .progress-group progress::-webkit-progress-bar {
  background: #e6e9ee;
  border-radius: 2px;
}
.progress-bar_block .progress-group progress::-webkit-progress-value {
  background: #33E6FF;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
table {
  width: 100%;
  word-break: break-all;
  border-spacing: 0;
  border-collapse: collapse;
}
.table.table-bordered,
.table.table-bordered > tbody > tr > td,
.table.table-bordered > tbody > tr > th,
.table.table-bordered > tfoot > tr > td,
.table.table-bordered > tfoot > tr > th,
.table.table-bordered > thead > tr > td,
.table.table-bordered > thead > tr > th {
  border: 1px solid #ddd;
}
.table.table-striped tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.05);
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .table > tbody > tr > td,
  .table > tbody > tr > th,
  .table > tfoot > tr > td,
  .table > tfoot > tr > th,
  .table > thead > tr > td,
  .table > thead > tr > th {
    padding: 3px 5px;
    font-size: 14px;
  }
}
.screenshots-carousel {
  display: flex;
  height: 200px;
}
.screenshots-carousel .owl-item,
.screenshots-carousel .owl-stage,
.screenshots-carousel .owl-stage-outer {
  height: 100%;
}
.screenshots-carousel img {
  height: 100%;
  width: auto !important;
  border-radius: 12px;
}
.screenshots-carousel .owl-nav.disabled {
  display: block !important;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 12px);
}
.screenshots-carousel .owl-nav.disabled .owl-next,
.screenshots-carousel .owl-nav.disabled .owl-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background: #33E6FF;
  border-radius: 4px;
  font-size: 8px;
  color: #273a4e;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.screenshots-carousel .owl-nav.disabled .owl-next:focus,
.screenshots-carousel .owl-nav.disabled .owl-next:hover,
.screenshots-carousel .owl-nav.disabled .owl-prev:focus,
.screenshots-carousel .owl-nav.disabled .owl-prev:hover {
  outline: none;
  background: #2445f2;
}
.screenshots-carousel .owl-nav.disabled .owl-next .svg-icons,
.screenshots-carousel .owl-nav.disabled .owl-prev .svg-icons {
  font-size: 16px;
  color: #fff;
}
.screenshots-carousel .owl-nav.disabled .owl-prev {
  left: -8px;
  padding-right: 2px !important;
}
.screenshots-carousel .owl-nav.disabled .owl-prev .svg-icons {
  transform: rotate(180deg);
}
.screenshots-carousel .owl-nav.disabled .owl-next {
  right: -8px;
  padding-left: 2px !important;
}
@media only screen and (max-width: 640px) {
  .screenshots-carousel {
    height: 220px;
  }
  .screenshots-carousel img {
    border-radius: 6px;
  }
}
.typical-form {
  display: flex;
  margin: 0;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #b9bfca;
  background: #f5f5f5;
}
.typical-form.gorizontal {
  flex-direction: column;
}
.typical-form.vertical {
  flex-direction: row;
  flex-wrap: wrap;
}
.typical-form > :not(:last-child) {
  margin-bottom: 20px;
}
.typical-form .field-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.typical-form .field-block .form-label {
  order: 1;
}
.typical-form .field-block .custom-input {
  order: 2;
}
.typical-form .field-block select {
  opacity: 0;
  z-index: -100;
  position: absolute;
  left: -100000000px;
}
.typical-form .field-block .nice-select {
  order: 2;
}
.typical-form .field-block .nice-select,
.typical-form .field-block .nice-select .list {
  border-radius: 4px;
  border: 1px solid #b9bfca;
}
.typical-form .field-block .nice-select .list li:first-child {
  display: none !important;
}
.typical-form .form-label {
  display: inline-flex;
  margin-bottom: 2px;
  font-weight: 400;
  text-transform: none;
  color: #999;
  letter-spacing: 0;
}
.typical-form .custom-input,
.typical-form .form-label {
  font-size: 14px;
  line-height: 1.71;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.typical-form .custom-input {
  display: flex;
  width: 100%;
  align-items: center;
  height: 45px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #b9bfca;
  padding: 0 15px;
}
.typical-form .custom-input.textarea {
  height: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.typical-form .custom-input.nice-select.open,
.typical-form .custom-input:active,
.typical-form .custom-input:focus {
  outline: none;
  border-color: #33E6FF;
}
.typical-form .custom-input.nice-select.open + label,
.typical-form .custom-input:active + label,
.typical-form .custom-input:focus + label {
  color: #394652;
}
.typical-form .bootstrap-select {
  order: 2;
}
.typical-form .submit-block {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 640px) {
  .typical-form {
    padding: 15px;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image:before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}
.fancybox-container [data-selectable="true"] {
  cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
}
.fancybox-caption {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    transparent
  );
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}
@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}
@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: b;
}
@keyframes b {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.app-billet.card13 {
  display: flex;
  height: 100%;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.app-billet.card13:focus,
.app-billet.card13:hover {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 10px 24px 0 rgba(0, 0, 0, 0.16);
}
.app-billet.card13 .logo-container {
  display: flex;
  align-items: flex-start;
  min-width: 72px;
  width: 72px;
}
.app-billet.card13 .logo-container img {
  width: 100%;
}
.app-billet.card13 .concise-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-billet.card13 .concise-info .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  color: #394652;
}
.app-billet.card13 .concise-info .rating-block {
  display: flex;
  align-items: center;
}
.app-billet.card13.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 16px;
}
.app-billet.card13.horizontal .logo-container {
  min-width: 72px;
  width: 72px;
}
.app-billet.card13.horizontal .logo-container img {
  width: 100%;
}
.app-billet.card13.horizontal .concise-info {
  width: calc(100% - 72px);
  padding: 2px 0 0 12px;
}
.app-billet.card13.horizontal .concise-info .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
}
.app-billet.card13.horizontal .concise-info .rating-block {
  margin-top: 6px;
}
.app-billet.card4 {
  display: flex;
  height: 100%;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.app-billet.card4:focus,
.app-billet.card4:hover {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 10px 24px 0 rgba(0, 0, 0, 0.16);
}
.app-billet.card4:focus .concise-info .title,
.app-billet.card4:hover .concise-info .title {
  color: #33E6FF;
}
.app-billet.card4 .logo-container {
  display: flex;
  align-items: flex-start;
}
.app-billet.card4 .logo-container img {
  max-width: 100%;
}
.app-billet.card4 .concise-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-billet.card4 .concise-info .title {
  font-weight: 700;
  color: #394652;
}
.app-billet.card4.vertical {
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.app-billet.card4.vertical .logo-container {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 165px;
}
.app-billet.card4.vertical .logo-container img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.app-billet.card4.vertical .concise-info {
  align-items: center;
  width: 100%;
  margin: 10px 0 0;
}
.app-billet.card4.vertical .concise-info .title {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.app-billet.card4.vertical .concise-info .rating {
  margin-top: 6px;
}
@media only screen and (max-width: 1024px) {
  .app-billet.card4.vertical {
    padding: 20px 25px;
  }
  .app-billet.card4.vertical .logo-container {
    width: 173px;
    height: 173px;
  }
  .app-billet.card4.vertical .concise-info {
    margin: 16px 0 0;
  }
}
@media only screen and (max-width: 680px) {
  .app-billet.card4.vertical {
    padding: 10px 10px 15px;
  }
  .app-billet.card4.vertical .logo-container {
    width: 115px;
    height: 115px;
  }
  .app-billet.card4.vertical .concise-info {
    margin: 6px 0 0;
  }
  .app-billet.card4.vertical .concise-info .title {
    font-size: 16px;
    line-height: 24px;
  }
}
.app-billet.card21 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 880px;
  width: 100%;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.app-billet.card21:focus,
.app-billet.card21:hover {
  box-shadow: none;
}
.app-billet.card21:focus .concise-info .title,
.app-billet.card21:hover .concise-info .title {
  color: #33E6FF;
}
.app-billet.card21 > span:not(:last-of-type) {
  margin-right: 49px;
}
.app-billet.card21 .main-part {
  display: flex;
  align-items: center;
  width: calc(100% - 88px);
  padding-right: 40px;
}
.app-billet.card21 .list-number {
  margin-right: 12px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
  color: #aeb5c1;
}
.app-billet.card21 .logo-container {
  display: flex;
  align-items: flex-start;
  width: 56px;
  height: 56px;
}
.app-billet.card21 .logo-container img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.app-billet.card21 .concise-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 72px);
  padding: 0 0 0 10px;
}
.app-billet.card21 .concise-info .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #394652;
}
.app-billet.card21 .feature-item {
  display: inline-flex;
  flex-direction: column;
}
.app-billet.card21 .feature-item .feature-title {
  display: inline-flex;
  margin-bottom: 2px;
  line-height: 1.67;
  font-size: 12px;
  color: #aeb5c1;
}
.app-billet.card21 .feature-item.platforms .feature-title,
.app-billet.card21 .feature-item.rating .feature-title {
  position: relative;
  top: -4px;
  margin: 0;
}
.app-billet.card21 .feature-item.rating {
  min-width: 88px;
  width: 88px;
}
.app-billet.card21 .billet_platforms-list {
  display: flex;
  align-items: center;
}
.app-billet.card21 .billet_platforms-list li {
  display: flex;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.app-billet.card21 .billet_platforms-list li:last-child {
  margin: 0;
}
.app-billet.card21 .billet_platforms-list li .svg-icons {
  font-size: 14px;
  color: #5c5c5c;
}
@media only screen and (max-width: 1024px) {
  .app-billet.card21 > span:not(:last-of-type) {
    margin-right: 0;
  }
  .app-billet.card21 .concise-info {
    padding-left: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .app-billet.card21 .logo-container {
    width: 40px;
    height: 40px;
  }
  .app-billet.card21 .concise-info {
    padding-left: 9px;
  }
}
@media only screen and (max-width: 480px) {
  .app-billet.card21 .concise-info .title {
    -webkit-line-clamp: 1;
  }
  .app-billet.card21 .main-part {
    padding-right: 10px;
  }
  .app-billet.card21 .list-number {
    margin-right: 9px;
  }
}
.blog-billet.card16 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
  overflow: hidden;
}
.blog-billet.card16:focus .concise-info .text-part .title,
.blog-billet.card16:hover .concise-info .text-part .title {
  color: #33E6FF;
}
.blog-billet.card16.with-text .poster-container {
  height: 669px;
}
.blog-billet.card16.with-text .concise-info {
  padding-top: 15px;
}
.blog-billet.card16.with-text .concise-info .text-part {
  margin-bottom: 20px;
}
.blog-billet.card16.with-text .concise-info .text-part .title {
  margin-bottom: 10px;
}
.blog-billet.card16.with-text .text {
  font-size: 16px;
  line-height: 24px;
  color: #4f607a;
}
.blog-billet.card16 .poster-container {
  position: relative;
  display: flex;
  height: 300px;
  width: 100%;
}
.blog-billet.card16 .poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.blog-billet.card16 .concise-info {
  width: 100%;
  padding-top: 10px;
}
.blog-billet.card16 .concise-info .text-part {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
}
.blog-billet.card16 .concise-info .text-part .title {
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: #394652;
}
.blog-billet.card16 .concise-info .bottom-part .details-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: -5px 0;
}
.blog-billet.card16 .concise-info .bottom-part .details-list li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 5px 0;
}
.blog-billet.card16 .concise-info .bottom-part .details-list li span {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  color: #aeb5c1;
}
.blog-billet.card16 .concise-info .bottom-part .details-list li span svg {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.blog-billet.card16 .concise-info .bottom-part .details-list li:before {
  display: none;
  position: relative;
  top: 1px;
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 4px;
  border-radius: 50%;
  background: #4f607a;
}
.blog-billet.card16
  .concise-info
  .bottom-part
  .details-list
  li:not(:last-child) {
  margin-right: 32px;
}
.blog-billet.card16
  .concise-info
  .bottom-part
  .details-list
  li:first-child:before {
  display: none;
}
.blog-billet.card16 .concise-info .bottom-part .details-list .author {
  display: flex;
  align-items: center;
  width: 100%;
}
.blog-billet.card16 .concise-info .bottom-part .details-list .author .avatar {
  display: flex;
  height: 30px;
  width: 30px;
  margin-right: 8px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-billet.card16
  .concise-info
  .bottom-part
  .details-list
  .author
  .avatar
  img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-billet.card16 .concise-info .bottom-part .details-list .author .name,
.blog-billet.card16 .concise-info .bottom-part .details-list .date {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .blog-billet.card16.with-text .poster-container {
    height: 658px;
  }
  .blog-billet.card16.with-text .concise-info {
    padding-top: 17px;
  }
  .blog-billet.card16 .poster-container {
    height: 250px;
  }
  .blog-billet.card16 .concise-info {
    padding-top: 16px;
  }
  .blog-billet.card16 .concise-info .text-part .title {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 767px) {
  .blog-billet.card16.with-text .poster-container {
    height: 323px;
  }
  .blog-billet.card16.with-text .text.ellipsis-multiply {
    -webkit-line-clamp: 3;
  }
  .blog-billet.card16.with-text .concise-info {
    padding-top: 10px;
  }
  .blog-billet.card16.with-text .concise-info .text-part .title {
    margin-bottom: 5px;
  }
  .blog-billet.card16 .poster-container {
    height: 203px;
  }
  .blog-billet.card16 .concise-info {
    padding-top: 10px;
  }
  .blog-billet.card16 .concise-info .text-part .title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1025px) {
  .box-shadow .blog-billet.card16 {
    padding: 15px 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 8px rgba(0, 0, 0, 0.12);
  }
  .box-shadow .blog-billet.card16:focus,
  .box-shadow .blog-billet.card16:hover {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 10px 24px 0 rgba(0, 0, 0, 0.16);
  }
  .box-shadow .blog-billet.card16:focus .concise-info .text-part .title,
  .box-shadow .blog-billet.card16:hover .concise-info .text-part .title {
    color: #394652;
  }
  .box-shadow .blog-billet.card16 .poster-container {
    height: 170px;
  }
  .box-shadow .blog-billet.card16 .concise-info .text-part {
    margin-bottom: 20px;
  }
  .box-shadow .blog-billet.card16 .concise-info .text-part .title {
    font-size: 18px;
    line-height: 26px;
  }
}
.review-billet.card11 {
  display: flex;
  flex-direction: column;
  padding: 15px 15px 13px;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
  cursor: pointer;
}
.review-billet.card11:focus,
.review-billet.card11:hover {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 10px 24px 0 rgba(0, 0, 0, 0.16);
}
.review-billet.card11 .descr,
.review-billet.card11 .title {
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  overflow: hidden;
}
.review-billet.card11 .top-part {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}
.review-billet.card11 .top-part .logo-container {
  display: inline-flex;
  width: 100px;
  height: 100px;
}
.review-billet.card11 .top-part .logo-container img {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.review-billet.card11 .top-part .concise-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 100px);
  padding: 0 0 0 15px;
}
.review-billet.card11 .top-part .concise-info .title {
  -webkit-line-clamp: 2;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: #394652;
}
.review-billet.card11 .descr {
  -webkit-line-clamp: 4;
  font-size: 14px;
  line-height: 1.57;
  color: #4f607a;
}
@media only screen and (max-width: 640px) {
  .review-billet.card11 {
    padding: 15px 15px 16px;
  }
  .review-billet.card11 .top-part .concise-info .title {
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
  }
  .review-billet.card11 .descr {
    -webkit-line-clamp: 5;
  }
}
.index_template {
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .index_template {
    padding-bottom: 22px;
  }
}
.index_template .section_title {
  text-align: left;
  min-height: unset;
}
.index_template .section_title.default {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  overflow: unset;
  color: #394652;
}
.index_template .section_title.default:before {
  left: 0;
  top: auto;
  right: auto;
  height: auto;
  overflow: unset;
  transform: none;
  font-weight: 700;
  white-space: normal;
  color: rgba(57, 70, 82, 0.06);
}
.index_template .section_title.small {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.index_template .section_title.white {
  color: #fff;
}
.index_template .section_title.align-left {
  justify-content: flex-start;
  text-align: left;
}
.index_template .section_title.align-left:before {
  text-align: left;
}
.index_template .section_title.p-el_large:before {
  bottom: 11px;
  font-size: 64px;
  line-height: 0.63;
  text-indent: -3px;
}
.index_template .section_title.p-el_small:before {
  font-size: 44px;
  line-height: 0.91;
}
@media only screen and (max-width: 640px) {
  .index_template .section_title {
    display: flex;
    align-items: center;
  }
  .index_template .section_title.default {
    margin: 0 0 20px;
    line-height: 1.43;
    font-size: 28px;
  }
  .index_template .section_title.default:before {
    bottom: auto;
  }
  .index_template .section_title.default.p-el_large:before,
  .index_template .section_title.default.p-el_small:before {
    font-size: 48px;
    line-height: 1;
  }
}
.index_template .link {
  display: inline-flex;
  align-items: center;
  color: #33E6FF;
}
.index_template .link .text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44;
}
.index_template .link .svg-icons {
  margin-left: 8px;
  font-size: 12px;
}
.index_template .link:hover .text {
  text-decoration: underline;
}
.index_template .link.bottom-on-mob {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 30;
}
@media only screen and (max-width: 640px) {
  .index_template .link.bottom-on-mob {
    position: static;
    margin: 24px auto 0;
  }
}
.index_template .svg-icons.rotate {
  transform: rotate(180deg);
}
.index_template .section.relative .section_content {
  position: relative;
}
.index_template .blog-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
}
.index_template .blog-list.for-vertical.full-width {
  width: calc(100% + 30px);
  margin: -15px;
}
.index_template .blog-list.for-vertical.full-width > li {
  width: 50%;
  padding: 15px;
}
@media only screen and (max-width: 640px) {
  .index_template .blog-list.for-vertical.full-width {
    width: 100%;
    margin: 0;
  }
  .index_template .blog-list.for-vertical.full-width > li {
    width: 100%;
    margin: 0 0 32px;
    padding: 0;
  }
  .index_template .blog-list.for-vertical.full-width > li:last-of-type {
    margin: 0;
  }
}
.index_template .apps-list {
  display: flex;
  flex-wrap: wrap;
}
.index_template .apps-list.for-vertical.full-width {
  width: calc(100% + 30px);
  margin: -12px -15px;
}
.index_template .apps-list.for-vertical.full-width > li {
  width: 20%;
  padding: 12px 15px;
}
@media only screen and (min-width: 1025px) {
  .index_template .apps-list.for-vertical.full-width > li:last-of-type {
    display: none;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .index_template .apps-list.for-vertical.full-width {
    width: calc(100% + 24px);
    margin: -12px;
  }
  .index_template .apps-list.for-vertical.full-width > li {
    width: 33.333%;
    padding: 12px;
  }
}
@media only screen and (max-width: 640px) {
  .index_template .apps-list.for-vertical.full-width {
    width: calc(100% + 10px);
    margin: -5px;
  }
  .index_template .apps-list.for-vertical.full-width > li {
    width: 50%;
    padding: 5px;
  }
}
.index_template .apps-list.for-horizontal.in-main-content {
  padding: 16px 32px;
  border-radius: 6px;
  background-color: #fff;
}
.index_template .apps-list.for-horizontal.in-main-content > li {
  width: 100%;
  border-bottom: 1px solid #eceef0;
}
.index_template .apps-list.for-horizontal.in-main-content > li:last-of-type {
  border: none;
}
@media only screen and (max-width: 640px) {
  .index_template .apps-list.for-horizontal.in-main-content {
    padding: 10px 8px;
  }
}
@media only screen and (max-width: 480px) {
  .index_template .apps-list.for-horizontal.in-main-content {
    width: min-content;
  }
}
.index_template .reviews-list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .index_template .reviews-list.for-horizontal.in-sidebar > li {
    width: 100%;
    margin-top: 24px;
  }
  .index_template .reviews-list.for-horizontal.in-sidebar > li:first-of-type {
    margin: 0;
  }
  .index_template .reviews-list.for-horizontal.in-sidebar > li:last-of-type {
    display: none;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023.9px) {
  .index_template .reviews-list.for-horizontal.in-sidebar {
    width: calc(100% + 24px);
    margin: -12px;
  }
  .index_template .reviews-list.for-horizontal.in-sidebar > li {
    width: 50%;
    padding: 12px;
  }
}
@media only screen and (max-width: 640px) {
  .index_template
    .reviews-list.for-horizontal.in-sidebar
    > li:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.index_template .main-vs-sidebar {
  display: flex;
  align-items: flex-start;
}
.index_template .main-vs-sidebar .main-content {
  width: calc(100% - 340px);
  padding-right: 40px;
}
.index_template .main-vs-sidebar .sidebar {
  position: relative;
  min-width: 340px;
  width: 340px;
}
.index_template .main-vs-sidebar .sidebar .simple-btn {
  margin-top: 24px;
}
.index_template .main-vs-sidebar .apps-list_container {
  position: relative;
  overflow-x: auto;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  z-index: 31;
}
.index_template .main-vs-sidebar .apps-list_container ul > li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1023.9px) {
  .index_template .main-vs-sidebar .sidebar .simple-btn {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    max-width: 264px;
    z-index: 110;
  }
}
@media only screen and (max-width: 1023.9px) {
  .index_template .main-vs-sidebar {
    flex-direction: column;
  }
  .index_template .main-vs-sidebar .main-content {
    width: 100%;
    margin-bottom: 70px;
    padding: 0;
  }
  .index_template .main-vs-sidebar .sidebar {
    width: 100%;
    min-width: unset;
  }
}
@media only screen and (max-width: 767.9px) {
  .index_template .main-vs-sidebar .sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .index_template .main-vs-sidebar .sidebar .section_title {
    width: 100%;
  }
}
.index_template header {
  position: relative;
  border-color: hsla(0, 0%, 100%, 0.16);
  z-index: 105;
}
@media only screen and (min-width: 1024px) {
  .index_template header .site-nav .nav-list > li .nav-item {
    font-weight: 400;
    color: #fff;
  }
  .index_template header .site-nav .nav-list > li .nav-item .svg-icons {
    color: #fff;
  }
  .index_template header .site-nav .nav-list > li .nav-item:hover {
    color: hsla(0, 0%, 100%, 0.64);
  }
  .index_template
    header
    .site-nav
    .nav-list
    > li.dropdown:hover
    .dropdown-content {
    top: 100%;
    left: calc(50% - 135px);
    transform: none;
  }
}
.index_template header .header-content .right-part {
  justify-content: flex-end;
}
@media only screen and (max-width: 1023.9px) {
  .index_template header .header-content .hidden-btns .burger_btn,
  .index_template header .header-content .hidden-btns .search-form_btn {
    cursor: pointer;
  }
  .index_template header .header-content .hidden-btns .burger_btn .svg-icons,
  .index_template
    header
    .header-content
    .hidden-btns
    .search-form_btn
    .svg-icons {
    transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
    color: #fff;
  }
  .index_template
    header
    .header-content
    .hidden-btns
    .burger_btn:hover
    .svg-icons,
  .index_template
    header
    .header-content
    .hidden-btns
    .search-form_btn:hover
    .svg-icons {
    color: hsla(0, 0%, 100%, 0.64);
  }
}
.index_template .first_section {
  position: relative;
  margin-top: -61px;
  padding: 220px 0 345px;
  z-index: 101;
}
.index_template .first_section .container {
  position: relative;
  z-index: 2;
}
.index_template .first_section .section_content {
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.index_template .first_section .section_content .page_title {
  margin: 0 0 40px;
  font-size: 56px;
  line-height: 1.14;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.index_template .first_section .section_content .page_title strong {
  font-weight: 800;
}
.index_template .first_section .promo_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
.index_template .first_section .promo_bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index_template .search-form.header {
  max-width: 628px;
  width: 100%;
  margin: 0 auto;
}
.index_template .search-form .search-input {
  position: static;
  width: calc(100% - 68px);
  margin-right: 8px;
  height: 60px;
  border-radius: 32px;
  padding: 0 32px;
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.index_template .search-form .search-input::-webkit-input-placeholder {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  color: #8e96bf;
}
.index_template .search-form .search-input:-moz-placeholder,
.index_template .search-form .search-input::-moz-placeholder {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  color: #8e96bf;
}
.index_template .search-form .search-input:-ms-input-placeholder {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  color: #8e96bf;
}
.index_template .search-form .search-input:focus {
  background: #fff;
  color: #394652;
}
.index_template .search-form .sbmt-btn {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: linear-gradient(270deg, #78d5e1, #33E6FF 0);
}
.index_template .search-form .sbmt-btn .svg-icons {
  font-size: 16px;
  color: #fff;
}
.index_template .search-form .search-results {
  position: absolute;
  width: calc(100% - 68px);
  top: 100%;
  margin-top: 12px;
  padding: 24px 32px;
  box-shadow: 0 10px 24px 0 rgba(15, 22, 32, 0.14);
  border-radius: 32px;
  text-align: left;
}
.index_template .search-form .search-results li {
  margin-bottom: 12px;
}
.index_template .search-form .search-results li:last-of-type {
  margin: 0;
}
.index_template .search-form .search-results li a:hover {
  font-weight: inherit;
}
@media only screen and (max-width: 1024px) {
  .index_template .first_section {
    padding: 220px 0 310px;
  }
  .index_template .first_section .section_content .page_title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 640px) {
  .index_template .first_section {
    padding: 135px 0 280px;
  }
  .index_template .first_section .section_content .page_title {
    margin: 0 0 32px;
    line-height: 1.2;
    font-size: 40px;
  }
  .index_template .search-form.header .search-input {
    width: calc(100% - 60px);
    height: 52px;
    padding: 0 24px;
  }
  .index_template .search-form.header .sbmt-btn {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }
  .index_template .search-form.header .search-results {
    width: 100%;
    padding: 20px 24px;
  }
}
.index_template .new-apps_section {
  margin-top: -200px;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
.index_template .new-apps_section .section-title_block {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  z-index: 2;
}
.index_template .new-apps_section .section-title_block .section_title {
  min-height: unset;
  z-index: 1;
}
.index_template .new-apps_section .section-title_block .section_title:before {
  display: none;
}
.index_template .new-apps_section .new-apps_carousel {
  width: calc(100% + 20px);
  margin: -50px -10px;
}
.index_template .new-apps_section .new-apps_carousel .owl-stage-outer {
  padding: 50px 0;
}
@media only screen and (max-width: 479.9px) {
  .index_template .new-apps_section .new-apps_carousel {
    width: calc(100% + 30px);
    margin: -50px -15px;
  }
  .index_template .new-apps_section .new-apps_carousel .owl-stage-outer {
    padding: 50px 0;
  }
}
.index_template .new-apps_section .carousel-nav {
  position: relative;
  flex: 1;
  padding-left: 12px;
  z-index: 1;
}
.index_template .new-apps_section .carousel-nav button[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-image: linear-gradient(270deg, #78d5e1, #33E6FF 0);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.index_template
  .new-apps_section
  .carousel-nav
  button[type="button"]
  .svg-icons {
  font-size: 10px;
  color: #fff;
}
.index_template .new-apps_section .carousel-nav button[type="button"].owl-prev {
  margin-right: 4px;
}
.index_template
  .new-apps_section
  .carousel-nav
  button[type="button"].owl-next
  .svg-icons {
  transform: rotate(180deg);
}
.index_template .new-apps_section .carousel-nav button[type="button"]:hover {
  background: #fff;
}
.index_template
  .new-apps_section
  .carousel-nav
  button[type="button"]:hover
  .svg-icons {
  color: #394652;
}
.index_template .new-apps_section .carousel-nav button[type="button"]:focus {
  outline: none;
}
@media only screen and (max-width: 1024px) {
  .index_template .new-apps_section {
    margin-bottom: 88px;
  }
}
@media only screen and (max-width: 640px) {
  .index_template .new-apps_section {
    margin-bottom: 72px;
  }
}
.index_template .latest-posts_section.section {
  padding-top: 0;
}
.index_template .latest-posts_section .section_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index_template .latest-posts_section .section_content .section-title_block {
  width: 100%;
}
.advertise-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advertise-container .adv {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d3d3d3;
  font-size: 24px;
  font-weight: 700;
  color: #273a4e;
}
.advertise-container .sponsored-links {
  width: 100%;
  margin-bottom: 5px;
  line-height: 1.33;
  font-size: 12px;
  text-align: right;
  color: #9fa0a6;
}
.advertise-container .sponsored-links.left {
  text-align: left;
}
.advertise-container .sponsored-links.right {
  text-align: right;
}
.advertise-container .sponsored-links.center {
  text-align: center;
}
.advertise-container.mg-top-10 {
  margin-top: -10px;
}
.advertise-container.mg-top-20 {
  margin-top: -20px;
}
.advertise-container.for300 .sponsored-links {
  max-width: 300px;
}
.advertise-container.for320 .sponsored-links {
  max-width: 320px;
}
.advertise-container.for336 .sponsored-links {
  max-width: 336px;
}
.advertise-container.for728 .sponsored-links {
  max-width: 728px;
}
.advertise-container .adv320x100 {
  height: 100px;
  width: 320px;
}
.advertise-container .adv300x250 {
  height: 250px;
  width: 300px;
}
.advertise-container .adv336x280 {
  height: 280px;
  width: 336px;
}
.advertise-container .adv728x90 {
  height: 90px;
  max-width: 728px;
  width: 100%;
}
.simple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  border: none;
  padding: 0;
  background: none;
  border-radius: 22px;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.simple-btn:focus,
.simple-btn:hover {
  transform: translateY(-2px);
}
.simple-btn.default-size {
  max-width: 300px;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 414px) {
  .simple-btn.default-size {
    max-width: 100%;
  }
}
.simple-btn.full-width {
  max-width: 100%;
}
.simple-btn.default-color {
  background-image: linear-gradient(90deg, #33E6FF, #78d5e1);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
}
.simple-btn.default-color:focus,
.simple-btn.default-color:hover {
  background-image: linear-gradient(90deg, #78d5e1, #33E6FF);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.simple-btn.gift-btn {
  background-image: linear-gradient(90deg, #33E6FF, #78d5e1);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
}
.simple-btn.gift-btn:focus,
.simple-btn.gift-btn:hover {
  background-image: linear-gradient(90deg, #78d5e1, #33E6FF);
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.simple-btn.white-color {
  background-color: #fff;
  color: #394652;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.14), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.simple-btn.white-color:focus,
.simple-btn.white-color:hover {
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.btn-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  border: 1px solid #33E6FF;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #33E6FF;
  background: #fff;
}
.btn-section:focus,
.btn-section:hover {
  border: 1px solid #33E6FF;
  color: #fff;
  background: #33E6FF;
}
.btn-section.light-version {
  border: 1px solid hsla(0, 0%, 100%, 0.8);
  color: #fff;
  background: hsla(0, 0%, 100%, 0.2);
}
.btn-section.light-version:focus,
.btn-section.light-version:hover {
  border: 1px solid #33E6FF;
  color: #fff;
  background: #33E6FF;
}
.btn-section svg {
  position: relative;
  top: 1px;
  width: 9px;
  height: 15px;
  margin-left: 10px;
}
@media (max-width: 425px) {
  .btn-section {
    width: 100%;
    padding: 9px;
  }
  .btn-section svg {
    top: 2px;
  }
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-label {
  display: inline-flex;
  margin: 0 0 16px 2px;
  line-height: 1.19;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: #394652;
}
.checkbox-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.checkbox-label .square {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 1px solid #fff;
}
.checkbox-label .square:before {
  content: "";
  display: none;
  position: relative;
  width: 3px;
  height: 6px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.checkbox-label .text {
  font-size: 14px;
  line-height: 1.43;
  color: #bac1d2;
}
.checkbox-label .text a {
  color: #fff;
  text-decoration: underline;
}
.checkbox-label .text a:focus,
.checkbox-label .text a:hover {
  text-decoration: none;
}
input[type="checkbox"]:checked + label .square {
  border-color: #fff;
}
input[type="checkbox"]:checked + label .square:before {
  display: block;
}
.custom-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 6px 24px -6px rgba(160, 179, 235, 0.5);
  background-color: #fff;
  border: none;
  color: #6a7f9e;
}
.custom-input:focus,
.custom-input:hover {
  outline: none;
}
.custom-input::-webkit-input-placeholder {
  color: #6a7f9e;
}
.custom-input:-moz-placeholder,
.custom-input::-moz-placeholder {
  color: #6a7f9e;
}
.custom-input:-ms-input-placeholder {
  color: #6a7f9e;
}
.form-group {
  margin-bottom: 16px;
  font-size: 0;
}
.form-group:last-of-type {
  margin-bottom: 0;
}
.custom-textarea {
  width: 100%;
  height: 156px;
  padding: 10px 15px;
  resize: none;
  font-size: 16px;
  font-family: Open Sans, sans-serif;
  border-radius: 8px;
  box-shadow: 0 6px 24px -6px rgba(160, 179, 235, 0.5);
  background-color: #fff;
  border: none;
  color: #6a7f9e;
}
.custom-textarea:focus,
.custom-textarea:hover {
  outline: none;
}
.custom-textarea::-webkit-input-placeholder {
  color: #6a7f9e;
}
.custom-textarea:-moz-placeholder,
.custom-textarea::-moz-placeholder {
  color: #6a7f9e;
}
.custom-textarea:-ms-input-placeholder {
  color: #6a7f9e;
}
input::-webkit-input-placeholder {
  font-family: Open Sans, sans-serif;
  opacity: 1;
  color: #a7aab5;
  transition: opacity 0.3s ease;
}
input:-moz-placeholder,
input::-moz-placeholder {
  font-family: Open Sans, sans-serif;
  opacity: 1;
  color: #a7aab5;
  transition: opacity 0.3s ease;
}
input:-ms-input-placeholder {
  font-family: Open Sans, sans-serif;
  opacity: 1;
  color: #a7aab5;
  transition: opacity 0.3s ease;
}
input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input:focus:-moz-placeholder,
input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
textarea::-webkit-input-placeholder {
  font-family: Open Sans, sans-serif;
  opacity: 1;
  color: #6a7f9e;
  transition: opacity 0.3s ease;
}
textarea:-moz-placeholder,
textarea::-moz-placeholder {
  font-family: Open Sans, sans-serif;
  opacity: 1;
  color: #6a7f9e;
  transition: opacity 0.3s ease;
}
textarea:-ms-input-placeholder {
  font-family: Open Sans, sans-serif;
  color: #6a7f9e;
  opacity: 1;
  transition: opacity 0.3s ease;
}
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
textarea:focus:-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
textarea:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-ms-clear,
input[type="number"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.checkbox-container {
  display: flex;
  align-items: center;
}
.checkbox-container input[type="checkbox"] {
  cursor: pointer;
}
.checkbox-container label {
  position: relative;
  margin-left: 5px;
  top: -2px;
  cursor: pointer;
}
.cover-as-bg {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.cover-as-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section {
  padding: 30px 0 50px;
}
.btn-container {
  display: flex;
  margin-top: 30px;
}
.btn-container.center {
  justify-content: center;
}
.bgg {
  background: #f8f7ff;
}
.default-styles {
  padding: 20px;
  border: 1px solid #e6e9ee;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
@media only screen and (max-width: 640px) {
  .default-styles {
    padding: 15px;
  }
}
.pagination-container {
  margin-top: 30px;
}
.breadcrumbs-and-title {
  margin-bottom: 20px;
  padding: 10px 0;
  background-color: #f8f7ff;
  border-bottom: 1px solid #e6e9ee;
}
.breadcrumbs-and-title .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumbs-and-title .page-title {
  flex: 1;
  margin: 0;
  padding-right: 40px;
  line-height: 1.3;
  font-size: 22px;
  font-weight: 700;
  color: #394652;
}
.text-styles {
  color: #4f607a;
}
.text-styles > :first-child {
  margin-top: 0;
}
.text-styles > :last-child {
  margin-bottom: 0;
}
.text-styles p {
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.75;
}
.text-styles p a {
  font-weight: 600;
  color: #33E6FF;
}
.text-styles p a:focus,
.text-styles p a:hover {
  text-decoration: underline;
}
.text-styles h2,
.text-styles h3 {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #394652;
}
.text-styles h4 {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #394652;
}
.text-styles img {
  max-width: 100%;
}
.text-styles ul li {
  line-height: 1.75;
}
@media only screen and (max-width: 640px) {
  .text-styles h3,
  .text-styles h4 {
    margin-top: 10px;
  }
}
.desktop-visible {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .desktop-visible {
    display: none;
  }
}
.tablet-visible {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tablet-visible {
    display: flex;
  }
}
.mobile-visible {
  display: none;
}
@media only screen and (max-width: 767.9px) {
  .mobile-visible {
    display: block;
  }
}
.section_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: 0 auto 30px;
  line-height: 1.5;
  font-size: 36px;
  z-index: 15;
  color: #394652;
}
.section_title,
.section_title:before {
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}
.section_title:before {
  content: attr(data-title);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  height: 100%;
  font-size: 86px;
  line-height: 1;
  color: #f2f4f6;
}
@media only screen and (max-width: 1023.9px) {
  .section_title {
    min-height: 60px;
    margin: 0 auto 20px;
    font-size: 28px;
  }
  .section_title:before {
    font-size: 50px;
  }
}
.sidebar_title {
  margin: 0 0 20px;
  line-height: 1.56;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #394652;
}
.sidebar_title.center {
  text-align: center;
}
.apps-list {
  display: flex;
  flex-wrap: wrap;
}
.apps-list.for-vertical.full-width {
  width: calc(100% + 32px);
  margin: -16px;
}
.apps-list.for-vertical.full-width > li {
  width: 20%;
  padding: 16px;
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .apps-list.for-vertical.full-width > li {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990.9px) {
  .apps-list.for-vertical.full-width > li {
    width: 33.333%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 767.9px) {
  .apps-list.for-vertical.full-width > li {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .apps-list.for-vertical.full-width {
    width: 100%;
    margin: -10px 0;
  }
  .apps-list.for-vertical.full-width > li {
    padding: 10px 0;
    width: 100%;
  }
}
.apps-list.for-vertical.in-main-part {
  width: calc(100% + 20px);
  margin: -10px;
}
.apps-list.for-vertical.in-main-part > li {
  width: 25%;
  padding: 10px;
}
@media only screen and (min-width: 641px) and (max-width: 767.9px) {
  .apps-list.for-vertical.in-main-part > li {
    width: 33.333%;
  }
  .apps-list.for-vertical.in-main-part > li:last-child {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .apps-list.for-vertical.in-main-part > li {
    width: 100%;
  }
}
@media only screen and (min-width: 1140px) {
  .apps-list.for-horizontal.in-sidebar {
    margin: -10px 0;
  }
  .apps-list.for-horizontal.in-sidebar > li {
    width: 100%;
    padding: 10px 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1139.9px) {
  .apps-list.for-horizontal.in-sidebar {
    width: calc(100% + 20px);
    margin: -10px;
  }
  .apps-list.for-horizontal.in-sidebar > li {
    width: 33.333%;
    padding: 10px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023.9px) {
  .apps-list.for-horizontal.in-sidebar {
    width: calc(100% + 20px);
    margin: -10px;
  }
  .apps-list.for-horizontal.in-sidebar > li {
    width: 50%;
    padding: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .apps-list.for-horizontal.in-sidebar {
    margin: -10px 0;
  }
  .apps-list.for-horizontal.in-sidebar > li {
    width: 100%;
    padding: 10px 0;
  }
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
}
.blog-list.for-horizontal.full-width {
  width: calc(100% + 32px);
  margin: -10px -16px;
}
.blog-list.for-horizontal.full-width > li {
  width: 50%;
  padding: 10px 16px;
}
@media only screen and (max-width: 1200px) {
  .blog-list.for-horizontal.full-width {
    flex-direction: column;
  }
  .blog-list.for-horizontal.full-width > li {
    width: 100%;
  }
}
.blog-list.for-horizontal.in-main-content > li {
  margin-bottom: 20px;
}
.blog-list.for-horizontal.in-main-content > li:last-child {
  margin-bottom: 0;
}
.blog-list.for-vertical.in-sidebar {
  width: calc(100% + 20px);
  margin: -10px;
}
.blog-list.for-vertical.in-sidebar > li {
  padding: 10px;
}
@media only screen and (min-width: 1140px) {
  .blog-list.for-vertical.in-sidebar > li {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1139.9px) {
  .blog-list.for-vertical.in-sidebar > li {
    width: 33.333%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1023.9px) {
  .blog-list.for-vertical.in-sidebar > li {
    width: 50%;
  }
  .blog-list.for-vertical.in-sidebar > li:last-child {
    display: none;
  }
}
@media only screen and (max-width: 639.9px) {
  .blog-list.for-vertical.in-sidebar > li {
    width: 100%;
  }
}
.review_features-list {
  display: flex;
  align-items: center;
}
.review_features-list li {
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  color: #728095;
}
.review_features-list li:after {
  content: "|";
  line-height: 1;
  position: absolute;
  right: 6px;
  top: 3px;
}
.review_features-list li:last-child {
  padding-right: 0;
}
.review_features-list li:last-child:after {
  display: none;
}
.review_features-list li > span {
  display: inline-flex;
  align-items: center;
  line-height: 1.57;
}
.review_features-list li > span .svg-icons {
  position: relative;
  margin-right: 4px;
}
@media only screen and (max-width: 414px) {
  .review_features-list li:first-child {
    display: none;
  }
}
.adsbygoogle,
.adsense {
  width: auto;
}
@media only screen and (max-width: 374.9px) {
  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
  }
}
.ellipsis {
  white-space: nowrap;
}
.ellipsis,
.ellipsis-multiply {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis-multiply {
  display: -webkit-box !important;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  -webkit-line-clamp: 2;
}
.ellipsis-multiply.three {
  -webkit-line-clamp: 3;
}
.ellipsis-multiply.four {
  -webkit-line-clamp: 4;
}
.ellipsis-multiply.five {
  -webkit-line-clamp: 5;
}
.main-section {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .main-section {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .main-section {
    margin-bottom: 60px;
  }
}
.img-container {
  display: block;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.title-container .title-section {
  margin: 0;
}
.title-section {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
  color: #394652;
}
@media (max-width: 767px) {
  .title-section {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 34px;
  }
}
.btn_container {
  display: flex;
}
.btn_container.center {
  justify-content: center;
}
@media (max-width: 767px) {
  .btn_container {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .btn-mobile_bottom > div:first-child {
    position: relative;
    padding-bottom: 76px;
  }
  .btn-mobile_bottom .btn-section {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 425px) {
  .btn-mobile_bottom .btn-section {
    width: calc(100% - 40px);
  }
}
* {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  color: #4f607a;
  -webkit-font-smoothing: antialiased;
}
a {
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
a,
a:focus,
a:hover {
  color: #4f607a;
  text-decoration: none;
}
a:focus,
a:hover {
  outline: none;
}
.svg-icons {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  fill: currentColor;
}
img.lazy {
  opacity: 0;
  transition: opacity 0.2s;
}
img.lazy.error,
img.lazy.loaded {
  opacity: 1;
}
img:not([src]) {
  visibility: hidden;
}
.promo_section {
  padding: 40px 0 50px;
}
.promo_section .section_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo_section .promo_block {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.promo_section .promo_block .title {
  margin: 0 0 10px;
  font-size: 60px;
  font-weight: 600;
}
@media only screen and (max-width: 414px) {
  .promo_section .promo_block .title {
    font-size: 52px;
  }
}
.promo_section .promo_block .descr {
  line-height: 1.6;
  font-size: 18px;
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .blog_section .blog-billet.card3.horizontal .poster-container {
    min-width: 300px;
    width: 300px;
  }
}
.bgg .section_title:before {
  color: #e5ebf6;
}
.app_page .app-top-block {
  display: flex;
  width: calc(100% + 32px);
  margin: -20px -16px 0;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #e6e9ee;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.app_page .app-top-block .app-logo {
  display: flex;
  min-width: 80px;
  width: 80px;
  height: 80px;
}
.app_page .app-top-block .app-logo img {
  width: 80px;
  height: 80px;
}
.app_page .app-top-block .right-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 0 0 3px 12px;
}
.app_page .app-top-block .right-part .app-features-list {
  display: flex;
  flex-direction: column;
}
.app_page .app-top-block .right-part .app-features-list li {
  margin-bottom: 3px;
  font-size: 14px;
}
.app_page .app-top-block .right-part .app-features-list li:last-child {
  margin: 0;
}
.app_page .app-top-block .right-part .app-features-list li .feature {
  font-weight: 700;
  color: #394652;
}
.app_page .app-top-block .right-part .app-rating {
  margin-top: 10px;
}
.app_page .btn-container {
  width: 100%;
  margin-top: 40px;
}
.app_page .btn-container .download-btn {
  width: 100%;
  height: 54px;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 1139.9px) {
  .app_page .app-sidebar-info_container {
    display: none;
  }
}
.app-concise-info {
  display: flex;
}
@media only screen and (min-width: 1025px) {
  .app-concise-info .advertise-container {
    padding-right: 40px;
  }
}
.app-concise-info .concise-descr {
  flex: 1;
}
.app-concise-info .concise-descr .title {
  margin-bottom: 10px;
  line-height: 1.56;
  font-size: 18px;
  font-weight: 700;
  color: #394652;
}
.app-concise-info .concise-descr .text-styles p {
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  -webkit-line-clamp: 7;
  overflow: hidden;
}
.app-concise-info .concise-descr .btn-container {
  margin-top: 20px;
}
.app-concise-info .concise-descr .btn-container .simple-btn.full-width {
  max-width: 414px;
}
@media only screen and (max-width: 1024px) {
  .app-concise-info .concise-descr {
    padding: 0;
  }
  .app-concise-info .concise-descr .text-styles p {
    -webkit-line-clamp: 4;
  }
}
@media only screen and (max-width: 767.9px) {
  .app-concise-info .concise-descr .btn-container {
    margin-top: 15px;
  }
  .app-concise-info
    .concise-descr
    .btn-container
    .simple-btn.default-size.default-color {
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    color: #337ab7;
  }
  .app-concise-info
    .concise-descr
    .btn-container
    .simple-btn.default-size.default-color:hover {
    background: none;
    box-shadow: none;
    transform: none;
    text-decoration: underline;
  }
}
.copyright {
  font-size: 14px;
  line-height: normal;
}
.app-sidebar-info_container {
  width: 100%;
}
.app-sidebar-info_container .app-sidebar-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-sidebar-info_container .app-sidebar-info .app-logo {
  height: 80px;
  margin-bottom: 10px;
}
.app-sidebar-info_container .app-sidebar-info .app-logo img {
  max-height: 100%;
}
.app-sidebar-info_container .app-sidebar-info .app-name {
  margin-bottom: 5px;
  font-weight: 700;
  color: #394652;
  text-align: center;
}
.review-content.default-styles {
  border-radius: 0 0 4px 4px;
  border-top: none;
}
.review-content .top-part {
  margin: 5px 0 20px;
}
.review-content .top-part .page-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #394652;
}
@media only screen and (max-width: 640px) {
  .review-content .top-part .page-title {
    font-size: 20px;
  }
}
.review-content .bottom-part {
  margin-top: 25px;
}
.download_page .download_block .copyright {
  margin-bottom: 20px;
}
.download_page .btn-container {
  flex-direction: column;
  margin: 40px 0 30px !important;
}
.download_page .btn-container .btns-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin: -8px -10px;
}
.download_page .btn-container .btns-list > li {
  width: 50%;
  padding: 8px 10px;
}
@media only screen and (max-width: 640px) {
  .download_page .btn-container .btns-list {
    width: 100%;
    margin: -5px 0;
  }
  .download_page .btn-container .btns-list > li {
    width: 100%;
    padding: 5px 0;
  }
}
.download_page .btn-container .info {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
}
.download_page .description-content .title {
  margin: 10px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #394652;
}
@media only screen and (max-width: 640px) {
  .download_page .description-content .title {
    font-size: 20px;
  }
}
.download_page .description-content ul {
  padding-left: 20px;
}
.download_page .description-content ul > li {
  position: relative;
  padding-left: 20px;
}
.download_page .description-content ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #394652;
}
.download_page .description-content ul > li img {
  max-width: 100%;
}
@media only screen and (max-width: 640px) {
  .download_page .description-content ul {
    padding: 0;
  }
}
.post-container .top-part .page-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #394652;
}
@media only screen and (max-width: 640px) {
  .post-container .top-part .page-title {
    font-size: 24px;
  }
}
.post-container .top-part .social-btn_type2 {
  margin-top: 10px;
}
.post-container .post-poster {
  display: flex;
  width: calc(100% + 40px);
  height: 320px;
  margin: 15px -20px;
}
.post-container .post-poster img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .post-container .post-poster {
    height: 280px;
    width: calc(100% + 30px);
    margin: 15px -15px;
  }
}
.post-container .bottom-part {
  display: flex;
  align-items: center;
  margin-top: 15px;
  line-height: 1;
  font-size: 0;
}
.post-container .bottom-part .text {
  position: relative;
  top: -1px;
  margin-right: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #394652;
}
.subscription-block.default-styles {
  padding: 30px 15px;
}
.subscription-block .promo-text {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.subscription-block .promo-text .page-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #4f607a;
  margin-bottom: 20px;
}
.subscription-block .plans-block .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #394652;
}
.price-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 39px;
}
@media only screen and (max-width: 1024px) {
  .price-container {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 640px) {
  .price-container {
    padding: 0;
  }
}
.price-container .price-item {
  width: 33.33%;
  padding: 0 15px;
}
@media only screen and (max-width: 1024px) {
  .price-container .price-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .price-container .price-item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 640px) {
  .price-container .price-item {
    padding: 0;
  }
}
.price-container-text {
  padding: 30px 15px 0;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
}
.price-container .price-item.premium .price-item-wrap {
  background-color: #394652;
}
.price-container .price-item.premium .header-block .block-title {
  color: #fff;
}
.price-container .price-item.premium .header-block .block-title:before {
  color: #fff;
  opacity: 0.06;
}
.price-container .price-item.premium .item-content,
.price-container .price-item.premium .item-content ul li {
  color: #fff;
}
.price-container .price-item.premium .btn-box .btn.btn-blue {
  background-color: #fff;
  background-image: none;
  color: #394652;
}
.price-container .price-item .price-item-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  padding: 30px;
  background-color: #fff;
  transition: all 0.3s;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.24), 0 0 3px 0 rgba(0, 0, 0, 0.12);
}
.price-container .price-item .price-item-wrap:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 0 3px 0 rgba(0, 0, 0, 0.12);
}
.price-container .price-item .header-block .block-title {
  margin: 0 auto;
  padding: 10px 15px 30px;
  position: relative;
  z-index: 15;
  font-size: 28px;
  line-height: 1.39;
}
.price-container .price-item .header-block .block-title,
.price-container .price-item .header-block .block-title:before {
  font-weight: 700;
  text-align: center;
  color: #33E6FF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.price-container .price-item .header-block .block-title:before {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  font-size: 58px;
  line-height: 1.28;
  opacity: 0.06;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  transform: translate(-50%, -50%);
}
.price-container .price-item ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
}
.price-container .price-item ul li {
  padding: 0 0 0 27px;
  font-size: 18px;
  line-height: 1.56;
  text-align: left;
  color: #4f607a;
  margin-bottom: 20px;
  position: relative;
}
.price-container .price-item ul li .svg-icons {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
  line-height: 1.56;
  text-align: center;
  color: #4cb944;
}
.price-container .price-item ul li:last-of-type {
  margin-bottom: 0;
}
.price-container .price-item ul li.dismiss .svg-icons {
  color: #f03a47;
}
.contacts-columns {
  display: -ms-flexbox;
  display: flex;
}
.contacts-columns .column {
  width: 50%;
  padding: 0 24px;
}
.contacts-columns .column:first-of-type {
  padding-right: 32px;
}
.contacts-columns .column:last-of-type {
  padding-left: 32px;
}
.contacts-columns .column .text-block h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #394652;
  margin-bottom: 15px;
}
.contacts-columns .column .text-block p {
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  color: #4f607a;
}
.contacts-columns .column .text-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contacts-columns .column .text-block ul li {
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  color: #4f607a;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.contacts-columns .column .text-block ul li:last-of-type {
  margin-bottom: 0;
}
.contacts-columns .column .text-block ul li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #78d5e1;
  left: 0;
  top: 9px;
}
@media only screen and (max-width: 1140px) {
  .contacts-columns .column {
    padding: 0 15px;
  }
  .contacts-columns .column:first-of-type {
    padding-right: 15px;
  }
  .contacts-columns .column:last-of-type {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767.9px) {
  .contacts-columns {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts-columns .column {
    width: 100%;
    padding: 0;
  }
  .contacts-columns .column:first-of-type {
    padding: 0;
  }
  .contacts-columns .column:last-of-type {
    padding: 20px 0 0;
  }
}
.design-block {
  column-count: 2;
  column-gap: 30px;
}
.design-block .page-title {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #394652;
}
@media only screen and (max-width: 640px) {
  .design-block .page-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .design-block {
    column-count: 1;
  }
  .design-block .text-styles {
    margin-top: 10px;
  }
  .design-block .btn-container {
    margin-top: 15px;
  }
}
.disclaimer_block .text-styles {
  margin-bottom: 25px;
}
.page-not-found_block {
  column-count: 2;
  column-gap: 40px;
}
@media only screen and (max-width: 768px) {
  .page-not-found_block {
    column-count: 1;
  }
}
.page-not-found_block .error-message {
  font-size: 216px;
  font-weight: 600;
  color: #ddd;
  line-height: 1;
  letter-spacing: 4px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .page-not-found_block .error-message {
    font-size: 100px;
  }
}
.page-not-found_block .text-part {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .page-not-found_block .text-part {
    text-align: center;
  }
}
.page-not-found_block .text-part .title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #394652;
}
.page-not-found_block .text-part .list {
  margin-top: 15px;
  column-count: 2;
  column-gap: 20px;
}
.page-not-found_block .text-part .list li a {
  font-size: 15px;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.modal .modal-dialog {
  max-width: 480px;
  width: 100%;
  padding: 35px 20px 30px;
  border-radius: 4px;
  background: #fff;
  text-align: center;
}
.modal .modal-dialog .modal-content {
  position: relative;
}
.modal .modal-dialog button {
  display: none;
}
.modal .modal-dialog .modal-title {
  margin: 0;
  font-size: 32px;
  color: #394652;
}
.alert-danger > * {
  color: red;
}
.help-block {
  display: inline-flex;
  margin-top: 4px;
  order: 2;
  font-size: 15px;
  color: red;
}
.about-us_page .main_content {
  padding: 60px 0 100px;
}
.about-us_block {
  width: 100%;
}
.about-us_block .page_title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.24;
  color: #2b2b32;
}
.about-us_block .poster {
  margin: 32px 0;
}
.about-us_block .poster img {
  width: 100%;
}
.about-us_block .text-styles {
  color: #555963;
}
.about-us_block .text-styles > :first-child {
  margin-top: 0;
}
.about-us_block .text-styles > :last-child {
  margin-bottom: 0;
}
.about-us_block .text-styles h2,
.about-us_block .text-styles h3 {
  margin: 32px 0 12px;
  line-height: 1.33;
  font-size: 30px;
  font-weight: 700;
  color: #394652;
}
.about-us_block .text-styles p {
  margin: 0 0 12px;
  line-height: 1.63;
  font-size: 16px;
}
.about-us_block .text-styles ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.about-us_block .text-styles ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 25px;
  line-height: 1.2;
}
.about-us_block .text-styles ul li:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #33E6FF;
  border-radius: 50%;
}
.about-us_block .text-styles ul li:last-child {
  margin-bottom: 0;
}
.about-us_block .btn-block {
  margin-top: 24px;
}
.about-us_block .btn-block .simple-btn {
  height: 48px;
  max-width: 200px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 414px) {
  .about-us_block .btn-block .simple-btn {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.9px) {
  .about-us_page .main_content {
    padding: 30px 0 60px;
  }
  .about-us_block .page_title {
    font-size: 32px;
  }
  .about-us_block .poster {
    margin: 24px 0;
  }
  .about-us_block .text-styles h2,
  .about-us_block .text-styles h3 {
    margin: 20px 0 12px;
    font-size: 24px;
  }
}
.index_143421 main {
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .index_143421 main {
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .index_143421 main {
    padding-bottom: 90px;
  }
}
.welcome_section {
  margin-bottom: 70px;
  margin-top: -80px;
  overflow: hidden;
  background: linear-gradient(180deg, #242947 0.3%, #101533);
}
@media (max-width: 1024px) {
  .welcome_section {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .welcome_section {
    margin-bottom: 35px;
  }
}
.welcome_section .large-container {
  position: relative;
}
.welcome_section .img-container {
  position: absolute;
  bottom: 0;
  left: -53px;
  width: 958px;
  height: 621px;
  z-index: 0;
}
.welcome_section .inner {
  position: relative;
  max-width: 571px;
  padding: 200px 0 268px;
  margin-left: auto;
  z-index: 1;
}
.welcome_section .title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 60px;
  line-height: 65px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .welcome_section .title {
    margin-bottom: 5px;
  }
}
.welcome_section .text {
  max-width: 452px;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 767px) {
  .welcome_section .text {
    margin-bottom: 20px;
  }
}
.welcome_section .search-container {
  max-width: 434px;
  width: 100%;
}
@media (max-width: 1024px) {
  .welcome_section .img-container {
    left: 0;
    width: 768px;
    height: 498px;
  }
  .welcome_section .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 120px 0 486px;
    margin: 0;
  }
  .welcome_section .title {
    max-width: 565px;
    text-align: center;
  }
  .welcome_section .text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .welcome_section {
    margin-top: -55px;
  }
  .welcome_section .img-container {
    width: 420px;
    height: 272px;
  }
  .welcome_section .inner {
    padding: 80px 0 264px;
  }
  .welcome_section .title {
    font-size: 30px;
    line-height: 42px;
  }
  .welcome_section .text {
    max-width: 100%;
    padding: 0 18px;
    font-size: 16px;
    line-height: 24px;
  }
}
.search-container_143421 .search-form .search-input {
  width: calc(100% - 63px);
  height: 50px;
  padding: 0 25px;
  border: 1px solid hsla(0, 0%, 100%, 0.8);
  border-radius: 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  background: hsla(0, 0%, 100%, 0.2);
}
.search-container_143421 .search-form .search-input::placeholder {
  color: inherit;
}
.search-container_143421 .search-form .sbmt-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 0;
  background: #33E6FF;
}
.search-container_143421 .search-form .sbmt-btn:focus,
.search-container_143421 .search-form .sbmt-btn:hover {
  background: #fff;
}
.search-container_143421 .search-form .sbmt-btn:focus svg,
.search-container_143421 .search-form .sbmt-btn:hover svg {
  fill: #33E6FF;
}
.search-container_143421 .search-form .sbmt-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.search-container_143421 .search-form .search-results {
  position: absolute;
  top: calc(100% + 15px);
  width: calc(100% - 63px);
  max-height: 195px;
  margin: 0;
  padding: 14px 19px;
  overflow-y: auto;
  border: 1px solid hsla(0, 0%, 100%, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(17.5px);
  background: hsla(0, 0%, 100%, 0.2);
}
.search-container_143421 .search-form .search-results ul li {
  margin-bottom: 8px;
}
.search-container_143421 .search-form .search-results ul li:last-child {
  margin-bottom: 0;
}
.search-container_143421 .search-form .search-results ul li a {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
}
.search-container_143421 .search-form .search-results ul li a:hover {
  color: hsla(0, 0%, 100%, 0.6);
}
.search-container_143421 .search-form .search-results ul li a span {
  color: inherit;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .search-container_143421 .search-form .search-input {
    height: 40px;
    width: calc(100% - 50px);
    padding: 0 19px;
  }
  .search-container_143421 .search-form .sbmt-btn {
    width: 40px;
    height: 40px;
  }
  .search-container_143421 .search-form .sbmt-btn svg {
    width: 18px;
    height: 18px;
  }
  .search-container_143421 .search-form .search-results {
    top: calc(100% + 10px);
    width: calc(100% - 50px);
  }
}
.popular-content_section .inner {
  display: flex;
  flex-wrap: wrap;
}
.popular-content_section .left-part {
  width: 50%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .popular-content_section .left-part {
    margin-bottom: 30px;
  }
}
.popular-content_section .left-part .blog-billet.card16 .poster-container {
  height: 300px;
}
.popular-content_section .left-part .blog-billet.card16 .concise-info {
  padding-top: 10px;
}
.popular-content_section .left-part .blog-billet.card16 .text-part {
  margin-bottom: 5px;
}
.popular-content_section .left-part .blog-billet.card16 .text {
  display: none !important;
}
.popular-content_section .blog-list.for-vertical.full-width {
  width: calc(100% + 24px);
  margin: -12px;
}
.popular-content_section .blog-list.for-vertical.full-width > li {
  width: 100%;
  padding: 12px;
}
.popular-content_section .right-part {
  width: 50%;
  padding-left: 20px;
}
.popular-content_section .apps-list_container {
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 8px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.popular-content_section .apps-list.for-horizontal.in-main-content,
.popular-content_section .apps-list.for-horizontal.in-main-content > li {
  width: 100%;
}
.popular-content_section
  .apps-list.for-horizontal.in-main-content
  > li:not(:last-child) {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(174, 181, 193, 0.5);
}
.popular-content_section .bottom-part {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .popular-content_section .bottom-part {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .popular-content_section .bottom-part {
    margin-bottom: 60px;
  }
}
.popular-content_section .blog-list.for-horizontal.full-width {
  flex-direction: row;
  width: calc(100% + 20px);
  margin: -10px;
}
.popular-content_section .blog-list.for-horizontal.full-width > li {
  width: 33.33%;
  padding: 10px;
}
@media (max-width: 1024px) {
  .popular-content_section .left-part {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .popular-content_section .left-part .blog-billet.card16 .poster-container {
    height: 360px;
  }
  .popular-content_section .left-part .blog-billet.card16 .concise-info {
    padding-top: 15px;
  }
  .popular-content_section .blog-list.for-vertical.full-width > li:last-child {
    display: none;
  }
  .popular-content_section .right-part {
    order: 3;
    width: 100%;
    padding: 0;
  }
  .popular-content_section .apps-list_container {
    padding: 24px 32px;
  }
  .popular-content_section
    .apps-list.for-horizontal.in-main-content
    > li:not(:last-child) {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .popular-content_section .bottom-part {
    order: 2;
    margin-top: 0;
  }
  .popular-content_section .blog-list.for-horizontal.full-width > li {
    width: 50%;
  }
  .popular-content_section
    .blog-list.for-horizontal.full-width
    > li:nth-last-child(-n + 2) {
    display: none;
  }
}
@media (max-width: 510px) {
  .popular-content_section .blog-list.for-horizontal.full-width > li {
    width: 100%;
  }
  .popular-content_section .left-part .blog-billet.card16 .poster-container {
    height: 323px;
  }
  .popular-content_section .left-part .blog-billet.card16 .concise-info {
    padding-top: 9px;
  }
  .popular-content_section .left-part .blog-billet.card16 .text-part {
    margin-bottom: 20px;
  }
  .popular-content_section .left-part .blog-billet.card16 .text {
    display: -webkit-box !important;
  }
}
@media (max-width: 480px) {
  .popular-content_section .apps-list_container {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .popular-content_section
    .apps-list.for-horizontal.in-main-content
    > li:not(:last-child) {
    padding-bottom: 17px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 420px) {
  .popular-content_section .right-part .title-section {
    max-width: 200px;
  }
}
.amazing-news_section .inner,
.best-for-you_section .inner,
.editors-advise_section .inner,
.latest-blog-posts_section .inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.amazing-news_section .left-part,
.best-for-you_section .left-part,
.editors-advise_section .left-part,
.latest-blog-posts_section .left-part {
  width: 50%;
  padding-right: 10px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .amazing-news_section .left-part,
  .best-for-you_section .left-part,
  .editors-advise_section .left-part,
  .latest-blog-posts_section .left-part {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .amazing-news_section .left-part,
  .best-for-you_section .left-part,
  .editors-advise_section .left-part,
  .latest-blog-posts_section .left-part {
    margin-bottom: 30px;
  }
}
.amazing-news_section .right-part,
.best-for-you_section .right-part,
.editors-advise_section .right-part,
.latest-blog-posts_section .right-part {
  width: 50%;
  padding-left: 20px;
}
.amazing-news_section .blog-list.for-vertical.full-width,
.best-for-you_section .blog-list.for-vertical.full-width,
.editors-advise_section .blog-list.for-vertical.full-width,
.latest-blog-posts_section .blog-list.for-vertical.full-width {
  width: calc(100% + 24px);
  margin: -12px;
}
.amazing-news_section .blog-list.for-vertical.full-width > li,
.best-for-you_section .blog-list.for-vertical.full-width > li,
.editors-advise_section .blog-list.for-vertical.full-width > li,
.latest-blog-posts_section .blog-list.for-vertical.full-width > li {
  width: 100%;
  padding: 12px;
}
.amazing-news_section .bottom-part,
.best-for-you_section .bottom-part,
.editors-advise_section .bottom-part,
.latest-blog-posts_section .bottom-part {
  margin-top: 30px;
}
.amazing-news_section .blog-list.for-horizontal.full-width,
.best-for-you_section .blog-list.for-horizontal.full-width,
.editors-advise_section .blog-list.for-horizontal.full-width,
.latest-blog-posts_section .blog-list.for-horizontal.full-width {
  flex-direction: row;
  width: calc(100% + 20px);
  margin: -10px;
}
.amazing-news_section .blog-list.for-horizontal.full-width > li,
.best-for-you_section .blog-list.for-horizontal.full-width > li,
.editors-advise_section .blog-list.for-horizontal.full-width > li,
.latest-blog-posts_section .blog-list.for-horizontal.full-width > li {
  width: 33.33%;
  padding: 10px;
}
@media (max-width: 1024px) {
  .amazing-news_section .left-part,
  .amazing-news_section .right-part,
  .best-for-you_section .left-part,
  .best-for-you_section .right-part,
  .editors-advise_section .left-part,
  .editors-advise_section .right-part,
  .latest-blog-posts_section .left-part,
  .latest-blog-posts_section .right-part {
    width: 100%;
    padding: 0;
  }
  .amazing-news_section .blog-list.for-vertical.full-width,
  .best-for-you_section .blog-list.for-vertical.full-width,
  .editors-advise_section .blog-list.for-vertical.full-width,
  .latest-blog-posts_section .blog-list.for-vertical.full-width {
    width: calc(100% + 20px);
    margin: -10px;
  }
  .amazing-news_section .blog-list.for-vertical.full-width > li,
  .best-for-you_section .blog-list.for-vertical.full-width > li,
  .editors-advise_section .blog-list.for-vertical.full-width > li,
  .latest-blog-posts_section .blog-list.for-vertical.full-width > li {
    width: 50%;
    padding: 10px;
  }
  .amazing-news_section .bottom-part,
  .best-for-you_section .bottom-part,
  .editors-advise_section .bottom-part,
  .latest-blog-posts_section .bottom-part {
    margin-top: 20px;
  }
  .amazing-news_section .blog-list.for-horizontal.full-width > li,
  .best-for-you_section .blog-list.for-horizontal.full-width > li,
  .editors-advise_section .blog-list.for-horizontal.full-width > li,
  .latest-blog-posts_section .blog-list.for-horizontal.full-width > li {
    width: 50%;
  }
  .amazing-news_section .blog-list.for-horizontal.full-width > li:last-child,
  .best-for-you_section .blog-list.for-horizontal.full-width > li:last-child,
  .editors-advise_section .blog-list.for-horizontal.full-width > li:last-child,
  .latest-blog-posts_section
    .blog-list.for-horizontal.full-width
    > li:last-child {
    display: none;
  }
}
@media (max-width: 510px) {
  .amazing-news_section .blog-list.for-horizontal.full-width > li,
  .amazing-news_section .blog-list.for-vertical.full-width > li,
  .best-for-you_section .blog-list.for-horizontal.full-width > li,
  .best-for-you_section .blog-list.for-vertical.full-width > li,
  .editors-advise_section .blog-list.for-horizontal.full-width > li,
  .editors-advise_section .blog-list.for-vertical.full-width > li,
  .latest-blog-posts_section .blog-list.for-horizontal.full-width > li,
  .latest-blog-posts_section .blog-list.for-vertical.full-width > li {
    width: 100%;
  }
}
@media only screen and (max-width: 420px) {
  .latest-blog-posts_section .title-section {
    max-width: 180px;
  }
}
.latest-reviews_section .apps-list.for-vertical.full-width {
  width: calc(100% + 20px);
  margin: -10px;
}
.latest-reviews_section .apps-list.for-vertical.full-width > li {
  width: 33.33%;
  padding: 10px;
}
@media (max-width: 1024px) {
  .latest-reviews_section .apps-list.for-vertical.full-width > li {
    width: 50%;
  }
  .latest-reviews_section .apps-list.for-vertical.full-width > li:last-child {
    display: none;
  }
}
@media (max-width: 640px) {
  .latest-reviews_section .apps-list.for-vertical.full-width {
    width: calc(100% + 15px);
    margin: -7.5px;
  }
  .latest-reviews_section .apps-list.for-vertical.full-width > li {
    width: 100%;
    padding: 7.5px;
  }
  .latest-reviews_section .apps-list.for-vertical.full-width > li:last-child {
    display: block;
  }
}
.latest-apps-reviews_section {
  padding: 50px 0 55px;
  background: linear-gradient(258.97deg, #242947 0.27%, #101533 101.38%);
}
.latest-apps-reviews_section .title-section {
  color: #fff;
}
.latest-apps-reviews_section .apps-list.for-vertical.full-width {
  width: calc(100% + 20px);
  margin: -10px;
}
.latest-apps-reviews_section .apps-list.for-vertical.full-width > li {
  width: 20%;
  padding: 10px;
}
.latest-apps-reviews_section
  .apps-list.for-vertical.full-width
  > li:last-child {
  display: none;
}
@media (max-width: 1024px) {
  .latest-apps-reviews_section {
    padding: 35px 0 50px;
  }
  .latest-apps-reviews_section .apps-list.for-vertical.full-width > li {
    width: 33.33%;
  }
  .latest-apps-reviews_section
    .apps-list.for-vertical.full-width
    > li:last-child {
    display: block;
  }
}
@media (max-width: 767px) {
  .latest-apps-reviews_section {
    padding: 30px 0 40px;
  }
}
@media only screen and (max-width: 680px) {
  .latest-apps-reviews_section .apps-list.for-vertical.full-width {
    width: calc(100% + 10px);
    margin: -5px;
  }
  .latest-apps-reviews_section .apps-list.for-vertical.full-width > li {
    width: 50%;
    padding: 5px;
  }
}
.site-footer {
  padding: 40px 0 50px;
  background: #2a3052;
}
.site-footer .container.default {
  max-width: 1166px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .site-footer .container.default {
    padding: 0 20px;
  }
}
.site-footer .logo {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0;
}
@media (max-width: 1024px) {
  .site-footer .logo {
    margin-bottom: 0;
  }
}
.site-footer .footer_content .top-part .info-block {
  max-width: 440px;
}
.site-footer .footer_content .top-part .text {
  margin: 0;
}
.site-footer .footer_content .top-part .right-part {
  padding-left: 89px;
  margin: 0 -10px;
}
.site-footer .footer_content .top-part .right-part .footer_block {
  width: 33.33%;
  padding: 0 10px;
}
.site-footer .footer_content .bottom-part {
  margin-top: 31px;
}
.site-footer .footer_content .bottom-part .social-btns_container {
  margin-bottom: 21px;
}
.site-footer .footer_content .bottom-part .social-btns_container .title {
  display: none;
}
.site-footer
  .footer_content
  .bottom-part
  .social-btns_container
  .social-btns
  svg {
  font-size: 22px;
}
.site-footer .footer_content .bottom-part .copyright {
  margin: 0;
  line-height: 16px;
}
@media (max-width: 1200px) {
  .site-footer {
    padding: 30px 0 50px;
  }
  .site-footer .footer_content .top-part .right-part {
    padding-left: 30px;
  }
}
@media (max-width: 1024px) {
  .site-footer {
    padding: 30px 0 50px;
  }
  .site-footer .logo {
    position: absolute;
    top: 0;
    left: 0;
  }
  .site-footer .footer_content {
    position: relative;
    padding-top: 70px;
  }
  .site-footer .footer_content .top-part {
    flex-wrap: wrap;
  }
  .site-footer .footer_content .top-part .info-block {
    order: 2;
    max-width: 100%;
    margin-top: 40px;
  }
  .site-footer .footer_content .top-part .right-part {
    width: calc(100% + 20px);
    padding: 0;
  }
  .site-footer .footer_content .bottom-part {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .site-footer {
    padding: 30px 0 45px;
  }
  .site-footer .footer_content {
    padding-top: 60px;
  }
  .site-footer .footer_content .top-part .info-block {
    margin-top: 0;
  }
  .site-footer .footer_content .top-part .right-part {
    flex-wrap: wrap;
  }
  .site-footer .footer_content .top-part .right-part .footer_block {
    width: 50%;
    margin-bottom: 42px;
  }
  .site-footer
    .footer_content
    .top-part
    .right-part
    .footer_block:last-of-type {
    margin: 0 0 42px;
  }
  .site-footer
    .footer_content
    .top-part
    .right-part
    .footer_block:last-of-type
    .footer_list {
    flex-direction: column;
  }
}
@media only screen and (max-width: 425px) {
  .site-footer .footer_content .top-part .right-part .footer_block {
    width: 100%;
  }
}
.header_143421.site-header {
  border: none;
}
.header_143421.site-header .header-content {
  height: auto;
}
.header_143421.site-header .right-part {
  justify-content: flex-end;
}
.header_143421.site-header .site-logo {
  width: 224px;
  height: 30px;
  font-size: 0;
}
.header_143421.site-header .site-logo img,
.header_143421.site-header .site-logo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header_143421.site-header
  .site-nav
  .nav-list
  > li.dropdown
  .nav-item
  .svg-icons {
  width: 10px;
  height: 10px;
}
.header_143421.site-header .burger_btn {
  cursor: pointer;
  font-size: 0;
}
.header_143421.site-header .burger_btn svg {
  font-size: 23px;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
@media (min-width: 1024px) {
  .header_143421.site-header .site-nav .nav-list > li {
    margin: 0 20px;
  }
  .header_143421.site-header .site-nav .nav-list > li:last-of-type {
    margin-right: 0;
  }
  .header_143421.site-header .site-nav .nav-list > li.dropdown .dropdown-btn {
    margin-bottom: -20px;
    padding-bottom: 20px;
  }
  .header_143421.site-header
    .site-nav
    .nav-list
    > li.dropdown
    .nav-item
    .svg-icons {
    top: 2px;
    margin-left: 9px;
  }
  .header_143421.site-header
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content {
    top: calc(100% + 17px);
    left: auto;
    right: 3px;
    transform: translate(0);
    width: 270px;
    min-width: auto;
    max-height: 335px;
    padding: 15px;
    overflow-y: auto;
  }
  .header_143421.site-header
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li {
    margin-bottom: 15px;
    text-align: right;
  }
  .header_143421.site-header
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li:last-of-type {
    margin: 0;
  }
  .header_143421.site-header
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a {
    padding: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
  }
  .header_143421.site-header
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content:before {
    display: none;
  }
  .header_143421.site-header .site-nav .nav-list > li .nav-item {
    padding: 0;
    font-weight: 400;
    line-height: 22px;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .header_143421.site-header .right-part {
    padding-left: 30px;
  }
  .header_143421.site-header .site-nav .nav-list > li {
    margin: 0 12px;
  }
}
@media only screen and (max-width: 1023.9px) {
  .header_143421.site-header .header-content .site-nav.show {
    top: calc(100% + 10px);
    right: -20px;
  }
}
@media only screen and (max-width: 767.9px) {
  .header_143421.site-header .site-logo {
    width: 168px;
    height: 22.5px;
  }
  .header_143421.site-header .header-content .site-nav.show {
    top: 100%;
    right: 0;
  }
  .header_143421.site-header .right-part {
    padding-left: 10px;
  }
}
.site-header.main {
  padding: 25px 0;
}
.site-header.main .burger_btn:hover svg {
  fill: #33E6FF;
}
.site-header.main .burger_btn svg {
  fill: #fff;
}
@media (min-width: 1024px) {
  .site-header.main .site-nav .nav-list > li.dropdown .dropdown-content {
    border: 1px solid hsla(0, 0%, 100%, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(17.5px);
    background: hsla(0, 0%, 100%, 0.2);
  }
  .site-header.main
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a {
    color: #fff;
  }
  .site-header.main
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a:focus,
  .site-header.main
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a:hover {
    color: hsla(0, 0%, 100%, 0.6);
  }
  .site-header.main .site-nav .nav-list > li .nav-item {
    color: #fff;
  }
  .site-header.main .site-nav .nav-list > li .nav-item:hover {
    color: hsla(0, 0%, 100%, 0.6);
  }
}
@media only screen and (max-width: 767.9px) {
  .site-header.main {
    padding: 15px 0;
  }
}
.site-header.base {
  padding: 25px 0;
}
.site-header.base .header-content {
  position: relative;
}
.site-header.base .right-part {
  padding: 0;
}
.site-header.base .hidden-btns {
  display: block;
}
.site-header.base .hidden-btns > div {
  margin: 0;
}
.site-header.base .hidden-btns .search-form_btn {
  display: block;
  font-size: 0;
  cursor: pointer;
}
.site-header.base .hidden-btns .search-form_btn:hover svg {
  fill: #33E6FF;
}
.site-header.base .hidden-btns .search-form_btn svg {
  font-size: 22px;
  fill: #394652;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.site-header.base .burger_btn {
  display: none;
}
.site-header.base .burger_btn:hover svg {
  fill: #33E6FF;
}
.site-header.base .burger_btn svg {
  fill: #394652;
}
.site-header.base .search-form_container {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
}
.site-header.base .search-form_container.show {
  display: flex;
}
@media (min-width: 1024px) {
  .site-header.base .site-nav {
    padding-right: 48px;
  }
  .site-header.base
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a {
    color: #394652;
  }
  .site-header.base
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a:focus,
  .site-header.base
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a:hover {
    color: #33E6FF;
  }
  .site-header.base .site-nav .nav-list > li .nav-item {
    color: #dce9eb;
  }
  .site-header.base .site-nav .nav-list > li .nav-item:focus,
  .site-header.base .site-nav .nav-list > li .nav-item:hover {
    color: #33E6FF;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .site-header.base .site-nav {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1023.9px) {
  .site-header.base {
    padding: 20px 0;
  }
  .site-header.base .burger_btn {
    display: block;
  }
  .site-header.base .hidden-btns {
    display: flex;
    align-items: center;
  }
  .site-header.base .hidden-btns .search-form_btn {
    margin-right: 23px;
  }
}
@media only screen and (max-width: 767.9px) {
  .site-header.base {
    position: relative;
    padding: 18px 0 17px;
  }
  .site-header.base .header-content {
    position: static;
  }
  .site-header.base .search-form_container {
    top: 100%;
    padding: 10px 20px;
  }
  .site-header.base .hidden-btns .search-form_btn {
    margin-right: 19px;
  }
}
.btn-centre {
  margin: 0 auto;
}
.logo-container {
  width: 100px;
  height: 100px;
}
.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-billet.card4.vertical .logo-container {
  width: 100px;
  height: 100px;
}
.app-logo {
  width: 80px;
}
.app-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 640px) {
  .app-billet.card1.vertical {
    align-items: center;
  }
  .app-billet.card1.vertical .logo-container {
    width: 100px;
    height: 100px;
  }
  .app-billet.card1.horizontal .logo-container {
    height: 80px;
  }
}
@media only screen and (max-width: 640px) {
  .site-logo {
    width: 168px;
    height: 23px;
  }
  .site-logo svg {
    width: 100%;
    height: 100%;
  }
}
.breadcrumbs-and-title .page-title a,
.breadcrumbs-and-title .page-title a:focus,
.breadcrumbs-and-title .page-title a:hover {
  color: #394652;
}
.app_page .main_content .mobile-visible .advertise-container,
.app_page .main_content .mobile-visible .btn-container {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .header-content {
    height: 50px;
  }
  .breadcrumbs-and-title {
    min-height: unset;
    padding: 0;
  }
}
.app-sidebar-info_container .app-sidebar-info .app-name,
.breadcrumbs-and-title .page-title a {
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.app-sidebar-info_container .app-sidebar-info .app-name:focus,
.app-sidebar-info_container .app-sidebar-info .app-name:hover,
.breadcrumbs-and-title .page-title a:focus,
.breadcrumbs-and-title .page-title a:hover {
  color: #33E6FF;
}
.download_page .btn-container .btns-list {
  justify-content: center;
}
.app-top_block_tablet {
  display: flex;
  width: 100%;
}
.app-top_block_tablet .logo-container {
  display: inline-flex;
  min-width: 130px;
  width: 130px;
  height: 130px;
}
.app-top_block_tablet .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.app-top_block_tablet .concise-info {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding-left: 15px;
}
.app-top_block_tablet .concise-info .left-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.app-top_block_tablet .concise-info .left-part .top-part {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-top_block_tablet .concise-info .left-part .bottom-part {
  margin-top: 15px;
}
.app-top_block_tablet .concise-info .btn-container {
  display: flex;
  align-items: center;
  min-width: 280px;
  width: 280px;
  margin: 0;
}
.app-top_block_tablet .concise-info .title {
  display: inline-flex;
  margin-bottom: 10px;
  line-height: 1.15;
  font-size: 22px;
  font-weight: 700;
  color: #394652;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.app-top_block_tablet .concise-info .title:focus,
.app-top_block_tablet .concise-info .title:hover {
  color: #33E6FF;
}
.app-top_block_tablet .concise-info .copyright {
  font-size: 12px;
}
.header-content .dropdown-list {
  max-height: 294px;
  overflow-y: auto;
}
@media only screen and (max-width: 1023.9px) {
  .header-content {
    height: 50px;
  }
  .header-content .dropdown-list {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-content .site-nav .nav-list > li {
    margin: 0 10px;
  }
  .header-content .site-nav .nav-list > li .nav-item {
    padding: 0;
    font-size: 16px;
  }
  .header-content .site-nav .nav-list > li.dropdown .nav-item .svg-icons {
    width: 10px;
    height: 10px;
    color: inherit;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1100px) {
  .header-content .site-nav .nav-list > li {
    margin: 0 8px;
  }
}
@media only screen and (max-width: 1140px) and (min-width: 1024px) {
  .header-content .site-nav .nav-list > li {
    margin: 0 5px;
  }
  .header-content .site-nav .nav-list > li .nav-item {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-content .site-nav .nav-list > li.dropdown .dropdown-content {
    top: 100%;
  }
}
.animation-pulse {
  animation: c 1.5s infinite;
}
.animation-pulse:hover {
  animation: none;
}
@keyframes c {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  to {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
@media only screen and (min-width: 1139.9px) {
  .app-sidebar-info_container .app-sidebar-info {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .app_page .app-top-block {
    margin-top: 0;
  }
  .app_page .app-top-block .right-part {
    justify-content: flex-start;
  }
  .app_page .app-top-block .right-part .app-rating {
    margin-top: 5px;
  }
  .app_page .page-title {
    margin: 0;
    font-size: 22px;
  }
  .app_page .page-title a {
    color: #394652;
  }
  .app_page .page-title a:hover {
    color: #33E6FF;
  }
}
.blog-billet.card14 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 216px;
  padding: 24px;
  border-radius: 5px;
  overflow: hidden;
}
.blog-billet.card14:after,
.blog-billet.card14:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
}
.blog-billet.card14:before {
  background: linear-gradient(
    180deg,
    rgba(14, 15, 22, 0.28),
    rgba(14, 16, 22, 0.8)
  );
  opacity: 1;
  z-index: 1;
}
.blog-billet.card14:after {
  background: linear-gradient(
    180deg,
    rgba(14, 15, 22, 0.4),
    rgba(14, 16, 22, 0.92)
  );
  opacity: 0;
  z-index: 2;
}
.blog-billet.card14:focus:after,
.blog-billet.card14:hover:after {
  opacity: 1;
}
.blog-billet.card14:focus:before,
.blog-billet.card14:hover:before {
  opacity: 0;
}
.blog-billet.card14 .poster-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 5px;
  display: flex;
}
.blog-billet.card14 .poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.blog-billet.card14 .concise-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 3;
}
.blog-billet.card14 .concise-info .text-part {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 8px;
}
.blog-billet.card14 .concise-info .text-part .title {
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
  overflow: hidden;
  -webkit-line-clamp: 3;
  font-weight: 700;
  color: #fff;
  line-height: 1.33;
  font-size: 18px;
}
.blog-billet.card14 .concise-info .bottom-part {
  display: flex;
  max-width: calc(100% - 45px);
  width: 100%;
}
.blog-billet.card14 .concise-info .bottom-part .details-list {
  display: flex;
  align-items: center;
  width: 100%;
}
.blog-billet.card14 .concise-info .bottom-part .details-list li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.blog-billet.card14 .concise-info .bottom-part .details-list li:before {
  position: relative;
  top: 1px;
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 4px;
  border-radius: 50%;
  background: #8e919a;
}
.blog-billet.card14 .concise-info .bottom-part .details-list li:first-of-type {
  max-width: calc(100% - 94px);
}
.blog-billet.card14
  .concise-info
  .bottom-part
  .details-list
  li:first-child:before {
  display: none;
}
.blog-billet.card14 .concise-info .bottom-part .details-list .author {
  display: flex;
  align-items: center;
  width: 100%;
}
.blog-billet.card14 .concise-info .bottom-part .details-list .author .avatar {
  display: flex;
  height: 30px;
  width: 30px;
  margin-right: 8px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-billet.card14
  .concise-info
  .bottom-part
  .details-list
  .author
  .avatar
  img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-billet.card14 .concise-info .bottom-part .details-list .author .name {
  display: inline-block;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.43;
  font-size: 14px;
  color: #8e919a;
}
.blog-billet.card14 .concise-info .bottom-part .details-list .date {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 94px;
  line-height: 1.43;
  font-size: 14px;
  color: #8e919a;
}
.blog-billet.card14 .concise-info .rating.type2 {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  .blog-billet.card14 {
    height: 220px;
    padding: 20px 20px 24px;
  }
}
.latest-post_block .latest-post_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .latest-post_block .latest-post_list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 1140px) {
  .download_page
    .main_content
    .latest-articles_block
    .blog-list.for-vertical.in-sidebar
    > li {
    width: 33.33%;
  }
  .download_page .sidebar {
    display: flex;
    flex-direction: column;
  }
  .download_page .sidebar > .desktop-visible {
    order: 2;
    margin-top: 30px;
  }
  .download_page .sidebar .btn-container {
    margin-top: 0 !important;
  }
}
.download_page .app-name {
  pointer-events: none;
}
.app-sidebar-info_container .app-sidebar-info.movies-tv_block .app-logo {
  width: 100px;
  height: 100px;
}
@media (max-width: 1024px) and (min-width: 641px) {
  .app-top_block_tablet.movies-tv_block .logo-container {
    min-width: 0;
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 640px) {
  .app-top-block.movies-tv_block .app-logo {
    min-width: 0;
    width: 100px;
    height: 100px;
  }
  .app-top-block.movies-tv_block .app-logo img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .header-content .site-nav .nav-list > li.dropdown .dropdown-content {
    top: calc(100% - 12px);
    left: 0;
    transform: translateX(0);
    width: 200px;
    min-width: 0;
    padding: 8px 0;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list {
    max-height: 58px;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li {
    text-align: left;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li:not(:last-child) {
    margin-bottom: 8px;
  }
  .header-content
    .site-nav
    .nav-list
    > li.dropdown
    .dropdown-content
    .dropdown-list
    li
    a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 8px;
    font-size: 14px;
    line-height: 1;
  }
  .header-content .site-nav .nav-list > li.dropdown .dropdown-content:before {
    display: none;
  }
}
.top-small-apps .top-small-apps_list {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 16px);
  margin: -8px;
}
.top-small-apps .top-small-apps_list > li {
  width: 33.33%;
  padding: 8px;
}
.top-small-apps .top-small-apps_list > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 7px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(21, 42, 87, 0.12);
  background: #fff;
}
.top-small-apps .top-small-apps_list > li a:hover {
  box-shadow: 0 3px 12px rgba(21, 42, 87, 0.24);
}
.top-small-apps .top-small-apps_list > li a img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}
