/* -----------------------------START CSS Reset----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

body {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
}

img {
  max-width: 100%;
  height: auto;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.swiper-pagination-bullet {
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
}
/* -----------------------------END CSS Reset----------------------------- */

/* -----------------------------START general style----------------------------- */
:root {
  /* Базовый текст */
  --text-m: clamp(0.9375rem, 0.8993rem + 0.191vw, 1.0625rem); /* 15–17 regular */
  --text-s: clamp(0.8125rem, 0.7rem + 0.08vw, 0.875rem); /* 13–14 regular */
  --text-xs: clamp(0.625rem, 0.6059rem + 0.0955vw, 0.6875rem); /* 10–11 regular */

  /* Заголовки */
  --h1-size: clamp(1.625rem, 1.4722rem + 0.7641vw, 2.125rem); /* 26–34 semibold */
  --h2-size: clamp(1.375rem, 1.2604rem + 0.5731vw, 1.75rem);  /* 22–28 semibold */
  --h3-size: clamp(1.125rem, 1.013rem + 0.556vw, 1.4375rem);  /* 18–23 semibold */

  /* Карточки товара */
  --h4-size: clamp(0.9375rem, 0.8583rem + 0.3854vw, 1.1875rem); /* 15–19 semibold */

  /* Иконки */
  --icon-size: 1.0625rem; /* 17px */
}


h1 {
  font-size: var(--h1-size);
  font-weight: 600;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 600;
}

h4 {
  font-size: var(--h4-size);
  font-weight: 600;
}

body {
  font-size: var(--text-m);
}

.container {
  max-width: 1387px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.layout {
  display: grid;
  grid-template-columns: 249px 1fr;
  column-gap: 23px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(120, 120, 120, 0.46);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

.hidden {
  display: none;
}
/* -----------------------------END general style----------------------------- */

/* -----------------------------START header----------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 51px 0 0 0;
}

.header__logo-mob-link,
.header__burger-menu {
  display: none;
}

.header__container {
  display: grid;
  grid-template-columns: 249px 1fr;
  align-items: start;
  gap: 23px;
}

.header__logo-link {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: 38px;
  color: #171851;
}

.header__logo-highlight {
  font-size: 21px;
  font-weight: 900;
}

.header__search {
  width: 100%;
}
.search-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: none;
}
#searchHeaderContainr.active{
  width: 63.657vw;
  max-width: 1100px;
}

#searchHeaderContainr.active .header__search-input{
  border: 2px solid #171851;
  
}
.search-dropdown {
  position: fixed;
    top: 135px;
  width: 63.657vw;
  max-width: 1100px;
  height: 80vh;

  overflow-x: auto;
  background: white;
  box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.1), 0 0px 3px 0 rgba(0, 0, 0, 0.1);

  z-index: 1000;
  display: none;
  border-radius: 12px;
  padding: 20px;
 
}

.search-section {
  margin-bottom: 20px;
}
.search-section h3{
  margin-bottom: 15px;
  font-size: 19px;


}
.article-block{
  padding:20px;

}

  .article-block h4{
      display: -webkit-box;
  -webkit-line-clamp: 1; /* пример: максимум 2 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  }
  .article-block p{
      display: -webkit-box;
  -webkit-line-clamp: 2; /* пример: максимум 2 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

    color: #8F8F8F;
  }
.search-section.acticle .article-block{
  display: flex;
  
  gap: 20px;
  border-bottom: 1px solid #f3f4f6;


}
.search-section.acticle .article-block:last-child{
  border: none;
}
.search-loadmore{
  margin: 20px;
}
.search-loadmore .categories__cart-all-btn{
  padding: 12px 16px;
border-radius: 10px;
font-weight: 400;
font-size: 14px;
}
.search-section.acticle .article-block img{
width:  65px;
height: auto;
object-fit: cover;
border: 0.50px solid var(--gray);
border-radius: 14px;
  
}
.search-item_container {
 border-radius: 14px;
border: 0.09px solid #9b9b9b;
box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.1), 0 0px 3px 0 rgba(0, 0, 0, 0.1);

  cursor: pointer;
}

.header__search-wrapper {
  position: relative;
  max-width: 352px;
  width: 100%;
  height: 46px;
}

.header__search-input {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #8f8f8f;
  outline: none;
  border-radius: 13.97px;
  padding: 0 42px 0 14px;
  font-size: var(--text-s);
}

.header__search-input::placeholder {
  color: #171851;
}

.header__search-button {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: none;
  background: transparent;
}
/* -----------------------------END header----------------------------- */

/* -----------------------------START sidemenu----------------------------- */
.sidemenu {
  background: #ffffff;
}

.sidemenu__nav {
    position: sticky;
    top: 150px;
    overflow: auto;
    margin-top: 36px;
    height: 64vh;
  	z-index: 900;
}
.content{
	min-height:550px;

}
.sidemenu__promo-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
  max-width: 249px;
  width: 100%;
  height: 48px;
  padding: 12px 15px;
  cursor: pointer;
  background: linear-gradient(90deg, #f9c264 0%, #fc8e20 100%);
  border: 0.0931152px solid #dedede;
  border-radius: 13.97px;
  font-size: var(--text-m);
  color: #000000;
}

.sidemenu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  list-style: none;
}

.sidemenu__categories {
  padding: 24px 0 24px 2px;
}

.sidemenu__links {
  padding: 24px 0 0 0;
  border-top: 0.931152px solid #dedede;
}
.sidemenu__item.active:after{
	opacity:1;
}
.sidemenu__item {
  padding: 0 0 0 15px;
    position: relative;
 width: calc(100% - 15px);   
}

.sidemenu__item.active {
  position: relative;
  width: calc(100% - 15px);
  color: #171851;
}

.sidemenu__item.active img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(61%) saturate(2605%)
    hue-rotate(227deg) brightness(97%) contrast(100%);
}

