.not-supported {
    width: 100%;
    text-align: center;
    background: white;
}

.not-supported .not-supported-icon {
    width: 70px;
}
.not-supported .not-supported-block {
    margin-right: 30px;
}
.not-supported .not-supported-block:last-child {
    margin-right: 0;
}

.not-supported .title {
    font-size: 20px;
    margin-top: 150px;
    margin-bottom: 40px;
    color: var(--color-slate);
    font-weight: var(--base-font-weight-bold);
}

.container.not-supported-header #logo {
    height: 50px;
    margin-top: 5px;
}
.container.not-supported-header {
    height: 60px;
    align-items: center;
}

.not-supported.mobile {
    position: absolute;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 4px;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,.2);
    transition: opacity .3s ease-in-out;
}
.not-supported.mobile img {
    height: 58px;
    display: inline-block;
    margin: 50px 0 25px;
    vertical-align: middle;
}
.not-supported.mobile .header {
    background: rgba(241,241,241,0.8);
}

.not-supported.mobile .main-text {
    margin-top: 50px;
    font-weight: var(--base-font-weight-bold);
    line-height: 2em;
    color: #585858;
    margin-bottom: 60px;
}

.not-supported.mobile .proceed-btn {
    background: hsla(0,0%,95%,.8);
    padding: 10px 70px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--base-text-color);
    cursor: pointer;
}