div.news-list {
    word-wrap: break-word;
}
div.news-list img.preview_picture {
    float:left;
    margin:0 4px 6px 0;
}
.news-date-time {
    color:#486DAA;
}
.project-popup {
    display:none;
    position:fixed;
    top:118px;
    bottom:0;
    left:0;
    right:0;
    overflow-y:scroll;
    overflow-x:hidden;
    z-index:100;
    background:#fff;
    border-radius:20px 20px 0 0;
}
.project-popup__inner {
    position:relative;
    padding:30px 16px;
}
.project-popup__close {
    position:absolute;
    right:20px;
    top:20px;
    width:38px;
    height:38px;
    border-radius:50%;
    background-color:#0B80F7;
    cursor:pointer;
    line-height:0;
}
.project-popup__shadow {
    display:none;
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:99;
    background-color:rgba(3,38,74,0.78);
}
.e-project-popup-open .project-popup__shadow {
    display:block;
}
.project-popup.active {
    display:block;
}
@media (min-width:768px) {
    .project-popup {
        width:1100px;
        overflow:visible;
        max-height:90vh;
        margin:0;
        left:50%;
        top:50%;
        bottom:auto;
        transform:translateY(-50%) translateX(-50%);
        border-radius:20px;
    }
    .project-popup__inner {
        padding:40px;
    }
    .project-popup__close {
        right:40px;
        top:40px;
    }
    .project-popup_wide {
        width:80vw;
        max-width:1246px;
    }
}
.project-popup__suptitle {
    font-size:16px;
    color:#9AA8B7;
    margin-bottom:10px;
}
.project-popup__subtitle {
    font-size:18px;
}
.project-popup__title {
    font-weight:800;
    font-size:32px;
    line-height:1.2;
    padding-right:200px;
    margin-bottom:14px;
}
.project-popup__description > div:first-child {
    margin-top:14px;
}
.project-popup__description > div {
    margin-bottom:14px;
}
.project-popup__description > div:last-child {
    margin-bottom:0;
}
.project-popup__description-item {
    font-size:16px;
    color:#9AA8B7;
}
.project-popup__description-item span {
    color:#03264A;
}
.project-popup__image-slider {
    margin-bottom:20px;
}
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #edf0f6;
    border-radius: 15px;
}

.slider__container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider__image {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain; 
    margin-left: 0;
}
.slider__prev,
.slider__next {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background-color:white;
    border:none;
    width:40px;
    height:40px;
    cursor:pointer;
    font-size:24px;
    color:#0B80F7;
    border-radius:50%;
    z-index:10;
}
.slider__prev {
    left:10px;
}
.slider__next {
    right:10px;
}
.slider__indicators {
    display:flex;
    justify-content:center;
    margin-top:10px;
}
.slider__indicator {
    width:80px;
    height:4px;
    background-color:#edf0f6;
    margin:0 5px;
    border-radius:2px;
    transition:background-color 0.3s ease;
    cursor:pointer;
}
.slider__indicator.active {
    background-color:#0B80F7;
}
.project-popup__image-slider {
    margin-top:20px;
    margin-bottom:20px;
}
.select__options {
    max-height: 400px; 
    overflow-y: auto;
    position: relative;
}

.select__options::-webkit-scrollbar {
    width: 8px;
}

.select__options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.select__options::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}