* {
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

ul {
    margin-inline-start: 0;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

h1 {
    display: block;
    font-size: unset;
    margin-block-start: unset;
    margin-block-end: unset;
    margin-inline-start: unset;
    margin-inline-end: unset;
    font-weight: unset;
    unicode-bidi: unset;
}

p {
    padding-left: 50px;
}

a {
    text-decoration: none;
    color: unset;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    height: 80vh;
    margin-left: auto;
    margin-right: auto;
}

.container--flex {
    position: static;    
    display: flex;
    flex-direction: row;
    max-width: 900px;
}

.arrows-wrap {
    position: relative;
    height: 80vh;
    background-color: #008f86;
}

.page-up{
    position: absolute;
    content: url(img/arrow.svg);
    bottom: 40px;
    right: -25px;

    cursor: pointer;
}

.page-down{
    position: absolute;
    content: url(img/arrow.svg);
    bottom: 5px;
    right: -25px;    
    transform: rotate(180deg);
    cursor: pointer;
}

.page-down:hover, .page-up:hover {
    /* box-sizing: border-box;
    border: 1px solid transparent; */
    /* filter: drop-shadow(0 0 0.25rem #9d9d9d); */
}

.arrow {
    background-color: #16161675;
}

.header {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    padding-left: 8px;
    margin-bottom: 30px;
}

.header__title {
    box-sizing: border-box;
    padding-top: 15px;
    font-size: 21px;
    font-weight: normal;
    font-family: 'Segoe UI', sans-serif;    
}

.line{
    width: 1px;
    height: 80vh;
    border-left: 2px solid #d9d9d9;    
}

.nav-list {
    position: relative;          
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding-left: 15px;
    padding-right: 30px;
    padding-top: 0;
    list-style: none;
    font-weight: bold;
    font-weight: 400;
    font-size: 20px;
    color: #9d9d9d;
   
}


.nav-list__item {
    position: relative;
    cursor: pointer;
}

.nav-list__item--active {
    color: #000;
}
.active {
  font-size: 32px;
    color: #000;
}

.nav-list::after {    
    content: url(img/romb.svg);    
    position: absolute;    
    width: 11px;
    height: 11px;    
    bottom: 45px;
    right: -5px;    
}


.nav-pointer {
    position: absolute;    
    content: url(img/selected.svg);
    right: 0;
    transform: translateX(5px);    
    /* display: none; */
}

.release-cards {
    position: relative;       
    height: auto;
    /* width: 550px;  */
    height: 80vh;
    overflow-y: scroll;    
    overflow-x: visible;
    -ms-overflow-style: none;    
    scrollbar-width: none;
    margin-bottom: 45px;
    padding-left: 6.5px;
    transform: translateX(-7px);
    z-index: 5;    
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}



.release-cards__item {
    padding-bottom: 40px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
    width: 100%;
}

.release-header {
    padding-bottom: 25px;
}

.release-version {
    position: relative;
    padding-left: 15px;
    font-weight: 700;
    font-size: 20px;
    color: #000;

}

.release-version:hover {
  
}

.release-version::after {
    position: absolute;
    content: url(img/save.svg);
    width: 16px;
    height: 16px;
    padding-left: 10px;

}

.release-version--nolink::after {
    content: ' ';
}

.release {
    min-height: 450px;
    /* height: 100%; */
    padding-bottom: 40px;    
    scroll-snap-align: start;
}

.release-date {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    color: #9d9d9d;    
    padding-left: 15px;
    padding-bottom: 5px;
}

.release-date::after {
    position: absolute;
    content: url(img/romb.svg);
    width: 12px;
    height: 12px;
    left: -7px;
    z-index: 100;    
}

/* .release-title {
    font-weight: 700;
    font-size: 15px;
    color: #008f86;
    padding-left: 30px;
    margin-bottom: 15px;
} */

h3 {
    font-weight: 700;
    font-size: 15px;
    color: #008f86;
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.release-text {
    padding-left: 30px;
    font-size: 14px;
    line-height: 190%;
}

ul, .text-list {
    padding-left: 35px;
    font-size: 12px;
    list-style-type: none;
}

ol {
 padding-left: 35px;    
 list-style-type: none;
}

ul {
padding-left: 45px;
list-style-type: disc;
}

.para-comment {
    font-style: italic;
}

.image-wrapper {
    position: relative;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.image {
    width: 60%;
    cursor: zoom-in;
    transition: all 0.5s ease-in-out;
}

.image:hover {
    scale: 1.25;
    background-color: white;
    padding: 5px;
    transition: all 0.5s ease-in-out;
    transition-delay: 0.5s;
    filter: drop-shadow(0 0 0.25rem #9d9d9d);
    z-index: 100;
}

@media (max-width: 760px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .nav-list {
        font-size: 16px;
    }


}

.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: background-color 0.5s ease;
}
.preloader {
    display: block;
    position: relative;
    width: 150px;
    height: 150px;
    margin: 30px auto;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #008f86;
    animation: preloader-5-spin 2s linear infinite;
}
.preloader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #54686f;
    animation: preloader-5-spin 3s linear infinite;
}
.preloader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9f0412;
    animation: preloader-5-spin 3.5s linear infinite;
}

@keyframes preloader-5-spin {
    0%   {
        transform: rotate(0deg);
  }
    100% {
        transform: rotate(360deg);
  }
}

table {
    width: 100%;
    text-align: center;
}