@font-face {
    font-family: 'site_font';
    src: url('/fonts/robotoslab/RobotoSlab-Regular.eot');
    src: url('/fonts/robotoslab/RobotoSlab-Regular.eot?#iefix') format('embedded-opentype'),
    url('/fonts/robotoslab/RobotoSlab-Regular.woff2') format('woff2'),
    url('/fonts/robotoslab/RobotoSlab-Regular.woff') format('woff'),
    url('/fonts/robotoslab/RobotoSlab-Regular.ttf') format('truetype'),
    url('/fonts/robotoslab/RobotoSlab-Regular.svg#RobotoSlab-Regular') format('svg'),
    url('/fonts/robotoslab/RobotoSlab-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'site_font2';
    src: url('/fonts/roboto/RobotoMedium.eot');
    src: url('/fonts/roboto/RobotoMedium.eot?#iefix') format('embedded-opentype'),
    url('/fonts/roboto/RobotoMedium.woff2') format('woff2'),
    url('/fonts/roboto/RobotoMedium.woff') format('woff'),
    url('/fonts/roboto/RobotoMedium.ttf') format('truetype'),
    url('/fonts/roboto/RobotoMedium.svg#Roboto-Medium') format('svg'),
    url('/fonts/roboto/RobotoMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/****** нормализация ******/

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: top;
    position: relative;
}

*::before, *::after {
    box-sizing: inherit;
    transition: inherit;
}

*:focus {
    outline: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style-position: outside;
}

table, th, td {
    border: 1px solid #000;
    padding: 0;
    border-collapse: collapse;
}

th, td {
    vertical-align: top;
    padding: 2px 5px;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mosaic a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

a:hover {
    color: #dc0000;
    text-decoration: none;
}

img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: 5px;
}

::-webkit-scrollbar {
    height: 6px;
    overflow: visible;
    width: 6px;
}

::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}

::-webkit-scrollbar-track {
    background: #F8F2E9;
    background-clip: padding-box;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #b4212c;
    background-clip: padding-box;
    border-radius: 3px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

body::-webkit-scrollbar-track-piece {
    background-clip: padding-box;
    background-color: #F8F2E9;
}

/****** базовая разметка ******/
html {
    height: 100%;
    min-height: 100%;
    color: #000;
    font: 15px site_font, Arial, Verdana, Tahoma, Helvetica, sans-serif;
    line-height: 1.534;
    -webkit-text-size-adjust: none;
}

body {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background: #F8F2E9;
}

/******** layout *********/
header {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #F8F2E9;
    border-bottom: 1px solid #E0BB77;
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    z-index: 2;
}

main {
    z-index: 0;
}

.content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
}

.content aside {
    flex: 0 0 280px;
    padding: 0 20px 40px 0;
}

.content main {
    flex: 1 1 60%;
}

footer {
    background: #F8F2E9 url(/img/bg_footer.png) repeat top center;
    padding: 50px 0 10px 0;
}

.bblk {
    width: 100%;
}

.block {
    width: 100%;
    max-width: 1138px;
    margin: 0 auto;
    padding: 0 14px 0px 14px;
}

.block .block {
    padding: 0;
}

section.bblk section.bblk {
    padding: 0;
}

section.bblk.auth {
    padding-bottom: 50px !important;
}

.juri .block, .txt .block, .winners .block {
    max-width: 758px;
}

.docs .block {
    max-width: 920px;
}

.row {
    display: flex;
    flex-flow: row wrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
    margin: 0 -14px 0 -14px;
}

.row .col {
    flex: 0 0 100%;
    padding: 0 14px 20px 14px;
    max-width: 100%;
}

.row.cols2 > .col {
    flex-basis: 50%;
    max-width: 50%;
}

.row.cols2 > .col.wide {
    flex-basis: 100%;
}

.row.cols3 > .col {
    flex-basis: 33.3333%;
}

.row.cols3 > .col.wide {
    flex-basis: 66.6666%;
}

.row.cols4 > .col {
    flex-basis: 25%;
}

.row.cols4 > .col.wide {
    flex-basis: 50%;
}

.row.cols5 > .col {
    flex-basis: 20%;
}

.row.cols5 > .col.wide {
    flex-basis: 40%;
}

.row.cols6 > .col {
    flex-basis: 16.6666%;
}

.row.cols6 > .col.wide {
    flex-basis: 33.3333%;
}

.row.cols6 > .col.xwide {
    flex-basis: 50%;
}

.row.cols7 > .col {
    flex-basis: 14.2857%;
}

.row.cols7 > .col.wide {
    flex-basis: 28.5714%;
}

.row.cols8 > .col {
    flex-basis: 12.5%;
}

.row.cols8 > .col.wide {
    flex-basis: 25%;
}

.row.cols9 > .col {
    flex-basis: 11.1111%;
}

.row.cols9 > .col.wide {
    flex-basis: 22.2222%;
}

.row.cols10 > .col {
    flex-basis: 10%;
}

.row.cols10 > .col.wide {
    flex-basis: 20%;
}

.row h5.col {
    flex-basis: 100%;
    min-width: 100%;
    padding-top: 20px;
}

aside .row.cols4 > .col {
    flex-basis: 100%;
}

/****** headers *******/
h1 {
    font-family: 'site_font2';
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: rgb(33, 37, 41);
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 50px 0;
    padding: 0;
}

header h1 {
    margin-bottom: 0;
    font-size: 0;
}

h3 {
    font-family: 'site_font2';
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: rgb(33, 37, 41);
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 21px;
    padding-bottom: 107px;
    background: url(/img/star.png) no-repeat center bottom;
}

h4 {
    font-family: 'site_font2';
    font-size: 1.3rem;
    line-height: 1.2;
    padding-bottom: 10px;
}

h5 {
    font-family: 'site_font2';
    font-size: 1.2rem;
    line-height: 1.2;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

h5:before {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 0;
    width: 25px;
    height: 3px;
    background: #e0bb77;
}

h6 {
    font-family: 'site_font2';
    font-size: 1.2rem;
    line-height: 1.2;
    padding-bottom: 30px;
}

.ttl {
    font-family: 'site_font2';
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #000;
    padding: 10px;
    font-weight: bold;
}

.news .ttl {
    background: #fff;
}

.docs h3, .newsinf h3, .calendar h3, .contacts h3 {
    text-align: left;
    background: none;
}

main .top_block {
    background: url(/img/bg_sky.png) no-repeat center center;
    background-size: cover;
}

main .top_block.htop {
    padding-top: 20px;
}

.main.mp {
    background: linear-gradient(to bottom, rgba(248, 242, 233, 1) 0%, rgba(248, 242, 233, 0) 100%);
}

.main {
    background: #F8F2E9;
    z-index: 1;
}

main .bblk.site_banner .block {
    width: 100%;
    max-width: 1130px;
    padding-bottom: 60px;
}

/****** misc *******/
.shad {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.09);
}

.nobr {
    white-space: nowrap;
}

.l {
    text-align: left;
}

.c {
    text-align: center;
}

.r {
    text-align: right;
}

.link {
    font-family: 'site_font2';
    color: #dc0000;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 14px;
}

.alert {
    color: #dc0000;
    font-style: italic;
    text-align: center;
    padding: 0 0 30px 0;
}

.alert li {
    padding-left: 20px;
}

.time {
    font-weight: bold;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.time:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #ddd;
}

.date {
    display: inline-block;
    color: #999;
    font-size: 0.8rem;
    vertical-align: baseline;
}

.video {
    padding-bottom: 46%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bblk.video {
    height: auto;
    padding: 0;
}

footer .logo2 {
    background: url(/img/logo2.png) no-repeat center center;
    background-size: contain;
    max-width: 265px;
    height: 101px;
}

footer .logo3 {
    background: url(/img/hearts.png) no-repeat center center;
    background-size: contain;
    max-width: 265px;
    height: 101px;
}

footer .partner div,
.partner a {
    margin: 0 25px 20px 0;
    display: inline-block;
    vertical-align: middle;
}

footer .partner img {
    max-width: 150px;
    max-height: 50px;
}

.partner .img a {
    margin: 0;
    display: block;
}

footer .bpr {
    background: url(/img/bpr.png) no-repeat center center;
    background-size: contain;
    width: 53px;
    height: 50px;
}

footer .fpg {
    background: url(/img/fpg.png) no-repeat center center;
    background-size: contain;
    width: 148px;
    height: 49px;
}

footer .rtd {
    background: url(/img/rtd.png) no-repeat center center;
    background-size: contain;
    width: 120px;
    height: 50px;
}

footer .sbp {
    background: url(/img/sbr.png) no-repeat center center;
    background-size: contain;
    width: 50px;
    height: 50px;
}

footer .mp {
    background: url(/img/mp.png) no-repeat center center;
    background-size: contain;
    width: 46px;
    height: 50px;
    margin-right: 0;
}

footer .row {
    align-items: center;
}

/********* blocks ********/

.main_page {
    padding: 20px 0;
}

.main_page .logo {
    width: 20%;
    max-width: 130px;
    margin: 0 auto 5%;
    background: url(/img/logo.png) no-repeat center center;
    background-size: contain;
}

.main_page .logo a {
    display: block;
    padding-bottom: 100%;
}

.main_page .ttl {
    font-family: site_font;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    color: #8f6f51;
    margin-bottom: 3%;
}

.main_page .hdr {
    font-family: site_font;
    font-size: 1.2rem;
    color: #8f6f51;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3%;
}

.main_page .row {
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
}

.main_page .col img {
    margin-bottom: 3%;
}

.main_page .col div {
    text-align: center;
}

.main_page .col a {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    padding: 10px;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: 1s all;
}

.main_page .col a:hover {
    border-radius: 10px;
    box-shadow: 0 0 0 1px #dc0000;
}

header .bblk {
    margin: 0;
    padding: 0;
}

header .row {
    flex-flow: row nowrap;
    align-items: center;
}

header .logo {
    flex: 0 0 97px;
    padding: 0 0 120px 0;
    background: url(/img/logo.png) no-repeat center center;
    background-size: contain;
}

header .logo a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

header .menu_left, header .menu_right {
    flex: 1 1 50%;
}

header .menu_left {
    text-align: right;
    padding: 0 20px;
}

header a {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0 30px;
}

header a:hover {
}

header .menu_left a {
    margin: 0 10px;
}

footer .row:first-child {
    margin-bottom: 30px;
}

footer .row:last-child {
    margin-top: 30px;
}

footer hr {
    height: 0;
    border-bottom: 2px dashed #E0BB77;
}

footer .policy a {
    display: inline-block;
    font-size: 0.7rem;
    color: #553d0c;
    text-decoration: underline;
    margin: 0;
    padding: 5px 26px 5px 0;
    letter-spacing: -.1px;
}

footer .element a {
    display: inline-block;
    font-size: 0.7rem;
    color: #553d0c;
    text-decoration: underline;
    margin: 0;
    padding: 5px 26px 5px 0;
    letter-spacing: -.1px;
}

footer .element {
    background: url(/img/element.svg) no-repeat left center;
    background-size: contain;
    display: inline-block;
    padding: 0 0 0 30px;
}

.txt .block .txt {
    padding-top: 20px;
}

.juri .row {
    justify-content: center;
    align-content: center;
    align-items: flex-start;
}

.juri .col {
    padding-bottom: 50px;
}

.juri .img {
    margin-bottom: 16px;
}

.juri .img img {
    width: 100%;
}

.juri strong {
    letter-spacing: 0.35px;
}

.juri .desc {
    line-height: 1.5;
}

.juri .desc strong {
    line-height: 1.3;
}

.winners {
    padding-bottom: 50px;
}

.winners ol {
    margin-left: 20px;
}

.winners li {
    font-family: 'site_font2';
    font-size: 1.05rem;
    display: list-item;
    padding: .75rem 1.25rem;
}

.winners li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.docs {
    padding-bottom: 100px;
}

.docs .block {
    background: url(/img/book.png) no-repeat center center;
    background-size: cover;
    min-height: 473px;
}

.docs .info {
    padding: 60px 60px 60px 45px;
}

.docs h3 {
    margin: 0 30px 41px 0;
    padding: 0 0 55px 36px;
    border-bottom: 1px solid #ddd;
}

.docs .pdf div {
    padding: 0px 0 50px 60px;
    background: url(/img/pdf.png) no-repeat left 3px;
}

.docs .pdf a {
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.newsinf {
    padding-bottom: 100px;
}

.newsinf h3 {
    margin: 0 0 40px 0;
    padding: 0;
}

.newsinf .col a, .news .col a {
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
}

.newsinf .col a:hover, .news .col a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.news .detail .col a, .news .detail .col a:hover {
    border: 0;
    display: inline-block;
    box-shadow: none;
}

.newsinf .row, .news .row {
    margin-bottom: 30px;
}

.news .detail {
    font-family: 'site_font2';
}

.calendar {
    background: url(/img/bg_calendar.png) no-repeat center center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 0px;
}

.calendar h3 {
    margin: 0 0 50px 0;
    padding: 0;
}

.calendar .col, .events .col {
    font-family: 'site_font2';
    background: url(/img/star_small.png) no-repeat 14px 3px;
    padding-left: 40px;
}

.events {
    margin-bottom: 50px;
}

.pressinf {
    padding-bottom: 40px;
}

.press .ttl {
    padding: 0 0 5px 0;
}

.press .tm {
    color: #7e7e7e;
    padding: 0 0 10px 0;
    font-size: 0.8rem;
}

.contacts {
    padding-bottom: 50px;
}

.contacts h3 {
    margin: 0 0 50px 0;
    padding: 0;
}

.contacts h6 {
    display: none;
}

.contacts div {
    padding-top: 1px;
    font-size: 1.2rem;
    min-width: 200px;
}

.contacts .mail {
    background: url(/img/mail.svg) no-repeat 14px 6px;
    padding-left: 45px;
}

.contacts .phone {
    background: url(/img/phone.svg) no-repeat 17px 0;
    padding-left: 45px;
}

aside .contacts .row {
    padding-top: 20px;
}

aside .contacts h3 {
    display: none;
}

aside .contacts h6 {
    display: block;
}

.coord {
    padding-bottom: 50px;
}

.coord .reglst {
    margin-bottom: 10px;
}

.coord .col {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: flex-start;
}

.coord .col .img {
    flex: 0 0 120px;
    padding-right: 10px;
}

.coord .col .desc {
    flex: 1 1 100%;
}

.policy a {
    text-decoration: underline;
}

.notice {
    text-align: center;
}

.rqstexp, .rqstdone {
    padding: 20px 0;
}

.winner .ttl {
    padding: 0 0 5px 0;
}

.winner a:hover .ttl {
    color: #dc0000;
}

.winners {
    padding: 73px 0 0 0;
    margin-bottom: 20px;
}

.winners .wnav {
    position: absolute;
    left: 50%;
    top: 0;
    padding-left: 20px;
}

.winners .wnav .wtab {
    display: inline-block;
    background: url(/img/wint.png) no-repeat top center;
    background-size: cover;
    font-family: 'site_font';
    color: #767676;
    padding: 15px 24px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
    max-width: 180px;
    vertical-align: bottom;
    cursor: pointer;
}

.winners .wnav .wtab:not(:first-child) {
    margin: 10px 0 0 -10px;
}

.winners.winw .wtab.ww, .winners.winq .wtab.wq {
    background-image: url(/img/winta.png);
    color: #000;
    padding: 20px 24px;
    z-index: 1;
    margin-top: 0px;
}

.winners.winw .wtab.wp, .winners.winq .wtab.wp {
    font-size: 1rem;
    padding: 20px 18px;
}

.winners.winq .wtab.wp {
    padding: 18px 18px;
}

.winners.winw .wpanel.wt, .winners.winq .wpanel.qt {
    display: block;
}

.winners .detail {
    background: url(/img/winbook.png) no-repeat right top;
    background-size: contain;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
    z-index: 2;
}

.winners .detail .attach {
    flex: 0 0 50%;
    max-width: 50%;
    padding-bottom: 69%;
}

.winners .detail .info {
    flex: 0 0 50%;
    max-width: 50%;
    font-family: 'site_font2';
    padding-bottom: 69%;
}

.winners .detail .attach, .winner .detail .info {
    height: 100%;
}

.winners .attach .wpanel {
    position: absolute;
    top: 30px;
    left: 80px;
    right: 60px;
    bottom: 50px;
}

.winners .attach:before {
    content: '';
    position: absolute;
    left: 40px;
    top: 15px;
    width: 97px;
    height: 92px;
    background: url(/img/logo.png) no-repeat center center;
    background-size: contain;
    z-index: 2;
}

.winners .info .wpanel {
    position: absolute;
    top: 30px;
    left: 50px;
    right: 60px;
    bottom: 50px;
    overflow-x: hidden;
    overflow-y: auto;
}

.winners .info .wpanel {
    display: none;
    padding-right: 10px;
}

.winner .col a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
}

.winner .col .img {
    flex: 0 0 30%;
    width: 30%;
    padding-bottom: 45%;
}

.winner .col .img div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.winner .col .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.winner .col .uinfo {
    flex: 0 0 70%;
    padding: 0 0 10px 10px;
}

.winner .detail .info h4 {
    font-family: 'site_font';
    padding-bottom: 10px;
}

.winner .detail .info .addr {
    font-family: 'site_font';
    padding-bottom: 10px;
}

.winner .detail .info .ttl {
    font-family: 'site_font';
    text-transform: none;
    padding-bottom: 10px;
}

.winner .detail .info .profile_blk > div > strong {
    display: block;
}

.winner .detail .info .profile_blk > div {
    padding-bottom: 10px;
}

.winner .detail .info .profile_blk > div.txt {
    text-align: justify;
}

.winner .detail .info .profile_blk > div.txt a {
    color: #dc0000;
}

.winners .attach .gallery-top {
    height: 80%;
    width: 100%;
}

.winners .attach .gallery-top .swiper-slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 100%;
}

.winners .attach .wbutton {
    background: url(/img/warr2.png) no-repeat center center;
    width: 65px;
    height: 70px;
    background-size: contain;
}

.winners .attach .swiper-button-prev {
    left: -45px;
    top: 40%;
    transform: scaleX(-1);
}

.winners .attach .swiper-button-next {
    right: -45px;
    top: 40%;
}

.winners .attach .gallery-thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
}

