

/* Start:/css/reset.css?17189778983865*/
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
html,
body,
p,
div,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


ul {
  list-style-type: none;
}
    input:not([type=checkbox]):not([type=radio]),
    textarea, 
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

input,
label,
select,
button,
textarea
{
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;
	
	/* Browsers have different default form fonts */
	font-size:14px;
}

/* Remove the stupid outer glow in Webkit */
input:focus
{
	outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week]
{
}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
	width:13px;
	height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
	display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{
	/* Fix IE7 display bug */
	overflow:visible;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{	
	padding:0;
	border:0;
	background:none;
}

/* Textarea
-----------------------------------------------*/

textarea 
{
	/* Move the label to the top */
	vertical-align:top;
	
	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{

}

select[multiple] 
{
	/* Move the label to the top */
	vertical-align:top;
}
/* End */


/* Start:/css/style.css?175103172050333*/
* {
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #333333;
}

body, html {
overflow-x: hidden;
max-width: 100%;
}

.dh {
display: none;
}

img {
margin: 0;
max-width: 100%;
}

a {
color: #333333;
transition: 700ms;
}

a:hover {
color: #9a59ff;
}

#toast-container * {
color: #fff;
}

.login-block {
background: rgba(0,0,0,.63);
width: 100%;
height: 100%;
position: fixed;
top:0;
left: 0;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
opacity: 0;
z-index: -1;
transition: 700;
}

.login-block_active {
opacity: 1;
z-index: 3;
}

.login-form {
background: #FFFFFF;
max-width: 524px;
padding: 25px;
padding-bottom: 64px;
}

.login-form-top {
border-bottom: 1px solid #F1F1F1;
height: 85px;
margin-left: -25px;
width: calc(100% + 25px);
padding-left: 25px;
margin-top: -25px;
display: flex;
align-content: center;
align-items: center;
position: relative;
}

.login-form-top h2 {
padding-top: 0px;
padding-bottom: 0px;
font-size: 30px;
color: #333333;
}

.login-form-close {
width: 85px;
height: 85px;
cursor: pointer;
position: absolute;
top:0px;
right: 0;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
transition: 700ms;
}

.login-form-close:hover {
background:#F1F1F1;
}

.login-form-text {
padding-top: 40px;
padding-bottom: 40px;
line-height: 1.6;
}

.login-form-text a {
color: #9a59ff;
text-decoration: none;
}

.login-form-buttons {
display: flex;

align-items: center;
align-content: center;
flex-wrap: wrap;
}

.login-form-buttons-item {
height: 45px;
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
width: calc(33.33% - 41px);
padding: 0 14px;
text-decoration: none;
border:1px solid transparent;
transition: 700ms;
margin-right: 20px;
}

.login-form-buttons-item:hover {
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
}

.login-form-buttons-item_apple-id {
background: #000000;
color: #fff;
display: none;
}

.login-form-buttons-item_facebook {
background: #4B5A88;
color: #fff;
}

.login-form-buttons-item_google {
background: #fff;
color: #333;
border: 1px solid #E5EAF1;
}

.login-form-buttons-item-icon {
margin-right: 14px;
}

h1 {

font-weight: 400;
font-size: 42px;
color: #333333;
}

.page-title {
padding-top: 40px;
padding-bottom: 25px;
}

h2 {

font-weight: 400;
font-size: 42px;
color: #333333;
padding-top: 40px;
padding-bottom: 30px;
}

.page-description {
margin-bottom: 45px;
max-height: 70px;
overflow-y: hidden;
padding-bottom: 65px;
position: relative;
transition: 700ms;
transition: max-height 0.15s ease-out;
}

.page-description:after {
display: block;
content: ' ';
background-image: linear-gradient(180deg, rgba(238,238,238,0.00) 0%, rgba(240,240,240,0.90) 23%, #F1F1F1 99%, #F1F1F1 99%);
height: 65px;
position: absolute;
bottom: 0;
width: 100%;
}

.page-description_active {
max-height: 100%;
transition: max-height 0.25s ease-out;
}

.page-description p {
font-size: 14px;
color: #333333;
line-height: 18px;
padding-bottom: 20px;
}
    
.page-description__read-more {
font-size: 14px;
color: #9a59ff;
cursor: pointer;
position: absolute;
bottom: 10px;
z-index: 1;
}

.show-more {
background: rgba(154,89,255,0.50);
border: 1px solid #9a59ff;
border-radius: 3px;
height: 66px;
width: 100%;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
cursor: pointer;
transition: 700ms;
}

.show-more span {
opacity: 0.5;

color: #333333;
letter-spacing: 1.49px;
margin-left: 9px;
}

.show-more:hover {
background: rgba(154,89,255,1);
color: #fff;
}

.show-more:hover span {
color: #fff;
}

.archive-choose {
position: relative;
display: inline-block;
cursor: pointer;
}

.archive-choose span {

font-weight: 400;
font-size: 42px;
color: #333333;
border-bottom: 1px solid #333;
}

.archive-choose__menu {
position: absolute;
top: 50px;
z-index: 2;
right: 0;
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
display: none;
}

.archive-choose:hover .archive-choose__menu {
display: block;
}

.archive-choose__menu-item {
    display: block;
    padding: 0 24px;
    white-space: nowrap;
    border-bottom: 1px solid #F1F1F1;
    text-decoration: none;
    height: 62px;
    line-height: 62px;
    color: #333333;
    letter-spacing: 1.49px;
    transition: 700ms;
}

.archive-choose__menu-item:hover {
    background: rgba(229,234,241,0.64);
    }

.gr-bg {
background: #F1F1F1;
}

.button, .button_vote, .button_voted {
background: #9a59ff;
border-radius: 3px;
height: 45px;
font-size: 16px;
color: #FFFFFF;
letter-spacing: 1.49px;
display: inline-flex;
align-items: center;
align-content: center;
justify-content: center;
text-decoration: none;
padding: 0 20px;
transition: 700ms;
}

.button_voted {
background: gray;
}

.button:hover {
background: #9a59ff;
color: #fff;
}

.wrapper {
width: 1180px;
padding: 0 10px;
margin: 0 auto;
position: relative;
}

.header .wrapper {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
align-content: center;
height: 66px;
}

.header__right {
width: calc(100% - 241px);
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
align-content: center;
}

.header__menu {
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.header__menu-link {
font-weight: 700;
text-decoration: none;
font-size: 16px;
color: #333333;
letter-spacing: 1.49px;
margin: 0 12px;
transition: 700ms;
}

.header__menu-link_win {
color:#9a59ff;
}

.header__buttons {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.header__buttons-separator {
background: #D3D7E0;
height: 45px;
width: 1px;
margin: 0 23px;
}

.header__buttons-register {
text-decoration: none;
cursor: pointer;
transition: 700ms;
}

.header__buttons-register:hover {
color: #9a59ff;
}

.header__search-icon {
width: 44px;
height: 44px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
cursor: pointer;
}

.header__search-icon:hover {
opacity: .64;
}

.header__mm {
display: none;
}



.header__buttons-comp {
margin-right: 25px;
}

.header__buttons-comp-icon {
background: rgba(229,234,241,0.64);
border-radius: 5px;
height: 45px;
width: 45px;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
position: relative;
}

.header__buttons-user-icon {
background: rgba(229,234,241,0.64);
border-radius: 45px;
height: 45px;
width: 45px;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
position: relative;
}

.header__buttons-user-icon img {
border-radius: 3px;
width: 100%;
}

.header__buttons-icon-count {
background: #9a59ff;
height: 22px;
width: 22px;
border-radius: 22px;
font-size: 10px;
color: #FFFFFF;
letter-spacing: 0.93px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
position: absolute;
top:-7px;
right: -7px;
z-index: 2;
}

.header__buttons-menu {
position: relative;
padding-bottom: 10px;
bottom: -5px;
}
    
.header__buttons-menu:hover .header__buttons-menu-body {
 display: block;
}

.header__buttons-menu-body {
position: absolute;
top:55px;
z-index: 2;
right: 0;
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
display: none;
}

.header__buttons-menu-body-item {
display: block;
padding: 0 24px;
white-space: nowrap;
border-bottom: 1px solid #F1F1F1;
text-decoration: none;
height: 62px;
line-height: 62px;
color: #333333;
letter-spacing: 1.49px;
transition: 700ms;
}

.header__buttons-menu-body-item:hover {
background: rgba(229,234,241,0.64);
}

.header__buttons-menu_mb {
display: none;
}

.mp__banner {
position: relative;
padding-top: 170px;
padding-bottom: 150px;
}

.mp__banner:after {
display: block;
content: ' ';
position: absolute;
width: 100%;
height: 100%;
background: rgba(154, 89, 255, 0.6);
mix-blend-mode: normal;
top: 0;
left: 0;
z-index: 1;
}

.new-top_main-bg {
position: absolute;
width: 100%;
z-index: -1;
top:0;
}

.mp__banner .wrapper {
text-align: center;
position: relative;
z-index: 2;
}

.mp__banner-title {
color: #FFFFFF;
text-transform: uppercase;
font-size: 60px;
font-weight: 600;
}

.mp__banner-stitle {
color: #FFFFFF;
text-transform: uppercase;
font-size: 42px;
font-weight: 600;
}

.mp__banner-text {
color: #FFFFFF;
font-size: 20px;
font-weight: 400;
max-width: 400px;
margin: 20px auto;
}

.mp__banner-left {
width: calc(50% - 40px);
padding-right: 40px;
}

.mp__banner-left-title {
font-size: 80px;
color: #FFFFFF;
line-height: 90px;
padding-bottom: 23px;
}

.mp__banner-left-text {
opacity: 0.8;
font-size: 18px;
color: #FFFFFF;
}

.mp__banner-right {
width: 50%;
display: flex;
flex-wrap: wrap;
}

.mp__banner-right-item {
border: 2px solid #9a59ff;
width: calc(50% - 94px);
margin-right: 40px;
height: 68px;
padding: 35px 25px 0px 25px;
margin-bottom: 75px;
position: relative;
}

.mp__banner-right-item-number {

font-weight: 700;
font-size: 55px;
color: #FFFFFF;
position: absolute;
top:-35px;
}

.mp__banner-right-item-text {
font-size: 20px;
color: #FFFFFF;
}

.hiw__buttons {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.hiw__buttons-qnt {
display: flex;
align-items: center;
align-content: center;
margin-left: 45px;
}

.hiw__buttons-qnt-circle {
width: 25px;
height: 25px;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
background:rgba(154,89,255,0.4);
border-radius: 25px;
}

.hiw__buttons-qnt-circle span {
width: 13px;
height: 13px;
background: #9a59ff;
border-radius: 13px;
}

.hiw__buttons-qnt-dight {
font-weight: 700;
font-size: 18px;
color: #333333;
margin-left: 12px;
margin-right: 7px;
}

.hiw__buttons-qnt-text {
font-size: 18px;
color: #333333;
}

.hiw__steps {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
margin: 40px 0 100px 0;
}

.hiw__steps-item {
width: calc(25% - 110px);
padding: 35px 85px 25px 25px;
background: url('/css/../img/hiw__steps-item.svg') center right no-repeat;
}

.hiw__steps-item:last-child {
background: none;
}

.hiw__steps-item-num {
border: 1px solid #9a59ff;
width: 40px;
height: 40px;
border-radius: 40px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;

font-size: 20px;
color: #9a59ff;
}

.hiw__steps-item-title {

font-weight: 700;
font-size: 20px;
color: #333333;
padding-top: 23px;
padding-bottom: 10px;
}

.hiw__steps-item-text {
opacity: 0.5;
font-size: 16px;
color: #000000;
}

.mp-ratings {
padding-top: 33px;
padding-bottom: 100px;
}

.mp-ratings__title {
padding-bottom: 50px;
text-transform: uppercase;
}

.mp-ratings__list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.mp-ratings__list-item {
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
border-radius: 3px;
width: calc(50% - 30px);
margin-bottom: 45px;
display: flex;
justify-content: space-between;
align-items: flex-start;
align-content: flex-start;
flex-wrap: wrap;
border-radius: 8px;
}

.mp-ratings__list-item-top {
width: 30%;
text-align: center;
}

.mp-ratings__list-item-top-title {

font-weight: 700;
text-decoration: none;
font-size: 30px;
color: #333333;
text-align: center;
margin-bottom: 20px;
}

.mp-ratings__list-item-top-title img {
display: block;
margin-top: 10px;
}

.mp-ratings__list-item-top-button {
border:1px solid #9a59ff;
color: #9a59ff;
background: #fff;
margin-top: 20px;
}

.mp-ratings__list-item-text {
width: calc(70% - 20px);
}

.mp-ratings__list-item-text-item {
text-decoration: none;
border-bottom: 1px solid #E1E5E9;
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
width: 100%;
transition:300ms;
padding: 0 30px;
}

.mp-ratings__list-item-text-item:hover {
background: rgb(154, 89, 255);
}

.mp-ratings__list-item-text-item-left {
display: flex;
align-items: center;
font-size: 18px;
}

.mp-ratings__list-item-text-item:hover .mp-ratings__list-item-text-item-left {
color: #fff;
}

.mp-ratings__list-item-text-item span {
background: rgb(154, 89, 255);
border-width: 1px;
border-style: solid;
border-color: rgb(154, 89, 255);
border-image: initial;
color: rgb(255, 255, 255);
padding: 5px 15px;
}

.mp-ratings__list-item-text-item:last-child {
border:none;
}

.mp-ratings__list-item-text-item-c {
width: 10px;
height: 10px;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
background: rgba(154,89,255,0.4);
border-radius: 25px;
margin-right: 8px;
}

.mp-ratings__list-item-text-item:hover .mp-ratings__list-item-text-item-c {
background: #fff;
}

.mp-ratings__list-item-text-item:hover span {
background: #fff;
color: rgb(154, 89, 255);
}

.mp-ratings__list-years {
display: flex;
flex-wrap: wrap;
padding-top: 24px;
padding-bottom: 24px;
}

.mp-ratings__list-years-item {
margin-right: 15px;
cursor: pointer;
transition: 700ms;
}

.mp-ratings__list-years-item:hover {
opacity: .64;
}

.mp-ratings__list-years-item_current {
font-weight: 700;
color: #9a59ff;
}

.mp-ratings__list-logos {

}

.mp-ratings__list-logos-item {
display: none;
}

.mp-ratings__list-logos-item_current {
display: flex;
flex-wrap: wrap;
}

.mp-ratings__list-logos-item-comp {
width: calc(33.33% - 20px);
position: relative;
margin-right: 20px;
text-align: center;
}

.mp-ratings__list-logos-item-comp-link {
position: relative;
text-decoration: none;
}

.mp-ratings__list-logos-item-comp-title {
display: block;
padding-top: 10px;
text-transform: uppercase;
font-weight: 700;
}

.mp-ratings__list-logos-item-comp-cup {
position: absolute;
top:-57px;
right: -15px;
}

.mp-ratings__list-logos-item-comp-cup_gold {
fill: #C8AF72;
}

.mp-ratings__list-logos-item-comp-cup_silver {
fill:#CBCAC8;
}

.mp-ratings__list-logos-item-comp-cup_bronze {
fill:#CD7F32;
}

.slam-easyform {
padding-bottom: 100px;
}

.rating-list__page-descr {
opacity: 0.6;
padding-bottom: 30px;
}

.rating-list__page-cats {
display: flex;
align-items: center;
flex-wrap: wrap;
}

.rating-list__page-cats-item {
height: 38px;
padding: 0 10px;
margin-right: 15px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

.rating-list__page-cats-item_a {
background: #9a59ff;
color: #fff;
text-decoration: none;
border-radius: 3px;
}

.last-nom__list-next {
width: 45px;
height: 45px;
font-size: 0;
position: absolute;
top: 75px;
right: 20px;
cursor: pointer;
transition: 700ms;
}

.reviews__list_2 {
padding-top: 30px;
padding-bottom: 70px;
}

.reviews__list-item {
background: #FFFFFF;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
border-radius: 3px;
padding: 0;
position: relative;
}

.reviews__list_2 .reviews__list-item {
display: flex;
justify-content: space-between;
flex-wrap:wrap;
align-items: center;
align-content: center;
border-radius: 8px;
overflow: hidden;
margin-bottom: 8px;
padding-bottom: 15px;
}

.reviews__list-item-num {
width: 20px;
font-size: 20px;
padding: 0 15px;
}

.reviews__list-item-top {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
width: calc(100% - 210px);
padding: 0 15px;
}

.reviews__list-item-top-logo {
width: 160px;
margin-right: 30px;
text-align: center;
}

.reviews__list-item-top-logo-title {
font-size: 18px;
color: #000000;
text-transform: uppercase;
}

.reviews__list-item-text {

}

.reviews__list-item-percentage {
width: 100%;
background: #E5E5E5;
height: 8px;
font-size: 10px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-bottom: 15px;
}

.reviews__list-item-percentage span {
height: 8px;
background: #9a59ff;
position: absolute;
left: 0;
}

.reviews__list-item-percentage-val {
font-size: 10px;
position: relative;
z-index: 2;
}

.reviews__list-item-percentage-val_w {
color: #fff;
}

.reviews__list-item-eval {
width: 50%;
text-align: right;
}

.reviews__list-item-eval-title {
opacity: 0.5;
font-size: 14px;
color: #000000;
padding-bottom: 9px;
}

.reviews__list-item-eval-val {
height: 40px;
width: 40px;
border-radius: 40px;
display: inline-flex;
align-items: center;
align-content: center;
justify-content: center;

font-weight: 400;
font-size: 20px;
border: 1px solid transparent;
}

.reviews__list-item-vote {
width: 100px;
padding: 0 15px;
}

#bx_socserv_icon_GoogleOAuth {

}

.reviews__list-item-vote div.star-voted, .reviews__list-item-vote div.star-over, .reviews__list-item-vote div.star-empty {
width: 100%;
height: 40px;
background: #9a59ff;
border-radius: 8px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
color: #fff;
}

.reviews__list-item-vote div.star-voted {
background: #E5E5E5;
color: #333333;
}

.reviews__list-item-vote div.star-active {
background: #9a59ff;
color: #fff;
}

.reviews__list-item-vote div.star-active:hover {
opacity: .7;
transition: 300ms;
}

.eval-5 {
border-color: #1BAF5D;
color: #1BAF5D;
}

.votes__item-top-eval_credited .eval-5 {
background-color: #1BAF5D;
color: #FFF;
}

.eval-5 .comp-detail__top-vote-votes-stars-item {
border-color: #1BAF5D;
background: #1BAF5D;
}

.eval-4 {
border-color: rgba(27,175,93,.63);
color: rgba(27,175,93,.63);
}

.votes__item-top-eval_credited .eval-4 {
background-color: rgba(27,175,93,.63);
color: #FFF;
}

.eval-4 .comp-detail__top-vote-votes-stars-item:nth-child(1), .eval-4 .comp-detail__top-vote-votes-stars-item:nth-child(2), .eval-4 .comp-detail__top-vote-votes-stars-item:nth-child(3), .eval-4 .comp-detail__top-vote-votes-stars-item:nth-child(4) {
border-color: rgba(27,175,93,.63);
background: rgba(27,175,93,.63);
}

.eval-3 {
border-color: #FFC96E;
color: #FFC96E;
}

.votes__item-top-eval_credited .eval-3 {
background-color: #FFC96E;
color: #FFF;
}

.eval-3 .comp-detail__top-vote-votes-stars-item:nth-child(1), .eval-3 .comp-detail__top-vote-votes-stars-item:nth-child(2), .eval-3 .comp-detail__top-vote-votes-stars-item:nth-child(3) {
border-color: #FFC96E;
background: #FFC96E;
}
    
.eval-2 {
border-color: rgba(239,45,29,.63);
color: rgba(239,45,29,.63);
}

.votes__item-top-eval_credited .eval-2 {
background-color: rgba(239,45,29,.63);
color: #FFF;
}

.eval-2 .comp-detail__top-vote-votes-stars-item:nth-child(1), .eval-2 .comp-detail__top-vote-votes-stars-item:nth-child(2) {
border-color: rgba(239,45,29,.63);
background: rgba(239,45,29,.63);
}
    
.eval-1 {
border-color: #EF2D1D;
color: #EF2D1D;
}

.votes__item-top-eval_credited .eval-1 {
background-color: #EF2D1D;
color: #FFF;
}

.eval-1 .comp-detail__top-vote-votes-stars-item:nth-child(1) {
border-color: #EF2D1D;
background: #EF2D1D;
}


.last-nom {
padding-top: 30px;
padding-bottom: 80px;
}

.last-nom__list {
    
}

.last-nom__list-item {
border:5px solid #9a59ff;
border-radius: 16px 0 16px 0;
padding: 25px 15px;
text-align: center;
margin-right: 20px;
transition: 700ms;
}

.last-nom__list-item:hover {
box-shadow: 0 4px 10px 0 rgb(0 0 0 / 6%);
}

.last-nom .slick-slide img {
display: inline !important;
}

.last-nom__list-item-logo-name {
text-decoration: none;
display: block;
text-align: center;
}

.last-nom__list-item-logo {
height: 63px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
}

.last-nom__list-item-name {
text-transform: uppercase;
padding: 10px 0 20px 0;
font-weight: 700;
}

.last-nom__list-item-name-cat {
border-top: 1px solid #333;
text-decoration: none;
color: #9a59ff;
text-transform: uppercase;
display: block;
padding-top: 8px;
font-weight: 700;

margin-top: 25px;
padding-top: 20px;
min-height: 38px;
}

.last-nom__list .slick-prev {
display: none !important;
}

.last-nom__list .slick-next {
    width: 45px;
    height: 45px;
    background: url(/css/../img/next.svg) no-repeat;
    font-size: 0px;
    position: absolute;
    top: -95px;
    right: 0;
    cursor: pointer;
    transition: 700ms;
}

.reviews {
padding-top: 33px;
padding-bottom: 130px;
}

.reviews .slick-prev {
display: none !important;
}

.reviews .slick-next {
width: 45px;
height: 45px;
background: url('/css/../img/next.svg') no-repeat;
font-size: 0px;
position: absolute;
top:-95px;
right: 0;
cursor: pointer;
transition: 700ms;
}

.reviews .slick-next:hover {
opacity: .63;
}

.reviews__list-item-text {
text-decoration: none;
line-height: 1.6;
display: block;
width: calc(100% - 340px);;
}

.reviews__list-item-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: absolute;
bottom: 20px;
width: calc(100% - 50px);
}

.reviews__list-item-bottom-date {
opacity: 0.5;
font-size: 14px;
color: #333333;
}

.reviews__list-item-bottom-reply {
display: flex;
align-items: center;
align-content: center;
font-size: 14px;
color: #9a59ff;
text-decoration: none;
}

.reviews__list-item-bottom-reply-icon {
margin-right: 7px;
}

.breadcrumbs {
background: #E5E5E5;
height: 45px;
}

.breadcrumbs .wrapper {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
height: 45px;
}

.breadcrumbs__item {
font-weight: 700;
text-transform: uppercase;
font-size: 10px;
color: #333333;
letter-spacing: 0.93px;
text-decoration: none;
}

.breadcrumbs__saparator {
width: 4px;
height: 4px;
border-radius: 4px;
background: #333;
margin: 0 6px;
}

.breadcrumbs__item_current {
opacity: .64;
}

.rating-subsections {
display: flex;
flex-wrap: wrap;
}

.rating-subsections__item {
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgb(0 0 0 / 6%);
border-radius: 3px;
text-decoration: none;
height: 36px;
padding: 0 12px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
margin: 0 12px 12px 0;
}

.rating-list__page {

}

.ratings-list {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.ratings-list__item {
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
border-radius: 3px;
width: calc(50% - 75px);
padding: 25px;
margin-bottom: 45px;
}

.ratings-list-item-top {
display: flex;
flex-wrap: wrap;
}

.ratings-list-item-top__icon {
width: 45px;
margin-right: 20px;
}

.ratings-list-item-top__title {

font-weight: 700;
font-size: 30px;
color: #333333;
width: calc(100% - 65px);
}

.ratings-list-item__description {
padding: 12px 0 0 65px;
}

.ratings-list__item-nom {
display: flex;
flex-wrap: wrap;
padding: 40px 0 20px 65px;
}

.ratings-list__item-nom-item {
margin-right: 20px;
margin-bottom: 10px;
}

.rating-table {

}

.rating-table__head {
display: flex;
flex-wrap: wrap;
}

.rating-table__head-col {
opacity: 0.5;
font-size: 14px;
color: #333333;
height: 66px;
display: flex;
align-items: center;
align-content: center;
}

.rating-table__head-col:nth-child(1) {
width: 5%;
text-align: center;
justify-content: center;
}

.rating-table__head-col:nth-child(2) {
width: calc(20% - 55px);
padding-left: 55px;
}

.rating-table__head-col:nth-child(3) {
width: 10%;
}
    
.rating-table__head-col:nth-child(4) {
width: calc(15% - 40px);
}
        
.rating-table__head-col:nth-child(5) {
width: calc(19% - 30px);
}
            
.rating-table__head-col:nth-child(6) {
width: calc(18% - 30px);
}
                
.rating-table__head-col:nth-child(7) {
width: 10%;
}
                    
.rating-table__head-col:nth-child(8) {
width: 120px;
}

.rating-table-row {
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
border-radius: 3px;
height: 66px;
display: flex;
align-items: center;
align-content: center;
margin-bottom: 1px;
}

.rating-table-row_adv {
background: rgba(154,89,255,0.50);
border: 1px solid #9a59ff;
}

.rating-table-col:nth-child(1) {
width: 5%;
text-align: center;

font-weight: 700;
font-size: 20px;

}
    
.rating-table-col:nth-child(2) {
width: 20%;
}

.rating-table-col__comp {
display: flex;
align-items: center;
align-content: center;
}

.rating-table-col__comp-logo-div {
width: 45px;
padding-right: 10px;
}

.rating-table-col__comp-logo {
max-width: 45px;
margin-right: 20px;
}

.rating-table-col__comp span {
overflow: hidden;
text-overflow: ellipsis;
max-width: 150px;
white-space: nowrap;
}
    
.rating-table-col:nth-child(3) {
width: 10%;

font-weight: 700;
font-size: 20px;
}
        
.rating-table-col:nth-child(4) {
width: calc(15% - 40px);
}
            
.rating-table-col:nth-child(5) {
width: calc(19% - 30px);
}
                
.rating-table-col:nth-child(6) {
width: calc(18% - 30px);
}
                    
.rating-table-col:nth-child(7) {
width: 10%;
}
                        
.rating-table-col:nth-child(8) {
width: 120px;
}

.rating-table-col:nth-child(8) .button {
width: calc(100% - 40px);
}

.comp-detail__top {
border-bottom: 1px solid #F1F1F1;
padding-top: 40px;
padding-bottom: 75px;
}

.comp-detail__top .wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.left-block {
width: 62%;
}

.right-block {
width: 33%;
}

.comp-detail__top-left {
display: flex;
flex-wrap: wrap;
}

.comp-detail__top-name {
width: calc(45% - 10px);
margin-right: 20px;
}

.comp-detail__top-name-link {
position: relative;
top:-1px;
text-decoration: none;
color: #9a59ff;
}

.comp-detail__top-facts {
padding-top: 13px;
width: calc(55% - 10px);
display: flex;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
}

.comp-detail__top-facts-item {
width: calc(50% - 20px);
margin-bottom: 16px;
}

.comp-detail__top-vote {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.comp-detail__top-vote-eval {

font-weight: 700;
font-size: 60px;
color: #333333;
}

.comp-detail__top-vote-votes {
margin-left: 20px;
margin-right: 30px;
}

.comp-detail__top-vote-votes-total {
text-decoration: none;
}

.comp-detail__top-vote-votes-stars {
display: flex;
flex-wrap: wrap;
padding-top: 12px;
}

.comp-detail__top-vote-votes-stars-item {
border:1px solid #F1F1F1;
width: 15px;
height: 15px;
border-radius: 15px;
margin-right: 3px;
}

.comp-detail__bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 30px;
}

.comp-detail__bottom .page-description:after {
background-image: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.90) 23%, #FFF 99%, #FFF 99%);
}

.comp-detail__bottom-your {
border:1px solid #F1F1F1;
padding: 10px 15px;
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.comp-detail__bottom-your-icon {
margin-right: 15px;
height: 100%;
}

.comp-detail__bottom-your-text {
font-size: 14px;
width: calc(100% - 36px);
}

.comp-detail__bottom-your a {
font-size: 14px;
color: #CEAE68;
text-decoration: none;
}

.cdp {
padding-top: 60px;
padding-bottom: 100px;
}

.cdp .wrapper {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.votes__item {
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
border-radius: 3px;
padding: 25px 25px 0 25px;
margin-bottom: 24px;
}

.votes__item-comp {
border-bottom: 1px solid #F1F1F1;
padding-bottom: 23px;
margin-bottom: 23px;
}

.votes__item-top {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
justify-content: space-between;
}

.votes__item-top-title {

font-weight: 700;
font-size: 22px;
color: #333333;
}

.votes__item-top-eval {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
}

.votes__item-top-eval-before {
font-size: 14px;
opacity: .5;
margin-right: 8px;
}

.votes__item-top-eval-after {
font-size: 14px;
opacity: .5;
margin-left: 8px;
}

.votes__item-text {
opacity: 0.8;
line-height: 24px;
padding-top: 25px;
padding-bottom: 13px;
}

.votes__item-text p {
padding-bottom: 10px;
}

.votes__item-answer-body_adm {
background: rgba(239,45,29,0.15);
}

.votes__item-answer-body_team {
background: rgba(27,175,93,0.15);
}

.vote__form-comment {
padding-top: 20px;
}

.vote__form-comment .vote__form-button {
margin-top: 20px;
}

.vote__form-buttons {
display: flex;
align-content: center;
align-items: center;
margin-top: 20px;
}

.vote__form-comment .vote__form-buttons .vote__form-button {
margin-top: 0;
}

.vote__form-button-cancel {
margin-left: 10px;
cursor: pointer;
}

.vote__form-button-cancel:hover {
opacity: .64;
}

.votes__item-answer {
width: calc(100% + 50px);
margin-left: -25px;
display: none;
}

.votes__item-answer-body {
padding: 15px 25px 15px 25px;
}

.votes__item-answer-body-top {
display: flex;
align-items: center;
align-content: center;
flex-wrap: wrap;
padding-bottom: 13px;
}

.votes__item-answer-body-top_alt {
justify-content: space-between;
}

.votes__item-answer-body-top-name {
font-weight: 700;
font-size: 14px;
color: #000000;
margin-right: 10px;
}

.votes__item-answer-body-top-date {
opacity: 0.5;
font-size: 12px;
color: #333333;
}

.votes__item-comment {
width: calc(100% + 50px);
margin-left: -25px;
}

.votes__item-comment_usr {
display: none;
}

.votes__item-comment-body {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: 1px solid #F1F1F1;
padding: 25px;
}

.votes__item-comment-body-avatar {
width: 45px;
margin-right: 20px;
}

.votes__item-comment-body-text {
width: calc(100% - 65px);
}

.votes__item-comment-body-text-form textarea {
margin-bottom: 20px;
min-height: 120px;
}

.votes__item-comment-body-text-form .eval-block {
margin-bottom: 30px;
margin-top: 6px;
}

.votes__item-answer-body-top-left {
width: 50%;
}

.votes__item-answer-body-top-right {
width: 50%;
text-align: right;
}

.votes__item-answer-body-top-edit {
opacity: 0.5;
font-size: 12px;
color: #333333;
text-decoration: none;
}

.votes__item-answer-body-top-edit-icon {
margin-right: 5px;
}

.votes__item-answer-body-top-delete {
opacity: 0.5;
font-size: 12px;
color: #EF2D1D;
text-decoration: none;
margin-left: 10px;
}

.votes__item_ans {
border: 1px solid rgba(27,175,93,0.64);
}

.votes__item-answer-body-text p {
font-size: 12px;
color: #333333;
line-height: 18px;
padding-bottom: 10px;
}

.votes__item-bottom {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
align-content: center;
height: 50px;
}

.votes__item-bottom-date {
opacity: 0.5;
font-size: 14px;
}

.votes__item-bottom-buttons {
display: flex;
align-content: center;
align-items: center;
}

.votes__item-bottom-comments {
display: flex;
align-content: center;
align-items: center;
cursor: pointer;
transition: 700ms;
}

.votes__item-bottom-comments:hover {
opacity: .64;
}

.votes__item-bottom-comments-icon {
margin-right: 7px;
}

.votes__item-bottom-comments-count {
opacity: .5;
font-size: 14px;
}

.votes__item-bottom-status-reply {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
cursor: pointer;
margin-left: 15px;
}

.votes__item-bottom-status-reply-text {
color: #9a59ff;
font-size: 14px;
margin-left: 7px;
margin-right: 10px;
transition: 700ms;
}

.votes__item-bottom-status-reply:hover .votes__item-bottom-status-reply-text {
color: #333;
}

.votes__item-bottom-status-reply-arrow {
transform: rotate(180deg);
}

.votes__item-bottom-status-reply_active .votes__item-bottom-status-reply-arrow  {
transform: rotate(0deg);
}

.votes__item-bottom-status-reply_active .votes__item-bottom-status-reply-text {
color: #333;
opacity: .5;
}

.votes__item-comments-adm {
padding-top: 20px;
padding-bottom: 20px;
}

.votes__item-answer-body_cmt {
padding-left: 0px;
padding-right: 0px;
border-top: 1px solid #F1F1F1;
}

.votes__item_bottom {
padding-top: 10px;
}

.votes__item_bottom-item_e {
cursor: pointer;
color: #333;
opacity: .5;
}

.votes__item_bottom-item_e:hover {
opacity: .64;
}

.votes__item_bottom-form {
display: none;
}

.votes__item_bottom-form_active {
display: block;
}

.cdp__awards {
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
padding: 24px 24px 14px 24px;
}

.cdp__awards-item {
display: flex;
flex-wrap: wrap;
margin-bottom: 10px;
}

.cdp__awards-item-name {
color: #9a59ff;
margin: 0 6px;
text-decoration: none;
}

.comp-detail__top-right-important {
background: rgba(239,45,29,0.15);
padding: 25px;
font-size: 14px;
}

.comp-detail__top-right-important a {
font-size: 14px;
text-decoration: none;
color: #CEAE68;
}

.vote {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 45px;
padding-bottom: 80px;
}

.vote__form {
margin-bottom: 60px;
margin-top: 20px;
}

.vote__form-block {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-content: flex-start;
align-items: flex-start;
margin-bottom: 18px;
}

.vote__form-block-title {
width: calc(27% - 10px);
opacity: 0.5;
padding-top: 16px;
}

.vote__form-block-val {
width: calc(73% - 10px);
}

.eval-block {
display: flex;
flex-wrap: wrap;
}

.eval-block-item {
width: 28px;
height: 28px;
display: flex;
align-items: center;
align-content: center;
justify-content: center;
border:1px solid transparent;
border-radius: 28px;
font-size: 12px;
margin-right: 7px;
transition: 700ms;
cursor: pointer;
}

.eval-block-item:hover {
opacity: .63;
}

.eval-block-item:nth-child(1) {
border-color: #EF2D1D;
color: #EF2D1D;
}

.eval-block-item:nth-child(1):hover, .eval-block-item_active:nth-child(1) {
background: #EF2D1D;
color: #fff;
}

.eval-block-item:nth-child(2) {
border-color: rgba(239,45,29,0.64);
color: rgba(239,45,29,0.64);
}

.eval-block-item:nth-child(2):hover, .eval-block-item_active:nth-child(2) {
background: rgba(239,45,29,0.64);
color: #fff;
}
    
.eval-block-item:nth-child(3) {
border-color: #FFC96E;
color: #FFC96E;
}

.eval-block-item:nth-child(3):hover, .eval-block-item_active:nth-child(3) {
background: #FFC96E;
color: #fff;
}
    
.eval-block-item:nth-child(4) {
border-color: rgba(27,175,93,0.64);
color: rgba(27,175,93,0.64);
}

.eval-block-item:nth-child(4):hover, .eval-block-item_active:nth-child(4) {
background: rgba(27,175,93,0.64);
color: #fff;
}
    
.eval-block-item:nth-child(5) {
border-color: #1BAF5D;
color: #1BAF5D;
}

.eval-block-item:nth-child(5):hover, .eval-block-item_active:nth-child(5) {
background: #1BAF5D;
color: #fff;
}

input[type="text"], input[type="email"], input[type="url"] {
background: #FFFFFF;
border: 1px solid #E5EAF1;
border-radius: 3px;
color: rgba(51,51,51,.63);
line-height: 23px;
width: calc(100% - 40px);
padding: 0 20px;
height: 53px;
}

input[type="checkbox"] {
margin-right: 7px;
}

select {
border: 1px solid #E5EAF1;
border-radius: 3px;
color: rgba(51,51,51,.63);
line-height: 23px;
width: 100%;
padding: 0 20px;
height: 53px;
position: relative;
background: #fff url(/css/../img/select.svg) center right no-repeat;
}

textarea {
background: #FFFFFF;
border: 1px solid #E5EAF1;
border-radius: 3px;
color: rgba(51,51,51,.63);
line-height: 23px;
width: calc(100% - 40px);
min-height: 200px;
padding: 15px 20px;
}

.vote__form-block-val-notes {
display: block;
text-decoration: none;
font-size: 14px;
color: #9a59ff;
margin-top: 12px;
}

.vote__form-block-val_chbx {
padding-top: 14px;
padding-bottom: 14px;
}

.vote__form-block-val-file-note {
opacity: 0.5;
font-size: 12px;
color: #333333;
max-width: 250px;
padding-top: 10px;
}

input[type="file"] {
display: none;
}

.vote__form-block-val-file {
background: #FFFFFF;
border: 1px solid rgba(51,51,51,0.64);
border-radius: 3px;
height: 43px;
width: 100%;
display: flex;
align-items: center;
align-content: center;
opacity: .5;
max-width: 250px;
cursor: pointer;
}

.vote__form-block-val-file:before {
width: 39px;
height: 43px;
display: block;
content: ' ';
background: url('/css/../img/screen.svg');
margin-left: 12px;
}

.vote__form-block-val-file:after {
width: calc(100% - 56px);
height: 43px;
line-height: 43px;
display: block;
content: 'Add screenshot';
margin-left: 12px;
text-align: center;
}

.file {
      position: relative;
      max-width: 16.5rem;
      font-size: 1.0625rem;
    }
    .file__input, .file__value {
      background-color: rgba(241, 241, 241, 0.64);
      border-radius: 3px;
      margin-bottom: 0.875rem;
      color: rgba(255, 255, 255, 0.3);
      padding: 0.9375rem 1.0625rem;
    }
    .file__input--file {
      position: absolute;
      opacity: 0;
    }
    .file__input--label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0;
      cursor: pointer;
    }
    .file__input--label:after {
      content: attr(data-text-btn);
      border-radius: 3px;
      background: #9a59ff;
      padding: 0.9375rem 1.0625rem;
      margin: -0.9375rem -1.0625rem;
      color: white;
      cursor: pointer;
    }
    .file__value {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #9a59ff;
    }
    .file__value:hover:after {
      color: #9a59ff;
      opacity: .64;
    }
    .file__value:after {
      content: "X";
      cursor: pointer;
    }
    .file__value:after:hover {
      color: white;
    }
    .file__remove {
      display: block;
      width: 20px;
      height: 20px;
      border: 1px solid #000;
    }

.vote__notes-title {
font-size: 12px;
color: #333333;
line-height: 18px;
padding-bottom: 21px;
}

.error {
border: 1px solid #EF2D1D !important;
}

.form-error-text {
color: #EF2D1D;
font-size: 12px;
padding-top: 4px;
}

.form-ok-text {
color: #1BAF5D;
font-size: 12px;
padding-top: 4px;
}

.vote__notes-list-item {
display: flex;
flex-wrap: wrap;
padding-bottom: 16px;
}

.vote__notes-list-item-num {
width: 35px;
font-weight: 700;
text-align: center;
}

.vote__notes-list-item-text {
width: calc(100% - 35px);
}

.vote__notes-list-item-text-title {
font-size: 12px;
line-height: 18px;
}

.vote__notes-list-item-text-val {
opacity: 0.5;
font-size: 12px;
line-height: 18px;
}

.setting-page {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
align-content: flex-start;
padding-top: 40px;
padding-bottom: 60px;
}

.setting-page_sbmt {
padding-top: 0;
}

.setting-page__tabs {
border-bottom: 1px solid #E5E5E5;
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
position: relative;
}

.setting-page__tabs_alt {
border: none;
}

.setting-page__tabs-item {
padding: 0 12px;
display: inline-block;
white-space: nowrap;
border-bottom: 1px solid #F1F1F1;
text-decoration: none;
height: 62px;
line-height: 62px;
color: #333333;
letter-spacing: 1.49px;
transition: 700ms;
}

.setting-page__tabs-item_alt {
height: 45px;
line-height: 45px;
}

.setting-page__tabs-item_active {
color: #9a59ff;
font-weight: 700;
border-bottom: 1px solid #9a59ff;
}

.lk-menu__item {
display: block;
padding: 0 24px;
white-space: nowrap;
border-bottom: 1px solid #F1F1F1;
text-decoration: none;
height: 62px;
line-height: 62px;
color: #333333;
letter-spacing: 1.49px;
transition: 700ms;
background: #fff;
}

.lk-menu__item:hover {
background: rgba(229,234,241,0.64);
}

.lk-menu__item_current {
color: #9a59ff;
}

.setting-page .file__input, .setting-page .file__value {
background: #fff;
}

.ok-page {
text-align: center;
padding-top: 40px;
padding-bottom: 80px;
max-width: 500px;
}

.ok-page__title {
padding-bottom: 40px;
}

.ok-page__subtitle {
opacity: 0.64;
color: #333333;
text-align: center;
line-height: 23px;
padding-top: 36px;
}

.ok-page__subtitle-links {
padding-top: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.ok-page__subtitle-links-item {
margin-right: 10px;
margin-bottom: 6px;
}

.content-page {
padding-top: 40px;
padding-bottom: 80px;
}

.content-page .page__title {
padding-bottom: 20px;
}

.content-page p {
line-height: 21px;
padding-bottom: 10px;
}

.content-page li {
line-height: 21px;
padding-bottom: 10px;
font-size: 18px;
position: relative;
padding-left: 20px;
}

.content-page li:after {
width: 10px;
height: 10px;
position: absolute;
left: 0;
top:5px;
background: #9a59ff;
border-radius: 50%;
display: block;
content: ' ';
}

.black-bg {
background: #212121;
opacity: .6;
transition: opacity .3s ease;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
cursor: pointer;
z-index: 2;
display: none;
}

.black-bg_a {
display: block;
}

.heighlights-wrap {
padding-top: 30px;
padding-bottom: 60px;
}

.heighlights {
overflow: visible !important;
}

.heighlights-item {
max-width: 400px;
}

.heighlights-bottom {
position: relative;
display: flex;
align-items: center;
align-content: center;
margin-top: 30px;
}

.heighlights-buttons {
display: flex;
}

.heighlights-button-prev {

}

.heighlights-button-prev img {
transform: rotate(180deg);
}

.heighlights-pagination {
position: relative !important;
bottom: 0;
top:auto !important;
background: #172957 !important;
margin-right: 70px;
}

.heighlights .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
background: #9a59ff !important;
}

.search-modal {
box-shadow: 0 4px 10px 0 rgb(0 0 0 / 6%);
padding: 20px 0;
position: relative;
z-index: 3;
background: #fff;
display: none;
}

.header-search {
position: relative;
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
}

.header-search input[type="submit"] {
background: url('/img/loupe.svg') center center no-repeat;
width: 42px;
height: 42px;
position: absolute;
top:0px;
right: 54px;
font-size: 0px;
cursor: pointer;
transition: 700ms;
}

.header-search input[type="submit"]:hover {
opacity: .64;
}

.header-search-input {
width: calc(100% - 73px) !important;
height: 42px !important;
}

.header-search-close {
height: 42px;
width: 42px;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
cursor: pointer;
}

.sp {

}

.sp__item {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
border: 1px solid #e1e5e9;
box-shadow: 0 4px 10px 0 rgb(0 0 0 / 6%);
padding: 20px 25px;
margin-bottom: 15px;
}

.sp__item-logo {
width: 126px;
}

.sp__item-text {
width: calc(100% - 146px);
}

.sp__item-title {
text-transform: uppercase;
font-weight: 700;
text-decoration: none;
}

.sp__item-cat {
text-decoration: none;
color: #9a59ff;
text-transform: uppercase;
display: block;
font-weight: 700;
font-family: lato,sans-serif;
padding-top: 6px;
padding-bottom: 15px;
}

.sp__item-val {
opacity: .5;
color: #000;
}

.footer-first {
padding-top: 73px;
padding-bottom: 84px;
}

.footer-first .wrapper {
display: flex;
flex-wrap: wrap;
}

.footer__menu {
width: calc(33.33% - 120px);
}

.footer__menu-title {

font-weight: 700;
display: block;
font-size: 16px;
color: #333333;
text-transform: uppercase;
padding-bottom: 27px;
width: 100%;
}

.footer__menu-item {
display: block;
text-decoration: none;
margin-bottom: 15px;
}

.footer__menu2x {
width: calc(66.66% - 120px);
display: flex;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
}

.footer__menu2x .footer__menu-item {
width: calc(50% - 40px);
}

.footer__cr {
width: 240px;
}

.footer__cr-text {
padding-top: 10px;
padding-bottom: 60px;
}

.footer__cr-donate {
text-decoration: none;
color: rgba(0,0,0,0.64);
display: block;
padding-top: 6px;
}

.footer__cr-donate span {
color: #FC5561;
}

.footer__cr-social {
display: flex;
flex-wrap: wrap;
}

.footer__cr-social-item-icon {
width: 24px;
height: 24px;
fill:#9a59ff;
margin-right: 12px;
transition: 700ms;
}

.footer__cr-social-item-icon:hover {
fill:#9a59ff;
}

.footer__cp {
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
padding: 36px;
}

.footer__cp-fc  {
width: calc(33.33% - 120px);
}

.footer__cp-logos {
width: calc(66.66% - 120px);
display: flex;
flex-wrap: wrap;
}

.footer__cp-link {
width: calc(50% - 40px);
text-decoration: none;
}

.footer__cp-logos-title {
text-transform: uppercase;
padding-bottom: 6px;
text-align: left;
text-decoration: none;
}

.footer__cp-link-icon {
max-width: 170px;
max-height: 45px;
}

.footer__media-logos {
    display: flex;
    flex-wrap: wrap;
    }
    
    .footer__media-logos .footer__cp-link {
    width: calc(25% - 30px);
    margin-bottom: 20px;
    }

.footer-awards {
    padding: 36px;
    border-top:1px solid #F1F1F1;
    display: flex;
    flex-wrap: wrap;
    }
    
    .footer-awards-link {
    width: calc(25% - 20px);
    margin-right: 20px;
    text-decoration: none;
    }
    
    .footer-awards-title {
    opacity: .5;
    }
    
    
.graph-container {
       width: 60px;
       margin-left: auto;
       margin-right: auto;
       display: block;
    }
    
    .graph-donut {
       position: relative;
       display: inline-block;
       width: 45px;
       text-align: center;
    }
    
    .graph-donut canvas {
       position: absolute;
       top: 0;
       left: 0;
    }
    
    .graph-title {
       margin-top: 6px;
       text-align: center;
       font-size: 18px;
       color: #9a59ff;
    }
    
    .percent {
       display: inline-block;
       font-size: 16px;
       color: #9a59ff;
       margin-top: 6px;
    }
    
    .percent:after {
       content: '%';
    }

.sub_footer {
    position: relative;
    color: #fff;
    }
    
    .sub_footer .wrapper {
    color: #fff;
    }
    
    .sub_footer:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: block;
    content: ' ';
    background: rgba(73, 160, 249, 0.9);
    z-index: 1;
    background-blend-mode: hard-light, darken;
    mix-blend-mode: normal;
    }
    
    .sub_footer-bg {
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    }
    
    .sub_footer {
    position: relative;
    }
    
    .sub_footer:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: block;
    content: ' ';
    background: rgba(73, 160, 249, 0.9);
    z-index: 1;
    background-blend-mode: hard-light, darken;
    mix-blend-mode: normal;
    }
    
    .sub_footer-bg {
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    }
    
    .sub_footer .container {
    z-index: 2;
    color: #fff;
    position: relative;
    }
    
    .sub_footer__top-title {
    font-size: 2.40rem;
    max-width: 75%;
    padding-bottom: 1.50rem;
    color: #fff;
    }
    
    .sub_footer__top-text {
    font-size: 0.90rem;
    max-width: 75%;
    color: #fff;
    }
    
    .sub_footer__top-mail {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 7.50rem;
    display: flex;
    padding-top: 1rem;
    }
    
    
    .sub_footer__bottom {
    border-top: 1px solid rgba(255,255,255,.3);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    }
    
    .sub_footer__bottom-col:nth-child(1) {
    width: calc(30% - 2rem);
    }
    
    .sub_footer__bottom-col:nth-child(2) {
    width: calc(55% - 2rem);
    }
    
    .sub_footer__bottom-col {
    width: calc(20% - 2rem);
    }
    
    .sub_footer__bottom-col-contacts {
    display: flex;
    flex-wrap: wrap;
    }
    
    .sub_footer__bottom-col-contacts-item {
    margin-right: 1rem;
    width: calc(33.33% - 1rem);
    }
    
    .sub_footer__bottom__logo {
    width: 4rem;
    height: 4rem;
    }
    
    .sub_footer__bottom-col-title {
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    width: 100%;
    color: #fff;
    }
    
    .sub_footer__bottom-cr {
    font-size: 0.80rem;
    padding-top: 2rem;
    color: #fff;
    }
    
    .sub_footer__bottom-col-block {
    font-size: 0.80rem;
    padding-bottom: 0.40rem;
    color: #fff;
    }
    
    .sub_footer__bottom-col-soc {
    display: flex;
    flex-wrap: wrap;
    }
    
    .sub_footer__bottom-col-soc-item {
    width: 1.60rem;
    height: 1.60rem;
    border:1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: 300ms;
    }
    
    .sub_footer__bottom-col-soc-item-icon-01 {
    width: 0.40rem;
    height: 0.80rem;
    fill:#fff;
    }
    
    .sub_footer__bottom-col-soc-item-icon-02 {
    width: 0.80rem;
    height: 0.80rem;
    fill:#fff;
    }
    
    .sub_footer__bottom-col-soc-item-icon-03 {
    width: 0.80rem;
    height: 0.55rem;
    fill:#fff;
    }
    
    .sub_footer__bottom-col-soc-item-icon-04 {
    width: 0.80rem;
    height: 0.80rem;
    fill:#fff;
    }
    
    .sub_footer__bottom-col-soc-item:hover {
    background: #fff;
    }
    
    .sub_footer__bottom-col-soc-item:hover svg {
    fill:var(--blue);
    }
    
    .footer__top {
    position: relative;
    z-index: 2;
    }    
    
    .footer__bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 100px;
    }
    
.winners__sections-item {
font-size: 24px;
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
border-radius: 3px;
margin-bottom: 45px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
border-radius: 8px;
padding: 20px;
text-decoration: none;
}

.winners__sections-item span {
color: rgb(154, 89, 255);
border-width: 1px;
border-style: solid;
border-color: rgb(154, 89, 255);
border-image: initial;
background: rgb(255, 255, 255);
padding: 5px 15px;
}

.winners__list-block-item {
display: flex;
flex-wrap: wrap;
padding-bottom: 60px;
}

.winners__list-block-stitle {
width: 100%;

font-weight: 400;
font-size: 30px;
color: #333333;
padding-bottom: 30px;
}

.winners__list-block-item-winner {
background: #FFFFFF;
border: 5px solid #9a59ff;
border-radius: 16px 0 16px 0;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
padding: 15px;
width: calc(25% - 55px);
margin-right: 20px;
margin-bottom: 20px;
}

.last-nom__list .winners__list-block-item-winner {
width: calc(100% - 40px);
min-height: 188px;
}

.winners__list .winners__list-block-item-winner:nth-child(4n+4) {
margin-right: 0;
}

.winners__list-block-item-winner-nom {
text-transform: uppercase;
padding: 10px 0 20px 0;
text-align: center;
}

.winners__list-block-item-winner-name {
background: #9a59ff;
color: #fff;
text-transform: uppercase;
font-weight: 700;
text-align: center;
border-radius: 8px;
padding: 5px 10px;
margin-bottom: 15px;
}

.winners__list-block-item-winner-logo {
height: 70px;
text-align: center;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
}

.winners__list-block-item-winner-text {
padding-top: 15px;
}

.winers-back {
background: #fff;
border-width: 1px;
border-style: solid;
border-image: initial;
color: rgb(154, 89, 255);
padding: 5px 15px;
margin-top: 30px;
text-decoration: none;
display: inline-flex;
}

.winers-back:hover {
background: rgb(154, 89, 255);
color: #fff;
}

.ff-thanks {
background: rgb(154, 89, 255);
color: #fff;
padding: 60px 30px;
text-align: center;
font-size: 20px;
border-radius: 8px;
}

.ff-thanks span {
font-size: 26px;
display: block;
color: #fff;
margin-bottom: 10px;
}
/* End */


/* Start:/css/media.css?173997261411639*/
@media (max-width:1200px) {
.wrapper {
width: auto;
}

.comp-detail__top-facts-item strong {
display: block;
}

.comp-detail__top-vote-votes {
margin-left: 15px;
margin-right: 15px;
}

.header__menu-link {
margin: 0 10px;
}

}

@media (max-width:1023px) {
	
.mp-ratings__list-item-top {
width: 40%;
}

.mp-ratings__list-item-text {
width: calc(60% - 20px);
}
	
h2 {
font-size: 32px;
}
	
.header__logo {
position: relative;
z-index: 3;
}

.header__right {
width: auto;
}
	
.header__menu {
display: none;
background: #FFFFFF;
border: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
border-radius: 3px;
position: absolute;
top:0px;
left: 0px;
width: 100%;
height: 100vh;
align-items: center;
align-content: center;
flex-wrap: wrap;
z-index: 3;
}

.header__menu {
width: 100%;
}

.header__menu-link {
width: 100%;
text-align: center;
font-size: 18px;
margin-bottom: 15px;
display: block;
}

.header__buttons {
width: 100%;
justify-content: center;
padding-top: 20px;
}

.header__mm {
width: 30px;
padding: 15px;
display: block;
margin-right: -10px;
position: relative;
z-index: 3;
}

.header__mm-stripe {
height: 2px;
margin-bottom: 6px;
background: #333;
transition: 700ms;
}

.header_active .header__menu {
display: flex;
} 

.header_active .header__mm-stripe:nth-child(1) {
transform: rotate(45deg);
position: relative;
top: 10px;
}

.header_active .header__mm-stripe:nth-child(2) {
opacity: 0;
} 

.header_active .header__mm-stripe:nth-child(3) {
transform: rotate(-45deg);
position: relative;
top: -5px;
}

.mp__banner-title {
font-size: 45px;
}

.mp__banner-stitle {
font-size: 33px;
}

.header__buttons {
position: fixed;
bottom: 0;
left: 0;
height: 40px;
background: #fff;
z-index: 2;
padding-top: 10px;
padding-bottom: 10px;
border-top: 1px solid #E1E5E9;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
}

.header__buttons-menu_dt {
display: none;
}

.header__buttons-menu_mb {
display: block;
}

.header__buttons-menu-mlink {
display: flex;
align-items: center;
align-content: center;
text-decoration: none;
}

.header__buttons-menu-mlink span {
display: block;
overflow: hidden;
margin-left: 10px;
text-overflow: ellipsis;
max-width: 230px;
white-space: nowrap;
}

.mp__banner {
padding-top: 40px;
padding-bottom: 60px;
}

.mp__banner-left {
width: 100%;
padding-right: 0;
}

.mp__banner-left-title {
font-size: 42px;
line-height: 45px;
}

.mp__banner-left-text {
font-size: 16px;
}

.mp__banner-right {
width: 100%;
padding-top: 54px;
}

.mp__banner-right-item {
margin-bottom: 45px;
}

.mp__banner-right-item-number {
font-size: 30px;
top:-20px;
}

.mp__banner-right-item-text {
font-size: 16px;
}

.hiw__steps-item {
width: calc(25% - 60px);
padding: 35px 25px 25px 25px;
}

.footer__cp-link-icon {
max-width: calc(100% - 30px);
}

.ratings-list__item {
width: calc(50% - 60px);
margin-bottom: 20px;
}

.footer__cp {
padding-bottom: 90px;
}

.rating-table__head-col:nth-child(2), .rating-table-col:nth-child(2) {
width: calc(30% + 20px);
}


.rating-table__head-col:nth-child(5), .rating-table-col:nth-child(5) {
display: none;
}

.left-block {
width: 65%;
}

.comp-detail__top {
padding-bottom: 35px;
}

.comp-detail__top-name {
width: calc(50% - 10px);
}

.comp-detail__top-facts {
width: calc(50% - 10px);
}

.comp-detail__top-facts-item {
width: 100%;
}

.comp-detail__top-vote-eval {
width: 100%;
padding-bottom: 10px;
}

.comp-detail__top-vote-votes {
margin-left: 0;
}

.votes__item-top-title {
width: 100%;
order:2;
}

.votes__item-top-eval {
width: 100%;
order:1;
padding-bottom: 6px;
}

.cdp__awards-item-name {
width: 100%;
margin: 0;
}

.winners__list-block-item-winner {
background: #FFFFFF;
border: 5px solid #9a59ff;
border-radius: 16px 0 16px 0;
box-shadow: 0 4px 10px 0 rgba(0,0,0,0.06);
padding: 15px;
width: calc(50% - 60px);
margin-right: 20px;
}

.winners__list .winners__list-block-item-winner:nth-child(2n+2) {
margin-right: 20px;
}

.winners__list .winners__list-block-item-winner:nth-child(4n+4) {
margin-right: 20px;
}

.heighlights-item {
max-width: 260px;
}

}

@media (max-width:767px) {
	
.reviews__list_2 .reviews__list-item {
justify-content: flex-start;
}

.reviews__list-item-top {
width: calc(100% - 80px);
display: flex;
flex-wrap: wrap;
align-items: center;
align-content: center;
}

.reviews__list-item-top-logo {
width: 50%;
margin-right: 0;
}

.reviews__list-item-top-logo-title {
width: calc(50% - 20px);
margin-left: 20px;
font-size: 16px;
}
	
.reviews__list-item-text {
width: 100%;
padding: 15px;
}

.reviews__list-item-vote {
width: 100%;
padding: 0 15px;
margin-top: 20px;
}

.reviews__list-item-vote .button {
width: 100%;
padding: 0;
}

.mp-ratings__list-item-text-item {
padding: 0;
}
	
.ms {
display: block;
}
	
.page-title {
padding-top: 20px;
padding-bottom: 15px;
}

h1 {
font-size: 36px;
}

.archive-choose span {
font-size: 36px;
}
	
h2 {
padding-top: 30px;
padding-bottom: 20px;
}

.header__buttons-menu-mlink span {
max-width: 80px;
}

.header__buttons-comp {
margin-right: 15px;
}

.header__buttons_login .header__buttons-separator {
margin: 0 15px;
}

.show-more {
height: 45px;
}
	
.hiw__buttons-qnt {
margin-left: 0;
padding-top: 20px;
width: 100%;
}

.hiw__buttons-qnt-text {
font-size: 14px;
}

.hiw__steps {
padding: 10px 0 30px 0;
margin: 40px 0 60px 0;
}

.hiw__steps-item {
background: none;
width: calc(100% - 60px);
padding: 25px 15px 15px 15px;
}

.hiw__steps-item-title  {
padding-top: 13px;
padding-bottom: 6px;
}

.mp-ratings {
padding-top: 0;
padding-bottom: 40px;
}

.mp-ratings__title {
padding-bottom: 20px;
}

.mp-ratings__list-item {
width: calc(100% - 30px);
padding: 15px 15px 25px 15px;
margin-bottom: 25px;
}

.mp-ratings__list-item-top-title {
font-size: 24px;
width: 100%;
padding-bottom: 15px;
}

.mp-ratings__list-logos-item-comp {
width: calc(33.33% - 10px);
margin-right: 10px;
}

.reviews {
padding-top: 0;
padding-bottom: 50px;
}

.reviews .slick-next {
top: -60px;
}

.page-description {
padding-bottom: 36px;
margin-bottom: 25px;
}

.rating-list__page {
padding-bottom: 60px;
}

.ratings-list__item {
width: calc(100% - 30px);
padding: 15px;
}

.ratings-list-item-top__title {
font-size: 24px;
}

.login-form {
padding-bottom: 34px;
padding: 15px;
}

.login-form-top {
height: 55px;
margin-left: -15px;
width: calc(100% + 15px);
padding-left: 15px;
margin-top: -15px;
}

.login-form-close {
height: 55px;
width: 55px;
}

.login-form-top h2 {
font-size: 24px;
}

.login-form-text {
padding-top: 30px;
padding-bottom: 25px;
}

.login-form-buttons-item {
width: 100%;
margin-bottom: 15px;
margin-right: 0;
}

.footer-first {
padding-top: 43px;
padding-bottom: 44px;
}

.footer__cr {
width: 100%;
order:1;
text-align: center;
padding-bottom: 30px;
}

.footer__cr-text {
padding-bottom: 20px;
}

.footer__cr-social {
justify-content: center;
}

.footer__menu {
order: 2;
width: 100%;
padding-bottom: 20px;
text-align: center;
}

.footer__menu-title {
padding-bottom: 15px;
}

.footer__menu2x {
order: 3;
width: 100%;
text-align: center;
}

.footer__menu2x .footer__menu-item {
width: 100%;
}

.footer__cp {
padding-top: 20px;
}

.footer__cp-fc {
width: 100%;
text-align: center;
}

.footer__cp-logos-title {
text-align: center;
font-size: 12px;
}

.footer__cp-logos {
width: 100%;
}

.footer__cp-link {
width: 100%;
text-align: center;
padding-bottom: 18px;
display: block;
}

.footer__cp-link-icon {
max-width: 100px;
max-height: 30px;
}

.footer__cp {
	padding-bottom: 0;
	}
	
	.footer__media-logos .footer__cp-link {
	width: 100%;
	}

.rating-table__head-col:nth-child(7), .rating-table-col:nth-child(7) {
display: none;
}

.rating-table__head-col:nth-child(1), .rating-table-col:nth-child(1) {
width: 50px;
}

.rating-table__head-col:nth-child(2), .rating-table-col:nth-child(2) {
width: calc(50% - 65px);
}

.rating-table__head-col:nth-child(4), .rating-table-col:nth-child(4) {
width: calc(20% - 35px);
}

.rating-table__head-col:nth-child(6), .rating-table-col:nth-child(6) {
width: calc(20% - 35px);
}

.rating-table__head-col:nth-child(8), .rating-table-col:nth-child(8) {
width: 80px;
}

.left-block {
width: 100%;
}
	
.right-block {
width: 100%;
}

.cdp {
padding-top: 30px;
padding-bottom: 50px;
}

.cdp .wrapper {
display: flex;
}

.cdp .left-block {
order: 2;
}

.cdp .right-block {
order: 1;
}

.cdp__awards {
width: calc(100% - 2px);
margin-left: -10px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #C8AF72;
}

.comp-detail__top {
padding-top: 20px;
}

.comp-detail__top-name {
width: 100%;
}

.comp-detail__top-facts {
width: 100%;
}

.comp-detail__top-facts-item strong {
display: inline-block;
}

.comp-detail__top-vote-eval {
font-size: 36px;
}

.comp-detail__bottom {
padding-bottom: 30px;
}

.votes__item {
padding: 15px 10px 0 10px;
width: 100%;
margin-left: -10px;
width: calc(100% - 2px);
}

.comp-detail__top_vote .comp-detail__top-facts {
display: none;
}

.vote {
padding-top: 20px;
}

.vote .left-block {
order: 2;
}

.vote .right-block, .comp-detail__top-right-important {
display: none;
}

.vote__form-block-title {
width: 100%;
padding-bottom: 6px;
padding-top: 0;
}

.vote__form-block-val {
width: 100%;
}

.vote__form-button {
width: 100%;
max-width: 300px;
}

.setting-page .left-block {
order: 2;
}

.votes__item-comment-body-avatar {
display: none;
}

.votes__item-comment-body-text {
width: 100%;
}

.votes__item-comment {
width: calc(100% + 20px);
margin-left: -10px;
}

.lk-menu {
display: flex;
margin-bottom: 20px;
}

.lk-menu__item {
background: #fff url(/css/../img/hiw__steps-item.svg) center right no-repeat;
height: 36px;
line-height: 36px;
}

.lk-menu__item:last-child {
background: #fff;
}

.setting-page__tabs-item {
padding: 0 12px;
height: 42px;
line-height: 42px;
}

.footer-awards {
	padding-bottom: 80px;
	}
	
	.footer-awards-link {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	}

.winners__list-block-item-winner {
width: 100%;
margin-right: 0px !important;
}

.sub_footer__top-title {
font-size: 1.50rem;
max-width: 100%;
}

.sub_footer__top-text {
font-size: 1rem;
max-width: 100%;
}

.sub_footer__bottom-col, .sub_footer__bottom-col:nth-child(2) {
width: 100% !important;
margin-bottom: 2rem;
}

.sub_footer__bottom-col-contacts-item {
width: calc(50% - 1rem);
}

.sub_footer__top-mail {
font-size: 1.5rem;
}


}

@media (max-width:560px) {
	
.mp__banner {
background-size: cover;
}

.mp__banner-right-item {
width: 100%;
margin-right: 0;
height: 48px;
padding: 20px 25px 0px 25px;
}

.header__buttons-submit {
padding: 0 10px;
font-size: 14px;
}

.header__buttons-separator {
margin: 0 10px;
}

.header__buttons-register {
font-size: 14px;
}

.header__buttons-menu-mlink span {
display: none;
}

.rating-table__head-col {
font-size: 12px !important;
height: 33px;
}

.rating-table__head-col:nth-child(1), .rating-table-col:nth-child(1) {
width: 35px;
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #333333;
}

.rating-table__head-col:nth-child(2), .rating-table-col:nth-child(2) {
width: calc(70% - 55px);
}

.rating-table__head-col:nth-child(3), .rating-table-col:nth-child(3) {
width: calc(30% - 45px);
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #333333;
}

.rating-table__head-col:nth-child(4), .rating-table-col:nth-child(4), .rating-table__head-col:nth-child(6), .rating-table-col:nth-child(6) {
display: none;
}

.rating-table__head-col:nth-child(8), .rating-table-col:nth-child(8) {
width: 55px;
padding: 0 5px;
}

.sp__item-logo {
width: 100%;
padding-bottom: 25px;
text-align: center;
height: 80px;
}

.sp__item-logo img {
max-height: 100%;
}

.sp__item-text {
width: 100%;
text-align: center;
}

.header__logo {
width: 195px;
}

.header__logo-src {
max-width: 100%;
}

.header__search-icon {
margin-left: 10px;
}
	
}
/* End */
/* /css/reset.css?17189778983865 */
/* /css/style.css?175103172050333 */
/* /css/media.css?173997261411639 */
