
@import url('https://fonts.googleapis.com/css?family=Open+Sans:100,300,400&subset=cyrillic');

/* обнуление стилей */

html, body, h1, h2, h3, h4, h5, h6, p, em, strong, abbr, acronym, blockquote, q, cite, ins, del, dfn, a, div, span, pre, hr, address, br, b, i, sub, sup, big, small, tt, table, tr, td, caption, thead, tbody, tfoot, col, colgroup, form, input, label, textarea, button, fieldset, legend, select, option, optiongroup, ul, ol, li, dl, dt, dd, code, var, kdb, samp, img, object, param, map, area, bdo, iframe {padding: 0; margin: 0;}
img {border: 0;}
li {list-style: none;}
a {text-decoration: none; color: #43c8ff; }

* { outline: none; }

/* общие стили */

.clear { clear: both; }
.hidden { display: none; }

.footnote {
    color: #86a2b2;
    font-size: 12px;
    line-height: 18px;
}
.button-arrow {
    font-size: 20px;
}

.sort-field {
    float: right;
    width: 150px;
    margin-top: 22px;
}
.sort-field .wrap-select select {
    width: 150px;
}

.form-field {
    width: 396px;
    margin: 0 auto;
    margin-top: 22px;
}

.form-field-error {
    background-color: #ffd9d3 !important;
}

.status-unchecked {
    color: red;
}
.status-checked {
    color: green;
}
.status-refused {
    color: red;
}

.red-link {
    color: #FF5400;
    text-decoration: underline;
}


/* контролы */

::-webkit-input-placeholder { color: #a1b2be;}
::-moz-placeholder          { color: #a1b2be;}
:-moz-placeholder           { color: #a1b2be;}
:-ms-input-placeholder      { color: #a1b2be !important;}


/* редактируемый выпадающий список */
.wrap-select-editable {
    z-index: 0;
    position: relative;
    display: inline-block;
    background: white;
    border-radius: 30px;
}
@media (max-width: 479px) and (min-width: 320px) {
    .wrap-select-editable {
        display: block;
    }
}
.wrap-select-editable:after {
    position: absolute;
    right: 20px;
    top: 0px;
    content: "\2023";
    display: block;
    font-size: 30px;
    line-height: 50px;
    transform: rotate(90deg);
    color: #a1b8c4;
    z-index: 1;
}
.wrap-select-editable:hover:after {
    color: #435762;
}
.wrap-select-editable select {
    outline: none;
    display: block;
    width: 396px;
    background: none;
    color: #303030;
    font-size: 14px;
    line-height: 50px;
    height: 50px;
    border-radius: 30px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}
@media (max-width: 479px) and (min-width: 320px) {
    .wrap-select-editable select {
        width: 100%;
    }
}

/*.wrap-select-editable select::-ms-expand{
    display: none;
}*/
.wrap-select-editable select:required:invalid {
    color:#a1b2be;
}
.wrap-select-editable option[value=""][disabled] {
    display: none;
}
.wrap-select-editable option {
    color: #303030;
}
/* для возможности "редактировать" выпадающий список */
.wrap-select-editable input[type=text] {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 50px;
    box-sizing: border-box;
    border-width: 0px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 85%;
    font-size: 16px;
    line-height: 50px;
    padding-left: 20px;
    z-index: 2;
}
.wrap-select-editable input[type=text]::-webkit-input-placeholder { font-style: italic; }
.wrap-select-editable input[type=text]::-moz-placeholder          { font-style: italic; }
.wrap-select-editable input[type=text]:-moz-placeholder           { font-style: italic; }
.wrap-select-editable input[type=text]:-ms-input-placeholder      { font-style: italic; }

/* HACKS */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */

  /* в IE-10 некорректно работает кастомизированный выпадающий список (проблемы с z-index) */
  .wrap-select-editable:after {
      display: none;
  }
}


/* выпадающий список */
.wrap-select {
    position: relative;
    background: #e9f3f6;
    border-radius: 30px;
}
.wrap-select:after {
    position: absolute;
    right: 20px;
    top: 0px;
    content: "\2023";
    display: block;
    font-size: 30px;
    transform: rotate(90deg);
    color: #a1b8c4;
    z-index: 1;
}
.wrap-select:hover:after {
    color: #435762;
}
.wrap-select-disabled:hover:after {
    color: #a1b8c4;
}
.wrap-select select {
    outline: none;
    display: block;
    width: 396px;
    background: none;
    color: #303030;
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    border-radius: 30px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}
.wrap-select select::-ms-expand{
    display: none;
}
.wrap-select select:required:invalid {
    color:#a1b2be;
}
.wrap-select option[value=""][disabled] {
    display: none;
}
.wrap-select option {
    color: #303030;
}


/* текстовое поле */
.form-field input[type=text] {
    width: 396px;
    color: #303030;
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    border-radius: 30px;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    background: #e9f3f6;
    box-sizing: border-box;
}


/* выбор файла */
.edu-upload {
     float: left;
     position: relative;
     width: 137px;
     height: 40px;
     z-index: 1;
     background: #ebf2f6;
     border-radius: 30px;
     padding: 8px 4px;
     color: #86a2b2;
     text-align: center;
     box-sizing: border-box;
     margin-right: 19px;
}
.edu-upload input[type="file"]{
    display: none;
}
.edu-upload label {
     display: block;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     cursor: pointer;
}
.edu-upload span {
     font-size: 14px;
     line-height: 40px;
}


/* чекбокс */
.edu-checkbox-panel {
    text-align: left;
    margin-top: 19px;
}
.edu-checkbox {
    display: none;
}
.edu-checkbox + label {
    margin-left: 0;
    -webkit-user-select: none;
    cursor: pointer;
    color: #99aab4;
    font-size: 12px;
    display: inline-block;
}
.edu-checkbox + label a {
    font-size: 12px;
    text-decoration: none;
}
.edu-checkbox + label a:hover {
    text-decoration: underline;
}
.edu-checkbox:checked + label {
    color: #303030 !important;
}
.edu-checkbox + label:hover {
    color: #303030 !important;
}
.edu-checkbox + label:before {
    content: "";
    background: url("../images/cabinet/check.png") no-repeat 0 -17px;
    width: 18px;
    height: 17px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
}
.edu-checkbox:checked + label:before {
    content: "";
    background: url("../images/cabinet/check.png") no-repeat 0 0;
    width: 18px;
    height: 17px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
}
.edu-checkbox + label:hover:before {
    content: "";
    background: url("../images/cabinet/check.png") no-repeat 0 -34px;
    width: 18px;
    height: 17px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
}
.edu-checkbox:checked + label:hover:before {
    content: "";
    background: url("../images/cabinet/check.png") no-repeat 0 0;
    width: 18px;
    height: 17px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
}
.edu-checkbox:disabled + label:before {
    content: "";
    background: url("../images/cabinet/check.png") no-repeat 0 -17px;
    width: 18px;
    height: 17px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.edu-checkbox:disabled + label {
    color: #999;
    cursor: not-allowed;
}
.edu-checkbox:disabled + label:hover {
    color: #999 !important;
    cursor: not-allowed;
}


/* голубая кнопка */
.form-field .blue-button {
    display: block;
    margin: 0 auto;
    border: none;
    border-radius: 30px;
    width: 304px;
    background: #43c8ff;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0px 15px 15px 1px rgba(66, 200, 255, 0.25);
    margin-top: 46px;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 48px;
    height: 48px;
}
.form-field .blue-button:disabled {
    background: #cbd5df;
    box-shadow: 0px 15px 15px 1px rgba(180, 180, 180, 0.25);
    cursor: not-allowed;
}
.form-field .blue-button:hover {
    background: #42c0ff;
}
.form-field .blue-button:disabled:hover {
    background: #cbd5df;
    cursor: not-allowed;
}


/* белая кнопка */
.white-button {
    display: block;
    font-size: 14px;
    color: #86a2b2;
    text-align: center;
    height: 40px;
    border: 1px solid #d4e3e7;
    line-height: 40px;
    border-radius: 30px;
    box-sizing: border-box;
}
.white-button:hover {
    color: #303030;
    border-color: #a1b8c4;
}


/* желтая кнопка */
.yellow-button {
    display: block;
    font-size: 14px;
    color: black;
    background-color: #ffd300;
    text-align: center;
    height: 40px;
    border-width: 0px;
    line-height: 40px;
    border-radius: 30px;
    box-sizing: border-box;
}
.yellow-button:hover {
    background-color: #f3ca05;
}


/* желтая кнопка отправки */
.yellow-send-button {
    display: inline-block;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
    color: black;
    background-color: #ffd300;
    text-align: center;
    height: 50px;
    border-width: 0px;
    line-height: 50px;
    border-radius: 30px;
    box-sizing: border-box;
}
.yellow-send-button:hover {
    background-color: #f3ca05;
}
@media (max-width: 479px) and (min-width: 320px) {
    .yellow-send-button {
        font-size: 14px;
    }
}
.yellow-send-button-disabled, .yellow-send-button-disabled:hover {
    background-color: #a9a8a8;
}




body {
    background-color: #f0f8fb;
    font-family: 'Open Sans', sans-serif;
}

.container {
    width: 820px;
    /*background-color: white;*/
    margin: 0 auto;
}

.title {
    text-align: center;
    color: #9bb3c0;
    font-weight: 300;
    font-size: 32px;
    line-height: 38px;
    padding-top: 36px;
    padding-bottom: 43px;
    width: 450px;
    margin: 0 auto;
}

.menu {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.menu-item {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

.menu-item a  {
    display: block;
    position: relative;
    width: 250px;
    height: 85px;
    box-sizing: border-box;
    background-color: #f0f8fb;
    padding: 18px 20px 20px 100px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    color: #303030;
    font-size: 15px;
    font-weight: bold;
    border: 2px #d2dce3 solid;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none;
}
.menu-item a:hover {
    background-color: white;
}
.menu-item-education a {
    padding-top: 29px;
}

.menu-item-active a {
    cursor: default;
    background-color: white;
    border-width: 0px;
    -webkit-box-shadow: 3px 9px 24px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow:    3px 9px 24px 0px rgba(0, 0, 0, 0.17);
    box-shadow:         3px 9px 24px 0px rgba(0, 0, 0, 0.17);
}

.menu-item-disabled a {
    /*background-color: #f0f8fb;*/
    cursor: default;
}

.menu-item a:before {
    content: "";
    display: block;
    position: absolute;
    left: 34px;
    top: 22px;
    background-image: url(/images/cabinet/menu.png);
    background-repeat: no-repeat;
}

.menu-item-training a:before {
    top: 19px;
}

.menu-item-education a:before {
    background-position: -0px -44px;
    height: 36px;
    width: 35px
}
.menu-item-education.menu-item-active a:before {
    background-position: -35px -44px;
    height: 36px;
    width: 35px
}
.menu-item-attestation a:before {
    background-position: -88px -0px;
    height: 35px;
    width: 43px
}
.menu-item-attestation.menu-item-active a:before {
    background-position: -88px -35px;
    height: 35px;
    width: 43px
}
.menu-item-training a:before {
    background-position: -0px -0px;
    height: 44px;
    width: 44px
}
.menu-item-training.menu-item-active a:before {
    background-position: -44px -0px;
    height: 44px;
    width: 44px
}


.head-block {
    width: 215px;
    background-color: #44c9ff;
    color: white;
    border-radius: 6px;
    position: fixed;
    top: 20px;
    right: 2%;
    z-index:10;
}
.head-login {
    padding-top: 9px;
    overflow: hidden;
    font-size: 13px;
}
.head-login-link {
    color: white;
    text-decoration: underline;
}
.head-logout {
    padding-bottom: 9px;
}
.head-logout a {
    color: white;
    text-decoration: underline;
    font-size: 13px;
}
.head-avatar-block {
    float: left;
    margin-left: 12px;
    margin-top: 10px;
    margin-right: 10px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
}
.head-avatar-img {
    width: 36px;
}

.content {
    position: relative;
    background-color: white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-top: 41px;
    padding: 20px 20px 70px 20px;
    text-align: center;
    margin-bottom: 40px;
    -webkit-box-shadow: -3px 15px 78px -2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow:    -3px 15px 78px -2px rgba(0, 0, 0, 0.15);
    box-shadow:         -3px 15px 78px -2px rgba(0, 0, 0, 0.15);
}

.header {
    color: #474747;
    font-size: 45px;
    font-weight: lighter;
    margin: 0 auto;
    margin-top: 26px;
    width: 510px;
    line-height: 48px;
}



/********************/
/* ЛК - Образование */
/********************/


.edu-hint {
    color: #86a2b2;
    font-size: 14px;
    margin-top: 10px;
}

.subheader {
    color: #474747;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto;
    margin-top: 38px;
    margin-bottom: 34px;
    width: 410px;
}

.edu-form-container + .edu-form-container {
    margin-top: 72px;
}

.edu-del-block {
    width: 396px;
    margin: 0 auto;
    text-align: right;
}
.edu-del-ref {
    text-decoration: underline;
    color: red;
}

.edu-upload-label {
    font-size: 14px;
    text-align: left;
    padding-left: 8px;
    padding-bottom: 12px;
}

.edu-upload-filename {
    font-size: 14px;
    text-align: left;
    margin-top: 4px;
    margin-left: 9px;
    color: #86a2b2;
}

.edu-demands:after {
    clear: both;
    content: "";
    display: block;
}

.edu-demands {
    text-align: left;
    margin-top: 7px;
    position: relative;
}

.edu-demands a {
    font-size: 13px;
    color: #43c8ff;
    text-decoration: underline;
}
.edu-demands-ref:hover {
    color: #474747;
    text-decoration: none;
}

.edu-demands-popup {
    position: absolute;
    width: 328px;
    z-index: 3;
    font-size: 12px;
    color: #4b5862;
    text-align: left;
    background-color: white;
    padding: 31px;
    box-sizing: border-box;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 28px 3px rgba(50, 50, 50, 0.42);
    -moz-box-shadow:    0px 0px 28px 3px rgba(50, 50, 50, 0.42);
    box-shadow:         0px 0px 28px 3px rgba(50, 50, 50, 0.42);
}
.edu-demands-popup:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 150px;
    top: -8px;
    transform: rotate(45deg);
    background-color: white;
}
.edu-demands-popup p:not(:last-child) {
    margin-bottom: 12px;
}
.edu-demands-popup ul:not(:last-child) {
    margin-bottom: 12px;
}
.edu-demands-popup a {
    color: #4b5862;
    font-size: 12px;
    text-decoration: underline;
}

.edu-remarks {
    width: 375px;
    margin: 0 auto;
    margin-top: 34px;
}

.edu-separator {
    box-sizing: border-box;
    height: 1px;
    width: 500px;
    margin: 0 auto;
    border-top: 1px solid #d4e3e7;
    border-bottom: none;
    margin-top: 46px;
}

.subheader-sec {
    color: #474747;
    font-size: 18px;
    font-weight: bold;
    margin-top: 55px;
    margin-bottom: 20px;
}

.subheader-hint {
    width: 375px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 43px;
}

.edu-photo-notes {
    float: left;
    font-size: 13px;
    text-align: left;
    width: 260px;
    margin-top: 15px;
    color: #86a2b2;
}
.edu-photo-notes p {
    margin-bottom: 5px;
}

.edu-photo-demands {
    list-style-type: disc;
    list-style-position: inside;
}

.edu-photo-block {
    position: relative;
    margin: 0 auto;
    width: 480px;
    margin-top: 41px;
    margin-bottom: 80px;
}

.edu-photo-upload {
    position: absolute;
    left: 316px;
    top: 147px;
}

.edu-avatar {
    width: 160px;
    height: 195px;
    border: 1px solid #d4e3e7;
    margin-left: 304px;
    display: block;
    overflow: hidden;
}
.edu-avatar img {
    width: 150px;
    height: auto;
    margin-top: 5px;
}

.edu-upload-photo-filename {
    float: right;
    margin-top: 7px;
}

.submit-hint {
    width: 460px;
    margin: 0 auto;
    margin-top: 33px;
}

.edu-item-container {
    margin-top: 32px;
}
.edu-item {
    text-align: left;
    border: 1px #d2dce3 solid;
    margin-bottom: 10px;
    border-radius: 8px;
}
.edu-item-col-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: start;
    align-items: start;
    font-size: 12px;
}
.edu-item-col3 {
    width: 33.3%;
    box-sizing: border-box;
    padding: 20px;
}
.edu-link-more {
    display: inline-block;
    text-decoration: underline;
    margin-top: 20px;
}
.edu-submit-panel .edu-send-button {
    margin-top: 25px;
}
.edu-submit-panel .edu-checkbox-panel {
    margin-top: 34px;
}


/********************/
/* ЛК - Аттестация  */
/********************/

.att-item-container {
    margin-top: 32px;
}
.att-item {
    text-align: left;
    border: 1px #d2dce3 solid;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
}
.att-item-col-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: start;
    align-items: start;
    font-size: 12px;
}
.att-item-col2-left {
    width: 80%;
    box-sizing: border-box;
    padding-right: 20px;
}
.att-item-col2-right {
    width: 20%;
    box-sizing: border-box;
    padding-top: 10px;
}
.att-item-att-subheader {
    font-size: 1.1em;
    margin-top: 6px;
    margin-bottom: 6px;
}
.att-item-att-subheader > b:first-child {
    text-decoration: underline;
}
.att-item-att-record {
    background-color: #F7F5F5;
    border: 1px solid #E3E3E3;
    margin-bottom: 5px;
    padding: 5px;
}

.attest-step-container {
    position: relative;
}
.attest-step {
   padding-top: 10px;
}

.step-num {
    color: #dae5eb;
    font-size: 48px;
    font-weight: 100;
    line-height: 48px;
}

.attest-step1 .next-step {
    width: 205px;
    margin-top: 83px;
    margin-bottom: 27px;
}
/* форма отправки отсутствующей специализации */
.m-spec {
    background-color: #ebf0f3;
    margin-top: 60px;
}

.m-spec-header {
    padding-top: 70px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 24px;
    font-weight: bold;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-spec-header {
        padding-top: 45px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-spec-header {
        padding-top: 56px;
    }
}

.m-spec-text {
    margin: 0 auto;
    margin-top: 47px;
    color: #899ca8;
    font-size: 18px;
    text-align: center;
    max-width: 550px;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 960px) and (min-width: 320px) {
    .m-spec-text {
        font-size: 16px;
        line-height: 26px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-spec-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 30px;
    }
}

.m-spec-form {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 140px;;
    vertical-align: top;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-spec-form {
        padding-top: 22px;
        padding-bottom: 44px;
    }
}

.m-spec-cat-list {
    margin: 14px;
    vertical-align: top;
}

.m-spec-send-button {
    margin: 14px;
    vertical-align: top;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-spec-send-button {
        margin-top: 27px;
        margin-left: 0px;
    }
}
/**/
.step1-num-passed {
    color: #899ca8;
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 20px;
    display: none;
}

.step2-hint {
    color: #303030;
    font-size: 14px;
    font-weight: bold;
}

.step2-themes {
    color: #86a2b2;
    font-size: 14px;
    width: 500px;
    margin: 0 auto;
    line-height: 24px;
    margin-top: 12px;
}

.step2-specs {
    color: #86a2b2;
    font-size: 14px;
    text-align: left;
    margin: 0 auto;
    width: 500px;
    margin-top: 22px;
}

.step2-specs li {
    float: left;
    list-style-type: disc;
    list-style-position: inside;
    width: 50%;
    padding-bottom: 10px
}
.step2-specs:after {
    clear: both;
    content: "";
    display: block;
}

.step2-choose {
    color: #86a2b2;
    font-size: 14px;
    width: 400px;
    margin: 0 auto;
    line-height: 24px;
    margin-top: 27px;
}

.attest-step2 .next-step {
    width: 205px;
    margin-top: 32px;
    margin-bottom: 27px;
}

.attest-step2 .white-button {
    width: 175px;
    margin: 0 auto;
    margin-top: 36px;
}

.step3-hint-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: 116px;
    margin-right: 60px;
    margin-top: 42px;
}

.step3-hint {
    width: 30%;
    color: #9bb3c0;
    text-align: left;
}
.step3-hint:after {
    clear: both;
    content: "";
    display: block;
}

.step3-hint .num {
    float: left;
    font-size: 48px;
    font-weight: 100;
    line-height: 48px;
    margin-right: 14px;
    height: 100%;
}
.step3-hint .unit {
    font-size: 22px;
    font-weight: 100;
    line-height: 22px;
}
.step3-hint .text {
    font-size: 14px;
    display: block;
    line-height: 18px;
    margin-top: 7px;
}

.step3-text-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: 48px;
    margin-right: 29px;
    margin-top: 48px;
    text-align: left;
    color: #86a2b2;
    font-size: 14px;
    line-height: 21px;
}

.step3-row {
    width: 30%;
}
.step3-row .num {
    font-size: 30px;
    line-height: 30px;
    font-weight: 100;
}
.step3-row .text {
    margin-top: 14px;
}

.attest-step3 .next-step {
    width: 205px;
    margin-top: 32px;
    margin-bottom: 27px;
}

.attest-step3 .white-button {
    width: 175px;
    margin: 0 auto;
    margin-top: 36px;
}

.step4-hint {
    font-size: 14px;
    color: #303030;
    width: 358px;
    margin: 0 auto;
    font-weight: bold;
    line-height: 23px;
}
.step4-hint a {
    text-decoration: underline;
    color: #303030;
}

.step4-choose {
    color: #86a2b2;
    font-size: 14px;
    margin-top: 55px;
}

.attest-step4 .edu-demands {
    text-align: center;
    margin-top: 32px;
}

.attest-step4 .white-button {
    width: 175px;
    margin: 0 auto;
    margin-top: 32px;
}

.attest-step4 .next-step {
    width: 205px;
    margin-top: 80px;
    margin-bottom: 27px;
}

.step5-results {
    color: #303030;
    font-size: 14px;
    font-weight: normal;
    margin-top: 42px;
}
.step5-results-wrap {
    display: inline-block;
    text-align: left;
    margin-left: 52px;
}
.step5-results .key {
    position: relative;
    margin-bottom: 13px;
}
.step5-results .val {

}
.step5-results .key:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 20px;
    background-repeat: no-repeat;
}
.step5-results .key.succ:before {
    background-image: url(/images/cabinet/succ.png);
    left: -50px;
    top: 0px;
}
.step5-results .key.fail:before {
    background-image: url(/images/cabinet/fail.png);
    left: -47px;
    top: 4px;
}

.attest-step5 .submit-button {
    width: 205px;
    margin: 0 auto;
    margin-top: 53px;
}

.step5-thanks {
    width: 430px;
    margin: 0 auto;
    margin-top: 21px;
}


/********************/
/*  ЛК - Обучение   */
/********************/

.train-to-main {
    position: absolute;
    margin-left: 65px;
    top: 66px;
    text-align: left;
}
@media (max-width: 720px) and (min-width: 320px) {
    .train-to-main {
        position: relative;
        margin-left: 30px;
        margin-top: 12px;
        top: 0px;
    }
}
@media (max-width: 445px) and (min-width: 320px) {
    .train-to-main {
        margin-left: 0px;
    }
}
.train-to-main-ref {
    font-size: 12px;
    color: #9bb4c0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 20px;
}
.train-to-main-ref:hover {
    color: #86a2b2;
}
.train-to-main-ref:before {
    content : '';
    display: block;
    position: absolute;
    width: 10px;
    height: 9px;
    background-image: url(/images/cabinet/main_arrow.png);
    background-repeat: no-repeat;
    top: 8px;
}

.train-header {
    color: #86a2b2;
    line-height: 24px;
    text-align: center;
    width: 350px;
    margin: 0 auto;
    margin-top: 33px;
}
@media (max-width: 520px) and (min-width: 320px) {
    .train-header {
        width: auto;
    }
}

.train-steps {
    width: 350px;
    margin: 0 auto;
    margin-top: 24px;
    text-align: left;
}
@media (max-width: 520px) and (min-width: 320px) {
    .train-steps {
        width: auto;
    }
}
.train-steps-row {
    position: relative;
    padding-top: 15px;
}
.train-steps-row:before {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 100%;
    border-right: 3px solid #dae7ed;
    left: 58px;
}
.train-steps-row-1:before {
    top: 43px;
}
.train-steps-row-2:before {
}
.train-steps-row-3:before {
    border-width: 0px;
}
.train-steps-num {
    font-size: 48px;
    color: #34c3ff;
    font-weight: 300;
    position: absolute;
    line-height: 48px;
}
.train-steps-num:before {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #dae7ed;
    right: -39px;
    top: 23px;
}
.train-steps-row-3 .train-steps-num:after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 100%;
    border-right: 3px solid #dae7ed;
    left: 58px;
    top: -17px;
}
.train-steps-desc {
    color: #86a2b2;
    font-size: 13px;
    margin-left: 98px;
    padding-top: 9px;
}

.train-stamps {
    width: 380px;
    margin: 0 auto;
    margin-top: 65px;
}
@media (max-width: 450px) and (min-width: 320px) {
    .train-stamps {
        width: 100%;
        margin-top: 45px;
    }
}

.train-stamps .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
}
.train-stamps .owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 5px 8px;
}