.sidemenu__item.active::before {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: -
  content: "";
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #171851;
  background: #f5f5f5;
}

 .sidemenu__item::after{
    position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 38px;
  border-radius: 14px;
  border: 1px solid #171851;
  background: #f5f5f5;
  opacity: 0;
  transition: all ease 0.3s;

}
 .sidemenu__item:hover::after{
opacity: 1;
 }
.sidemenu__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.sidemenu__link > img {
  width: 18px;
  height: 18px;
}

.sidemenu__general {
  border-bottom: 1px solid #dedede;
}
/* -----------------------------END sidemenu----------------------------- */

/* -----------------------------START content----------------------------- */
.content {
  padding: 30px 0 0 0;
  overflow-x: auto;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}
.single .content{
   overflow-x: none!important;
  scrollbar-width:auto!important; 
  -ms-overflow-style: auto!important;
}
.content-single {
  height: 120%;
}

.content::-webkit-scrollbar {
  display: none; /* Для Chrome, Safari и Opera */
}

.content__title {
  font-size: var(--h1-size);
  font-weight: 600;
}

.content__section-title {
  font-size: var(--h2-size);
  font-weight: 600;
  padding: 0 0 20px 0;
}
/* -----------------------------END content----------------------------- */

/* -----------------------------START analytics----------------------------- */
.analytics__content__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

.analytics__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.analytics-wrapper {
  border-radius: 13.967px;
  border: 0.093px solid #dedede;
  box-shadow: 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
}

.analytics__item {
  display: flex !important;
  justify-content: space-around;
  flex-direction: column;
  padding: 15.5px 18px;
}

.analytics__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.analytics__list-gainers {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 9px 0 0 0;
  gap: 9px;
}

.analytics__item-gainers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 9px 0;
  border-bottom: 1px solid #dedede;
}

.analytics__gainers-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.analytics__gainers-count {
  font-size: var(--text-s);
}

.analytics__gainers-name {
  font-weight: 500;
  font-size: var(--text-s);
}

.analytics__gainers-subname {
  font-size: var(--text-xs);
  color: #8f8f8f;
  font-weight: 500;
}

.analytics__gainers-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.analytics__gainers-price-current {
  font-size: var(--text-s);
}

.current-green {
  font-size: var(--text-xs);
  color: #00932c;
}

.current-red {
  font-size: var(--text-xs);
  color: #b7081c;
}

.cryptocurrency__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2vw, 17px);
  list-style: none;
}

.cryptocurrency__item-block {
  padding: 10px 13.5px;
}

.cryptocurrency__item-block > img {
  border-radius: 50%;
}

.cryptocurrency__item-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0 5px 0;
}

.cryptocurrency__item-title {
  font-size: var(--text-s);
}

.cryptocurrency__item-info {
  font-size: var(--text-xs);
  color: #8f8f8f;
}

.cryptocurrency__item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cryptocurrency__item-meta__top {
  font-size: var(--text-xs);
  font-weight: 600;
}

.crypto-analyze__list {
  list-style: none;
  height: 100%;
}

.crypto-analyze__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 124px;
}

.crypto-separator {
  height: 1px;
  background: #8f8f8f;
}

