

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}



.hidden {
    display: none!important;
}

/*

Icons

*/
.icon {
    position: relative;
    display: inline-block;
    fill: currentColor;
    width: 1em;
    height: 1em;
    letter-spacing: 0;
    line-height: 1;
}

svg.icon {
    pointer-events: none;
}



/*

Buttons

*/
.btn {
    position: relative;
    display: inline-block;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-family: "Myriad Pro Condensed", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: none;
    padding: 0 40px;
    vertical-align: middle;
    white-space: nowrap;
    line-height: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 0;
    color: #fff !important;
    -webkit-appearance: none;
    background: #E42D34;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
    transition: color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
    -o-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
    cursor: pointer;
    z-index: 0;
    overflow: hidden;
}

.btn:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

.btn::-moz-focus-inner {
    padding: 0 !important;
    border: 0 none !important;
}

.btn:hover {
    background: #fff;
    color: #E42D34 !important;
    text-decoration: none;
}

.btn.active, .btn:active {
    background: #fff;
    color: #E42D34 !important;
    text-decoration: none;
}

.btn + .btn {
    margin-left: 20px;
}

.btn > input[type='file'] {
    opacity: 0;
    font-size: 120px;
    position: absolute;
    top: -20px;
    right: -10px;
    vertical-align: top;
    z-index: 3;
    cursor: pointer;
}

.btn--trigger-parent:after {
    position: absolute;
    top: -500px;
    right: -500px;
    bottom: -500px;
    left: -500px;
    content: '';
}

.btn--fullwidth {
    width: 100%;
    margin-top: 20px;
}

.btn--fullwidth:first-child {
    margin-top: 0;
}

.btn--bordered-color-active {
    color: #E42D34 !important;
}

.btn--bordered {
    background: none;
}

.btn--bordered:before {
    border: 2px solid rgba(228, 45, 52, 0.7);
}

.btn--bordered:hover {
    background: #E42D34;
    color: #fff !important;
}

.btn--bordered.active, .btn--bordered:active {
    background: #E42D34;
    color: #fff !important;
}

.btn--hover-bordered:before {
    border: 2px solid transparent;
}

.btn--hover-bordered:hover {
    background: #fff;
    color: #E42D34 !important;
}

.btn--hover-bordered:hover:before {
    border-color: rgba(228, 45, 52, 0.7);
}

.btn--hover-bordered.active, .btn--hover-bordered:active {
    background: #fff;
    color: #E42D34 !important;
}

.btn--hover-bordered.active:before, .btn--hover-bordered:active:before {
    border-color: rgba(228, 45, 52, 0.7);
}

.btn[disabled], .btn.disabled {
    background: #9c9c9c;
    color: #fff !important;
    border-color: #9c9c9c;
    cursor: default;
    cursor: not-allowed;
}

.btn[disabled]:before, .btn.disabled:before {
    border-color: transparent;
    opacity: 0;
}

/*

Loaders

*/
.loader {
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
    text-indent: 0;
}

.btn .loader, .loader-set-absolute .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
}

.loading > .loader {
    opacity: 1;
}

.loader.active {
    opacity: 1;
}

.loader * {
    fill: #E42D34;
}

.btn .loader * {
    fill: #E42D34;
}

.loader svg {
    max-width: 100%;
    max-height: 100%;
}

.btn.loading {
    pointer-events: none;
    background: none !important;
    color: transparent !important;
}

.btn.loading:before {
    opacity: 0 !important;
}

.btn__loader-inner {
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.loading > .btn__loader-inner {
    opacity: 0;
}




/*
Content Section
*/
.section {
    position: relative;
    z-index: 1;
    padding: 125px 0 50px;
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0 50px;
    }
}

.section__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: center center no-repeat;
    background-size: cover;
    z-index: -1;
    overflow: hidden;
}

.section__bg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: -100;
}

.rtable ::-webkit-scrollbar {
    -webkit-appearance: none;
}

.rtable ::-webkit-scrollbar:vertical {
    width: 5px;
}

.rtable ::-webkit-scrollbar:horizontal {
    height: 5px;
}

.rtable ::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 0;
    border: none;
}

.rtable ::-webkit-scrollbar-track {
    border-radius: 0;
    margin: 10px 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.05) !important;
}



/*
Таблица победителей
*/



.section--winners {
    color: #fff;
    padding-left: 6.25rem;
    padding-right: 6.25rem;
   /* margin-top: -5rem;*/
    height:1225px;
    overflow: auto;
}

