

/* Статистика */
.nshp-stat {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    
    margin-bottom: 30px;
}

.nshp-stat .nshp-statistic .html-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    
    margin-bottom: 0;
}

.nshp-stat .nshp-statistic {
    flex: 1 1 100%;
    max-width: calc(100% - 200px);
    margin-right: 10px;
}

.nshp-stat .nshp-statistic-btn {
    width: 190px;
    
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    
    background: #CF2E2E;
    border-radius: 10px;
    border: none;
    
    transition: all .3s;
}

.nshp-stat .nshp-statistic-btn:hover {
    color: #000000;
    background: #CFC6BE;
}

.nshp-stat .nshp-statistic .html-content > div {
    flex: 1 1 25%;
    margin-right: 30px;
    border-right: 1px dashed #CF2E2E;
}

.nshp-stat .nshp-statistic .html-content > div:last-child {
    margin: 0;
    border: 0;
    
}

@media (max-width:1170px) {
    .nshp-stat .nshp-statistic {
        max-width: 100%;
    }
    
    .nshp-stat .nshp-statistic-btn {
        padding: 10px;
        margin-top: 10px;
        width: 100%;
        
        font-size: 20px;
        
        border-radius: 5px;
    }
}

@media (max-width:520px) {
    .nshp-stat .nshp-statistic .html-content > div {
        flex: 1 1 100%;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border: 0;
        border-bottom: 1px dashed #CF2E2E;
    }
}

/* Кнопки */
.nshp-result.col2 {
    margin-top: 30px;
}
.nshp-result.col2 .nshp-r-btn {
    flex: 1 1 45%;
}

/* Модификация уроков */
.nshp-m-lessons.modify li {
    flex: 1 1 45% !important;;
    max-width: calc(100% / 2 - 10px) !important;;
}

.nshp-m-lessons.modify li a {
    padding: 15px 25px 40px;
}

.nshp-m-lessons.modify li.with-image .item-image {
    position: absolute;
    top: 0;
    right: 0;
    
    width: 100px !important;
    height: 100px;
    border-radius: 100px;
    background-size: cover !important;
}

.nshp-m-lessons.modify li.with-image tr::after {
    content: "";
    position: absolute;
    top: 70px;
    right: 0;
    
    width: 30px;
    height: 30px;
    
    background: #CF2E2E;
    border-radius: 100px;
}

.nshp-m-lessons.modify .item-main-td.item-with-image {
    padding: 0;
}

@media (max-width:520px) {
    .nshp-m-lessons.modify li.with-image tr::after {
        display: none;
    }
    
    .nshp-m-lessons.modify li {
        flex: 1 1 100% !important;;
        max-width: 100% !important;; 
    }
}

/* Поиск */
.al_search {
    margin-bottom: 20px;
    padding: 20px;
    background: #CF2E2E;
    border-radius: 10px;
}