.crypto-analyze__block-header,
.crypto-analyze__block-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.crypto-analyze__block-meta{
  justify-content: space-between;
}
.crypto-analyze__block {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.crypto-analyze__block-circle {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crypto-analyze__update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crypto-analyze__update-meta-text {
  color: #8f8f8f;
  font-size: var(--text-xs);
}

.crypto-analyze__block-title {
  color: #8f8f8f;
  font-size: var(--text-s);
}

.crypto-analyze__block-percent {
  font-size: var(--text-s);
}

.analytics-slider__points-lists {
  padding: 15px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 11px;
  list-style: none;
}

.cryptocurrency__item-change-graphics {
  height: 100%;
}

canvas {
  width: 100% !important;
  height: 100%!important;
}

.crypto-analyze__date {
 
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4.656px;
  padding: 2.5px 5.5px;
  background: #f5f5f5;
}

.crypto-analyze__date-last > * {
  color: black;
  font-size: var(--text-xs);
}

.crypto-analyze__date-last > p {
  color: #b7081c;
}

.crypto-analyze__date-separator {
  width: 1px;
  padding: 5px 0;
  height: 100%;
  background: #8f8f8f;
}

.crypto-analyze__block-sub-title {
  font-size: var(--text-xs);
}
/* -----------------------------END analytics----------------------------- */

/* -----------------------------START content__section-news----------------------------- */

.content__section-news {
  padding: 40px 0 30px 0;
}

.content__news-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 0 0 20px 0;
}

.content__news-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}

.content__news-img {
  width: 20px;
        border-radius: 6px;
  height: 20px;
}

.content__news-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  max-width: 134px;
  width: 100%;
  height: 33px;
  background: #f5f5f5;
  border: 0.5px solid #171851;
  border-radius: 55.8691px;
  color: #171851;
  font-size: var(--text-s);
}
/* -----------------------------END content__section-news----------------------------- */

/* -----------------------------START content__section-articles----------------------------- */
.content__section-articles {
  padding: 20px 0 0 0;
}

.content__articles-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.content__articles-item {
  position: relative;
  display: flex !important;
  max-width: 350px;
  flex-direction: column;
  border-radius: 13.889px;
  box-shadow: inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
}

.content__articles-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.content__articles-img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  border-radius: 13.889px 13.889px 0 0;
}

.content__articles_info {
  padding: 13px 15px 15px 14px;
}

.content__articles-heading,
.content__articles-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content__articles-heading {
  min-height: 51px;
  font-size: var(--h3-size);
  font-weight: 600;
  -webkit-line-clamp: 2;
}

.content__articles-text {
  font-size: var(--text-s);
  margin: 15px 0 20px 0;
  -webkit-line-clamp: 3;
}

.content__articles-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.content__articles-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.content__articles-date-text,
.content__articles-tag {
  color: #000000;
  opacity: 0.6;
  font-size: var(--text-s);
}
/* -----------------------------END content__section-articles----------------------------- */

/* -----------------------------START footer----------------------------- */
footer {
  padding: 40px 0 51px 0;
}
footer .sidemenu__item{
  padding-left: 0;
}
.footer__conainer {
  background: #f5f5f5;
  border-radius: 18.623px;
  box-shadow: 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
}

.footer__menu {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1162px;
  padding: 47px 0 47px 51px;
}

.footer__menu-list,
.footer__social-list,
.footer__meta-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}

.footer__menu-link,
.footer__social-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer__menu-link > img,
.footer__social-link > img {
  width: 20px;
  height: 20px;
}

.footer__menu-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  max-width: 209px;
  width: 100%;
  height: 44px;
  border-radius: 12.288px;
  border: 0.819px solid #171851;
  background: #171851;
  color: #ffffff;
  font-size: var(--text-m);
}

.footer__menu-link-policy,
.footer__general-link {
  color: #8f8f8f;
  font-size: var(--text-s);
}

.footer__meta-item > p {
  font-size: var(--text-s);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__general {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  list-style: none;
}
/* -----------------------------ENd footer----------------------------- */

/* -----------------------------START model sign----------------------------- */
.modal__sign {
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 15px;
  border: 2px solid #171851;
  display: block;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 556px;
  width: 100%;
  max-height: 418px;
  height: 100%;
  z-index: 2100;
}

#signUpModalMail {
  max-height: 476px;
}

#signIn {
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#signIn[open] {
  transform: translate(-50%, -50%) scale(1);
}

dialog[open] {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

dialog[close] {
  display: none;
}

.signin__wrapper {
  text-align: center;
}

.signin__title {
  color: #171851;
  font-size: var(--h4-size);
  font-weight: 600;
}

.signin__wrapper-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signin__wrapper {
  max-width: 306px;
  width: 100%;
  padding: 30px 0;
}

.signin__wrapper-item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 15px;
  border: 1px solid #171851;
  height: 53px;
}