.train-text {
    color: #86a2b2;
    line-height: 24px;
    width: 514px;
    margin: 0 auto;
    margin-top: 30px;
}
@media (max-width: 580px) and (min-width: 320px) {
    .train-text {
        width: 100%;
        font-size: 15px;
        line-height: 21px;
    }
}

.train-item-container {
    width: 448px;
    margin: 0 auto;
}
@media (max-width: 500px) and (min-width: 320px) {
    .train-item-container {
        width: 100%;
    }
}
@media (max-width: 500px) and (min-width: 320px) {
    .train-item-wrapper {
        float: left;
        width: 50%;
        box-sizing: border-box;
    }
}

.train-item {
    display: block;
    position: relative;
    width: 130px;
    height: 130px;
    float: left;
    border-radius: 6px;
    background-color: #f0f8fb;
    color: #303030;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    margin: 9px;
    padding: 82px 10px 0px 10px;
    box-sizing: border-box;
}
@media (max-width: 500px) and (min-width: 320px) {
    .train-item-wrapper:nth-child(even) .train-item {
        float: left;
    }
    .train-item-wrapper:nth-child(odd) .train-item {
        float: right;
    }
}
.train-item:hover {
    border: 2px solid #d2dce3;
    background-color: white;
}
.train-item:before {
    content : '';
    display: block;
    position: absolute;
    height: 44px;
    background-image: url(/images/cabinet/courses/1.png);
    background-repeat: no-repeat;
    top: 28px;
    left: 50%;
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
.train-item-editor:before {
    width: 35px;
    background-image: url(/images/cabinet/courses/editor.png);
}
.train-item-editor:hover:before {
    background-image: url(/images/cabinet/courses/editor_a.png);
}
.train-item-text:before {
    width: 43px;
    background-image: url(/images/cabinet/courses/text.png);
}
.train-item-text:hover:before {
    background-image: url(/images/cabinet/courses/text_a.png);
}
.train-item-landing:before {
    width: 35px;
    background-image: url(/images/cabinet/courses/landing.png);
}
.train-item-landing:hover:before {
    background-image: url(/images/cabinet/courses/landing_a.png);
}
.train-item-lsi:before {
    width: 44px;
    background-image: url(/images/cabinet/courses/lsi.png);
}
.train-item-lsi:hover:before {
    background-image: url(/images/cabinet/courses/lsi_a.png);
}
.train-item-seo:before {
    width: 31px;
    top: 35px;
    background-image: url(/images/cabinet/courses/seo.png);
}
.train-item-seo:hover:before {
    background-image: url(/images/cabinet/courses/seo_a.png);
}
.train-item-email:before {
    width: 35px;
    background-image: url(/images/cabinet/courses/email.png);
}
.train-item-email:hover:before {
    background-image: url(/images/cabinet/courses/email_a.png);
}
.train-item-smm:before {
    width: 32px;
    top: 32px;
    background-image: url(/images/cabinet/courses/smm.png);
}
.train-item-smm:hover:before {
    background-image: url(/images/cabinet/courses/smm_a.png);
}
.train-item-info:before {
    width: 40px;
    background-image: url(/images/cabinet/courses/info.png);
}
.train-item-info:hover:before {
    background-image: url(/images/cabinet/courses/info_a.png);
}
.train-item-storytelling:before {
    width: 30px;
    background-image: url(/images/cabinet/courses/storytelling.png);
}
.train-item-storytelling:hover:before {
    background-image: url(/images/cabinet/courses/storytelling_a.png);
}
.train-item-lang:before {
    width: 44px;
    background-image: url(/images/cabinet/courses/lang.png);
}
.train-item-lang:hover:before {
    background-image: url(/images/cabinet/courses/lang_a.png);
}
.train-item-market:before {
    width: 44px;
    background-image: url(/images/cabinet/courses/market.png);
}
.train-item-market:hover:before {
    background-image: url(/images/cabinet/courses/market_a.png);
}

.train-item-all {
    margin-top: 35px;
}
.train-item-all-ref {
    display: block;
    color: #303030;
    font-size: 15px;
    border: 2px solid #d2dce3;
    border-radius: 6px;
    padding: 6px;
}
.train-item-all-ref:hover {
    border-color: #a1b8c4;
}
.train-item-more {
    margin-top: 35px;
}
.train-item-more-ref {
    color: #52b4f3;
    font-size: 14px;
    border-bottom: 1px dotted #52b4f3;
}
.train-item-more-ref:hover {
    color: #303030;
    border-bottom: none;
}


.train-courses-back {
    margin-left: 50px;
}
@media (max-width: 720px) and (min-width: 320px) {
    .train-courses-back {
        margin-left: 30px;
    }
}
@media (max-width: 445px) and (min-width: 320px) {
    .train-courses-back {
        margin-left: 0px;
    }
}
.train-courses-note {
    color: #86a2b2;
    border: 2px solid #d2dce3;
    border-radius: 6px;
    font-size: 12px;
    padding: 9px;
}
.train-courses {
    width: 682px;
    margin: 0 auto;
    margin-top: 37px;
}
@media (max-width: 740px) and (min-width: 320px) {
    .train-courses {
        width: auto;
    }
}
.train-courses-item {
    text-align: left;
    padding-top: 13px;
    padding-bottom: 21px;
    border-top: 1px solid #d2dce3;
}
.train-courses-item:last-child {
    border-bottom: 1px solid #d2dce3;
}
.train-courses-item-col1 {
    float: left;
    width: 29%;
    padding-right: 50px;
    box-sizing: border-box;
}
.train-courses-item-col2 {
    float: left;
    width: 45%;
    padding-right: 66px;
    box-sizing: border-box;
}
.train-courses-item-col3 {
    float: left;
    width: 26%;
    box-sizing: border-box;
}
@media (max-width: 740px) and (min-width: 320px) {
    .train-courses-item-col1 {
        padding-right: 10px;
    }
    .train-courses-item-col2 {
        padding-right: 10px;
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .train-courses-item-col1 {
        float: none;
        width: 100%;
        padding-right: 0px;
    }
    .train-courses-item-col2 {
        float: none;
        width: 100%;
        padding-right: 0px;
        margin-top: 15px;
    }
    .train-courses-item-col3 {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
}
.train-courses-item-company {
    color: #303030;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 13px;
}
@media (max-width: 740px) and (min-width: 320px) {
    .train-courses-item-img {
        max-width: 100%;
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .train-courses-item-img {
        width: auto;
    }
}
.train-courses-item-course-date {
    color: #303030;
    font-size: 13px;
    margin-bottom: 4px;
}
.train-courses-item-name {
    color: #86a2b2;
    font-size: 12px;
}
.train-courses-item-name-val {
    display: inline;
    color: #303030;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px dashed #303030;
}
.train-courses-hint {
    color: #86a2b2;
    font-size: 12px;
    margin-top: 10px;
}
.train-courses-hint ul li {
    list-style: disc inside;
}
.train-courses-hint ol li {
    list-style: decimal inside;
}

.train-courses-more {
    display: none;
    position: relative;
    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    background: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    font-size: 12px;
    margin-top: -32px;
    height: 51px;
}
.train-courses-more-ref {
    position: absolute;
    right: 0px;
    bottom: 0px;
    color: #303030;
}
.train-courses-discount {
    color: #303030;
    font-size: 14px;
    line-height: 20px;
}
.train-courses-price {
    color: #86a2b2;
    font-size: 14px;
    margin-top: 10px;
}
.train-courses-price-old {
    text-decoration: line-through;
    font-size: 13px;
}
.train-courses-price-new {
    color: #EF6852;
    font-weight: bold;
    margin-left: 8px;
}
.train-courses-promo {
    color: #86a2b2;
    font-size: 12px;
    margin-top: 10px;
}
.train-courses-promo-val {
    color: #303030;
    font-size: 14px;
    font-weight: 600;
    margin-top: 3px;
}
.train-courses-ref {
    color: #899ca8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 1px solid #d2dce3;
    padding: 5px 20px;
    display: inline-block;
    margin-top: 18px;
    text-align: center;
}
.train-courses-ref:hover {
    border-color: #899ca8;
}

.train-courses-no-items {
    margin-top: 95px;
    margin-bottom: 41px;
}


/* free item banner */
.train-courses-free-banner + .train-courses-item {
    border-top-width: 0px;
}
.train-courses-free-banner {
    background-color: #d8effd;
    border-radius: 8px;
    cursor: pointer;
    height: 50px;
}
.train-courses-free-banner-text1 {
    display: block;
    float: left;
    color: #1391c6;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.5px;
    width: 19%;
    margin-left: 28px;
    margin-top: 7px;
    text-align: left;
}
.train-courses-free-banner-img1 {
    display: block;
    float: left;
    height: 50px;
    margin-left: 16px;
}
.train-courses-free-banner-text2 {
    display: block;
    float: left;
    color: #1391c6;
    font-size: 12px;
    font-weight: bold;
    width: 46%;
    text-align: left;
    margin-left: 45px;
    margin-top: 7px;
}
.train-courses-free-banner-img2 {
    display: block;
    float: left;
    margin-left: 28px;
    margin-top: 15px;
}
@media (max-width: 690px) and (min-width: 320px) {
    .train-courses-free-banner {
        height: 100px;
    }
    .train-courses-free-banner-text1 {
        width: 60%;
        margin-top: 12px;
    }
    .train-courses-free-banner-text2 {
        width: 80%;
        margin-top: 0px;
        margin-left: 28px;
    }
    .train-courses-free-banner-img2 {
        margin-top: 9px;
    }
}
@media (max-width: 480px) and (min-width: 320px) {
    .train-courses-free-banner-img1 {
        margin-left: 0px;
    }
    .train-courses-free-banner-text1 {
        margin-left: 10px;
    }
    .train-courses-free-banner-text2 {
        margin-left: 10px;
        font-size: 11px;
        line-height: 13px;
    }
    .train-courses-free-banner-img2 {
        margin-left: 0px;
    }
}

/* free item */
.train-courses-free-item-col1 {
    float: left;
    width: 33%;
    padding-right: 16px;
    box-sizing: border-box;
}
.train-courses-free-item-col2 {
    float: left;
    width: 48%;
    padding-right: 25px;
    box-sizing: border-box;
}
.train-courses-free-item-col3 {
    float: left;
    width: 19%;
    text-align: center;
    box-sizing: border-box;
}
.train-courses-free-item-img {
    float: left;
    max-width: 75px;
}
.train-courses-free-item-company {
    color: black;
    font-size: 12px;
    line-height: 17px;
    margin-left: 90px;
}
.train-courses-free-item-download {
    color: #78858d;
    font-size: 12px;
    margin-left: 114px;
    margin-top: 8px;
    position: relative;
}
.train-courses-free-item-download:before {
    content : '';
    display: block;
    position: absolute;
    width: 17px;
    height: 11px;
    background-image: url(/images/cabinet/eye.png);
    background-repeat: no-repeat;
    top: 3px;
    left: -24px;
}
.train-courses-free-item-review {
    color: #78858d;
    font-size: 13px;
    text-align: left;
}
.train-courses-free-item-review-up-wrap {
    float: left;
}
.train-courses-free-item-review-down-wrap {
    float: right;
}
.train-courses-free-item-review-up {
    margin-left: 9px;
}
.train-courses-free-item-review-down {
    margin-left: 9px;
}
.train-courses-free-item-review-up-img {
    top: 4px;
    position: relative;
    margin-left: 7px;
    cursor: pointer;
}
.train-courses-free-item-review-down-img {
    top: 7px;
    position: relative;
    cursor: pointer;
}
.train-courses-ref-go {
    color: #899ca8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 1px solid #d2dce3;
    width: 100%;
    padding: 6px 0px 6px 0px;
    display: inline-block;
    margin-top: 40px;
    text-align: center;
}
.train-courses-ref-go:hover {
    border-color: #899ca8;
}
.train-courses-ref-download {
    color: #1391c6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 1px solid #1391c6;
    display: inline-block;
    margin-top: 40px;
    position: relative;
    width: 100%;
    padding: 6px 37px 6px 0px;
    text-align: right;
    box-sizing: border-box;
}
.train-courses-ref-download:after {
    content : '';
    display: block;
    position: absolute;
    width: 11px;
    height: 13px;
    background-image: url(/images/cabinet/download.png);
    background-repeat: no-repeat;
    top: 8px;
    right: 18px;
}
.train-courses-ref-download:hover {
    color: white;
    background-color: #1391c6;
}
.train-courses-ref-download:hover:after {
    background-image: url(/images/cabinet/download_hover.png);
}
.train-courses-free-filter-panel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 682px;
    margin: 0 auto;
}
@media (max-width: 740px) and (min-width: 320px) {
    .train-courses-free-filter-panel {
        width: auto;
    }
}
.train-courses-free-filter-ref {
    color: #1391c6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 1px solid #1391c6;
    margin-top: 10px;
    padding: 6px 35px 6px 35px;
    box-sizing: border-box;
}
.train-courses-free-filter-ref.active {
    color: white;
    background-color: #1391c6;
}

@media (max-width: 560px) and (min-width: 320px) {
    .train-courses-free-item-col1 {
        float: none;
        width: 100%;
        padding-right: 0px;
    }
    .train-courses-free-item-col2 {
        float: none;
        width: 100%;
        padding-right: 0px;
        margin-top: 15px;
    }
    .train-courses-free-item-col3 {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .train-courses-ref-download {
        width: 120px;
    }
    .train-courses-ref-go {
        width: 120px;
    }
}


/*******************/
/* ЛК - Сообщение  */
/*******************/

.final-mesage {
    padding-top: 50px;
}


/*******************/
/*     BBCode      */
/*******************/

.bbcode-table { border: 1px solid grey; border-collapse: collapse; }
.bbcode-table th { background-color : #dadce6; }
.bbcode-table th, .bbcode-table td { border: 2px solid grey; padding: 3px; }