.al_search h2 {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.TextInput {
    padding: 12px 15px 10px;
    max-width: 600px;
    width: 100%;
    
    font-family: var(--mf);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    
    background: #ffffff;
    border: none;
    border-radius: 50px;
    
    
    outline: none;
    z-index: 10000;
}

.TextInput::-webkit-input-placeholder,
.TextInput::-moz-placeholder,
.TextInput:-ms-input-placeholder,
.TextInput::-ms-input-placeholder,
.TextInput::placeholder {
    font-family: var(--mf);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

    color: rgba(255,255,255, 0.9) !important;
}

.TextInput.__error {
    background-color: #fcf4f4;
    border: 1px solid #fe7676;
}
.TextInput.__error:focus {
    border-color: rgba(254, 2, 57, 0.38);
    -webkit-box-shadow: 0 0 0 2px rgba(254, 2, 57, 0.38);
    box-shadow: 0 0 0 2px rgba(254, 2, 57, 0.38);
}

.SearchBlock {
    position: relative;
    padding: 10px 0px;
    
    max-width: 600px;
    width: 100%;
}
.SearchBlock__input.__left-icon {
    padding-left: 45px;
}
.SearchBlock__input {
    padding-right: 40px;
    font-size: 14px;
}
.SearchBlock__clear {
    right: 20px;
    cursor: pointer;
}
.SearchBlock__clear,
.SearchBlock__left-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.SearchBlock__left-icon {
    left: 20px;
    color:#CF2E2E;
}
.SearchBlock .TextInput:focus {
    border-color: silver;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.BlockList {
    display: none;
    position: absolute;
    margin-top: 10px;
    max-height: 50vh;
    width: calc(100% - 0px);
    
    background: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);

    overflow: auto;
    z-index: 9999;
}

.TextBlock {
    word-break: break-word;
    white-space: pre-line;
    line-height: 150%;
    color: rgb(153, 153, 153);
    font-weight: normal;
    font-size: 15px;
    padding: 20px 20px 0px;
    margin-top: 0px;
    margin-bottom: 5px;
}
.TextBlock.__clickable {
    cursor: pointer;
}
.TextBlock .TextBlock__empty {
    color: #999;
}
.TextBlock__editor .ProseMirror {
    outline: none;
}

.ScreenBlock {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 75px;
    padding: 10px 10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: inherit !important;
    font-weight: normal;
    font-size: 16px;
    position: relative;
}
.ScreenBlock.__clickable {
    cursor: pointer;
}
.ScreenBlock.__unavailable {
    background: #f0f0f0;
}
.ScreenBlock__left {
    width: 70px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.ScreenBlock__left,
.ScreenBlock__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.ScreenBlock__right {
    overflow: hidden;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}
.ScreenBlock__right-wrapper {
    width: 100%;
    max-height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.ScreenBlock__logo {
    position: relative;
}
.ScreenBlock .ScreenBlock__left.__no-logo {
    width: 10px !important;
}
.ScreenBlock__logo-status {
    position: absolute;
    right: -3px;
    bottom: -3px;
}
.ScreenBlock__item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    line-height: 16px;
}
.ScreenBlock__item-title-left {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding-right: 5px;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}
.ScreenBlock__item-title-left--with-description {
    margin-bottom: 3px;
}
.ScreenBlock__item-title-right {
    white-space: nowrap;
}
.ScreenBlock__item-unread-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #2381cc;
    margin-right: 5px;
}
.ScreenBlock__item-time {
    font-size: 13px;
    color: #9f9f9f;
    margin-right: 10px;
}
.ScreenBlock__description {
    font-size: 13px;
    line-height: 15px;
    max-height: 30px;
    opacity: 0.6;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 5px;
}
.ScreenBlock.__selected {
    background-color: #2788cc !important;
    color: #fff !important;
}
.ScreenBlock.__selected .ScreenBlock__description,
.ScreenBlock.__selected .ScreenBlock__item-time {
    color: #fff !important;
}
.ScreenBlock.__medium {
    height: 60px;
    padding: 7px 0;
}
.ScreenBlock.__medium .ScreenBlock__left {
    width: 60px;
}
.ScreenBlock.__medium .ScreenBlock__description {
    max-height: 15px;
}
.ScreenBlock.__small {
    height: 50px;
    padding: 7px 0;
}
.ScreenBlock.__small .ScreenBlock__left {
    width: 50px;
}
.ScreenBlock.__small .ScreenBlock__description {
    white-space: nowrap;
}
.ScreenBlock.__mini .ScreenBlock__item-title-left {
    font-weight: 400;
    font-size: 12px;
}
.ScreenBlock.__mini .ScreenBlock__left {
    width: 30px;
}
.ScreenBlock.__mini {
    height: 30px;
    padding: 7px 0;
}
.Logo {
    height: 50px;
    width: 50px;
    border-radius: 5px;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 23px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    color: white;
    background-color: rgb(246, 139, 45);
    font-size: 23px;
}
.Logo.__circle {
    border-radius: 50px;
}
.Logo.__large {
    height: 50px;
    width: 50px;
}
.Logo.__medium {
    height: 40px;
    width: 40px;
}
.Logo.__small {
    height: 30px;
    width: 30px;
}
.Logo.__mini {
    height: 20px;
    width: 20px;
}
.Logo.__default:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.5)), to(hsla(0, 0%, 100%, 0)));
    background: linear-gradient(hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 100%, 0));
    border-radius: 5px;
}
.Logo.__circle.__default:after {
    border-radius: 50px;
}

@media (max-width:660px) {
    .BlockList {
        width: 350px;
    }
}

@media (max-width: 375px) {
    .BlockList {
        width: 300px;
    }
}

@media (max-width: 320px) {
    .BlockList {
        width: 250px;
    }
}

/* Продление доступа */
.tr-tarifs {
	margin: 20px 0;
    padding: 25px 25px 15px;
    
    text-align: center;

    background: #D0C6BD;
    border: 1px solid rgba(35, 31, 32, 0.15);
    border-radius: 10px;
}

.tr-tarifs .trt-msg {
    margin-bottom: 5px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 15px;
   text-transform: uppercase;
    color: #060517;
}

.tr-tarifs .value {
    font-family: var(--font);
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    color: #CF2E2E;
    text-transform: uppercase;
}

.tr-tarifs .subsubscribeDate {
    display: block;
    margin: 5px auto 10px;
    font-family: var(--font_sub);
    font-weight: 400;
    font-size: 14px;
    color: rgba(6, 5, 23, 0.5);
    letter-spacing: 0.03em;
}

.tr-tarifs .prolong-info {
    margin: 0 auto 10px;
    width: 80%;
    font-family: var(--main-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #060517;
}

.tr-tarifs .prolong-info a {
    font-weight: 400;
    color: #FEDA31;
}

.tr-tarifs .trt-btn {
    margin: 0px auto 10px;
    padding: 10px 20px;
    width: 100%;
    
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D0C6BD;
    
    background: #CF2E2E;
    border: none;
    border-radius: 10px;
    transition: all .3s;
}

.tr-tarifs .trt-btn:hover {
  	background: #1B191A;  
}

.tr-tarifs .standard-form {
    display: none;
    margin-bottom: 20px;
    
    color: #fff;
    text-align: left;
    
    background: #343132;
    border-radius: 10px;
}

.tr-tarifs .standard-form .text-muted {
    display: none;
}

.tr-tarifs .prolong-link {
    display: inline-block;
    margin-top: 10px;
    color: #D0C6BD;
    
    border-color: #D0C6BD !important;
    
    transition: all .3s;
}

.tr-tarifs .prolong-link:hover,
.tr-tarifs .prolong-link:focus {
    color: #ffffff;
    border: none;
}

.tr-tarifs .user-product-block .prolong-offers label {
    margin-left: 25px !important;
}

.tr-tarifs input[type=checkbox], 
.tr-tarifs input[type=radio] {
    margin: 2px 4px 0 -8px !important;
}

.tr-tarifs .btn-prolongate {
    margin: 0px auto 10px;
    padding: 10px 20px;
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D0C6BD;
    background: #CF2E2E;
    border: none;
    border-radius: 10px;
    transition: all .3s;
}

.tr-tarifs .prolong-offers {
    padding-bottom: 0 !important;
}
