html, body {
    scroll-behavior: smooth;
}


.only-mobile {
    display: block;
}
.only-desktop {
    display: none;
}

@media (min-width: 1240px) {
    .only-mobile {
        display: none;
    }
    .only-desktop {
        display: block;
    }
}

.new-goto-reviews-btn {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #B3C9FF !important;
    min-height: 36px;
    cursor: pointer;
}
.new-goto-reviews-btn .title {
    font-size: 14px;
    text-decoration: underline;
    color: #212529 !important;
}
.new-goto-reviews-btn .count {
    border-radius: 3px;
    background-color: #2970FF;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    padding: 0 1.5px;
}
.new-goto-reviews-btn .icon-normal {
    display: block;
}
.new-goto-reviews-btn .icon-active {
    display: none;
}

.new-goto-reviews-btn:hover {
    border: 1px solid #2970FF;
    background-color: #DBE8FF;
    text-decoration: none;
}
.new-goto-reviews-btn:hover .title {
    color: #2970FF !important;
}
.new-goto-reviews-btn:hover .icon-normal {
    display: block;
}
.new-goto-reviews-btn:hover .icon-active {
    display: none;
}

.new-goto-reviews-btn:focus {
    box-shadow: 0px 0px 7px 0px #266CFA;
    border: 1px solid #ACC4FF;
    background-color: #DBE8FF;
}
.new-goto-reviews-btn:focus .title {
    color: #2970FF !important;
}
.new-goto-reviews-btn:focus .icon-normal {
    display: block;
}
.new-goto-reviews-btn:focus .icon-active {
    display: none;
}

.new-goto-reviews-btn:active {
    border: 1px solid #0046EB;
    background-color: #0046EB;
}
.new-goto-reviews-btn:active .title {
    color: #ffffff !important;
}
.new-goto-reviews-btn:active .count {
    background-color: #ffffff;
    color: #0046EB;
}
.new-goto-reviews-btn:active .icon-normal {
    display: none;
}
.new-goto-reviews-btn:active .icon-active {
    display: block;
}

.new-goto-reviews-btn:disabled {
    border: 1px solid #D4E1FF;
    background-color: #DBE8FF;
}
.new-goto-reviews-btn:disabled .title {
    color: #96B5FF !important;
}
.new-goto-reviews-btn:disabled .count {
    background-color: #96B5FF;
    color: #ffffff;
}
.new-goto-reviews-btn:disabled .icon-normal {
    display: block;
}
.new-goto-reviews-btn:disabled .icon-active {
    display: none;
}


.new-goto-btn {
    height: 36px;
    background: linear-gradient(90deg, #5890FF, #2D67DD);
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    cursor: pointer;
    border: none !important;
}
.new-goto-btn .title {
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    color: white !important;
}
.new-goto-btn .icon-normal {
    display: block;
}
.new-goto-btn .icon-disabled {
    display: none;
}

.new-goto-btn:hover {
    background: #154FEF;
}

.new-goto-btn:focus {
    background: #5280FF;
    box-shadow: 0px 0px 5.8px 0px #154FEF;
}
.new-goto-btn:active {
    background-color: #002E9A;
}

.new-goto-btn:disabled {
    background-color: #DBE8FF;
}
.new-goto-btn:disabled .title {
    color: #96B5FF;
}
.new-goto-btn:disabled .icon-normal {
    display: none;
}
.new-goto-btn:disabled .icon-disabled {
    display: block;
}


.btn-goto-tg {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #DEEFFF;
    background-color: #EAF4FE;
    border-radius: 12px;
}


.comments__item__text a {
    border-bottom: none !important;
}

.sidebar_new {
    position: sticky;
    overflow-y: auto;
    overflow-x: hidden;
    top: 70px;
    height: calc(100dvh - 70px);
}
.sidebar_new::-webkit-scrollbar {
    width: 0px;
}