.winners .attach .gallery-thumbs a {
    flex: 0 0 18%;
    margin: 0 1%;
    height: 100%;
    cursor: pointer;
}

.winners .attach .gallery-thumbs .thumb {
    height: 100%;
    opacity: 0.8;
    cursor: pointer;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.winners .attach .gallery-thumbs .thumb:hover, .winners .attach .gallery-thumbs .thumb.active {
    opacity: 1;
}

.winners .info .gallery-thumbs {
    display: none;
}

.winners .info .gallery-thumbs a {
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
}

.winners .info .gallery-thumbs a img {
    display: block;
    width: 250px;
    margin: 0 auto;
}

.usererrors h4 {
    padding-bottom: 30px;
}

.auth .usererrors .ttl {
    display: block;
    text-align: left;
}

.auth .usererrors ul + .ttl {
    margin-top: 30px;
}

.usererrors ul {
    margin-left: 20px;
}

.lg button {
    background: none;
}

.lg .lg-actions {
    position: absolute;
    top: 50%;
    width: 100%;
}

/******* form *********/

.usertext {
    padding: 0 0 20px 0;
}

.usertext .hdr {
    font-family: 'site_font2';
    font-size: 1.5rem;
}

.usertext ul {
    margin: 0 0 0 20px;
}

.error {
    color: #d33;
}

.success {
    color: #11701c;
}

.formbody {
    padding: 30px 40px;
    background: #fff;
    border-radius: 10px;
    font-family: 'site_font2';
}
.formbody .formbody {
    padding: 0;
}

.film .cntrdiv .cntrl.rlist  .radio {
    height: auto;
}
.film .cntrdiv .cntrl.rlist  .radio + .radio {
    margin-top: 20px;
}

.form {
    padding-bottom: 0px;
}

.popup-form {
    margin-bottom: 0;
}

.popup .res {
    padding: 0 20px 10px 20px;
}

.button {
    font-family: 'site_font2';
    font-size: 14px;
    color: #000;
    background: white;
    width: 220px;
    min-height: 62px;
    box-shadow: 2px 11px 16px rgba(232, 219, 196, .75);
    border: 2px solid #ededed;
    border-radius: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    padding: 5px 10px 5px 10px;
}

.button.button_disabled[disabled="disabled"] {
    background: #666;
    opacity: 1;
}

.rqst_button {
    text-align: center;
}

.button[disabled="disabled"] {
    opacity: 0.2;
}

.swiper-slide .button {
    margin: 50px 0 0 -10px;
}

.site_banner .button {
    width: 265px;
    padding: 15px 40px;
    border-radius: 41px;
    color: #fff;
    background: #dc0000;
}

.cntrdiv {
    width: 100%;
    margin: 0 0 15px 0;
    position: relative;
}

.cntrdiv .cntrl label {
    display: block;
    max-width: 100%;
    padding: 0 10px 5px 0;
    margin: 0;
    font-weight: normal;
    font-size: 100%;
    position: absolute;
    top: 20px;
    left: 30px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: #7e7e7e;
}

.cntrdiv > label {
    padding: 0 30px 10px 30px;
    display: block;
}

.cntrdiv .cntrl select.selected ~ label, .cntrdiv .cntrl #img_ext ~ label, .cntrdiv .cntrl #agr_ext ~ label, .cntrdiv .cntrl #pres_ext ~ label, .cntrdiv .cntrl input:focus ~ label, .cntrdiv textarea:focus ~ label, .cntrdiv .cntrl.rlist > label {
    top: 4px;
    left: 25px;
    font-size: 0.8rem;
    color: #6c757d;
}

