
@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; }

* { outline: none; }

/* общие стили */

.clear { clear: both; }
.hidden { display: none; }


.m-subhedear {
    font-size: 48px;
    color: #303030;
    font-weight: 100;
    line-height: 54px;
}
@media (max-width: 960px) and (min-width: 320px) {
  .m-subhedear {
      font-size: 32px;
      line-height: 37px;
  }
}
@media (max-width: 479px) and (min-width: 320px) {
  .m-subhedear {
      font-size: 26px;
      line-height: 32px;
      font-weight: bold;
  }
}


/* контролы */

::-webkit-input-placeholder { color: #a1b2be; }
::-moz-placeholder          { color: #a1b2be; }
:-moz-placeholder           { color: #a1b2be; }
:-ms-input-placeholder      { color: #a1b2be !important; }

/* выпадающий список */
.wrap-select {
    display: inline-block;
    position: relative;
    background: #e9f3f6;
    border-radius: 30px;
    margin-bottom: 10px;
}
.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 select {
    outline: none;
    display: block;
    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;
}

/* текстовое поле */
.wrap-input 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;
}

/* желтая кнопка */
.yellow-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-button:hover {
    background-color: #f3ca05;
}
@media (max-width: 479px) and (min-width: 320px) {
    .yellow-button {
        font-size: 14px;
    }
}
.yellow-button-disabled, .yellow-button-disabled:hover {
    background-color: #a9a8a8;
}



/* главная */


body {
    font-family: 'Open Sans', sans-serif;
}

.m-header {
    height: 493px;
    background-color: #19437c;
    background-image: url(/images/main/header-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    color: white;
    text-align: center;
}
@media (max-width: 600px) and (min-width: 320px) {
  .m-header {
      background-image: none;
      height: auto;
      padding-bottom: 130px;
  }
}

.m-enter {
    display: block;
    position: absolute;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    top: 15px;
    right: 20%;
    font-weight: bold;
    border: 1px solid #4DCBFE;
    padding: 12px 24px 12px 38px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.m-enter:before {
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 10px;
    background-repeat: no-repeat;
    background-image: url(/images/main/login.png);
    left: 20px;
    top: 15px;
}

.m-title {
    font-size: 72px;
    font-weight: lighter;
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 927px;
    margin: 0 auto;
    line-height: 86px;
}
@media (max-width: 960px) and (min-width: 320px) {
  .m-title {
      font-size: 38px;
      line-height: 50px;
      padding-top: 134px;
  }
}
@media (max-width: 600px) and (min-width: 320px) {
  .m-title {
      font-size: 28px;
      line-height: 38px;
      padding-top: 80px;
  }
}

.m-header-slogan {
    font-size: 25px;
    margin-top: 28px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 100;
}
@media (max-width: 960px) and (min-width: 320px) {
  .m-header-slogan {
      font-size: 18px;
      line-height: 24px;
  }
}

.m-header-know-more {
    margin: 0 auto;
    margin-top: 50px;
}

.m-tell {
    /*height: 540px;*/
    margin-top: -56px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
@media (max-width: 1156px) and (min-width: 320px) {
    .m-tell {
        -webkit-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

.m-tell-block {
    max-width: 585px;
    -webkit-align-self: center;
    align-self: center;
    margin-right: 80px;
    margin-top: 30px;
    margin-left: 35px;
    margin-bottom: 30px;
    -webkit-flex-shrink: 1;
    flex-shrink: 1
}
@media (max-width: 1030px) and (min-width: 320px) {
  .m-tell-block {
      margin-right: 35px;
  }
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-tell-block {
        margin-top: 57px
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-tell-block {
        margin-top: 40px;
    }
}

.m-tell-header {
    margin-bottom: 46px;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-tell-header {
        margin-bottom: 28px;
    }
}

.m-tell-text {
    font-size: 16px;
    color: #899ca8;
    line-height: 25px;
}
@media (max-width: 960px) and (min-width: 320px) {
    .m-tell-text {
        font-size: 16px;
        line-height: 25px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-tell-text {
        font-size: 14px;
        line-height: 22px;
    }
}


.m-tell-text p {
    margin-top: 18px;
}


.m-tell-img { /* не даем сжимать картинку */
    -webkit-flex-basis: 611px;
    flex-basis: 611px;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
@media (max-width: 650px) and (min-width: 320px) {
    .m-tell-img {
        -webkit-flex-basis: auto;
        flex-basis: auto;
        width: 80%;
    }
}

.m-advant {
    background-color: #f2f8fb;
}

.m-advant-header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 72px;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-advant-header {
        max-width: none;
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 56px;
        padding-bottom: 50px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-advant-header {
        padding-top: 45px;
        padding-bottom: 33px;
    }
}

.m-advant-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: start;
    align-items: start;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-advant-container {
        -webkit-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

.m-advant-text {
    max-width: 354px;
    margin-right: 30px;
    margin-top: 14px;
    -webkit-flex-shrink: 1;
    flex-shrink: 1
}
@media (max-width: 1370px) and (min-width: 320px) {
    .m-advant-text {
        margin-left: 75px;
    }
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-advant-text {
        margin-top: 25px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-advant-text {
        margin-right: 10px;
    }
}

@media (max-width: 1370px) and (min-width: 320px) {
    .m-advant-img {
        width: 50%;
        height: 50%; /* для IE 10(11), они не сохраняют aspect ratio */
    }
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-advant-img {
        width: 80%;
    }
}

.m-advant-item {
    color: #105788;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
.m-advant-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 38px;
    height: 27px;
    background-repeat: no-repeat;
    background-image: url(/images/main/check.png);
    left: -55px;
    top: -4px;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-advant-item {
        font-size: 16px;
    }
}

.m-advant-note {
    display: block;
    color: #899ca8;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    padding-top: 15px;
    padding-bottom: 30px;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-advant-note {
        font-size: 14px;
        line-height: 22px;
    }
}

.m-advant-subnote {
    display: block;
    color: #899ca8;
    font-size: 12px;
    font-weight: normal;
    padding-bottom: 20px;
}

.m-advant-confirm {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 110px;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-advant-confirm {
        padding-top: 36px;
        padding-bottom: 76px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-advant-confirm {
        padding-top: 24px;
        padding-bottom: 56px;
    }
}


.m-att-header {
    text-align: center;
    margin-top: 69px;
    margin-bottom: 60px;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-att-header {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 56px;
        margin-bottom: 39px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-att-header {
        margin-top: 45px;
        margin-bottom: 33px;
    }
}

.m-att-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-list {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
    }
}

.m-att-list-item {
    max-width: 339px;
    display: block;
    position: relative;
    padding: 24px 26px 31px 26px;
    box-sizing: border-box;

    font-size: 48px;
    line-height: 48px;
    font-weight: 100;
    text-align: center;

    -webkit-flex-shrink: 1; /* для IE 10 обязательно нужно задавать flex-shrink */
    flex-shrink: 1;
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-list-item {
        max-width: none;
        width: 100%
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .m-att-list-item {
        padding: 22px 26px 11px 26px;
    }
}
.m-att-list-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 68px;
    border-bottom: 3px solid #dae7ed;
}
.m-att-list-item:nth-child(1):before {
    left: 50%;
}
.m-att-list-item:nth-child(3):before {
    right: 50%;
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-list-item:before {
        display: none;
        border: none;
    }
}

.m-att-li-digit {
    display: block;
    position: relative;
    color: #34c3ff;
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-li-digit {
        position: absolute;
        height: 100%;
        width: 22%;
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .m-att-li-digit {
        padding-left: 10px;
        box-sizing: border-box;
        text-align: left;
    }
}
@media (max-width: 450px) and (min-width: 320px) {
    .m-att-li-digit {
        padding-left: 0px;
    }
}
.m-att-li-digit:before {
    content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #dae7ed;
    top: 63px;
    left: 50%;
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-li-digit:before {
        top: 20px;
        left: 78%;
        -moz-transform: translate(-39%, 0%);
        -ms-transform: translate(-39%, 0%);
        -webkit-transform: translate(-39%, 0%);
        transform: translate(-39%, 0%);
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .m-att-li-digit:before {
        left: 60%;
    }
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-li-digit:after {
        content: "";
        display: block;
        position: absolute;
        width: 0px;
        height: 100%;
        border-bottom: none;
        border-right: 3px solid #dae7ed;
        top: 0px;
        left: 78%;
    }
    .m-att-list-item:nth-child(1) .m-att-li-digit:after {
        top: 25px;
    }
    .m-att-list-item:nth-child(3) .m-att-li-digit:after {
        height: 28px;
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .m-att-li-digit:after {
        left: 60%;
    }
}

.m-att-li-header {
    display: block;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin-top: 63px;
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-li-header {
        width: 78%;
        margin-left: 22%;
        margin-top: 0px;
        text-align: left;
        padding-left: 15px;
        box-sizing: border-box;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-att-li-header {
        font-size: 16px;
        line-height: 23px;
    }
}

.m-att-li-text {
    display: block;
    color: #899ca8;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    margin-top: 19px;
    margin-bottom: 30px;
}
@media (max-width: 680px) and (min-width: 320px) {
    .m-att-li-text {
        width: 78%;
        margin-left: 22%;
        margin-bottom: 0px;
        text-align: left;
        padding-left: 15px;
        box-sizing: border-box;
    }
}
@media (max-width: 530px) and (min-width: 320px) {
    .m-att-li-text {
        margin-top: 12px;
        margin-bottom: 1px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-att-li-text {
        font-size: 13px;
        line-height: 19px;
    }
}

.m-att-note {
    color: #899ca8;
    font-size: 12px;
    max-width: 510px;
    margin: 0 auto;
    text-align: center;
    margin-top: 42px;
    line-height: 19px;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-att-note {
        margin-top: 21px;
    }
}

.m-att-note-list {
}

.m-att-go-button {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 70px;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-att-go-button {
        padding-top: 30px;
        padding-bottom: 56px;
    }
}

.m-prof {
    background-color: #f2f8fb;
}

.m-prof-header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-top: 71px;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-prof-header {
        max-width: none;
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 56px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-prof-header {
        padding-top: 45px;
    }
}

.m-prof-text {
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
    color: #899ca8;
    font-size: 18px;
    line-height: 30px;
    margin-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 960px) and (min-width: 320px) {
    .m-prof-text {
        font-size: 16px;
        line-height: 26px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-prof-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 30px;
    }
}

.m-prof-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 140px;
}
@media (max-width: 960px) and (min-width: 320px) {
    .m-prof-list {
        padding-top: 38px;
        padding-bottom: 50px;
    }
}

.m-prof-list-item {
    width: 96px;
    position: relative;
    padding-top: 67px;
    text-align: center;
    color: #303030;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
@media (max-width: 700px) and (min-width: 320px) {
    .m-prof-list-item {
        margin-left: 2px;
        margin-right: 2px;
    }
}
.m-prof-list-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 54px;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
}
.m-prof-list-item-editor:before {
    background-image: url(/images/cabinet/courses/editor_a.png);
}
.m-prof-list-item-text:before {
    background-image: url(/images/cabinet/courses/text_a.png);
}
.m-prof-list-item-landing:before {
    background-image: url(/images/cabinet/courses/landing_a.png);
}
.m-prof-list-item-lsi:before {
    background-image: url(/images/cabinet/courses/lsi_a.png);
}
.m-prof-list-item-seo:before {
    background-image: url(/images/cabinet/courses/seo_a.png);
}
.m-prof-list-item-email:before {
    background-image: url(/images/cabinet/courses/email_a.png);
}
.m-prof-list-item-smm:before {
    background-image: url(/images/cabinet/courses/smm_a.png);
}
.m-prof-list-item-info:before {
    background-image: url(/images/cabinet/courses/info_a.png);
}
.m-prof-list-item-storytelling:before {
    background-image: url(/images/cabinet/courses/storytelling_a.png);
}


.m-bonus {
}

.m-bonus-header {
    padding-top: 75px;
    text-align: center;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-bonus-header {
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 56px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-bonus-header {
        padding-top: 45px;
    }
}

.m-bonus-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding-top: 63px;
    padding-bottom: 30px;
}
@media (max-width: 1040px) and (min-width: 320px) {
    .m-bonus-list {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 960px) and (min-width: 320px) {
    .m-bonus-list {
        padding-top: 50px;
    }
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-bonus-list {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center;
        /*-webkit-justify-content: space-evenly;
        justify-content: space-evenly;*/
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-bonus-list {
        padding-top: 38px;
    }
}

.m-bonus-list-item {
    max-width: 320px;
    position: relative;
    padding: 112px 45px 93px 45px;
    text-align: left;
    color: #2c2c2c;
    font-size: 18px;
    line-height: 24px;
    margin-left: 14px;
    margin-right: 14px;
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 15px;
    background-color: #f2f8fb;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    box-sizing: border-box;

    -webkit-flex-shrink: 1; /* для IE 10 обязательно нужно задавать flex-shrink */
    flex-shrink: 1;
}
@media (max-width: 830px) and (min-width: 320px) {
    .m-bonus-list-item {
        padding-bottom: 46px;
    }
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-bonus-list-item {
        font-size: 16px;
        line-height: 22px;
    }
}
.m-bonus-list-item:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 59px;
    background-position: 45px top;
    background-repeat: no-repeat;
    top: 37px;
    left: 0px;
}
.m-bonus-list-item:nth-child(1):before {
    background-image: url(/images/main/bonus1.png);
}
.m-bonus-list-item:nth-child(2):before {
    background-image: url(/images/main/bonus2.png);
}
.m-bonus-list-item:nth-child(3):before {
    background-image: url(/images/main/bonus3.png);
}
.m-bonus-list-item:nth-child(4):before {
    background-image: url(/images/main/bonus5.png);
}
.m-bonus-list-item:nth-child(5):before {
    background-image: url(/images/main/bonus4.png);
    top: -8px;
}

.m-bonus-li-text {
    display: block;
    font-size: 16px;
    color: #78858d;
    margin-top: 10px;
    line-height: 24px;
    font-weight: normal;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-bonus-li-text {
        font-size: 14px;
        line-height: 22px;
    }
}

.m-bonus-note {
    color: #78858d;
    font-size: 14px;
    max-width: 620px;
    text-align: center;
    margin: 0 auto;
    line-height: 24px;
    padding-left: 10px;
    padding-right: 10px;
}

.m-bonus-go-button {
    text-align: center;
    padding-top: 68px;
    padding-bottom: 107px;
}
@media (max-width: 479px) and (min-width: 320px) {
    .m-bonus-go-button {
        padding-top: 30px;
        padding-bottom: 56px;
    }
}







/* HACKS */

/* flex-direction: column; плохо работает в IE 10-11 - провоцирует появление горизонтального скроллинг из-за неверного расчета ширины flex-элементов */
@media (max-width: 830px) and (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .m-bonus-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


/* flex-direction: column; плохо работает в IE 10 - провоцирует появление горизонтального скроллинг из-за неверного расчета ширины flex-элементов */
@media (max-width: 479px) and (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /*.m-att-list {
        flex-direction: row;
    }*/
}

@supports (-ms-ime-align:auto) {
/* Microsoft Edge 12+ (all MS Edge) styles go here */

  /* в MS Edge не поддерживается justify-content=space-evenly */
  /*@media (max-width: 830px) and (min-width: 320px) {
      .m-bonus-list {
          justify-content: center;
      }
  }*/



}