.section--winners .section__bg {
    background-size: auto;
    background: linear-gradient(81.2deg, #5B2182 -16.31%, #7625AC 14.65%, #A348DF 75.69%, #591288 98.21%);
}

@media (max-width: 767px) {
    .section--winners .section__bg {
        display: none;
    }
    .section--winners {
        height:auto;

    }
}

h2 {
    color: #fff;
    font-weight: 700;
    font-size: 60px;
    line-height: 58px;
}

@media (max-width: 767px) {

    h2 {
        color: #000;
        font-size: 30px;
    }
}


.rtable-wrapper {
    padding-right: 5rem;
    font-size: 16px;
    margin-top: 30px;
}

@media (max-width: 767px) {

    .rtable-wrapper {
        padding-right: 0;
    }

    .rtable-wrapper.active {
        padding-bottom: 0;
    }
}


.rtable-trigger {
    display: none;
}

@media (max-width: 767px) {
    .rtable-trigger {
        display: block;
    }
}

.rtable-wrapper.active .rtable {
    display: block;
}

.rtable-wrapper.active .rtable-trigger .btn {
    color: #000 !important;
    background: transparent !important;
    overflow: visible;
}

.rtable-wrapper.active .rtable-trigger .btn:before {
    display: none;
}

.rtable-wrapper.active .rtable-trigger .btn .icon {
    display: none;
}

.rtable-wrapper.active .rtable-trigger .btn__set-lines:before, .rtable-wrapper.active .rtable-trigger .btn__set-lines:after {
    display: block;
}

.btn__set-lines {
    position: relative;
}

.btn__set-lines:before {
    position: absolute;
    top: 50%;
    right: 100%;
    margin-right: 20px;
    width: 2000px;
    border-top: 1px solid rgba(228, 45, 52, 0.7);
    content: '';
}

.btn__set-lines:after {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 20px;
    width: 2000px;
    border-top: 1px solid rgba(228, 45, 52, 0.7);
    content: '';
}

.rtable-trigger {
    margin-top: 35px;
    margin-bottom: -25px;
}

.rtable-trigger:first-child {
    margin-top: 0;
}

.rtable-trigger .btn .icon {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 8px;
}

.rtable-trigger .btn__set-lines:before, .rtable-trigger .btn__set-lines:after {
    display: none;
}

.rtable {
    display: block;
    margin-top: 50px;
    font-size: 16px;
}

.rtable:first-child {
    margin-top: 0;
}

@media (max-width: 767px) {
    .rtable {
        margin-left: -20px;
        margin-right: -20px;
        margin-top: 0;
        display: none;
    }

    .rtable-wrapper.active .rtable {
        display: block;
    }
}

@media (max-width: 767px) {
    .rtable__head {
        display: none;
    }
}

.rtable__head-inner {
    color: #fff;
    padding-right: 160px;
}

@media (max-width: 767px) {
    .rtable__body {
        min-height: 100px;
    }
}

.rtable__body-inner {
    height: 400px;
    padding-right: 160px;
    /*overflow-x: hidden;*/
    /*overflow-y: auto;*/
}

@media (max-width: 767px) {
    .rtable__body-inner {
        height: auto;
        padding-right: 0;
        /*overflow: visible;*/
    }
}

.rtable__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .rtable__row {
        display: block;
        padding: 25px 20px;
        border-bottom-color: rgba(228, 45, 52, 0.7);
    }
    .rtable__row.to-show {
        display: none;
    }
    .rtable__row.to-show.active {
        display: block;
    }
}

.rtable__cell {
    padding: 15px 10px;
    -webkit-box-flex: 1;
    -ms-flex: auto 1 1;
    flex: auto 1 1;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 767px) {
    .rtable__cell {
        display: block;
        padding: 2px 0;
        white-space: normal;
        overflow: visible;
    }
    .rtable__cell:before {
        color: #E42D34;
    }
}

.rtable__cell:nth-child(1) {
    width: 80px;
    -webkit-box-flex: 1;
    -ms-flex: auto 0 0px;
    flex: auto 0 0;
}

@media (max-width: 767px) {
    .rtable__cell:nth-child(1) {
        width: auto;
    }
    .rtable__cell:nth-child(1):before {
        content: '№: ';
    }
}

.rtable__cell:nth-child(2) {
    width: 250px;
    -webkit-box-flex: 1;
    -ms-flex: auto 0 0px;
    flex: auto 0 0;
}

@media (max-width: 767px) {
    .rtable__cell:nth-child(2) {
        width: auto;
    }
    .rtable__cell:nth-child(2):before {
        content: 'E-mail: ';
    }
}

.rtable__cell:nth-child(3) {
    width: 170px;
    -webkit-box-flex: 1;
    -ms-flex: auto 0 0px;
    flex: auto 0 0;
}

@media (max-width: 767px) {
    .rtable__cell:nth-child(3) {
        width: auto;
    }
    .rtable__cell:nth-child(3):before {
        content: 'Имя: ';
    }
}

@media (max-width: 767px) {
    .rtable__cell:nth-child(4):before {
        content: 'Приз: ';
    }
}

.rtable__more {
    position: relative;
    z-index: 1;
    margin-top: -15px;
    background: #f2f2f2;
    display: none;
}

@media (max-width: 767px) {
    .rtable__more {
        display: block;
    }
}

.rtable__more .btn {
    background: none !important;
}

.rtable__more .btn:before {
    display: none;
}

.rtable__close {
    position: relative;
    margin-top: -15px;
    background: #f2f2f2;
    display: none;
}

@media (max-width: 767px) {
    .rtable__close {
        display: block;
    }
}

.rtable__close .btn {
    background: none !important;
}

.rtable__close .btn:before {
    display: none;
}

.rtable__close .btn .icon {
    font-size: 14px;
    vertical-align: middle;
}

.rtable__close .btn__set-lines {
    position: relative;
}

.rtable__close .btn__set-lines:before {
    margin-right: 10px;
}

.rtable__close .btn__set-lines:after {
    margin-left: 10px;
}