.loader-dots .dot1{
    animation: load 1s infinite;
}
.loader-dots .dot2{
    animation: load 1s infinite;
    animation-delay: 0.2s;
}
.loader-dots .dot3{
    animation: load 1s infinite;
    animation-delay: 0.4s;
}

@keyframes load{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes l8 {
    100% {background-position: top left}
}

.articles {
    border-radius: 16px;
    padding: 32px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.articles_header {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.articles_body {}
.articles_list,
.articles_preinit {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.articles_list {
    display: none;
}
.articles_preinit_item {
    height: 20px;
    aspect-ratio: 1;
    border-radius: 3px;
    background:
            linear-gradient(to bottom right,#0000 calc(50% - 40px),#ccc 50%,#0000 calc(50% + 40px))
            bottom right/calc(200% + 80px) calc(200% + 80px)
            #f1f1f1;
    animation: l8 1s infinite ;
}
.articles_preinit_item.one {
    width: 35%;
}
.articles_preinit_item.two {
    width: 45%;
}
.articles_preinit_item.three {
    width: 55%;
}
.articles_preinit_item.four {
    width: 85%;
}
.articles_preinit_item.five {
    width: 95%;
}
.articles_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: stretch;
    justify-content: flex-start;
    gap: 16px;
}
.articles_item svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}
.articles_item a {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
}
.articles_item.bold a {
    font-weight: 700;
}
.articles_item a:hover {
    color: #357FFC;
}
.articles_item_ad {
    position: relative;
    font-size: 12px;
}
.articles_item_ad_label {
    border-radius: 8px;
    padding: 3px 8px;
    background: #F6F7F8;
    color: #000;
    cursor: pointer;
    display: block;
    line-height: 14px;
}
.articles_item_ad_modal {
    position: absolute;
    z-index: 100;
    bottom: 30px;
    width: 300px;
    left: 0;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #F1F1F1;
    background: #F6F7F8;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 20px;
    box-shadow: 1px 1px 3px #ccc;
}
.articles_item_ad_modal svg {
    flex: 0 0 20px;
    cursor: pointer;
}
.articles_footer {
    display: flex;
    align-items: flex-start;
}
.articles_more {
    text-decoration: none;
    color: #357FFC;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(53, 127, 252, 0.10);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.00) inset;
    display: flex;
    justify-content: center;
    align-items: center;
}

.articles.init .articles_list {
    display: flex;
}
.articles.init .articles_preinit {
    display: none;
}