

.section{
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.faq-wrapp{
    display: flex;
}

.faq-sections{
    max-width: 202px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.faq-section-item{
    width: 100%;
    border-radius: 15px;
    padding: 12px 24px;
    color: var(--text);
    margin-bottom: 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: .2s ease-in-out;
}

.faq-section-item:hover{
    background: var(--background-navbar);
}

.faq-section-item:last-child{
    margin-bottom: 0;
}

.faq-section-item.isActive{
    background: var(--background-navbar);
    color: #fff;
    cursor: default;
}

.faq-content{
    width: 100%;
    margin-left: 24px;
}

.faq-content-item{
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 12px;
    height: max-content;
    overflow: hidden;
    background: var(--background-navbar);
}

.faq-content-item:hover .faq-content-item-title{
    color: rgba(218, 218, 218, 1);
}

.faq-content-item:last-child{
    margin-bottom: 0;
}

.faq-content-item-title{
    display: flex;
    padding: 18px 36px;
    align-items: center;
    justify-content: space-between;
    color: #A1A3AD;
    transition: .3s ease-in-out;
    background: var(--background-navbar);
}

 .faq-content-item-title img{
    transition: .3s ease-in-out; 
 }

.faq-content-item.isActive .faq-content-item-title img{
    transform: rotate(180deg);
}

.faq-content-item.isActive .faq-content-item-title{
    color: #fff; 
}

.faq-content-item-body{
    display: none;
    height: auto;
    color: #A1A3AD;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.faq-content-item-body span{
    padding: 0 36px;
    padding-bottom: 18px;
    margin: 0;
    display: block;
}

.chat-supp-wrapp{
    width: 100%;
    margin-bottom: 24px;
    display: flex;
}

.telegram-chat-supp{
    max-width: calc(55% - 24px);
    width: 100%;
    background: #279FDA;
}

.vk-chat-supp{
    max-width: 45%;
    margin-left: 24px;
    width: 100%;
    background: #1982FF;
}

.chat-supp-item{
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    padding: 18px 24px;
}

.chat-supp-item-left{
    display: flex;
    align-items: center;
}

.chat-supp-item-left .img{
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 24px;
    background: rgba(255, 255, 255, .1);
    border-radius: 15px;    
}

.chat-supp-item-left .img svg{
    width: 22px;
}

.chat-supp-item-left .img svg path{
    fill: #fff;
}

.chat-supp-item-right{
    background: rgba(255, 255, 255, .1);
    display: flex;
    padding: 12px 24px;
    border-radius: 15px;
    color: #fff;
    transition: .3s ease-in-out;
}

.chat-supp-item-right:hover{
    background: rgba(255, 255, 255, .25);
}

.chat-supp-item-right img{
    transition: .3s ease-in-out;    
}

.chat-supp-item-right:hover img{
    transform: rotate(-45deg);
}

.chat-supp-item-right img{
   margin-right: 12px; 
}

.chat-supp-item-left span{
    font-size: 16px;
    font-weight: 600;
}

.chat-supp-item-left p{
    color: #dadada;
    font-size: 14px;
    font-weight: 400;
    margin-top: 3px;
}

.chat-supp-item-left p span{
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 820px) {

}

@media (max-width: 500px) {

}