

.hystmodal__shadow {
    position: fixed;
    border: none;
    display: block;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 98;
    opacity: 0;
    transition: opacity 0.15s ease;
    background-color: black;
}

.hystmodal__shadow--show {
    pointer-events: auto;
    opacity: 0.2;
}

.hystmodal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    pointer-events: none;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    z-index: 99;
    visibility: hidden;
}

.hystmodal--active {
    pointer-events: auto;
    opacity: 1;
}

.hystmodal--active .hystmodal__window {
    opacity: 1;
}

.hystmodal--moved {
    pointer-events: auto;
    opacity: 1;
}

.hystmodal__wrap {
    flex-shrink: 0;
    flex-grow: 0;
    width: 100%;
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.hystmodal__window {
    position: relative;
    margin: 50px 0;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
    background: #fff;
    width: 600px;
    max-width: 100%;
    overflow: visible;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.hystmodal__close {
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    display: block;
    width: 30px;
    height: 30px;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23fff%27 stroke=%27%23fff%27 stroke-linecap=%27square%27 stroke-miterlimit=%2750%27 stroke-width=%272%27 d=%27M22 2L2 22%27/%3E%3Cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27square%27 stroke-miterlimit=%2750%27 stroke-width=%272%27 d=%27M2 2l20 20%27/%3E%3C/svg%3E");
    background-size: 100% 100%;
    border: none;
    font-size: 0;
    cursor: pointer;
    outline: none;
    transition: color 300ms ease-in-out;
}

.hystmodal__close svg {
    fill: currentColor;
}

.hystmodal__close:hover {
    color: red;
}

.hystmodal__close:focus {
    color: red;
    outline: 2px dotted #afb3b9;
    outline-offset: 2px;
}

.hystmodal__close:active {
    color: inherit;
}

.hystmodal.hystmodal--cookie .hystmodal__wrap {
    justify-content: flex-end;
}

.hystmodal.hystmodal--cookie .hystmodal__window {
    background-color: #404040;
    width: 100%;
    margin-bottom: 0;
}

.hystmodal.hystmodal--cookie .hystmodal__window .hystmodal__close {
    display: none;
}

.hystmodal.hystmodal--cookie .hystmodal__window .modal-content {
    color: #fff;
    overflow: hidden;
    padding: 24px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media screen and (min-width: 1200px) {
    .hystmodal.hystmodal--cookie .hystmodal__window .modal-content {
        justify-content: space-between;
        max-width: 1120px;
        margin: 0 auto;
    }
}

.hystmodal.hystmodal--cookie .hystmodal__window a {
    display: inline;
}

.hystmodal.hystmodal--cookie .hystmodal__window .subtitle {
    font-weight: 400;
    font-size: 20px;
}

.hystmodal.hystmodal--cookie .hystmodal__window .btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 768px) {
    .hystmodal.hystmodal--cookie .hystmodal__window .btn-wrapper {
        flex-direction: row;
    }
}

.hystmodal.hystmodal--cookie .hystmodal__window .btn {
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 0;
    padding: 12px 34px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .hystmodal.hystmodal--cookie .hystmodal__window .btn {
        max-width: max-content;
    }
}

.hystmodal.hystmodal--cookie .hystmodal__window .btn:hover,
.hystmodal.hystmodal--cookie .hystmodal__window .btn:focus {
    transform: scale(1.05);
}

.hystmodal.hystmodal--cookie .hystmodal__window .btn:active {
    transform: scale(1);
}

.hystmodal.hystmodal--burger .hystmodal__wrap {
    justify-content: flex-start;
}

.hystmodal.hystmodal--burger .hystmodal__window {
    margin: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.87);
}

.hystmodal.hystmodal--burger .hystmodal__close {
    top: 24px;
    right: 24px;
}

.hystmodal.hystmodal--burger .container {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hystmodal.hystmodal--burger .container.vhfull {
    min-height: calc(100vh - 193px);
}

.hystmodal.hystmodal--burger .navigation {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hystmodal.hystmodal--burger .navigation .logo {
    max-width: max-content;
}

.hystmodal.hystmodal--burger .navigation .link {
    color: #464646;
    font-size: 20px;
}

.hystmodal.hystmodal--burger .navigation .link:hover,
.hystmodal.hystmodal--burger .navigation .link:focus {
    color: #fff;
}

.hystmodal.hystmodal--burger .navigation .btn {
    color: #fff;
}

.hystmodal.hystmodal--burger .list__item {
    margin-bottom: 10px;
}

.hystmodal.hystmodal--burger address {
    font-size: 20px;
}

.hystmodal.hystmodal--burger .footer {
    width: 100%;
    padding: 24px;
}

.burger-btn {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

@media screen and (min-width: 1200px) {
    .burger-btn {
        display: none;
    }
}

.title2{
    font-size: 50px;
}