.cntrdiv .cntrl.rlist > label {
    pointer-events: none;
}

.cntrdiv .cntrl input:not(:placeholder-shown) ~ label, .cntrdiv textarea:not(:placeholder-shown) ~ label {
    top: 4px;
    left: 25px;
    font-size: 0.8rem;
    color: #6c757d;
}

.cntrdiv .cntrl, .cntrdiv .cntrs, .cntrdiv .cntrs {
    font-family: 'site_font2';
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    margin: 0;
    padding: 0;
    position: relative;
    -moz-border-radius: 31px;
    -webkit-border-radius: 31px;
    border-radius: 31px;
}

.cntrdiv .cntrs {
    width: 110px;
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
}

.control, .controlta {
    display: block;
    width: 100%;
    max-width: 100%;
    color: #000;
    margin: 0;
    padding: 22px 25px 22px 25px;
    border: 0;
    background: transparent;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-family: 'site_font2';
    line-height: 1;
    outline: 0;
}

.cntrdiv .cntrl #img_ext .control,
.cntrdiv .cntrl #pres_ext .control,
select.control {
    padding: 22px 25px 22px 25px;
}

.control:invalid, .controlta:invalid {
    border: 1px solid transparent;
    box-shadow: none;
}

.controlta {
    height: 200px;
    line-height: 1.3;
}

