* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.content {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    flex-direction: row;
    flex-wrap: nowrap;
}

.display-screen {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    background: #f2f5f8;
    font-family: "Lato", sans-serif !important;
    background: black;
    overflow: hidden;
}

.container {
    background: black;
}

.top-menu-wrapper {
    padding: 5px 0;
    width: 100%;
    height: 60px;
    background-color: #181818;
    margin: auto;
}

.btn-download-windows {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 180px;
    background: linear-gradient(0deg, #006cc5, #008bd1);
    border: 1px solid #5a98d0;
    border-radius: 5px;
    color: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-download-windows:hover {
    text-decoration: none;
    color: white;
    background: #007bff;
    cursor: pointer;
}

.btn-download-windows:active {
    cursor: pointer;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-download-windows div {
    text-align: left;
}

.btn-download-windows div :first-child {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #c9c9c9;
    margin-bottom: 5px;
}

.btn-download-windows div :last-child {
    margin: 0;
    font-size: 16px;
}

.iconDownloadWindows {
    padding: 2px;
    margin-right: 10px;
}

.iconDownloadWindows img {
    width: 28px;
    height: 28px;
}


.top-menu-wrapper__btn-menu {
    display: flex;
    height: 50px;
    width: 100%;
    justify-content: center;
    grid-gap: 26px;
    align-items: center;
}

.top-menu-wrapper__btn-menu__btn {
    padding: 5px;
    border-radius: 5px;
    height: 50px;
}

.demarcation-line {
    height: 40px;
    border: 1px solid #979797;
}

.top-menu-wrapper__btn-menu__btn:hover {
    cursor: pointer;
    background-color: #d9d9d99f;
}

.top-menu-wrapper__btn-menu__btn.btn-point-cloud-show {
    width: 50px;
    content: url("../images/iconPointCloud.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-point-cloud-show:hover {
    content: url("../images/iconPointCloudBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-point-cloud-show.active {
    content: url("../images/iconPointCloudBlack.svg");
    background-color: #d9d9d9;
}

.top-menu-wrapper__btn-menu__btn.btn-3d-show {
    width: 50px;
    content: url("../images/btn3D.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-3d-show:hover {
    content: url("../images/btn3DBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-3d-show.active {
    content: url("../images/btn3DBlack.svg");
    background-color: #d9d9d9;
}

.top-menu-wrapper__btn-menu__btn.btn-point-cloud-and-3d-show {
    width: 75px;
    content: url("../images/icon3d+PointCloud.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-point-cloud-and-3d-show:hover {
    content: url("../images/icon3d+PointCloudBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-point-cloud-and-3d-show.active {
    content: url("../images/icon3d+PointCloudBlack.svg");
    background-color: #d9d9d9;
}

.top-menu-wrapper__btn-menu__btn.btn-2d-show {
    width: 50px;
    content: url("../images/2dBtn.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-2d-show:hover {
    content: url("../images/2dBtnBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-2d-show.active {
    content: url("../images/2dBtnBlack.svg");
    background-color: #d9d9d9;
}

.top-menu-wrapper__btn-menu__btn.btn-dynamics-chart {
    width: 50px;
    content: url("../images/dynamicsChartOct.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-dynamics-chart:hover {
    background-color: #d9d9d96c;
    content: url("../images/dynamicsChartOctBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-dynamics-chart.active {
    background-color: #d9d9d9;
    content: url("../images/dynamicsChartOctBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-table-comparison {
    width: 50px;
    content: url("../images/tableComparisonOct.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-table-comparison:hover {
    background-color: #d9d9d96c;
    content: url("../images/tableComparisonOctBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-table-comparison.active {
    background-color: #d9d9d9c4;
    content: url("../images/tableComparisonOctBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-add-injection {
    width: 50px;
    content: url("../images/addInjection.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-add-injection:hover {
    background-color: #d9d9d9c4;
    content: url("../images/addInjectionBlack.svg");
}

.top-menu-wrapper__btn-menu__btn.btn-add-injection.active {
    background-color: #d9d9d9;
    content: url("../images/addInjectionBlack.svg");
}

.bottom-menu-wrapper {
    display: none;
    padding: 5px 0;
    width: 100%;
    height: 50px;
    bottom: 0;
    background-color: #181818;
}

.bottom-menu-wrapper.active {
    display: flex;
}

.bottom-menu-wrapper__btn-menu {
    display: flex;
    justify-content: center;
    grid-gap: 26px;
    width: 100%;
    height: 40px;

}

.bottom-menu-wrapper__btn-menu__btn:hover {
    width: 40px;
    cursor: pointer;
    background-color: #d9d9d99f;
}

.bottom-menu-wrapper__btn-menu__btn {
    padding: 5px;
    border-radius: 5px;
    height: 100%;
    outline: none;
}

.bottom-menu-wrapper__btn-menu__btn.clipping-3d-y {
    content: url("../images/clipping3d.svg");
}

.bottom-menu-wrapper__btn-menu__btn.clipping-3d-y:hover {
    content: url("../images/clipping3dBlack.svg");
}

.bottom-menu-wrapper__btn-menu__btn.clipping-3d-y.active {
    content: url("../images/clipping3dBlack.svg");
    background-color: #d9d9d9;
}

.bottom-menu-wrapper__btn-menu__btn.zoom-3d {
    content: url("../images/zoom3d.svg");
}

.bottom-menu-wrapper__btn-menu__btn.zoom-3d:hover {
    content: url("../images/zoom3dBlack.svg");
}

.bottom-menu-wrapper__btn-menu__btn.zoom-3d.active {
    content: url("../images/zoom3dBlack.svg");
    background-color: #d9d9d9;
}

.no-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-image-back {
    content: url("../images/imageBack.svg");
    padding: 0 10px;
}

.btn-image-forward {
    content: url("../images/imageForward.svg");
    padding: 0 10px;
}

.btn-image-back:hover {
    cursor: pointer;
}

.btn-image-forward:hover {
    cursor: pointer;
}

.clipping-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px 8px 10px;
}

.clipping-navigation__btns span {
    font-size: 16px;
    color: white;
    font-weight: bold;
}

.clipping-navigation__btns__slash {
    margin: 0 5px;
}

.image-input {
    margin: 0;
    padding: 5px;
    box-shadow: none;
    outline: none;
    border: none;
    text-align: center;
    width: 45px;
    font-size: 16px;
    border-radius: 5px;
    color: white;
    background-color: #3d3d3d;
}

.image-input::-webkit-outer-spin-button,
.image-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.image-input[type=number] {
    -moz-appearance: textfield;
}

.left-menu-wrapper,
.right-menu-wrapper {
    display: flex;
    height: 100vh;
    width: 320px;
    background-color: #181818;
    z-index: 100;
    user-select: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.left-menu-wrapper>div,
.right-menu-wrapper>div {
    width: 100%;
}

.module-show-3d__menu-btns {
    overflow: auto;
    height: calc(100% - 44px);
    padding: 0 5px;
    margin: 5px;
}

.module-show-2d__menu-btns {
    overflow: auto;
    height: calc(100% - 44px);
    padding: 0 5px;
    margin: 5px;
}

.section-modules {
    height: calc(100% - 60px - 74px)
}

.module-show-images {
    height: 50%;
    display: none;
    overflow: hidden;
}

.module-show-images__lable,
.module-show-3d__lable,
.module-show-2d__lable {
    padding: 8px;
    background-color: #343434;
    cursor: row-resize;
    color: white;
}

.module-show-images__lable>p,
.module-show-3d__lable>p,
.module-show-2d__lable>p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.module-show-2d {
    height: 50%;
    display: none;
    overflow: hidden;
}

.module-show-3d {
    height: 50%;
    display: none;
    overflow: hidden;
}

.module-show-3d.active,
.module-show-2d.active,
.module-show-images.active {
    display: block;
}

/* Кнопки zoom */
.range-slider-container {
    height: 18px;
    padding: 0 20px;
}

.range-slider-container__input {
    width: 100%;
    -webkit-appearance: none;
}

.range-slider-container__input:focus {
    outline: none;
}

/* Полоса в Хроме */

.range-slider-container__input::-webkit-slider-runnable-track {
    height: 4px;
    cursor: pointer;
    background: #d2d2d2;
}

/* Бегунок в Хроме */

.range-slider-container__input::-webkit-slider-thumb {
    height: 16px;
    width: 40px;
    border-radius: 7.5px;
    border: 2px solid white;
    background: #4e9be0;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
}

/* Полоса в Мозиле */

.range-slider-container__input::-moz-range-track {
    height: 8px;
    cursor: pointer;
    background: #d2d2d2;
    border: 1px solid #575656;
}

/* Бегунок в Мозиле */

.range-slider-container__input::-moz-range-thumb {
    border: 1px solid #000000;
    height: 15px;
    width: 30px;
    border-radius: 40%/60%;
    background: #ffffff;
    cursor: pointer;
}

.slider:hover {
    opacity: 1;
}

.btn-color {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.name-feature {
    width: 170px;
}

.button-sign.subretinalFluid>div>.btn-color {
    background-color: #1cec00
}

.button-sign.intraretinalCyst>div>.btn-color {
    background-color: #00c8ff
}

.button-sign.DRPE>div>.btn-color {
    background-color: #ff6b00
}

.button-sign.SHRM>div>.btn-color {
    background-color: #a5cb51
}

.button-sign.epiretinalMembrane>div>.btn-color {
    background-color: #f31313
}

.button-sign.retinalDrusen>div>.btn-color {
    background-color: #ffeb68
}

.button-sign.FTMH>div>.btn-color {
    background-color: #4f3191
}

.button-sign.lamellarMacularHole>div>.btn-color {
    background-color: #0011ff
}

.button-sign.VMT>div>.btn-color {
    background-color: #e73dfd
}

.button-sign.sumSubretinalIntraretinalFluid>div>.btn-color {
    background-color: #FFC000
}

.button-sign.visualAcuity>div>.btn-color {
    background-color: #FA0000
}

.button-sign {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 20px 0;
}

.button-sign>p {
    color: white;
    font-weight: bold;
    margin: 0;
    text-align: center;
    font-size: 12px;
}

.button-sign.not-found>p {
    color: #979797;
}

.button-sign.not-found>.btn-color {
    opacity: 40%;
}

.show-sign-btn {
    width: 24px;
    height: 24px;
    content: url("../images/showSignBtnHide.svg");
}

.show-sign-btn.active {
    content: url("../images/showSignBtnShow.svg");
}

.show-sign-btn.not-found {
    content: url("../images/closeEye.svg");
}

.show-sign-btn:hover {
    cursor: pointer;
}

.text-volume {
    width: 100px;
}

.loading-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000bb;
    display: none;
    top: 0;
    z-index: 100
}

.loading-popup>h3 {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    position: relative;
    top: 40%
}

.loading-popup.active {
    display: block;
}

.btns-list-content {
    margin: 5px;
}

.image-list-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    margin: 20px 0;
    padding: 0 10px;
    grid-gap: 15px;
    height: calc(100% - 74px - 34px);
    margin-right: 5px;
}

.image-list-content__btn {
    width: 100%;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    outline: none;
    border: none;
    opacity: 0;
}

.image-list-content__btn.element-show {
    opacity: 1;
    transition: opacity 1s;
}

.image-list-content__btn__content {
    height: 58px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.image-list-content__btn__content img {
    height: 100%;
    background-color: black;
}

.image-list-content__btn p {
    font-size: 16px;
    margin: 0;
}

.image-list-content__btn:hover {
    background: #4F4F4F;
}

.image-list-content__btn.active {
    background: #D9D9D9;
    color: black;
}

::-webkit-scrollbar {
    width: 7px !important;
    height: 7px !important;
}

::-webkit-scrollbar-track {
    background-color: #181818 !important;
    border-radius: 0 !important;
    margin: 0 5px;
}

.image-list-content__btn.active .single-image-report {
    content: url("../images/singleImageReportBlack.svg");
}

.single-image-report {
    width: 27px;
    height: 27px;
    content: url("../images/singleImageReport.svg");
}

.single-image-report:hover {
    transform: scale(1.4);
    cursor: pointer;
}

.print-report {
    padding: 5px 25px 5px 25px
}

.print-report__btn__content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.print-report__btn__content img {
    margin-right: 10px;
}

.print-report__btn {
    width: 100%;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    background: #2B2B2B;
    border: none;
}

.print-report__btn p {
    margin: 0;
}

.print-report__btn:hover {
    background: #4F4F4F;
}

.zoom-3d-minus__btn,
.zoom-3d-plus__btn {
    width: 25px;
    height: 25px;
}

.zoom-3d-minus__btn:hover,
.zoom-3d-plus__btn:hover {
    cursor: pointer;
}

.pop-up-zoom-3d {
    display: none;
    max-width: 300px;
    position: fixed;
    padding: 10px;
    color: black;
    background-color: #D9D9D9;
    border-radius: 10px;
    z-index: 1000;
}

.pop-up-zoom-3d>p {
    margin: 0;
}

.pop-up-zoom-3d.active {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px
}

.window-previous-analysis,
.window-current-analysis {
    width: 100%;
    position: relative;
}

.upload-new-file-btn {
    width: 350px;
    color: #fff;
    left: calc(50% - 175px);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    transition: all 0.3s ease;
    display: inline-block;
    background: #ffffff21;
    border: none;
    top: 10px;
}

.upload-new-file-btn__content {
    height: 35px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
}

.upload-new-file-btn__content>img {
    height: 100%;
    margin-left: 15px;
}

.upload-new-file-btn__content>p {
    margin: 0;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-new-file-btn:hover {
    background: #4F4F4F;
}

.all-menu-btn {
    border-radius: 5px;
    padding: 5px 15px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
    background: #ffffff21;
    border: none;
}

.all-menu-btn:hover {
    background: #4F4F4F;
}

.display-screen-cover-start {
    position: absolute;
    display: block;
    height: 100vh;
    width: 100%;
    background-color: black;
    z-index: 1000;
}

.display-screen-cover-start.invisible {
    display: none;
}

.display-screen-cover {
    display: none;
    height: calc(100vh - 110px);
    position: absolute;
    width: 100%;
    top: 0;
    background-color: black;
    z-index: 1000;
}

.display-screen-cover__text {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    position: relative;
    top: 40%
}

.display-screen-cover.active {
    display: block;
}

.pop-up-top-menu-btn-lable {
    max-width: 300px;
    position: fixed;
    padding: 5px 8px;
    color: black;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #b4b4b48f;
    z-index: 1000;
    animation: fade-in 1s ease-in-out forwards, fade-in 1s ease-in-out reverse forwards 3s;
}

.pop-up-top-menu-btn-lable h5 {
    margin: 0;
    font-size: 15px;
    margin-bottom: 3px;
    font-weight: bold;
    text-align: center;
}

.pop-up-clipping-3d-y {
    display: none;
    max-width: 300px;
    position: fixed;
    padding: 5px 8px;
    color: black;
    background-color: #D9D9D9;
    border-radius: 10px;
    z-index: 1000;
}

.pop-up-clipping-3d-y.active {
    display: block;
}

.clipping-3d-y-slider-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.clipping-3d-y-slider-container>p {
    margin: 0;
    color: black;
    text-align: center;
}

.clipping-3d-y-slider-container>img {
    width: 24px;
    height: 24px;
}

.clipping-3d-y-slider-container__input {
    width: 250px;
    padding: 15px 10px;
    background-color: #D9D9D9;
    -webkit-appearance: none;
}

.clipping-3d-y-slider-container__input:focus {
    outline: none;
}

/* Полоса в Хроме */

.clipping-3d-y-slider-container__input::-webkit-slider-runnable-track {
    height: 4px;
    cursor: pointer;
    background: black;
}

/* Бегунок в Хроме */

.clipping-3d-y-slider-container__input::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 100%;
    background: black;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6px;
}

/* Полоса в Мозиле */

.clipping-3d-y-slider-container__input::-moz-range-track {
    height: 8px;
    cursor: pointer;
    background: black;
}

/* Бегунок в Мозиле */

.clipping-3d-y-slider-container__input::-moz-range-thumb {
    border: 1px solid #000000;
    height: 15px;
    width: 30px;
    border-radius: 40%/60%;
    background: #ffffff;
    cursor: pointer;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-show-images {
    height: calc(100% - 34px);
}

.volume-comparison-table {
    display: none;
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-shadow: 0px 4px 40px rgba(166, 166, 166, 0.3);
}

.volume-comparison-table.active {
    display: block;
}

.volume-comparison-table::-webkit-scrollbar {
    display: none;
}

.volume-comparison-table p {
    margin: 0;
    margin-right: 15px;
}

.volume-comparison-table table {
    width: 100%;
    color: white;
    background-color: #181818;
    border-collapse: collapse;
    padding: 0px;
}

.volume-comparison-table thead {
    font-size: 16px;
    font-weight: bold;
    background-color: #343434;
    border: none;
}

.volume-comparison-table thead th {
    text-align: center;
    padding: 25px 0;
    width: 150px;
}

.volume-comparison-table thead th:first-child {
    text-align: left;
    padding-left: 20px;
    width: 300px;
}

.volume-comparison-table thead th:last-child {
    padding-right: 20px;
}

.volume-comparison-table tbody {
    font-size: 14px;
    font-weight: bold;
    background-color: #181818;
}

.volume-comparison-table tbody td {
    text-align: center;
    padding: 15px 0;
    width: 150px;
}

.volume-comparison-table tbody tr td:first-child {
    text-align: left;
    padding-left: 20px;
    width: 300px;
}

.volume-comparison-table tbody tr td:last-child {
    padding-right: 20px;
}

.volume-comparison-table tbody tr td:last-child span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-comparison-table tbody tr td:last-child img {
    margin-left: 3px;
}

.dynamics-chart-popup {
    display: none;
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: #1e1e1e;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 20px;
    box-shadow: 0px 4px 40px rgba(166, 166, 166, 0.3);
}

.dynamics-chart-popup.active {
    display: flex;
}

.dynamics-chart {
    background-color: #ffffff;
    padding: 5px;
    margin-bottom: 10px;
}


.dynamics-chart-popup__menu-btns {
    height: 100%;
    padding: 5px;
}


.dynamics-chart-popup__content-cart {
    display: flex;
    align-items: center;
    width: 700px;
    flex-direction: column
}


@keyframes fade-in {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}