.signin__wrapper-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.signin__wrapper-item > img {
  position: absolute;
  left: 16px;
}

.signin__wrapper-item > a {
  width: 100%;
}

.sign__link {
  cursor: pointer;
  font-size: var(--text-m);
  background-color: transparent;
  border: none;
  color: #171851;
}

.signup__condition {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signup__condition > span {
  color: #8f8f8f;
}

.signin__wrapper-list input {
  width: 100%;
  padding: 0 40px 0 16px;
  height: 53px;
  border-radius: 15px;
  border: 1px solid #171851;
  outline: none;
  font-size: var(--text-m);
}

.signin__wrapper-list input::placeholder {
  color: #000000;
}

.modal__sign-btn {
  cursor: pointer;
  text-align: center;
  height: 53px;
  font-size: var(--text-m);
  border-radius: 15px;
  border: 1px solid #171851;
  color: #fff;
  background: #171851;
}

.signin__wrapper-password {
  position: relative;
}

.modal__sign-password-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0%, -50%);
  cursor: pointer;
  background: transparent;
  border: none;
}
/* -----------------------------ENd model sign----------------------------- */

/* -----------------------------START archive.php----------------------------- */
.categories {
  padding: 40px 0 0 0;
}

.categories__tag {
  padding: 0 0 40px 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories__tag::-webkit-scrollbar {
  display: none; /* Для Chrome, Safari и Opera */
}

.categories__tag-list {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

.categories__tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 14px;
  box-shadow: inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
}
.categories__tag-item.active {
  border: 1px solid #171851;
  background: #f5f5f5;
  box-shadow: inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
}

.categories__cart {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 40px);
}

.categories__cart-all-btn {
  cursor: pointer;
  color: #171851;
  margin: 0 auto;
  padding: 13px 46px;
  font-size: var(--text-m);
  border-radius: 60px;
  border: 0.5px solid #171851;
  background: #f5f5f5;
}
/* -----------------------------ENd archive.php----------------------------- */

/* -----------------------------START single.php----------------------------- */
.information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
  margin: 1px;
  padding: 40px 0;
}

.information__wrapper {
  max-width: 720px;
  width: 100%;
}

.information__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.information__content img {
  width: 100%;
  border-radius: 13.967px;
}

.information__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px 0;
}


.single-news .information__header{
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
  align-items: flex-start;
}
/* .wp-block-list li::marker{
  padding-left: 20px;
} */

.wp-block-list li{
  margin-left: 20px;
}
.wp-block-list li strong{
  font-weight: 600;
}
.information__content .wp-block-heading{
  margin-top: 40px;
}
.information__header-author {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.information__header-author-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.information__header-author-img {
  border-radius: 50%;
}

.information__header-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
.information__header-date-current {
  white-space: nowrap;
  color: #8f8f8f;
}

.information__share-popup {
  position: absolute;
  top: 45px;
  right: -130px;
  z-index: 150;
  width: max-content;
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.information__share-popup.open {
  opacity: 1;
  visibility: visible;
}

.information__share-btn {
  cursor: pointer;
  background: transparent;
  border: none;
}

.information__share-btn.active {
  position: relative;
}

.information__share-btn.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 36px;
  transform: translate(-50%, -50%);
}

.information__share-btn.active > img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(78%) saturate(3315%)
    hue-rotate(237deg) brightness(82%) contrast(111%);
}

.information__share-popup-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.information__share-popup-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--text-m);
  white-space: nowrap;
}

.information__bottom {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 0;
}

.information__bottom-categories {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  width: fit-content;
  list-style: none;
}

.information__bottom-categories a {
  color: #8f8f8f;
}

/* START recommend-slider */
.recommend-slider-list {
  display: flex;
  gap: 20px;
  will-change: transform;
  overflow: hidden;
}

.recommend-slider {
  position: relative;
  padding: 40px 0 0 0;
  width: 100%;
  grid-column: 1 / -1;
}

.recommend-slider__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: clamp(20px, 5vw, 40px);
}

.recommend-slider__header-title {
  font-size: var(--h2-size);
  font-weight: 600;
}

.recommend-slider__header-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.recommend-slider__arrow {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  border: 0.931px solid #f5f5f5;
  background: #f5f5f5;
}

.recommend-slider__arrow-right img {
  transform: rotate(180deg);
}

.recommend-slider__points-lists {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 19px;
  padding-top: clamp(20px, 5vw, 40px);
  list-style: none;
}