.controlta.big {
    height: 400px;
}

.cntrs .control {
    text-align: right;
}

.fhint {
    text-align: left;
    padding: 10px 30px 10px 30px;
    color: #7e7e7e;
}

.short .bighint {
    margin-bottom: 20px;
}

.auth .bighint {
    text-align: left;
    padding: 10px 30px 10px 30px;
    color: #7e7e7e;
    max-height: 200px;
    overflow-y: auto;
}

.auth .bighint p {
    text-align: left;
    font-size: 1rem;
}

.cntrdiv img {
    max-width: 40px;
    max-height: 40px;
    display: inline-block;
}

.inline {
    display: inline-block;
}

.inline .cb {
    display: inline-block;
}

span.cb {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.inline span.cb {
    display: flex;
}

span.cb span {
    flex: 0 0 23px;
    overflow: hidden;
    padding: 2px 0 0 0;
}

.cb label {
    flex: 1 1 90%;
    font-weight: normal;
    padding: 0 0 0 3px;
}

span.cb span input {
    display: none;
}

span.cb label {
    padding: 0 0 0 25px !important;
}

span.cb label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 1;
    width: 17px;
    height: 17px;
    border: 1px solid #e0bb77;
    border-radius: 50%;
    background: #F8F2E9;
}

span.cb input:checked + label:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100;
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: #dc0000;
}

span.cb input:checked + label {
    font-weight: normal !important;
}

.cntrdiv .cntrl .cb label {
    position: static;
}

.inline .cb label {
    white-space: nowrap;
}

.cb label:hover {
    color: #dc0000;
    cursor: pointer;
}

.cb input {
    margin: 0;
    padding: 0;
    border: 0;
}

.cb input[type="checkbox"]:checked + label {
    font-weight: bold;
}

.plc .cb label a {
    text-decoration: underline;
}

.plc .cb label a {
    color: #000;
}

.plc .cb label:hover {
    color: #000;
}

.plc .cb label:hover a {
    color: #dc0000;
    cursor: pointer;
}

.cntrdiv .flex {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: flex-start;
    width: 100%;
}

.cntrdiv .flex > span {
    padding: 25px 0px 0 20px;
}

.cntrdiv .flex .thumb, .cntrdiv .flex .exist, .cntrdiv .flex .caption {
    padding: 22px 0px 22px 25px;
}

.cntrdiv .flex .browse {
    padding: 0;
}

.complete {
    background: #fff;
    z-index: 2;
    position: absolute;
    top: 10px;
    left: 30px;
    padding: 10px 10px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border: 1px solid #e0bb77;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    display: none;
}

