.page[name='notificationSettings'] > .header {
    padding: 24px;
    margin-right: auto;
    margin-left: auto;
}
.page[name='notificationSettings'] > .header > .side > .button {
    padding: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
}
.page[name='notificationSettings'] > .header > .side:first-child > .button {
    border-radius: 20px;
}
.page[name='notificationSettings'] > .header > .side > .button > img {
    display: block;
    width: 24px;
}
.page[name='notificationSettings'] > .header > .center {
    width: calc(100% - 80px);
    text-align: center;
}
.page[name='notificationSettings'] > .header > .center > div {
    padding-top: 18px;
    font-size: 20px;
    font-weight: 500;
}
.page[name='notificationSettings'] > .content {
    position: absolute;
    top: 112px;
    right: 0;
    left: 0;
    padding: 24px;
    margin-right: auto;
    margin-left: auto;
    max-width: 600px;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field {
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 36px;
    font-weight: 500;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .title {
    margin-top: 2px;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item {
    overflow: hidden;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 24px;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch > input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch > .slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    transition: 0.4s;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch > .slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    bottom: 3px;
    transition: 0.4s;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch > input:checked + .slider:before {
    transform: translateX(16px);
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch > .round {
    border-radius: 34px;
}
.page[name='notificationSettings'] > .content > .formWrapper > .fForm > .fields > .field > .item > .switch > .round:before {
    border-radius: 50%;
}

@media (max-width: 1280px) {
    .page[name='notificationSettings'] > .content {
        bottom: 0;
        overflow-y: auto;
    }
}
@media (min-width: 1281px) {
    .page[name='notificationSettings'] {
        overflow-y: auto;
    }
    .page[name='notificationSettings'] > .content {
        border-radius: 16px;
    }
}