.recommend-slider__point {
  cursor: pointer;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f5f5f5;
  border: #f5f5f5;
}

/* Активная точка */
.custom-bullet-active .recommend-slider__point {
  background-color: #171851; /* Цвет активной точки */
}
/* END recommend-slider */
/* -----------------------------ENd single.php----------------------------- */

/* -----------------------------START profile.php, settings.php----------------------------- */
.author-profile {
  box-shadow: inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.15),
    inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.1);
  border-radius: 13.967px;
  margin: clamp(30px, 4vw, 40px) 0;
}

.author-banner {
  position: relative;
  height: clamp(16vh, 16vw, 24vh);
}

.author-banner > img {
  border-radius: 13.967px 13.967px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Обрезаем изображение, чтобы оно не искажалось */
}

.author-banner__img-profile {
  position: absolute;
  top: 50%;
  left: 55.5px;
  width: 147px;
  height: 147px;
}

.author-banner__img-profile img {
  border-radius: 50%;
}

.author-information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(77px, 5vw, 63px) clamp(20px, 5vw, 55.5px) 0
    clamp(20px, 5vw, 55.5px);
}

.author-information__account {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 26px);
  padding: 0 0 clamp(26px, 3vw, 54px) 0;
}

.author-information__account span {
  color: #8f8f8f;
}

.author-information__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.author-information__tabs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.author-information__write a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.author-information__tab.active {
  padding: 0 0 27px 0;
  border-bottom: 2px solid #2b2ed8;
}

/* START settings.php*/
.settings {
  border-radius: 13.967px;
  box-shadow: inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.15),
    inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.1);
}

.settings > h1,
.settings-general__header {
  padding: clamp(20px, 3vw, 40px);
  border-bottom: 1px solid #c8c8c8;
}

.settings__profile {
  padding: 20px clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px)
    clamp(20px, 3vw, 40px);
}

.settings__list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  width: fit-content;
}

.settings__item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.settings__item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.settings__item-info p,
.settings-general__item p,
.profile__item p {
  font-size: var(--h3-size);
  font-weight: 600;
}

.settings__item-info span {
  font-size: var(--text-s);
  color: #8f8f8f;
}

.settings__get-out {
  font-size: var(--h3-size);
  color: #171851;
  font-weight: 600;
  transition: 0.3s;
}

.settings__get-out:hover {
  color: #b7081c;
}

.settings-general__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.settings-general__header-title {
  font-size: var(--h1-size);
  font-weight: 600;
}

.settings-general__header button,
.settings-general__update {
  cursor: pointer;
  background: transparent;
  border: none;
}

.settings-general__update {
  color: #2b2ed8;
  font-size: var(--text-m);
}

.settings-general__item,
.profile__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 2vw, 19px);
}

.settings-general__item input {
  color: #8f8f8f;
  background: transparent;
  border: none;
  outline: none;
  font-size: var(--text-s);
}

.profile__item-input {
  border-radius: 9.312px;
  width: 100%;
  outline: none;
  border: 0.931px solid #8f8f8f;
  padding: 0 15px;
  height: 43px;
  font-size: var(--text-m);
}

.profile__item-textarea {
  border-radius: 9.312px;
  outline: none;
  width: 100%;
  border: 0.931px solid #8f8f8f;
  padding: 15px 15px 62px 15px;
  resize: none;
  font-size: var(--text-m);
  overflow: hidden;
}

.upload-label {
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
}

.upload-input {
  display: none;
}

.upload-label__banner {
  max-width: 412px;
  width: 100%;
  height: 101px;
}

.image-preview-banner {
  display: block;
  object-fit: cover;
  width: 412px;
  height: 101px;
}

.image-preview-avatar {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
}
/* END settings.php*/

/* START write--post.php */
.write-post__content {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding: clamp(20px, 3vw, 40px);
}

.write-post__header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.write-post__header-img {
  border-radius: 50%;
}

.write-post__header-title {
  font-size: var(--h3-size);
  font-weight: 600;
}

.write-post__title {
  font-size: var(--h2-size);
  font-weight: 600;
  padding: clamp(16px, 2vw, 18px) 0;
  border-top: 1px solid #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
  border-left: none;
  border-right: none;
  outline: none;
}

.write-post__send {
  cursor: pointer;
  color: #fff;
  font-size: var(--text-m);
  max-width: 182px;
  width: 100%;
  padding: 12.5px 0;
  border-radius: 9.312px;
  border: 0.466px solid #171851;
  background: #171851;
}
/* END write--post.php */
/* -----------------------------ENd profile.php, settings.php----------------------------- */