.complete div {
    padding: 2px 5px;
}

.complete div:not(:first-child) {
    border-top: 1px solid #e0bb77;
}

.complete div:hover {
    background: #eee;
    cursor: pointer;
}

.spiner {
    width: 27px;
    height: 27px;
    background: url(/img/ajax-loader.gif);
    background-size: contain;
    display: block;
    margin: 10px auto;
}

.cntrdiv .cntrl.rlist {
    padding: 22px 25px 22px 25px;
}

.cntrdiv .cntrl.rlist .radio {
    display: inline-block;
    position: relative;
    height: 17px;
    line-height: 1;
    cursor: pointer;
}

.cntrdiv .cntrl.rlist .radio .cb {
    position: relative;
    cursor: pointer;
}

.cntrdiv .cntrl.rlist .radio input {
    display: inline-block;
    vertical-align: middle;
}

.cntrdiv .cntrl.rlist .radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 0;
    left: 0;
    padding: 2px 15px 0 27px;
    color: #000;
    cursor: pointer;
}

.cntrdiv .cntrl.rlist .radio label:hover {
    color: #dc0000;
}

.cntrdiv .cntrl.rlist .radio label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #e0bb77;
    border-radius: 50%;
    background: #F8F2E9;
}

.cntrdiv .cntrl.rlist .radio input:checked + label:before {
    border: 1px solid #e0bb77;
    background: #dc0000;
}

.reward {
    display: none;
}

.cntrlsel {
    height: 60px;
    z-index: 2;
}

.choose {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background: transparent;
    border-radius: 15px;
}

.choose .select {
    padding: 22px 45px 22px 25px;
    cursor: pointer;
    font-size: 1rem;
    text-transform: none;
    font-weight: normal;
    text-align: left;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.choose .select div {
    white-space: nowrap;
    overflow: hidden;
}

.choose .select:after {
    font-size: 1rem;
    display: block;
    width: 15px;
    height: 15px;
    z-index: 0;
    content: "▼";
    position: absolute;
    top: 22px;
    right: 25px;
}

.choose .select:hover {
    color: #dc0000;
}

.choose .list {
    max-height: 0px;
    overflow-x: auto;
    margin: 0 20px 0 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.choose .list div {
    padding: 10px 15px;
}

.choose .list div:hover {
    color: #dc0000;
    background: #F8F2E9;
    cursor: pointer;
}

.cntrlsel.active {
    z-index: 3;
}

.cntrlsel.active .select {
    color: #000;
}

.cntrlsel.active .select:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cntrlsel.active .list {
    max-height: 350px;
    padding: 0;
    background: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .1);
}

.auth .form.search .button {
    margin: 0;
}

.formerror {
    position: absolute;
    z-index: 3;
    display: none;
    background: #fff;
    box-shadow: 2px 11px 16px rgba(232, 219, 196, .75);
    border: 2px solid #ededed;
    border-radius: 31px;
    text-align: center;
    padding: 15px 20px;
}

.formerror::after {
    content: '';
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    left: 40px;
    top: -11px;
    width: 20px;
    height: 20px;
    z-index: 1;
    background: #fff;
    border-left: 2px solid #ededed;
    border-top: 2px solid #ededed;
}

.hidden {
    display: none;
}

.cntrdiv .cntrl label.mndtr {
    padding-left: 20px;
}

label.mndtr:before {
    position: absolute;
    left: 0;
    top: 2px;
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: #dc0000;
    border-radius: 50%;
}

div.mndtr:before {
    position: absolute;
    left: 0;
    top: 12px;
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: #dc0000;
    border-radius: 50%;
}

.formdata label {
    color: #7e7e7e;
    padding: 0 27px 5px 27px;
    font-size: 0.8rem;
}

/****** компоненты ******/

.breadcrumbs {
    margin-top: 30px;
    color: #ddd;
}

.breadcrumbs .list {
    list-style: none;
    font-family: 'site_font2';
}

.breadcrumbs .list li {
    display: inline-block;
}

.breadcrumbs a {
    color: #e0bb77;
}

.breadcrumbs a:after {
    content: '/';
    color: #6c757d;
    margin: 0 10px;
}

.breadcrumbs a:hover, .breadcrumbs span {
    color: #dc0000;
}

.page_lister {
    padding: 20px 5px;
    margin: 0 -20px;
    text-align: center;
}

.page_lister a {
    font-family: 'site_font2';
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #e0bb77;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 5px 5px 0;
    text-align: center;
    padding: 4px 3px;
    line-height: 1.4;
}

.page_lister a:hover {
    color: #dc0000;
    border: 1px solid #dc0000;
}

.page_lister span {
    font-family: 'site_font2';
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #dc0000;
    background: #dc0000;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 0 5px 5px 0;
    text-align: center;
    padding: 4px 2px;
    line-height: 1.4;
}

.page_lister .prev, .page_lister .next {
    font-size: 2rem;
    line-height: 0.7;
    padding: 0 3px;
}

.swiper-container {
    position: relative;
    margin: 0;
}

.swiper-container .swiper-slide {
    text-align: center;
}

.swiper-button-prev {
    /*background: #dc0000 url(/images/arr_l.svg) no-repeat center center;*/
    border: 0;
    width: 69px;
    height: 85px;
    margin-left: 0px;
    /*-moz-transform: scaleX(-1);*/
    /*-webkit-transform: scaleX(-1);*/
    /*-o-transform: scaleX(-1);*/
    /*transform: scaleX(-1);*/
    /*-ms-filter: fliph; !*IE*!*/
    /*filter: fliph; !*IE*!*/
    filter: brightness(0) invert(18%) sepia(30%) saturate(6015%) hue-rotate(347deg) brightness(112%) contrast(138%);
}

.swiper-button-next {
    /*background: #dc0000 url(/images/arr_l.svg) no-repeat center center;*/
    border: 0;
    width: 69px;
    height: 85px;
    margin-right: 0px;
    filter: brightness(0) invert(18%) sepia(30%) saturate(6015%) hue-rotate(347deg) brightness(112%) contrast(138%);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #6f4e2c;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #dc0000;
}

.swiper-slide .row {
    align-items: flex-start;
}

.swiper-slide .lc {
    flex: 0 0 58%;
}

.swiper-slide .rc {
    flex: 0 0 42%;
    padding: 61px 10px 0 20px;
}

.swiper-slide .rc img {
    width: 100%;
    margin: 0 0 20px 0;
}

.swiper-slide .txt strong {
    letter-spacing: 0.7px;
}

.swiper-slide .txt {
    font-family: 'site_font2';
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding: 0 10px 0 0;
    text-align: left;
}

.popup {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: -10000px;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: center;
}

.popup .form {
    background: #fff;
    padding: 10px 20px 30px 20px;
    border-radius: 5px;
}

.popup .dialog {
    display: block;
    padding: 1% 3% 3% 3%;
    background: #fff;
    border: 2px solid #4da8f1;
    border-radius: 3px;
}

.popup .dialog .ttl {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.1;
    padding: 0 0 20px 0;
    margin: 0;
}

.popup .dialog .close {
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 16px;
    right: 20px;
    background: url(/images/del.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.popup .dialog .close:hover {
    background-image: url(/images/del.svg);
}

.ya-share2 {
    margin: 0;
    padding-bottom: 40px;
}

#top {
    bottom: 20px;
    z-index: 1;
    right: 14px;
    cursor: pointer;
    position: fixed;
    width: 55.5px;
    height: 55.5px;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    background: #b4212c;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    border-radius: 50%;
    padding-top: 12px;
    display: none;
}

#top span {
    display: block;
    font-weight: normal;
    color: #fff;
    transform: scaleX(2);
}

.header__misc {
    position: absolute;
    z-index: 1;
    right: 14px;
    top: 10px;
    text-align: right;
}

.header__misc .authbox {
    right: 0;
    top: -3px;
}

.header__misc .logout {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/img/icons/logout.png) no-repeat center center;
    background-size: contain;
    margin-left: 10px;
}

