.site-preloader-wrap {
position: fixed;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.9);
z-index: 11;
bottom: 0;
top: 0;
}

.spinner {
    width: 3em;
    height: 3em;
    left: 50%;
    top: 50%;
    margin: -1.5em 0 0 -1.5em;
    border-radius: 50px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10em;
    position: absolute;
}

.spinner img {width:100%;height:100%;}

/* хром, сафари */
.element::-webkit-scrollbar { width: 0; }

/* ie 10+ */
.element { -ms-overflow-style: none; }

/* фф (свойство больше не работает, других способов тоже нет) */
.element { overflow: -moz-scrollbars-none; }
	




* {
outline:none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}


::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #ABABBB;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #ABABBB;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #ABABBB;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #ABABBB;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #ABABBB;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #ABABBB;
}


input::-webkit-date-and-time-value {
  text-align: left;
}


a {
    color:#fff;
    text-decoration: none;
}

.vibroframe {
    border: none;
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
    display: none;
}

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
color:#444444;
background-color: #fff;
/* for safari’s tint */
background-color: #fff;
/* for the document’s body background color */
background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);

    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);
	    overflow-x: auto;
}


section::-webkit-scrollbar {
 display: none;
}



.head {
    display: flex;
    width: 100%;
    padding: 6px 16px;
    float: left;
    box-sizing: border-box;
    align-items: center;
    height: 44px;
    line-height: 44px;
}

