﻿.schemeitem {
    cursor: pointer;
    filter:grayscale(0.9);
}

.schemeitem.hover {
    filter: grayscale(0);
}

.schemeitem.parking:hover {
    filter: grayscale(0);
}

.schemeitem.ulic:hover {
    filter: grayscale(0);
}

.cls-72{
    opacity:0.75!important
}

.cls-1{
    opacity:0.5;
}


.modal {
    position: absolute;
    visibility: hidden;
    top: -1000px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
    overflow: hidden;
}

.modal_active {
    position: fixed;
    top: 0;
    visibility: visible;
    animation: ani 0.5s forwards;
}

@@keyframes ani {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal__content {
    width: 100%;
    max-width: 700px;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 5px 15px black;
    font-family: "ErasMediumC";
}

.modal__close-button {
    background: #ff0000;
    height: 30px;
    width: 30px;
    font-size: 30px;
    margin-top: 5px;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    cursor: pointer;
    outline: none;
}

.modal__title {
    font-size: 24px;
    font-family: "ErasMediumC";
}

.modal__description {
    font-size: 16px;
    font-family: "ErasMediumC";
}

.hiddenBody {
    opacity: 0;
}