.header__misc .authbtn {
    font-family: 'site_font2';
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 0px 0 0 0;
    padding: 5px 10px 5px 10px;
    background: #e0bb77;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header__misc .authbtn a {
    display: inline-block;
    margin: 0;
}

.header__misc .authbtn a:first-child {
    padding: 3px 5px 0 0;
}

.header__misc .authbtn:hover {
    color: #F8F2E9;
    background: #dc0000;
}

.header__misc .authbtn:hover a {
    color: #F8F2E9;
}

.authbox {
    max-height: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #fff;
    border: 0;
    position: absolute;
    z-index: 1;
    padding: 0px 30px;
    width: 330px;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    font-family: 'site_font2';
}

.authbox .form {
    margin: 0;
    padding: 0;
    background: transparent;
}

.authbox.opened {
    border: 1px solid #e0bb77;
    max-height: 1000px;
    padding: 20px 30px;
}

.auth #uLogin, .auth #uLogin1 {
    padding: 0 0 10px 0;
}

.auth .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 0 20px 0;
    text-align: center;
}

.auth .ttl.sm {
    font-weight: normal;
    font-size: 0.8rem;
}

.auth p {
    font-size: 0.8rem;
    text-align: center;
    padding-bottom: 20px;
}

.auth p a {
    display: inline;
    font-size: 0.8rem;
}

.auth .hdr {
    margin: 0;
    padding: 0 20px 10px 25px;
    font-family: 'site_font2';
    font-size: 1.1rem;
}

.auth .shdr {
    margin: 0;
    padding: 0 30px 10px 30px;
    font-family: 'site_font2';
    font-size: 0.8rem;
    color: #7e7e7e;
}

.auth .button {
    margin-top: 10px;
    margin-bottom: 20px;
}

.auth .links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: space-between;
    align-items: flex-start;
}

.auth .links a {
    color: #dc0000;
}

.auth .links .l {
    flex: 0 0 50%;
}

.auth .links .r {
    flex: 0 0 50%;
}

.auth a {
    text-transform: none;
    margin: 0;
    font-size: 1rem;
}

.auth .c a.button {
    margin: 0 auto;
}

.partner .col {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
}

.partner .img {
    flex: 0 0 100px;
}

.partner .img img {
    border-radius: 3px;
}

.partner .desc {
    flex: 1 1 50%;
    min-width: 200px;
    padding: 0 0 0 20px;
}

.uinfo {
    font-style: normal;
    text-align: left;
    padding: 0 0 30px 0;
}

.uinfo ul {
    list-style: none;
}

.uinfo ol {
    margin: 0 0 0 20px;
    padding: 0 0 15px 0;
}

.userhelp a {
    color: #b4212c;
    border-bottom: 1px solid #b4212c;
}

.userhelp ol > li {
    padding-bottom: 20px;
}

.userhelp ul {
    list-style: square;
    margin-left: 20px;
}

.userhelp ul li {
    font-family: 'site_font';
    padding-top: 5px;
    padding-bottom: 5px;
}

.userhelp .btn {
    display: inline-block;
    padding: 3px 5px;
    vertical-align: middle;
}

.userhelp .button {
    margin: 0;
}

.user_test .cntrdiv .cntrl.rlist .radio {
    display: block;
    padding: 10px 0 10px 0;
    height: auto;
}

.auth .user_test .hdr {
    padding: 0 0 20px 0;
}

.auth .user_test p.l {
    text-align: left;
}

.auth .user_test .answer {
    font-weight: bold;
    font-size: 1rem;
}

.auth .user_test #test {
    font-size: 1.5rem;
    font-family: 'site_font2';
    position: absolute;
    right: 40px;
    top: 25px;
    color: #dc0000;
}

.profile_blk {
    padding: 0 0 30px 0;
}

.profile_blk div.olink {
    padding: 0 0 10px 0;
    max-width: 100%;
    overflow: auto;
}

.profiles {
    padding: 0 0 20px 0;
}

.profiles .item {
    padding-bottom: 5px;
}

.profiles .item:not(:first-child) {
    border-top: 1px solid #e0bb77;
}

.profiles .item.state2 {
    font-weight: bold;
}

.profiles .item.rwin * {
    color: #dc0000;
}

.profiles span.cb label:before {
    top: 3px;
}

.profiles span.cb input:checked + label:after {
    top: 8px;
}

.rqstjuri .col {
    padding-bottom: 0;
}

.cols.attach {
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
}

.cols.attach .col {
    flex: 1 1 50%;
    padding: 0 2px 10px 2px;
}

.upload-area {
    width: 100%;
    height: 100px;
    padding: 10px 30px;
    text-align: center;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-content: stretch;
    align-items: center;
}

.upload-area:hover {
    cursor: pointer;
}

.upload-area .info {
    text-align: center;
    font-weight: normal;
    font-family: sans-serif;
    color: #000;
}

.attach .datalist {
    overflow: auto;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
}

.attach .datalist .list {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;
}

