 .tg-auth-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.tg-auth-block > div {
    width: 50%;
}
a.top-account__tel small {
    display: block;
}
.catalog-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.elem-subscribe {
    background: #f8f7f7;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.subscribe-checked input {
    display: none;
}
.subscribe-checked label {
    position: relative;
    display: block;
    cursor: pointer;
}
.subscribe-checked label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 24px;
    border: 1px solid #cccbcb;
    border-radius: 12px;
    transition: all .3s;
}
.subscribe-checked label:after {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: #cccbcb;
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 50%;
    transition: all .3s;
}
.subscribe-checked input:checked + label:before {
    border-color: red;
}
.subscribe-checked input:checked + label:after {
    background: red;
    left: 17px;
}
.subscribe-checked, .subscribe-delete {
    width: 100px;
}
.subscribe-name {
    width: 100%;
    padding-right: 20px;
}
.delete-subscribe-bt {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.del-dialog {
    display: none;
}
.del-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    max-width: 100%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px lightgray;
}
.del-dialog-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.del-bt {
    cursor: pointer;
    border: 1px solid red;
    padding: 5px 10px;
    color: white;
    background: red;
}
.del-bt.no {
    background: white;
    color: #333;
    border-color: #333;
}
.subscribes-in-catalog .catalog-name {
    display: none;
}
.title-incatalog {
    font-weight: bold;
}
.subscribe-panel {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px lightgray;
    background: white;
    z-index: 100;
}
.subscribe-btn {
    cursor: pointer;
    width: 60px;
    padding: 10px;
}
.subscribe-body {
    display: block;
    position: absolute;
    width: 350px;
    left: 0;
    background: white;
    padding: 10px;
    box-shadow: 0 0 10px lightgray;
    top: 0;
    overflow: hidden;
    transition: all .5s;
    transform: translateX(-100%) translateY(-50%);
}
.opened .subscribe-body {
    transform: translateX(0) translateY(-50%);
}
span.subscribe-close {
    display: block;
    margin: 0 0 0 auto;
    width: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 30px;
    transform: rotate(45deg);
    cursor: pointer;
}
span.subscribe-bt-go {
    background: red;
    color: white;
    padding: 7px 19px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
}
.new-auth-top .ico-tg-auth {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    margin: 0 5px;
} 
.new-auth-top .modal__text {
    margin-bottom: 20px;
}
.new-auth-top small {
    display: block;
    text-align: center;
    color: #a19797;
}
.qr-auth {
    display: block;
    margin: 0 auto;
}
.bt-tg-autj {
    color: #0e6e9f;
    border-bottom: 1px solid;
}
@media screen and (max-width: 575px) {
    .new-auth-top small, .qr-auth, .noauth_block small {
        display: none;
    }
}