.head strong {
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
    float: left;
    font-size: 17px;
    font-weight: 500;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.head strong img {
	margin-top: 28px;
}

.head.bg {
	background: #4429cc;;
}
.head.bg strong {color:#fff;}


.head a {
    height: 22px;
    width: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 16px 0 0;
}

.head a.right {margin:0;}

.head i {
	width: 26px;
    min-width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* Модалка */
.modal {
    display: inline-block;
    position: fixed;
    left: 0;
    background: #fff;
    width: 100%;
    height: calc(100% - 44px);
    box-sizing: border-box;
    visibility: hidden;
    top: 101vh;
    transition: all .3s;
}
.modal .modal_content {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 17px 16px 19px 16px;
    background: #FBFBFB;
    height: calc(100% - 40px);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px 20px 0 0;
}
.modal.show {
    visibility: visible;
    top: 44px;
}
.modal.show .modal_content {}

.modal .modal_title {
	height: 40px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal .modal_title p {
    margin: 0;
    display: inline-block;
    font-size: 17px;
    color: #5433EB;
}
.modal .modal_title .close {
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    min-width: 26px;
}
.modal .modal_title .close svg {}
.modal .modal_content .filter_list {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px 20px;
}



.modal .modal_content .action {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 0 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.modal .modal_content .action .btn {
    margin: 0;
    padding: 0;
    border: none;
    font-family: inherit;
    background: #5433EB;
    height: 52px;
    line-height: 52px;
    width: 100%;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    background: linear-gradient(92.04deg, #6D29DE 8.23%, #5433EB 22.93%, #5433EB 73.41%, #4F6CCA 95.86%);
    border-radius: 22px;
}
.modal .modal_content .action .btn:disabled {
    background: #F1F1FC;
    color: #D0D0EE;
}
.modal .modal_content .action .reset {
    display: inline-block;
    padding: 0 16px;
    line-height: 28px;
    color: #333333;
    font-size: 17px;
    font-weight: 200;
}
/* Модалка */


/* Фильтры */

.modal .modal_content .filter_list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    float: left;
    flex-direction: column;
}

.fltr_checkbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px 20px;
    width: 100%;
    float: left;
}

.fltr_checkbox input, .fltr_radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
    width: 1px;
    height: 1px;
}
.fltr_checkbox input+label {
    background: #F1F1FC;
    display: flex;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 38px 0 14px;
    border-radius: 32px;
    position: relative;
    font-size: 15px;
    color: #5433EB;
	user-select: none;
}
.fltr_checkbox input+label::before, .fltr_checkbox input+label::after {
    content: '';
    position: absolute;
    background: #5433EB;
    width: 9px;
    height: 1.5px;
    border-radius: 3px;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all .3s;
}
.fltr_checkbox input+label::before {
    transform: translateY(-50%) rotate(90deg);
}

.fltr_checkbox input:checked+label {
    background: #5433EB;
    color: #fff;
}
.fltr_checkbox input:checked+label::before, .fltr_checkbox input:checked+label::after {
	background:#fff;
}

.fltr_checkbox input:checked+label::before {
    transform: translateY(-50%) rotate(90deg);
    width: 1.5px;
}

.fltr_checkbox input:disabled+label {
    background: #e8e8e8;
    color: #999;
}
.fltr_checkbox input:disabled+label::before {
  background-color: #e8e8e8;
}


.fltr_select {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 28px 0;
}
.fltr_select select {
    display: inline-block;
    width: 100%;
    font-family: inherit;
    border: 1px solid #F8F8F9;
    background: #fff;
    border-radius: 20px;
    height: 48px;
    line-height: 48px;
    box-sizing: border-box;
    padding: 0 16px;
    font-size: 17px;
    color: #333333;
	background-color:#fff;


 -moz-appearance: none;
 -webkit-appearance: none;
 appearance: none; 
background-image: url('data:image/svg+xml, <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="28" height="28" rx="10" fill="%23F1F1FC"/><path d="M19 12C19 12 15.3175 17 14 17C12.6825 17 9 12 9 12" stroke="%235433EB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>'); 
background-repeat: no-repeat, repeat;
background-position: right 14px top 50%, 0 0;
background-size: 28px auto, 100%;


}





.fltr_select p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: #3F3F45;
    display: inline-block;
    width: 100%;
    float: left;
}

.fltr_radio {
    display: flex;
    width: 100%;
    float: left;
    justify-content: flex-start;
    gap: 12px;
}
.fltr_radio input+label {
    display: flex;
    height: 34px;
    font-style: normal;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 0 14px;
    border-radius: 36px;
    border: 1px solid #F1F1FC;
    background: #fff;
    color: #5D58CF;
}

.fltr_radio input:checked+label {
    background: #5D58CF;
    border: 1px solid #5D58CF;
    color: #fff;
}
/* Фильтры */



/* Блок подписки на уведомления */
.notify_block {
    position: relative;
    background: #FBFBFB;
    border-radius: 20px;
    padding: 14px 92px 14px 24px;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    float: left;
    margin: 10px 0 14px 0;
}
.notify_block input {
	margin: 0;
    border: none;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    width: 56px;
    height: 32px;
    border-radius: 40px;
    min-width: 56px;
    position: absolute;
    right: 20px;
    background: linear-gradient(123.06deg, #C7E2FF 9.84%, #E6BEFF 99.13%);
    top: 50%;
    margin-top: -16px;
    transition: all .2s;
}

.notify_block input:before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: linear-gradient(45.87deg, #F0F0F0 29.2%, #FFFFFF 71.19%);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    border-radius: 28px;
    left: 2px;
    top: 2px;
    transition: all .3s;
}
.notify_block input:checked {
	background: linear-gradient(140.97deg, #E4B0FF -10.55%, #8E76FF 40%, #95C8FF 99.34%);
}

.notify_block input:checked:before {
    left: 26px;
}

.notify_block label {
    float: left;
    font-size: 17px;
    margin: 0;
    position: relative;
    color: #22293D;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}
.notify_block label strong {
	font-size: 14px;
    color: #222222;
    display: inline-block;
    width: 100%;
    float: left;
    font-weight: 500;
}
.notify_block label p {
    font-size: 11px;
    color: #777777;
    font-weight: 500;
    display: inline-block;
    margin: 5px 0 0 0;
}
.notify_block label p span {
    color: #4429CC;
}
/* Блок подписки на уведомления */




/* Попап */
.popup {
    display: inline-block;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(45,42,64,.8);
    visibility: hidden;
    opacity: 0;
    z-index: 0;
    transition: all .1s;
}
.popup .content {
	width: 100%;
    background: #fff;
    position: absolute;
    border-radius: 36px 36px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 16px 42px 16px;
    text-align: center;
    z-index: 0;
    visibility: hidden;
    bottom: -100vh;
    transition: all .3s cubic-bezier(0, 0, 0.2, 1);
    max-height: 90vh;
    overflow: hidden;
    overflow-y: auto;
}
.popup .content.left {
	text-align: left;
}

.popup .content .popuphead {
    display: flex;
    width: calc(100% + 32px);
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0px 2px 8px 1px rgba(174, 186, 255, 0.25);
    border-radius: 34px;
    margin: 0 0 23px 0;
}

.popup .content .popuphead img {
    width: 100%;
    float: left;
    border-radius: 32px;
}
.popup .content .close {
	position: absolute;
    right: 16px;
    top: 16px;
}

.popup.show {
    visibility: visible;
    opacity: 1;
    z-index: 8;
}
.popup.show .content {
    z-index: 9;
    visibility: visible;
    bottom: 0;
}
.popup .content .nv {
    display: flex;
    width: 100%;
    margin: 54px 0 30px 0;
}
.popup .content .nv img {}

.popup .content strong {
    font-size: 19px;
    line-height: 25px;
    font-weight: 500;
    color: #22293D;
    display: inline-block;
    margin: 14px 0 10px 0;
	width:100%;
}
.popup .content p {
    margin: 0 0 42px 0;
    font-size: 17px;
    line-height: 22px;
    display: inline-block;
    color: #333;
}
.popup .content p span {
    color: #5D58CF;
}
.popup .content .btn {
    display: inline-block;
    height: 52px;
    line-height: 52px;
    background: #5433EB;
    border-radius: 22px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 500;
    width: 80%;
    margin: 0 0 16px 0;
    border: none;
    padding: 0;
    text-align: center;
}
.popup .content .exit {
    font-style: normal;
    display: inline-block;
    padding: 8px 12px;
    color: #3F3F45;
    font-size: 17px;
}
.popup .content .btn.exit {
    margin: 0;
    color: #fff;
    padding: 0;
}
.popup#logout .content .btn.exit {
    background: #E04C48;
    margin-bottom: 16px;	
}
/* Попап */



/* Финансовая свобода */
.financial {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding:16px 8px;
}
.financial .item {
    background: #FBFBFB;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 22px;
    overflow: hidden;
    float: left;
    margin: 0 0 16px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(img/financial_1.svg);
    padding: 19px 28px 15px 28px;
}
.financial .item:nth-child(2) {
    background-image: url(img/financial_2.svg);
}
.financial .item:nth-child(3) {
    background-image: url(img/financial_3.svg);
}
.financial .item strong {
    font-size: 17px;
    color: #444444;
    display: inline-block;
    width: 100%;
    float: left;
	font-weight: 600;
}
.financial .item p {
    margin: 4px 0 15px 0;
    color: #666666;
    line-height: 14px;
    font-size: 11px;
    display: inline-block;
    width: 100%;
    float: left;
}
.financial .item span {
	margin-left: -10px;
    background: #615AFE;
    background-image: url(img/financial_btn.svg);
    display: inline-block;
    width: 121px;
    line-height: 32px;
    box-sizing: border-box;
    padding: 0 10px 0 32px;
    font-size: 15px;
    border-radius: 32px;
    box-shadow: 0px 0.725806px 2.90323px 0.725806px rgba(37, 30, 195, 0.25);
}
/* Финансовая свобода */


/* Публикации */
.publication_list {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 8px;
}
.publication_list .item {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 16px 0;
}
.publication_list .item .image {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 14px 0;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}
.publication_list .item .image img {
    width: 100%;
    float: left;
    border-radius: 22px;
}

.publication_list .item .image .badge {
    position: absolute;
    left: 16px;
    top: 16px;
    display: flex;
    gap: 8px;
}
.publication_list .item .image .badge span {
    display: inline-block;
    font-size: 11px;
    background: #5433EB;
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    border-radius: 20px;
    text-transform: lowercase;
    position: relative;
    border: 1px solid #D0D7FF;
}

.publication_list .item .datetime {
    display: flex;
    width: 100%;
    float: left;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 9px 0;
    box-sizing: border-box;
    padding: 0 8px;
}
.publication_list .item .datetime em {
    font-style: normal;
    color: #8C8C8C;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    line-height: 20px;
}
.publication_list .item strong {
    font-size: 17px;
    color: #333333;
    line-height: 22px;
    box-sizing: border-box;
    display: inline-block;
    float: left;
    padding: 0 8px;
    font-weight: 500;
    margin: 0 0 8px 0;
}
.publication_list .item p {
    display: inline-block;
    float: left;
    font-size: 13px;
    color: #828282;
    margin: 0;
    box-sizing: border-box;
    padding: 0 8px;
}

.publication_list .reklama, .education_list .reklama {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 16px 0;
}
.publication_list .reklama img, .education_list .reklama img {
    width: 100%;
    float: left;
    border-radius: 22px;
}

.publication_filter {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    margin: 3px 0 -2px 0;
    float: left;
    position: relative;
}
.publication_filter .open {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #605afe;
    border-radius: 34px;
    height: 34px;
    gap: 10px;
    float: left;
    padding: 0 16px;
    background: radial-gradient(57.14% 211% at 94.39% 50.98%, #8D88FF 0%, #5E57FE 100%);
    position: relative;
}
.publication_filter .open::before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(270.46deg, #736DFF 0.39%, #3E36FF 99.62%);
}

.publication_filter .open p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}
.publication_filter .open svg {}

/* Публикации */


/* Страница одной побликации */
.publication_page {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}
.publication_page .imageblock {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 16px 0;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}
.publication_page .imageblock .slider {
    display: inline-block;
    width: 100%;
    float: left;
}
.publication_page .imageblock .slider img {
    width: 100%;
    float: left;
    border-radius: 22px;
}
.publication_page .datetime {
    display: flex;
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 0 8px;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 11px 0;
}
.publication_page .datetime em {
    font-style: normal;
    color: #8C8C8C;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}
.publication_page .datetime em svg {}

.publication_page .title {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    color: #333333;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
    margin: 0 0 16px 0;
}

.publication_page .badge {
    display: flex;
    width: 100%;
    margin: 0 0 16px 0;
    box-sizing: border-box;
    padding: 0 8px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.publication_page .badge span {
    display: inline-block;
    line-height: 34px;
    background: #F1F1FC;
    font-size: 15px;
    color: #5433EB;
    padding: 0 14px;
    border-radius: 30px;
}


.publication_page .content {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
}
.publication_page .content p {
    margin: 0 0 16px 0;
    color: #555555;
    font-size: 15px;
    line-height: 21px;
}

.publication_page .expertblock {
    display: inline-block;
    width: 100%;
    background: #FBFBFB;
    box-sizing: border-box;
    padding: 30px 16px 36px 16px;
    text-align: center;
    margin: 0 0 16px 0;
    background-image: url(img/green_sphere.svg);
    background-repeat: no-repeat;
    background-position: left -63px top -57px;
    border-radius: 26px;
    overflow: hidden;
}
.publication_page .expertblock > strong {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: flex-start;
    color: #333333;
    font-size: 17px;
    font-weight: 600;
    float: left;
    width: 100%;
    margin: 0 0 18px 0;
}
.publication_page .expertblock > p {
    margin: 0 0 30px 0;
    font-size: 15px;
    line-height: 21px;
    color: #555555;
    display: inline-block;
    width: 100%;
    text-align: left;
}
.publication_page .expertblock .expert {
    display: flex;
    float: left;
    width: 100%;
    margin: 0 0 19px 0;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.publication_page .expertblock .expert .image {
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: linear-gradient(123.06deg, #C7E2FF 9.84%, #E6BEFF 99.13%);
    border-radius: 44px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}
.publication_page .expertblock .expert .image img {
    background: #E9E7FD;
    border: 3px solid #fff;
    width: 100%;
    border-radius: 44px;
    height: 100%;
}
.publication_page .expertblock .expert .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    float: left;
    width: 100%;
}
.publication_page .expertblock .expert .info p {
    margin: 0 0 2px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    line-height: 20px;
    float: left;
}
.publication_page .expertblock .expert .info em {
    font-size: 13px;
    display: inline-block;
    line-height: 13px;
    color: #5E57FE;
    font-style: normal;
}
.publication_page .expertblock .btn {
    display: inline-block;
    width: 80%;
    height: 52px;
    background: linear-gradient(92.04deg, #6D29DE 8.23%, #5433EB 22.93%, #5433EB 73.41%, #4F6CCA 95.86%);
    border-radius: 22px;
    line-height: 52px;
    border: none;
    font-family: inherit;
    font-size: 17px;
    color: #fff;
}

.publication_page .videoblock {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 24px 0;
    border-radius: 22px;
    overflow: hidden;
}
.publication_page .videoblock iframe {
    display: inline-block;
    width: 100%;
    float: left;
    border-radius: 22px;
    overflow: hidden;
    height: calc((100vw* 0.5625) - 16px);
}

.publication_page .fileblock {
    display: inline-block;
    margin: 0 0 8px 0;
    width: 100%;
}
.publication_page .fileblock > p {
    color: #555555;
    font-size: 15px;
    line-height: 21px;
    margin: 0 0 24px 0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
}
.publication_page .fileblock div {
    display: grid;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    float: left;
}
.publication_page .fileblock div .file {
    display: inline-block;
    width: 100%;
    background: #5534EB;
    border-radius: 20px;
    box-sizing: border-box;
    position: relative;
    padding: 58px 16px 15px 16px;
    background-image: url(img/file_bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.publication_page .fileblock div .file:nth-child(1):before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: 8px;
    top: 8px;
    background: url(img/file_green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.publication_page .fileblock div .file p {
    margin: 0;
    font-size: 13px;
    line-height: 15px;
    height: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}
.publication_page .fileblock div .file img {
    position: absolute;
    left: 12px;
    top: 12px;
}
.publication_page .fileblock div .file span {
    position: absolute;
    top: 18px;
    left: 57px;
    height: 24px;
    display: flex;
    border: 1px solid #fff;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 0 11px;
    gap: 6px;
}

.publication_page .backtolist {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #999999;
    font-size: 13px;
    line-height: 28px;
    border-radius: 10px;
    margin: 0 0 24px 0;
}



.rozigrishifnoblock {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 26px;
    background: #FBFBFB;
    padding: 21px 24px 16px 24px;
    margin: 0 0 7px 0;
	position:relative;
    background-image: url(img/rizigrish_start_bg.svg);
    background-repeat: no-repeat;
    background-position: right 21px top 21px;
}
.rozigrishifnoblock p {
	margin: 0 0 10px 0;
    font-size: 15px;
    color: #A1A2AB;
    width: 100%;
    float: left;
}
.rozigrishifnoblock div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    float: left;
}
.rozigrishifnoblock div span {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 15px;
    color: #333333;
}
.rozigrishifnoblock.finish {
    background: #5840F2;
    margin: 0 0 20px 0;
    background-image: url(img/rizigrish_finish_bg.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}
.rozigrishifnoblock.finish:before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(140.97deg, #E4B0FF -10.55%, #8E76FF 40%, #95C8FF 99.34%);
}
.rozigrishifnoblock.finish p, .rozigrishifnoblock.finish div span {color:#fff;}


.rozigrish_applay {
	display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-radius: 26px;
    margin: 24px 0;
    text-align: center;
    box-sizing: border-box;
    padding: 26px 40px;
    position: relative;
    gap: 40px;
	background: #fff;
}
.rozigrish_applay:before {
	content: "";
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(140.97deg, #E4B0FF -10.55%, #8E76FF 40%, #95C8FF 99.34%);
}
.rozigrish_applay strong {
    display: inline-block;
    background-image: url(img/rozigrish_applay_icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
    line-height: 32px;
    padding: 0 0 0 30px;
    font-size: 17px;
    color: #333333;
    font-weight: 600;
}
.rozigrish_applay .btn {
	display: inline-block;
    width: 100%;
    line-height: 52px;
    height: 52px;
    background: linear-gradient(141.28deg, #E4B0FF -15.34%, #8E76FF 32.04%, #9092FF 67%, #95C8FF 98.4%);
    border-radius: 22px;
    position: relative;
    font-size: 17px;
    font-weight: 500;
}

.rozigrish_applay .btn::before {
	content: "";
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(123.06deg, #C7E2FF 9.84%, #E6BEFF 99.13%);
}

.rozigrish_applay p {
    font-size: 13px;
    color: #999999;
    display: inline-block;
    line-height: 15px;
    width: 100%;
    margin: 0;
}

/* Страница одной побликации */


/* Есть вопрос? В публикациях */
.havequestions {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    background: #F1F1FC;
    padding: 29px 40px 32px 20px;
    border-radius: 26px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    float: left;
    margin: 0 0 16px 0;
    position: relative;
    background-image: url(img/havequest_bg.svg);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}
.havequestions strong {
    font-size: 17px;
    display: flex;
    float: left;
    width: 100%;
    color: #333333;
    font-weight: 600;
    margin: 0 0 23px -4px;
    background-image: url(img/havequest_titile_bg.svg);
    background-repeat: no-repeat;
    background-position: left center;
    box-sizing: border-box;
    padding: 0 60px 0 21px;
}
.havequestions p {
    margin: 0 0 10px 0;
    display: inline-block;
    width: 100%;
    font-size: 15px;
    color: #555555;
    line-height: 21px;
    float: left;
}
.havequestions span {
	color:#5433EB;
}
.havequestions em {
    display: flex;
    width: 100%;
    float: left;
    margin: 10px 0 36px 0;
    box-sizing: border-box;
    padding: 0 0 0 138px;
    font-size: 13px;
    color: #555555;
    line-height: 15px;
    font-style: normal;
    background-image: url(img/havequest_expert.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    height: 38px;
    align-items: center;
}
.havequestions .btn {
    display: inline-block;
    height: 52px;
    background: linear-gradient(92.04deg, #6D29DE 8.23%, #5433EB 22.93%, #5433EB 73.41%, #4F6CCA 95.86%);
    border-radius: 22px;
    line-height: 52px;
    border: none;
    font-family: inherit;
    font-size: 17px;
    color: #fff;
    text-align: center;
    width: calc(100% - 40px);
}
.havequestions img {
    position: absolute;
    right: 20px;
    top: 12px;
}
/* Есть вопрос? В публикациях */



/* Документы */
.documents_category {
    display: grid
;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin: 16px 0 0 0;
    float: left;
    background: #FBFBFB;
    border-radius: 24px 24px 0 0;
}

.documents_category .item {
    background: #fff;
    background-image: url(img/documets_icon.svg);
    background-repeat: no-repeat;
    display: flex
;
    width: 100%;
    flex-direction: column;
    border: 1px solid #F8F8F9;
    border-radius: 18px;
    box-sizing: border-box;
    justify-content: flex-end;
    padding: 54px 16px 12px 16px;
    background-position: left 16px top 14px;
    position: relative;
}
.documents_category .item p {
    margin: 0 0 6px 0;
    color: #555555;
    font-size: 13px;
    line-height: 17px;
    max-height: 34px;
    overflow: hidden;
}
.documents_category .item span {
    display: inline-block;
    width: 100%;
    color: #2920FF;
    font-size: 11px;
    background: url(img/documents-caticon.svg);
    background-repeat: no-repeat;
    background-position: right center;
}
.documents_category .item i {
    position: absolute;
    height: 18px;
    background: #F1F1FC;
    font-style: normal;
    font-size: 10px;
    color: #5E57FE;
    line-height: 18px;
    top: 17px;
    right: 16px;
    padding: 0 6px;
    border-radius: 20px;
}

.documents_lisy {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
}
.documents_lisy .item {
    background: #fff;
    background-image: url(img/documets_icon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 100%;
    border: 1px solid #F8F8F9;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 13px 16px 13px 61px;
    background-position: left 16px top 15px;
    position: relative;
    margin: 0 0 16px 0;
}
.documents_lisy .item p {
    display: inline-block;
    width: 100%;
    float: left;
    color: #555555;
    font-size: 13px;
    line-height: 17px;
    margin: 0 0 16px 0;
}
.documents_lisy .item a {
    float: right;
    margin: 0 0 0 10px;
    color: #5E57FE;
    background: #F1F1FC;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 16px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid #F1F1FC;
}
.documents_lisy .item a.btn {
    background: radial-gradient(57.14% 211% at 94.39% 50.98%, #8D88FF 0%, #5E57FE 100%);
    color: #fff;
    gap: 3px;
    padding: 0 9px 0 11px;
	    border: 1px solid #5851FF;
}
/* Документы */




/* Партнёры */
.partner_list {
    display: grid;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin: 16px 0 0 0;
    float: left;
}
.partner_list .item {
    display: inline-block;
    width: 100%;
    border: 1px solid #F8F8F9;
    box-sizing: border-box;
    padding: 6px;
    border-radius: 16px;
}
.partner_list .item:hover {}
.partner_list .item img {
	width: 100%;
    float: left;
    border-radius: 12px;
}
.partner_list .item .block {
    padding: 9px 6px 12px 7px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    float: left;
}
.partner_list .item .block strong {
    display: inline-block;
    width: 100%;
    float: left;
    color: #3F3F45;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    height: 32px;
    overflow: hidden;
}
.partner_list .item .block p {
    margin: 4px 0 6px 0;
    display: inline-block;
    width: 100%;
    float: left;
    color: #666666;
    font-size: 11px;
    line-height: 14px;
    font-weight: 300;
    height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}
.partner_list .item .block span {
    display: inline-block;
    color: #5D58CF;
    font-size: 11px;
}


.partner_page {
    display: inline-block;
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 0 16px;
}
.partner_page .imageblock {
    padding: 16px 16px 22px 16px;
    background: #FBFBFB;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
}
.partner_page .imageblock img {
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #EFEFEF;
    float: left;
}
.partner_page .imageblock strong {
    margin: 17px 0 10px 0;
    font-size: 17px;
    line-height: 21px;
    color: #22293D;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    font-weight: 500;
}
.partner_page .imageblock p {
    margin: 0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    color: #666666;
    font-size: 13px;
    line-height: 16px;
}
.partner_page > strong {
	font-size: 17px;
    font-weight: 500;
    color: #22293D;
    display: inline-block;
    width: 100%;
    float: left;
    margin: 24px 0 10px 0;
}
.partner_page > p, .partner_page .contactinfo p {
    margin: 0;
    font-size: 15px;
    color: #555555;
    line-height: 21px;
    display: inline-block;
    width: 100%;
    float: left;
}
.partner_page .contactinfo {
    display: inline-block;
    width: 100%;
    float: left;
}
.partner_page .contactinfo p {
	color:#3F3F45;
    line-height: 20px;
    margin: 0 0 6px 0;
}
.partner_page .contactinfo em {
    display: inline-block;
    width: 100%;
    font-style: normal;
    font-size: 13px;
    color: #888898;
}

.partner_page .contact {
    display: inline-block;
    width: 100%;
    float: left;
    padding: 16px 0 32px 0;
}
.partner_page .contact .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 54px;
    padding: 0 100px 0 34px;
    box-sizing: border-box;
    border-top: 1px solid #EEEEEE;
    float: left;
    width: 100%;
}
.partner_page .contact .item:last-child {
    border-bottom: 1px solid #EEEEEE;
}
.partner_page .contact .item img {
    position: absolute;
    left: 0;
}
.partner_page .contact .item p {
    margin: 0;
    font-size: 15px;
    color: #3F3F45;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}
.partner_page .contact .item:before {
	content:'';
    position: absolute;
    right: 0;
    color: #5D58CF;
    font-size: 13px;
}
.partner_page .contact .item.phone:before {content:'позвонить';}
.partner_page .contact .item.website:before {content:'на сайт';}
.partner_page .contact .item.telegram:before {content:'написать в Telegram';}
.partner_page .contact .item.whatsapp:before {content:'написать в Whatsapp';}
.partner_page .contact .item.vkontakte:before {content:'найти в ВК';}
.partner_page .contact .item.email:before {content:'написать';}


.publication_filter .search {
    position: absolute;
    right: 16px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: all .3s;
    background: #fff;
    margin-top: -2px;
    padding-left: 1px;
}
.publication_filter .search input {
    margin: 0;
    border: none;
    height: 38px;
    font-family: inherit;
    font-size: 17px;
    color: #333333;
    padding: 0 34px;
    background-image: url(img/search.svg);
    background-repeat: no-repeat;
    background-position: left center;
    width: 100%;
    box-sizing: border-box;
}
.publication_filter .search span {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
}
.publication_filter .search span img {}
.publication_filter .search.active {
	width: calc(100% - 32px);
}


.partner_sale_block {
	position: relative;
    background: #5840F2;
    background-image: url(img/sale_block.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    float: left;
    flex-direction: column;
    border-radius: 24px;
    padding: 31px 54px 19px 30px;
    margin: 20px 0 0 0;
    color: #fff;
}
.partner_sale_block:before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
	background: linear-gradient(140.97deg, #E4B0FF -10.55%, #8E76FF 40%, #95C8FF 99.34%);
}
.partner_sale_block strong {
    font-size: 23px;
    display: inline-block;
    font-weight: 600;
}
.partner_sale_block p {
    margin: 12px 0 20px 0;
    font-size: 15px;
    font-weight: 500;
}
.partner_sale_block span {
font-size: 12px;
    line-height: 17px;
}

.partner_page .backtolist {
display: inline-block;
    width: 100%;
    text-align: center;
    color: #999999;
    font-size: 13px;
    line-height: 28px;
    border-radius: 10px;
    margin: 0 0 24px 0;
}


.reviewpartner {
	display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin: 30px 0 0 0;
    border: 1px solid #A485FF;
    border-radius: 26px;
}
.reviewpartner div {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
}
.reviewpartner strong {
    font-size: 17px;
    color: #333333;
    font-weight: 500;
    margin: 0 0 4px 0;
}
.reviewpartner span {
    font-size: 13px;
    color: #5433EB;
    font-weight: 500;
    line-height: 17px;
}
.reviewpartner p {
    margin: 16px 0;
    font-size: 15px;
    color: #555555;
    line-height: 21px;
}
.reviewpartner em {
    font-size: 13px;
    color: #555555;
    font-weight: 500;
    font-style: normal;
}
.reviewpartner div:last-child {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #A485FF;
    padding-top: 16px;
}
.reviewpartner a {
	width: 94px;
    height: 30px;
    background: url(img/partner-review.svg);
    background-repeat: no-repeat;
    line-height: 30px;
    text-align: center;
    color: #5433EB;
    font-size: 13px;
    text-indent: 7px;
    background-position: center;
    border-radius: 30px;
    background-size: cover;
    box-shadow: 0px 1px 4px 1px rgba(37, 30, 195, 0.25);
}

/* Партнёры */




/* Новости и статьи селектор */
.blog_selector {
    display: flex;
    width: calc(100% - 32px);
    float: left;
    box-sizing: border-box;
    height: 52px;
    background: #FBFBFB;
    margin: 4px 16px 14px 16px;
    align-items: center;
    justify-content: space-between;
    border-radius: 56px;
    padding: 4px;
}
.blog_selector a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 2px;
    border-radius: 20px;
    height: 100%;
}
.blog_selector p {
    margin: 0;
    font-size: 17px;
    color: #999999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog_selector a.active {
    background: linear-gradient(123.06deg, #C7E2FF 9.84%, #E6BEFF 99.13%);
}
.blog_selector a.active p {
    background: #5D58CF;
    border-radius: 20px;
    color: #fff;
}
/* Новости и статьи селектор */




/* Регистрация */
.modalreg {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
.modalreg .redister {}
.modalreg .redister .header {}
.modalreg .redister .header > img {
	width:100px;
	margin:0 0 56px 0;
}
.modalreg .redister .header h1 {
    margin: 0;
    font-size: 21px;
    line-height: 21px;
    color: #3F3F45;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}

.modalreg .redister .header p, .modalreg .redister > p {
	color: #3F3F45;
    margin: 14px 0 10px 0;
    display: inline-block;
    width: 100%;
    font-size: 13px;
    line-height: 18px;
}
.modalreg .redister .header span {
    font-size: 13px;
    color: #5E57FE;
    display: inline-block;
    width: 100%;
    margin: 0 0 20px 0;	
}

.modalreg .redister .phone {
    display: flex;
    width: 100%;
    margin: 0 0 15px 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    float: left;
}
.modalreg .redister .phone .flag {
    background: #FBFBFB;
    border-radius: 18px;
    height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}
.modalreg .redister .phone .flag img {margin: -2px 8px 1px 0;}
.modalreg .redister .phone input, .modalreg .redister .code input, .modalreg .redister .input input {
    font-size: 17px;
    font-family: inherit;
    color: #22293D;
    margin: 0;
    border: none;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 18px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #EDEDEF;
}

.modalreg .redister .phone input {
    margin: 0;
    background: #FBFBFB;
    border: none;
}

.modalreg .redister > p {}
.modalreg .redister .action {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 32px;
    float: left;
}
.modalreg .redister .action .btn {
    font-family: inherit;
    border: none;
    background: #5433EB;
    border-radius: 22px;
    padding: 0;
    margin: 0;
    line-height: 52px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}
.modalreg .redister .action .btn:disabled {
    background: #F1F1FC;
    color: #B4B4FD;
}


.modalreg .redister .privace {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 50px 0 0 0;
}
.modalreg .redister .privace p {
    margin: 0;
    color: #BFBFBF;
    font-size: 13px;
    line-height: 18px;
}
.modalreg .redister .privace a {
    color: #5D58CF;
    text-decoration: underline;
    display: inline-block;
}
.modalreg .copyright {
    margin: 0;
    font-size: 10px;
    color: #9C9B9D;
    font-weight: 200;
    display: inline-block;
    width: 100%;
}

.modalreg .redister .code {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    float: left;
}
.modalreg .redister .code input {
    padding: 0 26px;
    letter-spacing: 6px;
    width: auto;
    max-width: 140px;
}
.modalreg .redister > em {
    display: inline-block;
    width: 100%;
    margin: 32px 0 82px;
    float: left;
    color: #9C9B9D;
    font-size: 15px;
    font-style: normal;
}

.modalreg .redister .input {
    display: flex;
    width: 100%;
    float: left;
    flex-direction: column;
    margin: 26px 0 0 0;
    gap: 12px;
    align-items: flex-start;
}
.modalreg .redister .input label {
    display: inline-block;
    font-size: 13px;
    color: #3F3F45;
}
.modalreg .redister .input input {
    padding: 0 16px;
}

.modalreg .redister .input select {
    display: inline-block;
    width: 100%;
    font-family: inherit;
    border: 1px solid #EDEDEF;
    background: #fff;
    border-radius: 20px;
    height: 48px;
    line-height: 48px;
    box-sizing: border-box;
    padding: 0 16px;
    font-size: 17px;
    color: #333333;
	background-color:#fff;


 -moz-appearance: none;
 -webkit-appearance: none;
 appearance: none; 
background-image: url('data:image/svg+xml, <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="28" height="28" rx="10" fill="%23F1F1FC"/><path d="M19 12C19 12 15.3175 17 14 17C12.6825 17 9 12 9 12" stroke="%235433EB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>'); 
background-repeat: no-repeat, repeat;
background-position: right 14px top 50%, 0 0;
background-size: 28px auto, 100%;
}

.modalreg .redister.step {
	display:none;
}
.modalreg .redister.step.active {
	display:inline-block;
}
.modalreg .redister.step2 .action {
    margin-top: 36px;
}
.modalreg .redister.step3 .action {
    margin-top: 36px;
    margin-bottom: 26px;
}
/* Регистрация */


/* Сервисы */
.allservices {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 16px 0 0 0;
    width: 100%;
    float: left;
    gap: 24px 12px;
    box-sizing: border-box;
    padding: 16px;
}
.allservices .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 11px;
    width: 100%;
}
.allservices .item .icon {
	display: flex;
    width: 72px;
    height: 72px;
    min-width: 72px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #F7F7F7;
    border-radius: 28px;
    transform: scale(1);
    transition: all .3s;
}
.allservices .item:hover .icon {
    background: linear-gradient(14.28deg, #4429CC 20.04%, #4429CC 70%);
    transform: scale(0.96);
}
.allservices .item .icon img {}
.allservices .item p {
    margin: 0;
    display: inline-block;
    width: 100%;
    font-size: 13px;
    color: #000;
    font-weight: 500;
}
/* Сервисы */




/* О проекте */
.aboutproject {
    display: inline-block;
    width: 100%;
    background: #FBFBFB;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 24px 24px 0 0;
}
.aboutproject .aboutlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 16px 0;
    width: 100%;
    float: left;
    gap: 8px 8px;
    box-sizing: border-box;
    padding: 0;
}

.aboutproject .aboutlist .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    gap: 6px;
    width: 100%;
    position: relative;
    background: #fff;
    box-sizing: border-box;
    border-radius: 18px;
    overflow: hidden;
    padding: 55px 16px 11px 16px;
    border: 1px solid #fff;
}
.aboutproject .aboutlist .item > img {
    position: absolute;
    max-width: 86px;
    max-height: 30px;
    left: 16px;
    top: 16px;
}
.aboutproject .aboutlist .item p {
    margin: 0;
    font-size: 13px;
    line-height: 17px;
    color: #333333;
}
.aboutproject .aboutlist .item span {
    font-size: 11px;
    color: #5E57FE;
    display: inline-block;
    width: 100%;
    line-height: 14px;
}
.aboutproject .aboutlist .item:nth-child(2) {
    background-image: url(img/about-mission-bg.svg);
    background-repeat: no-repeat;
    background-position: right top;
}
.aboutproject .aboutlist .item:nth-child(4) {
    border: 1px solid #A988FF;
}
/* О проекте */





/* Розыгрыши */
.rozigrish {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
}
.rozigrish .list_items {
    display: inline-block;
    width: 100%;
    float: left;
}
.rozigrish .list_items .item {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0 0 22px 0;
}
.rozigrish .list_items .item > img {
	width: 100%;
    float: left;
    border-radius: 22px;
    margin: 0 0 14px 0;
}
.rozigrish .list_items .item .dateinfo {
    display: flex;
    width: 100%;
    float: left;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 9px 0;
    box-sizing: border-box;
    padding: 0 8px;
}
.rozigrish .list_items .item .dateinfo span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    color: #8C8C8C;
    font-size: 13px;
}
.rozigrish .list_items .item > strong {
    font-size: 17px;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 22px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
}
.rozigrish .list_items .item .datetime {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
    margin: 0 0 10px 0;
    float: left;
    justify-content: flex-start;
    gap: 44px;
}
.rozigrish .list_items .item .datetime span {
    display: flex;
    font-size: 15px;
    color: #333333;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.rozigrish .list_items .item > p {
    margin: 0;
    display: inline-block;
    width: 100%;
    font-size: 13px;
    line-height: 17px;
    color: #828282;
    box-sizing: border-box;
    padding: 0 8px;
}

.empty_rozigrish {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 200px 8px 16px 8px;
    background-image: url(img/empty_rozigrish.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}
.empty_rozigrish div {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0 0 0;
    background: #FBFBFB;
    border: 1px solid #AA89FF;
    border-radius: 26px;
    box-sizing: border-box;
    padding: 31px 36px 19px 36px;
}
.empty_rozigrish div strong {
    font-size: 17px;
    line-height: 23px;
    color: #333333;
    font-weight: 500;
    margin: 0 0 16px 0;
    width: 100%;
}
.empty_rozigrish div p {
    margin: 0;
    font-size: 15px;
    line-height: 21px;
    color: #9898A5;
}

/* Розыгрыши */





/* Наша команда */
.titleblock {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
}
.titleblock strong {
    font-size: 19px;
    color: #2920FF;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}
.titleblock p {
    margin: 9px 0 0 0;
    font-size: 15px;
    line-height: 21px;
    color: #9898A5;
    display: inline-block;
    width: 100%;
}

.our_comand {
    display: inline-block;
    width: 100%;
    background: #FBFBFB;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 24px 24px 0 0;
}
.our_comand .comand_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 16px 0;
    width: 100%;
    float: left;
    gap: 8px 8px;
    box-sizing: border-box;
    padding: 0;
}
.our_comand .comand_list .item {
	display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #F8F8F9;
    border-radius: 18px;
    padding: 17px 14px 14px 14px;
    text-align: center;
    background-image: url(img/documents-caticon.svg);
    background-repeat: no-repeat;
    background-position: right 14px top 14px;
    background-size: 10px;
}
.our_comand .comand_list .item .imgblock {
    width: 90px;
    height: 90px;
    display: flex;
    box-sizing: border-box;
    background: linear-gradient(140.97deg, #E4B0FF -10.55%, #8E76FF 40%, #95C8FF 99.34%);
    border-radius: 90px;
    overflow: hidden;
    padding: 2px;
}
.our_comand .comand_list .item .imgblock img {
    width: 100%;
    border: 5px solid #fff;
    border-radius: 90px;
    background: #E9E7FD;
    margin: 0;
box-sizing: border-box;
}
.our_comand .comand_list .item:first-child .imgblock img {
    background: #5E57FE;
}
.our_comand .comand_list .item strong {
    font-size: 15px;
    line-height: 17px;
    color: #000;
    margin: 14px 0 4px 0;
    width: 100%;
    float: left;
    box-sizing: border-box;
    font-weight: 500;
    padding: 0 16px;
    height: 34px;
    overflow: hidden;
}
.our_comand .comand_list .item p {
	font-size: 13px;
    line-height: 15px;
    color: #9898A5;
    height: 30px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    margin: 0 0 8px 0;
}
.our_comand .comand_list .item span {
    color: #5E57FE;
    font-size: 13px;
    line-height: 13px;
    display: inline-block;
}

/* Наша команда */




/* Наша команда */
.comand_expert {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
}
.comand_expert .avatar_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    float: left;
    background-image: url(img/documents-caticon.svg);
    background-repeat: no-repeat;
    background-position: right 20% top 6px;
    background-size: 14px;
}
.comand_expert .avatar_block .image {
    width: 152px;
    height: 152px;
    display: flex;
    box-sizing: border-box;
    background: linear-gradient(140.97deg, #E4B0FF -10.55%, #8E76FF 40%, #95C8FF 99.34%);
    border-radius: 90px;
    overflow: hidden;
    padding: 2px;
	margin: 0 0 16px 0;
}
.comand_expert .avatar_block .image img {
    width: 100%;
    border: 8px solid #fff;
    border-radius: 90px;
    background: #E9E7FD;
    margin: 0;
	box-sizing: border-box;
}
.comand_expert .avatar_block strong {
    display: inline-block;
    font-size: 17px;
    color: #3F3F45;
    font-weight: 600;
    width: 100%;
}
.comand_expert .avatar_block p {
    margin: 9px 0 0 0;
    display: inline-block;
    color: #5E57FE;
    font-size: 15px;
    line-height: 17px;
    box-sizing: border-box;
    width: 100%;
    padding: 0 32px;
}
.comand_expert .infoblock {
    display: flex;
    margin: 32px 0;
    width: 100%;
    float: left;
    justify-content: space-around;
    text-align: center;
}
.comand_expert .infoblock div {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.comand_expert .infoblock div strong {
    font-size: 21px;
    color: #222222;
    width: 100%;
    line-height: 19px;
    display: inline-block;
}
.comand_expert .infoblock div span {
    font-size: 13px;
    color: #777777;
    margin: 9px 0 0 0;
    width: 100%;
    line-height: 13px;
}
.comand_expert > strong {
    font-size: 17px;
    color: #333333;
    display: inline-block;
    width: 100%;
    font-weight: 500;
}
.comand_expert > p {
    margin: 12px 0 20px 0;
    font-size: 15px;
    color: #555555;
    line-height: 21px;
    width: 100%;
}
.comand_expert .badge {
    display: flex;
    width: 100%;
    float: left;
    flex-wrap: wrap;
    gap: 14px;
}
.comand_expert .badge span {
    display: inline-block;
    line-height: 38px;
    background: #F1F1FC;
    border-radius: 38px;
    font-size: 15px;
    color: #5433EB;
    padding: 0 16px;
}
.comand_expert .havequestions {margin-top:36px;}
/* Наша команда */



/* Наша миссия */
.ourmission {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}

.ourmission > img {
    border-radius: 26px;
    float: left;
    width: 100%;
    margin: 0 0 16px 0;
}
.ourmission .cont {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding:0 8px;
	margin-bottom: 16px;
}
.ourmission .cont p {
    font-size: 17px;
    line-height: 24px;
    display: inline-block;
    width: 100%;
    color: #333333;
    margin: 0 0 16px 0;
}
.ourmission .cont strong {
    font-size: 19px;
    color: #444444;
    font-weight: 600;
    display: inline-block;
    width: 100%;
}
.ourmission .cont span {
    color: #5E57FE;
    display: inline-block;
    width: 100%;
    font-size: 15px;
    line-height: 21px;
}
.ourmission .cont p strong {
    font-size: inherit;
    color: inherit;
    width: auto;
    display: inline;
}
.ourmission .cont p span {
    width: auto;
    font-size: inherit;
    line-height: inherit;
    font-weight: 500;
    display: inline;
}
/* Наша миссия */






/* Услуги представителя */
.predstavitel {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}
.predstavitel > strong {
    display: inline-block;
    font-size: 19px;
    color: #2920FF;
    font-weight: 500;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    padding: 0 8px;
}
.predstavitel > p {
    margin: 0;
    font-size: 15px;
    line-height: 21px;
    color: #333333;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 8px;
}
.predstavitel .action {
    display: inline-block;
    padding: 36px 24px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}
.predstavitel .action .btn {
    background: linear-gradient(92.04deg, #6D29DE 8.23%, #5433EB 22.93%, #5433EB 73.41%, #4F6CCA 95.86%);
    display: inline-block;
    width: 100%;
    height: 52px;
    line-height: 52px;
    border-radius: 22px;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
}
.predstavitel .predstav_list {
    display: inline-block;
    width: 100%;
    margin: 10px 0 0 0;
}
.predstavitel .predstav_list .item {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #EDEDEF;
    border-radius: 26px;
    margin: 0 0 8px 0;
    position: relative;
    padding: 70px 22px 22px 22px;
    overflow: hidden;
}
.predstavitel .predstav_list .item img {
    position: absolute;
    left: 22px;
    top: 22px;
}
.predstavitel .predstav_list .item img:nth-child(2) {
    left: auto;
    top: 25px;
    right: 22px;
}
.predstavitel .predstav_list .item strong {
    display: inline-block;
    font-size: 17px;
    color: #333333;
    font-weight: 500;
}
.predstavitel .predstav_list .item:nth-child(1) {
    padding-top: 0;
}
.predstavitel .predstav_list .item:nth-child(1) strong {
    margin: -110px 0 110px 0;
    z-index: 1;
    position: absolute;
}

.predstavitel .predstav_list .item:nth-child(1) img:nth-child(1) {display:none;}
.predstavitel .predstav_list .item:nth-child(1) img:nth-child(2) {
    width: calc(100% + 44px);
    border-radius: 26px;
    position: relative;
    top: 0;
}

.predstavitel .predstav_list .item p {
    font-size: 15px;
    color: #555555;
    line-height: 21px;
    margin: 10px 0 0 0;
    display: inline-block;
    width: 100%;
}
.predstavitel .predstav_list .item a {
    margin: 22px 0 0 0;
    display: inline-block;
    background: #5433EB;
    line-height: 52px;
    border-radius: 22px;
    font-size: 17px;
    font-weight: 500;
    padding: 0 36px;
}
/* Услуги представителя */


/* Форма заявки */
.request_form {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
}
.request_form strong {
    font-size: 17px;
    color: #333333;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    margin: 0 0 24px 0;
}
.request_form strong.color {
    color: #2920FF;
    font-size: 19px;
    margin: 0 0 10px 0;
}
.request_form > p {
    display: inline-block;
    font-size: 15px;
    line-height: 21px;
    margin: 0 0 36px 0;
    color: #3F3F45;
    float: left;
    width: 100%;
}
.request_form form {
    display: inline-block;
    width: 100%;
}
.request_form form .formgroup {
    display: flex;
    width: 100%;
    float: left;
    gap: 12px;
    margin: 0 0 26px 0;
    flex-direction: column;
    align-items: flex-start;
}
.request_form form .formgroup label {
    display: inline-block;
    font-size: 13px;
    color: #3F3F45;
}
.request_form form .formgroup input {
    font-family: inherit;
    background: #fff;
    border-radius: 20px;
    padding: 0 16px;
    height: 48px;
    border: none;
    margin: 0;
    font-size: 17px;
    color: #22293D;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #EDEDEF;
}
.request_form form .formgroup input[name="telegram"] {
    background: #F1F1FC;
    color: #5D58CF;
}
.request_form form .formgroup input[name="phone"] {
	width:auto;
}



.request_form .phone {
    display: flex;
    width: 100%;
    margin: 0 0 15px 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    float: left;
}
.request_form .phone .flag {
    background: #FBFBFB;
    border-radius: 18px;
    height: 48px;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}
.request_form .phone .flag img {margin: -2px 8px 1px 0;}
.request_form .phone input {
font-family: inherit;
    border-radius: 20px;
    padding: 0 16px;
    height: 48px;
    border: none;
    margin: 0;
    font-size: 17px;
    color: #22293D;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    background: #FBFBFB;
    border: none;
}



.request_form form textarea {
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    height: 140px;
    margin: 0;
    border: 1px solid #FBFBFB;
    font-family: inherit;
    padding: 16px;
    border-radius: 20px;
    font-size: 17px;
    color: #22293D;
    line-height: 23px;
    border: 1px solid #EDEDEF;
}
.request_form form textarea:focus {
    outline: none !important;
    border:1px solid #5D58CF;
  }
.request_form form .action {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 36px;
    float: left;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
}



.request_form form .action .btn {
    margin: 0;
    padding: 0;
    border: none;
    font-family: inherit;
    background: #5433EB;
    height: 52px;
    line-height: 52px;
    width: 100%;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    background: linear-gradient(92.04deg, #6D29DE 8.23%, #5433EB 22.93%, #5433EB 73.41%, #4F6CCA 95.86%);
    border-radius: 22px;
}
.request_form form .action .btn:disabled:disabled {
    background: #F1F1FC;
    color: #D0D0EE;
}


.request_form form .action span {
    font-size: 11px;
    line-height: 14px;
    color: #9C9B9D;
    display: inline-block;
}

.request_form .situacia {
    display: inline-block;
    width: 100%;
}
.request_form .situacia > p {
    display: inline-block;
    font-size: 13px;
    color: #3F3F45;
    margin: 0;
    width: 100%;
}
.situacia .fltr_checkbox {
    margin: 16px 0 32px 0;
}
.situacia .fltr_checkbox input+label {
    padding: 0 16px;
}

.situacia .fltr_checkbox input+label::before, .situacia .fltr_checkbox input+label::after {
	display:none;
}


.request_form .privace {
    display: inline-block;
    width: 100%;
    margin: 64px 0 16px 0;
}
.request_form .privace p {
    margin: 0;
    font-size: 13px;
    color: #BFBFBF;
    font-weight: 300;
}
.request_form .privace a {
	color:#5E57FE;
}


/* Форма заявки */




/* Образование */
.education_list {
    display: inline-block;
    width: 100%;
    background: #FBFBFB;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 24px 24px 0 0;
    margin: 16px 0 0 0;
}

.education_list .item {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 16px 0;
    float: left;
    background: #fff;
    border: 1px solid #F8F8F9;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 8px 16px 14px 8px;
}
.education_list .item img {
    width: 100%;
    border-radius: 12px;
    min-width: 70px;
    float: left;
}
.education_list .item .block {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding:0 0 3px 0;
}
.education_list .item .block p {
    margin: 0;
    font-size: 11px;
    color: #5E57FE;
    display: inline-block;
    float: left;
    width: 100%;
}

.education_list .item .block strong {
    font-size: 17px;
    color: #22293D;
    margin: 4px 0 10px 0;
    display: inline-block;
    width: 100%;
    line-height: 22px;
    font-weight: 400;
}
.education_list .item .block .badge, .education_page .badge {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.education_list .item .block .badge span, .education_page .badge span {
	height: 22px;
    background: #F1F1FC;
    color: #5433EB;
    padding: 0 8px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 22px;
}
.education_list .item .block .badge span.gray, .education_page .badge span.gray {
    color: #6E7183;
    background: #F7F7FA;
}
/* Образование */



/* Профиль */
.profile_cards {
	display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background: #F1F1FC;
    border-radius: 0 0 30px 30px;
    padding: 21px 18px 16px 18px;
    margin: 0 0 30px 0;
}
.profile_cards .user_cards {
	background: #5433EB;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background-image: url(img/profile_nv_card_bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 18px 22px 14px 28px;
    border-radius: 24px;
    margin: 0 0 10px 0;
}


.profile_cards .user_cards > img {
    float: left;
}
.profile_cards .user_cards span {
	color: #ABA7FF;
    display: inline-block;
    width: 100%;
    margin: 4px 0 0 0;
    font-weight: 300;
    font-size: 11px;
    float: left;
}
.profile_cards .user_cards strong {
    font-size: 15px;
    margin: 10px 0 28px 0;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    padding: 0 23px 0 0;
    background-image: url(img/profile_name.svg);
    background-repeat: no-repeat;
    background-position: right center;
    float: left;
    clear: both;
    box-sizing: border-box;
}
.profile_cards .user_cards p {
    font-size: 17px;
    color: #fff;
    margin: 3px 0 0 0;
    display: inline-block;
    width: 100%;
}
.profile_cards .user_cards .popup_open {
	position: absolute;
    right: 18px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.profile_cards .user_cards .bonuses {
    display: flex;
    width: 100%;
    float: left;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 6px;
}
.profile_cards .user_cards .bonuses strong {
    background: none;
    margin: 0;
    padding: 0;
    clear: none;
    color: #D4D4F4;
    font-size: 20px;
    line-height: 19px;
}
.profile_cards .user_cards .bonuses span {
    margin: 0;
    width: auto;
    font-size: 11px;
    color: #ABA7FF;
}


.profile_cards .user_cards .status {
    background: #5638ED;
    background-image: url(img/profile_card_base.svg);
    height: 27px;
    line-height: 27px;
    display: inline-block;
    padding: 0 31px 0 13px;
    margin: 0;
    width: auto;
    border: 1px solid #B18DFF;
    box-sizing: border-box;
    border-radius: 11px;
    background-repeat: no-repeat;
    background-position: right 12px center;
    float: right;
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d5c1ff;
}

.profile_cards .user_cards.premium {
    background-color: #FF633B;
    background-image: url(img/profile_nv_card_bg_p.svg);
}
.profile_cards .user_cards.premium .status {
    background-color: #FF673E;
    background-image: url(img/profile_card_base_p.svg);
    color: #FFD800;
    border: 1px solid #FFD94F;
}
.profile_cards .user_cards.premium .bonuses strong {
	color: #FFD800;
}
.profile_cards .user_cards.premium span {color:#FFC6B8;}
.profile_cards .user_cards.premium .bonuses span {color:#FFC6B8;}
.profile_cards .user_cards.premium .popup_open img {
    filter: hue-rotate(-90deg) contrast(2);
}


.profile_cards .cards_list {
    display: grid;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    float: left;
}
.profile_cards .cards_list a {
	background: #FBFBFB;
    box-sizing: border-box;
    width: 100%;
    padding: 42px 16px 14px 16px;
    position: relative;
    border-radius: 19px;
}
.profile_cards .cards_list a:last-child {
    background-image: url(img/about-mission-bg.svg);
    background-repeat: no-repeat;
    background-position: right top;
}
.profile_cards .cards_list a img {
    position: absolute;
    top: 11px;
    left: 16px;
}
.profile_cards .cards_list a strong {
    font-size: 17px;
    color: #3F3F45;
    font-weight: 400;
    width: 100%;
    display: inline-block;
    float: left;
}
.profile_cards .cards_list a p {
    margin: 4px 0 0 0;
    display: inline-block;
    width: 100%;
    font-size: 13px;
    line-height: 15px;
    color: #CBCCD1;
}





.nav {
    display: inline-block;
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 0 16px 16px 16px;
}
.nav .item {
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    float: left;
    gap: 18px;
    background-image: url(img/profile_arrow.svg);
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all .3s;
}

.nav .item:hover {
	background-position: right center;
}
.nav .item p {
    margin: 0;
    display: inline-block;
    width: 100%;
    color: #22293D;
    font-size: 17px;
}


.nav.profile .item {
    border: none;
    padding: 16px 0;
}


.nav .copyright {
    margin: 32px 0 0 0;
    display: inline-block;
    float: left;
    font-size: 10px;
    color: #D4D4D4;
}

/* Профиль */



/* Документы сервиса */
.documents_page {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
}
.documents_page h1 {
    margin: 0;
    font-size: 19px;
    line-height: 25px;
    font-weight: 500;
    color: #22293D;
    display: inline-block;
    width: 100%;
    float: left;
}
.documents_page .content {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    line-height: 21px;
}
.documents_page .content p {
    margin: 14px 0 0 0;
    display: inline-block;
    float: left;
}
.documents_page .content a {color:#5D58CF;}
/* Документы сервиса */





/* Оцените приложение */
.aboutservices {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
}
.aboutservices > img {

}
.aboutservices > p, .aboutservices em {
    display: inline-block;
    width: 100%;
    float: left;
    margin: 8px 0 6px 0;
    color: #ABABBB;
    font-size: 15px;
    font-style: normal;
}
.aboutservices > span {
    display: inline-block;
    color: #222222;
    font-size: 13px;
    width: 100%;
}
.aboutservices .ocenka {
    border-top: 1px solid #EEEEEE;
    margin: 24px 0 0 0;
    padding: 26px 0 0 0;
    display: inline-block;
    width: 100%;
    float: left;
}
.aboutservices .ocenka strong {
    display: inline-block;
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 17px;
}
.aboutservices .ocenka p {
    font-size: 15px;
    display: inline-block;
    width: 100%;
    float: left;
    color: #555555;
    margin: 22px 0 26px 0;
}
.aboutservices .ocenka .btn {
    display: inline-block;
    height: 52px;
    background: linear-gradient(92.04deg, #6D29DE 8.23%, #5433EB 22.93%, #5433EB 73.41%, #4F6CCA 95.86%);
    border-radius: 22px;
    line-height: 52px;
    font-size: 17px;
    font-weight: 500;
    padding: 0 56px;
}

.aboutservices .notify_block {
	background: transparent;
    padding: 8px 0;
}

.aboutservices .notify_block input {right:0;}
/* Оцените приложение */


/* Страница уведомлений */
.notifications {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;
}
.notifications > strong {
	color: #3F3F45;
    font-size: 21px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
}
.notifications > p {
    margin: 14px 0 0 0;
    display: inline-block;
    width: 100%;
    font-size: 15px;
    line-height: 21px;
    color: #3F3F45;
}
.notifications .list {
    display: inline-block;
    width: 100%;
    padding: 16px 0;
}
.notifications .list .item {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #5433EB;
    border-radius: 18px 18px 18px 0;
    margin: 0 0 16px 0;
    padding: 14px 16px;
}
.notifications .list .item p {
    margin: 0 0 2px 0;
    display: inline-block;
    width: 100%;
    font-size: 17px;
    line-height: 21px;
    color: #333333;
}
.notifications .list .item span {
    display: inline-block;
    font-size: 10px;
    color: #2920FF;
    line-height: 12px;
}
/* Страница уведомлений */











/* 111111 */
/* 111111 */
/* 111111 */
/* 111111 */