.attach .datalist .list li {
    display: block;
    flex: 1 0 20%;
    max-width: 20%;
    min-width: 70px;
    position: relative;
}

.attach .datalist .list li .listitm {
    padding: 0 0 100% 0;
    position: relative;
}

.attach .datalist .list li .listitm .del {
    position: absolute;
    background: url(/img/del.png) no-repeat center center;
    width: 20px;
    height: 20px;
    right: 2px;
    top: 2px;
    z-index: 1;
    cursor: pointer;
}

.attach .datalist .list li a {
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    right: 5px;
}

.attach .datalist .list li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    border-radius: 3px;
}

.file {
    display: none;
}

/* Thumbnail */
.thumbnail {
    width: 80px;
    height: 80px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 3px;
    float: left;
    margin: 5px;
    position: relative;
    z-index: 100;
}

.thumbnail img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
}

.thumbnail:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: 2px;
    top: 2px;
    display: none;
    z-index: 1;
    background: url(/img/del.png) no-repeat center center;
    border: 1px solid #f00;
    border-radius: 3px;
}

.thumbnail:hover:before {
    display: block;
}

.size {
    font-size: 12px;
    display: block;
}

.attach {
}

.cntrdiv .thumb {
    text-align: center;
}

.cntrdiv .thumb div, .attach > div.link {
    display: inline-block;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 5px;
    opacity: 0.8;
    transition: 0.2s;
}

.cntrdiv .thumb div:hover, .attach > div:hover {
    opacity: 1;
}

.cntrdiv .thumb img, .attach > div .img {
    width: 110px;
    height: 110px;
    max-width: 110px;
    max-height: 110px;
}

.user_news .cntrdiv .thumb img, .user_news .attach > div .img {
    width: auto;
    height: auto;
    max-width: 50px;
    max-height: 30px;
}

.vrlist .del {
    display: inline-block;
    background: url(/img/del.png) no-repeat center center;
    width: 20px;
    height: 20px;
    right: 2px;
    top: 2px;
    z-index: 1;
    cursor: pointer;
}

.cntrdiv .cntrl .flex.file {
    height: 61px;
    cursor: pointer;
}

.cntrdiv .cntrl .flex.file + .control {
    display: none;
}

/********* menu ***************/

.nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: center;
    margin: 14px 0px 0 auto;
    max-width: 68.5%;
    list-style: none;
}

.nav li {
    flex: 0 0 33.3333%;
    text-align: center;
    padding: 6px 0;
}

.nav li a {
    text-transform: uppercase;
    font-size: 0.8rem;
}

.mbtn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: url(/img/mbtn.svg) no-repeat center center;
    width: 55px;
    height: 40px;
    cursor: pointer;
}

.mmenu {
    max-height: 0;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    overflow-x: hidden;
    overflow: hidden;
    background-color: transparent;
    padding: 0 0 0 0;
    transition: 0.2s;
}

.mmenu .nav {
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    display: block;
    padding: 0;
    margin: 0;
}

.mmenu .nav a {
    margin: 0;
    padding: 8px 16px 8px 16px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    background: #F8F2E9;
    display: block;
    white-space: nowrap;
    text-align: center;
}

.mmenu .nav > a {
    border-top: 1px solid #e0bb77;
}

.mmenu .nav > a:last-child {
    border-bottom: 2px solid #e0bb77;
}

.mmenu .nav > a {
}

.mmenu .nav > a:hover {
    color: #dc0000;
}

.umenu {
    margin: 0 0px 20px 0;
}

.umenu a {
    display: block;
    font-family: 'site_font2';
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}

.umenu a.active {
    color: #dc0000;
}

.umenu a:not(:last-child) {
    border-bottom: 1px solid #e0bb77;
}

.umenu > div {
    border-bottom: 1px solid #e0bb77;
    display: block;
    font-family: 'site_font2';
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}

.umenu > div > span {
    display: block;
}

.umenu > div > span:first-child {
    color: #e0bb77;
}

.umenu > div > span + span {
    font-size: 1.1rem;
}