/* -----------------------------START general pages----------------------------- */
.general {
  box-shadow: inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.15),
    inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.1);
  border-radius: 13.967px;
  padding: 40px;
}

.general__wrapper {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.general__404-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.general-404-error {
  padding: 20px 0 20px 0;
  color: #565872;
  font-size: var(--h2-size);
  font-weight: 600;
}

.general-404-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 254px;
  width: 100%;
  border-radius: 30px;
  border: 0.5px solid #171851;
  color: #171851;
  background: #f5f5f5;
}

.general-404-btn a {
  font-size: var(--text-s);
  font-weight: 600;
}

.general__wrapper ul,
.general__wrapper ol {
  margin-left: 20px;
}

.general__wrapper-icons {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
/* -----------------------------ENd general pages----------------------------- */

/* -----------------------------START custom breadcumbs----------------------------- */
.custom-breadcrumbs {
  color: #8f8f8f;
  padding: 0 0 34px 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumb_last {
  color: #000000;
}
/* -----------------------------ENd custom breadcumbs----------------------------- */

/* -----------------------------START crypto-exchanges.php----------------------------- */
.crypto__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(30px, 3vw, 40px) 0 clamp(30px, 3vw, 40px) 0;
}

.crypto-table__header-item {
  font-size: var(--text-s);
  font-weight:400;
  color: #000;
}

.crypto-filter__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0 0 clamp(30px, 3vw, 40px) 0;
}

.crypto-filter__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.crypto-filter__item-btn {
  cursor: pointer;
  font-size: var(--text-m);
  outline: none;
  box-shadow: inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
    inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 14px 30px;
  border: none;
  border-radius: 14px;
  background: transparent;
  text-wrap: nowrap;
}

.crypto-filter {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.crypto-filter::-webkit-scrollbar {
  display: none;
}
.crypto-table__body{
  overflow-x: auto;
}
.crypto-table {
  padding: 0 0 clamp(30px, 3vw, 40px) 0;

  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
    border-radius: 13.967px;
  border: 0.279px solid #9b9b9b;
  box-shadow: inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.15),
    inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.1);
}

.crypto-table::-webkit-scrollbar {
  display: none;
}

.crypto-table__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  align-items: center;
  list-style: none;
}

.crypto-table__body {
  font-size: var(--text-s);
  padding: 20px;

}


.crypto-table__item:first-child{
  padding: 0;
}
.crypto-table__item:not(:last-child) {
  border-bottom: 0.5px solid #9b9b9b9f;
}
.crypto-table__row{
  padding:10px 0 ;
}
.crypto-table__exchange {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 8px);
}
.crypto-table__cell{
  display: flex;
  align-items: center;
  gap: 20px;

}
.crypto-table__cell img{
  width: 37px;
  height: auto;
  border-radius: 100%;

}
.crypto-table__cell .rating{
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 56px;
background: #f2f2f2;
padding: 11px 15px;
}
.crypto-table__cell.crypto-table__exchange{
  width: 140px;
}
.crypto-table__exchange-info > p {
  font-weight: 700;
}

.crypto-table__exchange-info > span {
  color: #8f8f8f;
  font-size: var(--text-xs);
  font-weight: 550;
}

.crypto-table__body-btn {
  color: #fff;
  border-radius: 10px;
  background: #171851;
  font-weight: 550;
  padding: 10px 18px;
  overflow-x:auto;
}

.crypto-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.crypto-author {
  box-shadow: inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.15),
    inset 0px 0.466px 2.793px 0px rgba(0, 0, 0, 0.1);
  border-radius: 13.967px;
  margin: 0 0 clamp(30px, 3vw, 40px) 0;
}

.crypto-author__content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 62px;
  padding: 20px 47px;
}

.crypto-author__preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.crypto-author__preview-title {
  font-size: var(--h2-size);
  font-weight: 600;
}

.crypto-author__preview-info {
  text-align: center;
  color: #8f8f8f;
}

.crypto-author__contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 58px;
}

.crypto-author__contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.crypto-author__contact__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 5px;
  list-style: none;
}

.crypto-author__contact__item {
  border-radius: 14px;
  border: 1px solid #171851;
  padding: 14px 17px;
}

.crypto-author__contact__item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.crypto-author__contact__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.crypto-author__contact__header > p {
  font-size: var(--h4-size);
  font-weight: 600;
}

.crypto-author__contact__header > span {
  color: #8f8f8f;
  font-size: var(--text-xs);
}
/* -----------------------------ENd crypto-exchanges.php----------------------------- */