.close {
    color: #ccc;
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 2.5rem;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

.attach.doclist > div, .attach a {
    display: inline-block;
    max-width: 200px;
    margin: 0 5px 5px 0;
}

.attach img {
    max-width: 200px;
}

.profile_blk {
    max-with: 100%;
}

.logged {
    display: none;
}

.profiles .pdf {
    background: url(/img/pdf.png) no-repeat left center;
    margin-left: 10px;
    padding: 0 0 0 20px;
    background-size: contain;
}

.proceed {
    padding-bottom: 20px;
}

/****** адаптив ******/

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 992px) {
    h1, h3 {
        font-size: 2.2rem;
    }

    h1 {
        margin: 0 0 5.8% 0;
    }

    .bblk {
        padding-left: 5%;
        padding-right: 5%;
    }

    .row.cols2 > .col {
        flex-basis: 50%;
    }

    .row.cols2 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols3 > .col {
        flex-basis: 50%;
    }

    .row.cols3 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols4 > .col {
        flex-basis: 33.3333%;
    }

    .row.cols4 > .col.wide {
        flex-basis: 66.6666%;
    }

    .row.cols5 > .col {
        flex-basis: 25%;
    }

    .row.cols5 > .col.wide {
        flex-basis: 50%;
    }

    .content {
        flex-flow: row wrap;
    }

    .content aside {
        flex: 1 1 100%;
    }

    .content main {
        flex: 1 1 100%;
    }

    aside .row.cols4 > .col {
        flex-basis: 50%;
    }

    .umenu {
        margin: 0 0px 20px 0;
    }

    header a {
        margin: 0 20px;
    }

    header .menu_left {
        text-align: right;
        padding: 0 0px;
    }

    header .menu_left a {
        margin: 0 10px;
    }

    .nav {
        max-width: 100%;
    }

    .profile_blk {
        padding: 0 0 3% 0;
    }

    .bblk.winner {
        padding: 0;
    }

    .winners .info .wpanel {
        top: 3%;
        left: 4%;
        right: 6%;
        bottom: 3%;
    }

    .winners1 .info .wpanel {
        top: 20%;
        left: 15%;
        right: 23%;
        bottom: 23%;
    }

    .winners {
        padding: 63px 0 0 0;
    }

    .winners .attach {
        flex: 0 0 100%;
        display: none;
    }

    .winners .wnav {
        position: absolute;
        left: 0;
        top: 0;
        padding-left: 2.3%;
    }

    .winners .wnav .wtab {
        font-size: 1.1rem;
        max-width: 160px;
        padding: 12px 20px;
    }

    .winners.winw .wtab.ww, .winners.winq .wtab.wq {
        padding: 15px 20px;
    }

    .winners .detail {
        flex: 0 0 100%;
        flex-flow: row wrap;
        background-size: cover;
    }

    .winners .detail .info {
        flex: 0 0 100%;
        max-width: 100%;
        font-family: 'site_font2';
        padding-bottom: 139%;
    }

    .winners1 .detail .info {
        flex: 0 0 100%;
        max-width: 100%;
        font-family: 'site_font2';
        padding-bottom: 148%;
        background: url(/img/folder.png) no-repeat center top;
        background-size: auto 100%;
    }

    .winners .info .gallery-thumbs {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    h1, h3 {
        font-size: 2rem;
    }

    h3 {
        padding-bottom: 50px;
        background: url(/img/star.png) no-repeat center bottom;
    }

    .bblk {
        padding-left: 5%;
        padding-right: 5%;
    }

    .row.cols2 > .col {
        flex-basis: 100%;
        max-width: 100%;
    }

    .row.cols2 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols3 > .col {
        flex-basis: 50%;
    }

    .row.cols3 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols4 > .col {
        flex-basis: 50%;
    }

    .row.cols4 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols5 > .col {
        flex-basis: 33.3333%;
    }

    .row.cols5 > .col.wide {
        flex-basis: 66.6666%;
    }

    footer .row {
        flex-flow: row nowrap;
    }

    footer .row.cols2 > .col {
        flex-basis: 50%;
        padding-bottom: 0;
    }

    footer {
        padding: 20px 0 10px 0;
    }

    footer .row:first-child {
        margin-bottom: 20px;
    }

    footer .row:last-child {
        margin-top: 20px;
    }

    .mbtn {
        display: block;
    }

    nav .menu_left, nav .menu_right {
        display: none;
    }

    nav .logo {
        margin-left: 20px;
        padding: 0 0 110px 0;
    }

    .nav li {
        flex: 0 0 100%;
        text-align: center;
        padding: 0;
    }

    .header__misc {
        top: 50%;
        transform: translateY(-50%);
        right: 84px;
        margin-top: 1px;
    }

    .header__misc .authbtn {
        padding: 10px 10px 9px 10px;
    }

    main .bblk.site_banner .block {
        padding-bottom: 50px;
    }

    .swiper-button-next {
        display: none
    }

    .swiper-button-prev {
        display: none
    }

    .swiper-slide .lc {
        display: none;
    }

    .swiper-slide .rc {
        flex: 0 0 100%;
        padding: 20px 30px 0 30px;
    }

    .swiper-slide .rc img {
        display: block;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .swiper-slide .button {
        margin: 30px auto 0 auto;
    }

    .docs {
        padding-bottom: 50px;
    }

    .docs .block {
        background: none;
        min-height: auto;
    }

    .docs .info {
        padding: 0px 14px 20px 14px;
    }

    .docs .row > .col:first-child {
        display: none;
    }

    .docs .row.cols2 > .col.info {
        flex-basis: 100%;
    }

    .docs h3 {
        margin: 0 0 40px 0;
        padding: 0;
        background: 0;
        border-bottom: 0;
    }

    .newsinf {
        padding-bottom: 70px;
    }

    .winners {
        padding: 58px 0 0 0;
    }

    .winners .wnav .wtab {
        font-size: 1rem;
        max-width: 140px;
        padding: 10px 15px 12px 15px;
    }

    .winners.winw .wtab.ww, .winners.winq .wtab.wq {
        padding: 12px 15px 14px 15px;
    }

    .winner .col a {
        display: flex;
        flex-flow: row nowrap;
        justify-content: stretch;
        align-content: stretch;
        align-items: stretch;
    }

    .winner .col .img {
        flex: 0 0 20%;
        width: 20%;
        padding-bottom: 35%;
    }

    .winner .col .info {
        flex: 0 0 80%;
        padding: 0 0 10px 10px;
    }

}

@media only screen and (max-width: 576px) {
    h1, h3 {
        font-size: 1.7rem;
    }

    .bblk {
        padding-left: 3%;
        padding-right: 3%;
    }

    .bblk .bblk {
        padding: 0;
    }

    .formbody {
        padding: 5% 5%;
    }

    .auth .user_test #test {
        right: 5%;
        top: 4%;
    }

    .row.cols2 > .col {
        flex-basis: 100%;
    }

    .row.cols2 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols3 > .col {
        flex-basis: 100%;
    }

    .row.cols3 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols4 > .col {
        flex-basis: 100%;
    }

    .row.cols4 > .col.wide {
        flex-basis: 100%;
    }

    .row.cols5 > .col {
        flex-basis: 100%;
    }

    .row.cols5 > .col.wide {
        flex-basis: 100%;
    }

    footer .row {
        flex-flow: row wrap;
    }

    footer .row.cols2 > .col {
        flex-basis: 100%;
        padding-bottom: 0;
        text-align: center;
    }

    footer .logo2 {
        margin: 0 auto;
    }

    .nav li {
        flex: 0 0 33%;
        text-align: center;
        padding: 0;
    }

    aside .row.cols4 > .col {
        flex-basis: 100%;
    }

    .partner div {
        margin: 0 25px 20px 0;
    }

    .partner div.mp {
        margin: 0 0 20px 0;
    }

    .coord .col .img {
        flex: 0 0 100px;
    }
}

@media only screen and (max-width: 540px) {
    .auth .user_test #test {
        right: 5%;
        top: 3.5%;
    }

    .winner .col a {
        display: flex;
        flex-flow: row wrap;
        justify-content: stretch;
        align-content: stretch;
        align-items: stretch;
    }

    .winner .col .img {
        flex: 0 0 30%;
        width: 30%;
        padding-bottom: 45%;
        margin: 0 auto 10px auto;
    }

    .winner .col .info {
        flex: 0 0 100%;
        padding: 0 0 10px 0;
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .auth .user_test #test {
        right: 5%;
        top: 3%;
    }

    .winners {
        padding: 56px 0 0 0;
    }

    .winners .wnav .wtab {
        font-size: 1rem;
        max-width: 140px;
        padding: 8px 10px 12px 15px;
    }

    .winners.winw .wtab.ww, .winners.winq .wtab.wq {
        padding: 10px 10px 14px 10px;
    }

    .lg-toolbar .lg-icon {
        width: 40px;
    }
}

footer {
    background: #F8F2E9 url(/img/bg_footer.png) repeat top center;
    padding: 50px 0 10px 0;
}