/* -----------------------------START Responsive 1300px----------------------------- */
@media (max-width: 1300px) {
  .information__share-popup {
    top: 40px;
    right: 0;
  }
    .content__articles-list{
    grid-template-columns: 1fr 1fr;
  }
  .sidemenu__item::after{
    left: 51%;

  }
  .content__articles-heading{
    min-height: auto;
  }
}

/* -----------------------------END Responsive 1300px----------------------------- */

/* -----------------------------START Responsive 950px----------------------------- */
@media (max-width: 950px) {
  .content{
    overflow:visible;

  }
  .information__wrapper {
    padding: 0 10px;
  }
}
/* -----------------------------END Responsive 950px----------------------------- */

/* -----------------------------START Responsive 768px----------------------------- */
@media (max-width: 768px) {
  .content__articles-item{
    max-width: 100%;
  }
  .content__articles-list{
    grid-template-columns: 1fr;
  }
  #searchHeaderContainr.active{
        width: 96vw;
        margin-left: -11px;
  }
.article-block{
  align-items: center;
}
  .article-block p{
    font-size: 10px;
    color: #8F8F8F;
  }
  .article-block h4{
    font-weight: 400;
  }
  .search-section.acticle .article-block img {
    border-radius: 6px;

width: 27px;
height: 27px;
  }
  /* -----------------------------START header----------------------------- */
  .header {
    padding: 20px 0 20px 0;
  }

  .header.open {
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #c8c8c8;
  }

  .header__container {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .header__logo-mob-link {
    display: block;
  }

  .header__burger-menu {
    display: block;
  }

  .header__burger-menu > button {
    background: transparent;
    border: none;
  }

  .header__logo-link {
    display: none;
  }

  .header__search-wrapper {
    max-width: 100%;
    height: 39px;
  }

  .header__search-input {
    border-radius: 10px;
    padding: 0 42px 0 13px;
  }

  /* start animate icon burger menu */
  .header__burger-menu-btn {
    width: 20px;
    height: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .header__burger-menu-btn span {
    display: block;
    width: 100%;
    height: 2.6px;
    border-radius: 100px;
    background: #444444;
    transition: 0.3s;
  }

  .header__burger-menu-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header__burger-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .header__burger-menu-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  /* end animate icon burger menu */
  /* -----------------------------END header----------------------------- */

.search-dropdown{
  width: 95vw;
                top: 115px;
}
.crypto-table{
  position: relative;
}
 .crypto-table::before{
    pointer-events: none;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 130px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
 }
 .crypto-table{
  padding-bottom: 0;
 }
  /* -----------------------------START sidemenu----------------------------- */
 
 
  .sidemenu {
    position: fixed;
    right: -100%;
    top: 83px;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 850;
    transition: transform 0.3s ease-in-out;
  }


  .sidemenu.open {
    left: 0;
    padding: 0 10px;
  }

  .sidemenu__nav {
    width: fit-content;
    top: 0;
    padding: 20px 0 0 0;
    width: 100%;
                height: 84vh;
  }

  .sidemenu__list {
    gap: 20px;
  }

  .sidemenu__categories,
  .sidemenu__links {
    padding: 20px 0;
  }

  .sidemenu__promo-btn {
    height: 51px;
    padding: 13px 23px;
    border-radius: 15px;
    gap: 10px;
  }

  .sidemenu__promo-arrow-next {
    padding: 0 0 0 14px;
  }

  .sidemenu__item.active::before {
    height: 41px;
    border-radius: 10px;
  }
  /* -----------------------------END sidemenu----------------------------- */

  /* -----------------------------START content----------------------------- */
  .layout {
    grid-template-columns: 100%;
  }

  .content {
    padding: 10px 0 0 0;
  }

  .content__section-news {
    padding: 30px 0;
  }

  .content__section-title {
    padding: 0 0 25px 0;
  }

  .content__news-list {
    gap: 15px;
    padding: 0 0 15px 0;
  }

  .content__news-btn {
    max-width: 147px;
    height: 34px;
    border-radius: 60px;
    gap: 25px;
  }

  .content__section-articles {
    padding: 30px 0 0 0;
  }

  .content__articles_info {
    padding: 23px 14px 14px 14px;
  }

  .content__articles-text {
    margin: 10px 0 15px 0;
  }

  .content__articles-date {
    gap: 10px;
  }
  /* -----------------------------END content----------------------------- */

  /* -----------------------------START footer----------------------------- */
  footer {
    padding: 35px 0 20px 0;
  }

  .footer__conainer {
    box-shadow: -0.931px -0.931px 2.793px 0px rgba(0, 0, 0, 0.2),
      0.931px 0.931px 2.793px 0px rgba(0, 0, 0, 0.2);
  }

  .footer__menu {
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 100%;
  }

  .footer__social-list {
    order: 1;
    padding-bottom: 30px;
  }

  .footer__menu-list {
    order: 2;
    padding-bottom: 30px;
  }

  .footer__meta {
    order: 3;
  }

  .footer__general,
  .footer__menu-link-policy-item {
    display: none;
  }

  .footer__menu-btn {
    padding: 0 6px;
    width: auto;
    height: 40px;
  }
  /* -----------------------------END footer----------------------------- */

  /* -----------------------------START model sign----------------------------- */
  .modal__sign {
    width: calc(100% - 20px);
    border-radius: 20px;
    max-height: 359px;
  }

  .signin__wrapper {
    max-width: 270px;
  }

  .signin__wrapper-list {
    gap: 13px;
  }

  .signin__wrapper-item {
    height: 44px;
    border-radius: 12.402px;
    border: 0.827px solid #171851;
  }

  .signin__wrapper-item > img {
    width: 16px;
    left: 13px;
  }

  .signin__wrapper-list input {
    height: 44px;
    padding: 0 40px 0 17px;
    border-radius: 12.402px;
    border: 0.827px solid #171851;
  }

  .signin__wrapper-list input::placeholder {
    color: #8f8f8f;
  }

  .modal__sign-btn {
    height: 44px;
    border-radius: 12.402px;
    border: 0.827px solid #171851;
  }
  /* -----------------------------ENd model sign----------------------------- */

  /* -----------------------------START archive.php----------------------------- */
  .categories {
    padding: 30px 0 0 0;
  }

  .categories__tag {
    padding: 0 0 30px 0;
  }

  .custom-breadcrumbs {
    padding: 0 0 30px 0;
  }

  .categories__tag-item {
    padding: 9px 14.5px;
    border-radius: 60px;
    color: #000;
box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.1), 0 0px 3px 0 rgba(0, 0, 0, 0.1);
background: #fff;
  }
 .categories__tag-list{
  padding:5px 0;
 }
  /* -----------------------------END archive.php----------------------------- */

  /* -----------------------------START general pages----------------------------- */
  .general {
    padding: 20px;
  }

  .general-404-error {
    padding: 40px 0;
  }
  /* -----------------------------ENd general pages----------------------------- */

  /* -----------------------------START single.php----------------------------- */
  .information {
    padding: 30px 0 30px 0;
  }

  .information__header-author {
    gap: 7px;
  }

  .information__content img {
    border-radius: 15px;
  }

  .information__header-author-name {
    max-width: 75px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .information__share-popup {
    padding: 15px;
  }

  /* START recommend-slider */
  .recommend-slider__arrow-left {
    position: absolute;
    left: 0;
    bottom: -10px;
  }

  .recommend-slider__arrow-right {
    position: absolute;
    right: 0;
    bottom: -10px;
  }

  .recommend-slider__arrow {
    border: 1px solid #171851;
    border-radius: 5px;
    z-index: 100;
  }

  .recommend-slider__arrow img {
    width: 16px;
    height: 18px;
  }

  .recommend-slider__points-lists {
    gap: 11px;
    padding: 35px 0 0 0;
  }

  .recommend-slider__point {
    width: 7px;
    height: 7px;
  }
  /* END recommend-slider */
  /* -----------------------------ENd single.php----------------------------- */

  /* -----------------------------START profile.php, settings.php----------------------------- */
  .author {
    box-shadow: inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1),
      inset 0px 0.5px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
  }

  .author-profile {
    border-radius: 15px;
  }

  .author-banner > img {
    border-radius: 15px 15px 0 0;
  }
  .author-banner__img-profile {
    top: unset;
    transform: translateY(-50%);
    left: 20px;
    width: 125px;
    height: 125px;
  }

  .author-information__header img {
    width: 21px;
    height: 21px;
  }

  .author-information__tab.active {
    padding: 0 0 10px 0;
  }

  .author-information__write > a > img {
    width: 15px;
    height: 15px;
  }

  .settings {
    border-radius: 15px;
  }

  .image-preview-avatar {
    width: 75px;
    height: 75px;
  }

  .write-post__send {
    max-width: 100%;
    padding: 8.5px 0;
  }
  /* -----------------------------ENd profile.php, settings.php----------------------------- */

  /* -----------------------------START crypto-exchanges.php----------------------------- */
  .crypto-filter__item-btn {
    padding: 9px 19px;
  }
  /* -----------------------------ENd crypto-exchanges.php----------------------------- */


.search-item .article-block{

}
}
/* -----------------------------END Responsive 768px----------------------------- */


