html, body {
    scroll-behavior: smooth;
}

body {
    background: #080a15;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    overflow-x: hidden;
}

body.homepage {
    background: url("../img/orp_background.html") center top no-repeat, #080a15;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #080a15;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0,84,255,1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background-color: #080a15;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 4px;
}

:focus {
    outline: none;
}

a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    color: #00ffa2;
}

.orp-container {
    max-width: 1430px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

#orp-header {
    display: block;
    width: 100%;
    position: relative;
}

#orp-header .orp-header_content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
    padding: 75px 0;
    margin: 0;

    position: relative;
}

#orp-header .orp-header_content .orp-header_logo {
    display: block;
    width: 100px;
    height: 81px;
    position: relative;
}

#orp-header .orp-header_content .orp-header_logo img {
    max-width: 100%;
    max-height: 100%;
}

#orp-header .orp-header_content .orp-header_menu {
    flex: 1 1 auto;
}

#orp-header .orp-header_content .orp-header_menu > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;

    padding: 0 30px;
    margin: 0;

    position: relative;
}

#orp-header .orp-header_content .orp-header_menu > ul > li {
    display: block;
}

#orp-header .orp-header_content .orp-header_menu > ul > li > a {
    font-size: 18px;
    text-transform: uppercase;
    transition: all .3s ease;
}

#orp-header .orp-header_content .orp-header_menu > ul > li > a:hover,
#orp-header .orp-header_content .orp-header_menu > ul > li > a.active {
    font-weight: 500;
}

#orp-header .orp-header_content ul.orp-header_userbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 0;
    margin: 0;

    position: relative;
}

#orp-header .orp-header_content ul.orp-header_userbar > li {
    display: block;
}

#orp-header .orp-header_content .orp-header_userbar > li {
    display: block;
}

#orp-header .orp-header_content .orp-header_userbar > li > a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 59px;
    border-radius: 5px;

    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 3px 2px 0 rgba(39, 43, 65, 0.15);

    padding: 0 50px;
    margin: 0;

    position: relative;
}

#orp-header .orp-header_content .orp-header_userbar > li:nth-child(1) > a:before {
    content: '';
    display: block;
    width: calc( 100% - 4px );
    height: calc( 100% - 4px );
    aspect-ratio: 1;
    inset: 0;
    padding: 2px;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
    z-index: -1;
}


#orp-header .orp-header_content .orp-header_userbar > li:nth-child(1) > a:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    transition: all .3s ease;

    z-index: -1;
}


#orp-header .orp-header_content .orp-header_userbar > li:nth-child(1) > a:hover:before {
    opacity: 1;
    visibility: visible;
}

#orp-header .orp-header_content .orp-header_userbar > li:nth-child(1) > a:hover:after {
    opacity: 0;
    visibility: hidden;
}

#orp-header .orp-header_content div.orp-header_userbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: url("../img/orp_header_userbar.png") left center no-repeat;

    padding: 12px 0 12px 10px;
    margin: 0;

    position: relative;
}

#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-usercp {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 48px;
    height: 48px;

    color: #596981;
    font-size: 18px;

    position: relative;
}

#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-usercp:hover,
#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-admin:hover {
    color: #fff;
}

#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-name {
    width: 208px;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0 10px;
}

#orp-header .orp-header_content div.orp-header_userbar.admin .orp-header_userbar-name {
    width: 160px;
}

#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-name > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-admin {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    background: #08172a;
    border-radius: 5px;

    color: #596981;
    font-size: 18px;

    padding: 0;
    margin: 0 10px 0 0;

    position: relative;
}

#orp-header .orp-header_content div.orp-header_userbar .orp-header_userbar-logout {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    border-radius: 5px;

    color: #fff;
    font-size: 18px;

    padding: 0;
    margin: 0;

    position: relative;
}

#orp-hero {
    display: block;
    width: 100%;
    position: relative;
}

#orp-hero .orp-hero_content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
    padding: 185px 0 340px;
    margin: 0;

    position: relative;
}

#orp-hero .orp-hero_content .orp-hero_content-text {
    min-width: 50%;
    max-width: 50%;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_title {
    color: #fff;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 25px;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_title > b {
    color: transparent;
    font-weight: 400;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.74;
    word-wrap: break-word;
    word-break: break-word;
    margin: 0;
    padding: 0 90px 50px 0;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    
    padding: 0;
    margin: 0;

    position: relative;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li {
    display: block;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li > a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 59px;
    border-radius: 5px;

    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 3px 2px 0 rgba(39, 43, 65, 0.15);

    padding: 0 50px;
    margin: 0;

    position: relative;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(1) > a:before {
    content: '';
    display: block;
    width: calc( 100% - 4px );
    height: calc( 100% - 4px );
    aspect-ratio: 1;
    inset: 0;
    padding: 2px;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
    z-index: -1;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(1) > a:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    transition: all .3s ease;

    z-index: -1;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(1) > a:hover:before {
    opacity: 1;
    visibility: visible;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(1) > a:hover:after {
    opacity: 0;
    visibility: hidden;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(2) > a:before {
    content: '';
    display: block;
    width: calc( 100% - 4px );
    height: calc( 100% - 4px );
    aspect-ratio: 1;
    inset: 0;
    padding: 2px;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s ease;
    pointer-events: none;
    z-index: -1;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(2) > a:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;

    z-index: -1;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(2) > a:hover:before {
    opacity: 0;
    visibility: hidden;
}

#orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li:nth-child(2) > a:hover:after {
    opacity: 1;
    visibility: visible;
}

#orp-about {
    display: block;
    background: url("../img/orp_about_background.png") center top no-repeat;
    width: 100%;
    padding: 50px 0;
    position: relative;
}

#orp-about .orp-about_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0;
    margin: 0;

    position: relative;
}

#orp-about .orp-about_content:before {
    content: '';
    display: block;

    width: 507px;
    height: 790px;
    background: url("../img/orp_about_character.png") center no-repeat;

    position: absolute;
    left: 61px;
    bottom: -50px;

    pointer-events: none;
    z-index: 1;
}

#orp-about .orp-about_content .orp-about_logo,
#orp-about .orp-about_content .orp-about_text {
    min-width: 50%;
    max-height: 50%;
}

#orp-about .orp-about_content .orp-about_logo {
    height: 692px;
    position: relative;
}

#orp-about .orp-about_content .orp-about_logo:before {
    content: '';
    display: block;
    width: 559px;
    height: 625px;
    background: url("../img/orp_logo.png") center no-repeat;
    background-size: 100% 100%;

    position: absolute;
    left: 0;
    top: 50%;

    filter: blur(10px);
    transform: translate(0, -50%);
    pointer-events: none;
    z-index: -1;
}

#orp-about .orp-about_content .orp-about_text .orp-about_text-title {
    color: #fff;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 52px;
}

#orp-about .orp-about_content .orp-about_text .orp-about_text-title > span {
    color: transparent;
    font-weight: 400;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#orp-about .orp-about_content .orp-about_text .orp-about_text-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.74;
    margin: 0;
    padding: 0 0 50px;
}

#orp-about .orp-about_content .orp-about_text .orp-about_text-subtitle > b {
    color: transparent;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#orp-about .orp-about_content .orp-about_text .orp-about_text-desc {
    color: #ccd0e7;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.54;
    margin: 0;
}

#orp-stats {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-stats .orp-stats_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 125px 0;
    margin: 0;
}

#orp-stats .orp-stats_content .orp-stats_box {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex: 1 1 auto;

    height: 195px;
    border-radius: 5px;

    background: url("../img/orp_stats_background.png") left top no-repeat;

    padding: 0 34px;
    margin: 0;

    position: relative;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-progress {
    display: block;
    width: 100%;
    height: 100%;

    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    z-index: -1;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-progress .orp-stats_box-progress_bar {
    display: block;
    height: 100%;

    background: url("../img/orp_stats_progress_bar.png") left top no-repeat, rgba( 0, 124, 232, 0.15 );
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    z-index: -1;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;

    min-width: 25%;
    max-width: 25%;
    
    padding: 0 10px;
    margin: 0;

    position: relative;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item .orp-stats_box-item_icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;

    background: #007ce8;
    border-radius: 5px;

    position: relative;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item .orp-stats_box-item_icon:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item.orp-stats_box-players .orp-stats_box-item_icon:before {
    background: url("../img/orp_stats_players.png") center no-repeat;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item.orp-stats_box-time .orp-stats_box-item_icon:before {
    background: url("../img/orp_stats_time.png") center no-repeat;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item.orp-stats_box-money .orp-stats_box-item_icon:before {
    background: url("../img/orp_stats_money.png") center no-repeat;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item.orp-stats_box-player .orp-stats_box-item_icon:before {
    background: url("../img/orp_stats_player.png") center no-repeat;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item .orp-stats_box-item_title {
    color: #fff;
    font-size: 60px;
    font-weight: 300;
    text-transform: uppercase;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item .orp-stats_box-item_title > span {
    color: #007ce8;
}

#orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item.orp-stats_box-player .orp-stats_box-item_title {
    font-size: 36px;
}

#orp-stats .orp-stats_content .orp-stats_button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 60px;
    height: 195px;

    position: relative;
    z-index: 1;
}

#orp-stats .orp-stats_content .orp-stats_button > span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: -3px 2px 0 rgba(39, 43, 65, 0.15);

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 1;
}

#orp-stats .orp-stats_content .orp-stats_button:before {
    content: '';

    display: block;
    width: 100%;
    height: 100%;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;

    position: absolute;
    right: 0;
    top: 0;

    z-index: -1;
}

#orp-steps {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-steps:before {
    content: '';
    display: block;
    width: 100%;
    height: 1031px;

    background: url("../img/orp_steps_background.html") center bottom no-repeat;

    position: absolute;
    left: 0;
    bottom: 0;

    pointer-events: none;
    z-index: -1;
}

#orp-steps .orp-steps_title {
    color: #fff;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 76px 0;
}

#orp-steps .orp-steps_title > span {
    color: transparent;
    font-weight: 400;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#orp-steps .orp-steps_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;

    padding: 0 0 155px;
    margin: 0;

    position: relative;
}

#orp-steps .orp-steps_content .orp-steps_item {
    display: block;
    min-width: calc( 50% - 13px );
    max-width: calc( 50% - 13px );

    border-radius: 5px;

    padding: 84px 112px;
    margin: 0;

    position: relative;
}

#orp-steps .orp-steps_content .orp-steps_item:nth-child(1) {
    box-shadow: inset 0 0 0 1px #0070ff;
}

#orp-steps .orp-steps_content .orp-steps_item:nth-child(2) {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-step {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 0 0 40px;
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-title {
    color: #fff;
    font-size: 47px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 40px;
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-title > span {
    color: #0070ff;
}

#orp-steps .orp-steps_content .orp-steps_item:nth-child(2) .orp-steps_item-title > span {
    color: #00ecac;
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-desc {
    color: #ccd0e7;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0 0 40px;
}

#orp-steps .orp-steps_content .orp-steps_item:nth-child(2) .orp-steps_item-desc {
    color: #fff;
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-desc a {
    color: #0070ff;
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    height: 59px;
    background: #0070ff;
    border-radius: 5px;

    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: -3px 2px 0 rgba(39, 43, 65, 0.15);

    padding: 0 50px;
    margin: 0;

    position: relative;
}

#orp-steps .orp-steps_content .orp-steps_item .orp-steps_item-button:hover {
    background: #00ecac;
    color: #080c16;
}

#orp-steps .orp-steps_content .orp-steps_item:nth-child(2) .orp-steps_item-button {
    background: #fff;
    color: #080c16;
}

#orp-steps .orp-steps_content .orp-steps_item:nth-child(2) .orp-steps_item-button:hover {
    background: #080c16;
    color: #fff;
}

#orp-sponsors {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-sponsors:before {
    content: '';
    display: block;
    width: 100%;
    height: 454px;
    background: url("../img/orp_sponsors_background.png") center top no-repeat;

    position: absolute;
    left: 50%;
    top: 0;

    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: -1;
}

#orp-sponsors .orp-sponsors_title {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 76px 0 30px;
}

#orp-sponsors .orp-sponsors_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    padding: 20px;
}

#orp-sponsors .orp-sponsors_swiper {
    margin: 0 0 30px;
}

#orp-sponsors .orp-sponsors_swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

#orp-scoreboard {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}


#orp-scoreboard .orp-scoreboard_title {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 76px 0 30px;
}

#orp-scoreboard .orp-scoreboard_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba( 5, 46, 88, 0.08 );
    border-radius: 5px;

    padding: 0;
    margin: 0;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 38px;

    min-width: calc( 100% / 3 );
    max-width: calc( 100% / 3 );

    background: rgba( 5, 46, 88, 0.08 );
    border-radius: 5px;

    padding: 45px 33px;
    margin: 0;

    position: relative;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(1) {
    background: url("../img/orp_scoreboard.png") center left no-repeat ,rgba( 5, 46, 88, 0.08 );
    background-size: auto 100%;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(2),
#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(3) {
    background: transparent;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(2):before {
    content: '';
    display: block;
    width: 200%;
    height: 100%;

    background: rgba( 5, 46, 88, 0.08 );
    border-radius: 5px;

    position: absolute;
    right: 0;
    top: 0;

    pointer-events: none;
    z-index: -1;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-number {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;
    border-radius: 5px;

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: -3px 2px 0 rgba(39, 43, 65, 0.15);

    position: relative;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(1) .orp-scoreboard_item-number {
    background: rgb(247,203,107);
    background: -moz-linear-gradient(0deg, rgba(247,203,107,1) 0%, rgba(251,169,128,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(247,203,107,1) 0%, rgba(251,169,128,1) 100%);
    background: linear-gradient(0deg, rgba(247,203,107,1) 0%, rgba(251,169,128,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7cb6b",endColorstr="#fba980",GradientType=1);
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(2) .orp-scoreboard_item-number {
    background: rgb(212,207,201);
    background: -moz-linear-gradient(0deg, rgba(212,207,201,1) 0%, rgba(52,71,84,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(212,207,201,1) 0%, rgba(52,71,84,1) 100%);
    background: linear-gradient(0deg, rgba(212,207,201,1) 0%, rgba(52,71,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d4cfc9",endColorstr="#344754",GradientType=1);
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(3) .orp-scoreboard_item-number {
    background: rgb(255,136,124);
    background: -moz-linear-gradient(0deg, rgba(255,136,124,1) 0%, rgba(182,50,95,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,136,124,1) 0%, rgba(182,50,95,1) 100%);
    background: linear-gradient(0deg, rgba(255,136,124,1) 0%, rgba(182,50,95,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff887c",endColorstr="#b6325f",GradientType=1);
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info {
    flex: 1 1 auto;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_name {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0 0 20px;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_stats {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;

    height: 40px;

    background: #07152a;
    border-radius: 5px;

    margin: 0;
    padding: 0;

    position: relative;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_stats > li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 100%;

    padding: 0 22px;
    margin: 0;

    position: relative;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_stats > li:nth-child(2) {
    background: #052e58;
    border-radius: 5px;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_stats > li > .orp-scoreboard_item-info_stats-icon {
    width: 18px;
    height: 18px;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_stats > li:nth-child(1) > .orp-scoreboard_item-info_stats-icon {
    background: url("../img/orp_stats_money.png") center no-repeat;
}

#orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item .orp-scoreboard_item-info .orp-scoreboard_item-info_stats > li:nth-child(2) > .orp-scoreboard_item-info_stats-icon {
    background: url("../img/orp_stats_time.png") center no-repeat;
}

#orp-footer {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-footer:before {
    content: '';
    display: block;
    width: 100%;
    height: 1145px;
    background: url("../img/orp_footer_background.png") center bottom no-repeat;

    position: absolute;
    left: 50%;
    bottom: 0;

    pointer-events: none;
    transform: translate(-50%, 0);
    z-index: -1;
}

#orp-footer .orp-footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    padding: 76px 0;
    margin: 0;

    position: relative;
}

#orp-footer .orp-footer_content .orp-footer_logo {
    display: block;
    width: 100px;
    height: 81px;
    position: relative;
}

#orp-footer .orp-footer_content .orp-footer_logo img {
    max-width: 100%;
    max-height: 100%;
}

#orp-footer .orp-footer_content .orp-footer_copyright {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 20px;
}

#orp-footer .orp-footer_content .orp-footer_copyright .orp-footer_copyright-authors {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding: 20px 30px 0 0;
    text-transform: uppercase;
    text-align: right;
}

#orp-footer .orp-footer_content .orp-footer_copyright .orp-footer_copyright-authors a {
    color: #4a5a70;
    font-weight: 700;
}

#orp-footer .orp-footer_content .orp-footer_copyright .orp-footer_copyright-authors a:nth-child(1):hover {
    color: #0054ff;
}

#orp-footer .orp-footer_content .orp-footer_copyright .orp-footer_copyright-authors a:nth-child(2):hover {
    color: #00ffa2;
}

#orp-footer .orp-footer_content .orp-footer_goup {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;

    color: #fff;
    font-size: 18px;
    text-shadow: 2px 2px 0 rgba(39, 43, 65, 0.15);
}

#orp-footer .orp-footer_content .orp-footer_menu {
    flex: 1 1 auto;
}

#orp-footer .orp-footer_content .orp-footer_menu > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;

    padding: 0 30px;
    margin: 0;

    position: relative;
}

#orp-footer .orp-footer_content .orp-footer_menu > ul > li {
    display: block;
}

#orp-footer .orp-footer_content .orp-footer_menu > ul > li > a {
    color: #344257;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease;
    position: relative;
}

#orp-footer .orp-footer_content .orp-footer_menu > ul > li > a:before {
    content: attr(data-text);
    display: block;
    width: calc( 100% + 20px );
    text-align: center;

    position: absolute;
    left: 50%;
    top: 50%;

    color: transparent;
    font-weight: 600;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#orp-footer .orp-footer_content .orp-footer_menu > ul > li > a:hover {
    color: transparent;
}

#orp-footer .orp-footer_content .orp-footer_menu > ul > li > a:hover:before {
    opacity: 1;
    visibility: visible;
}

#orp-mobileNav {
    display: none;
}

#orp-mobileNav {
    background: #0054ff;
    color: #fff;
    
    list-style: none;
    margin: 0;
    padding: 0;

    position: relative;
}

@media screen and (max-width: 979px) {
    #orp-mobileNav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

#orp-mobileNav > li > a {
    width: 44px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 22px;
    position: relative;
    display: block;
    color: inherit;
    opacity: .7;
}

#orp-mobileDrawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: -100%;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    z-index: 999;
}

#orp-mobileDrawer.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

#orp-mobileDrawer .orp-mobileDrawer_menu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 340px;
    max-width: calc(100% - 50px);
    background: #080a15;
    color: #fff;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.2);
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_close {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;

    background: #080a15;
    border-radius: 40px;

    color: inherit;
    text-align: center;
    font-size: 16px;

    position: absolute;
    top: 5px;
    right: calc(100% + 5px);

    z-index: 2000;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar {
    padding: 20px;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-buttons {
    padding: 0;
    margin: 0;
    list-style: none;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-buttons .orp-mobileDrawer_content-buttons_login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 59px;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 3px 2px 0 rgba(39, 43, 65, 0.15);
    padding: 0 50px;
    margin: 0;
    position: relative;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-userbar_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-userbar_content .orp-mobileDrawer_content-userbar_content-usercp {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    color: #596981;
    font-size: 18px;

    position: relative;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-userbar_content .orp-mobileDrawer_content-userbar_content-name {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0 10px;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-userbar_content .orp-mobileDrawer_content-userbar_content-admin {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    background: #08172a;
    border-radius: 5px;

    color: #596981;
    font-size: 18px;

    padding: 0;
    margin: 0 10px 0 0;

    position: relative;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-userbar .orp-mobileDrawer_content-userbar_content .orp-mobileDrawer_content-userbar_content-logout {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    border-radius: 5px;

    color: #fff;
    font-size: 18px;

    padding: 0;
    margin: 0;
    position: relative;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-menu {
    flex-grow: 1;
    flex-shrink: 1;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-menu > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#orp-mobileDrawer .orp-mobileDrawer_menu .orp-mobileDrawer_content .orp-mobileDrawer_content-menu > ul > li > a {
    display: block;
    padding: 12px 20px;
    position: relative;
    cursor: pointer;
    margin: 0;
}

#orp-breadcrumb {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-breadcrumb .orp-breadcrumb_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 27px 0 106px;
    margin: 0;
}

#orp-breadcrumb .orp-breadcrumb_content .orp-breadcrumb_title {
    color: transparent;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

#orp-breadcrumb .orp-breadcrumb_content .orp-breadcrumb_button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    height: 59px;

    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;

    box-shadow: inset 0 0 0 1px #596981;
    border-radius: 5px;

    padding: 0 50px;
    margin: 0;

    position: relative;
    transition: all .3s ease;
}

#orp-breadcrumb .orp-breadcrumb_content .orp-breadcrumb_button i {
    color: #596981;
    transition: all .3s ease;
}

#orp-breadcrumb .orp-breadcrumb_content .orp-breadcrumb_button:hover {
    background: #596981;
}

#orp-breadcrumb .orp-breadcrumb_content .orp-breadcrumb_button:hover i {
    color: #fff;
}

#orp-usercp {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-usercp .orp-usercp_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;

    padding: 0 0 50px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content.form {
    align-items: flex-start;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar {
    display: flex;
    flex-direction: column;

    min-width: 326px;
    max-width: 326px;
    
    background: url("../img/orp_usercp_sidebar_background.png") left top no-repeat;
    background-size: 100% 100%;
    border-radius: 5px;
    
    padding: 0;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    padding: 38px 42px;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_avatar {
    display: block;
    width: 77px;
    height: 77px;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_info {
    padding: 0 0 0 25px;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_info .orp-usercp_sidebar-user_info-name {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0 0 7px;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_info .orp-usercp_sidebar-user_info-steam {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_info .orp-usercp_sidebar-user_info-name,
#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-user .orp-usercp_sidebar-user_info .orp-usercp_sidebar-user_info-steam {
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;

    flex: 1 1 auto;

    background: url("../img/orp_usercp_sidebar_menu_background.png") right bottom no-repeat, rgba( 6, 55, 104, 0.35 );
    background-size: 100% 100%;
    border-radius: 5px;

    padding: 38px 42px;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu {
    display: block;
    width: 100%;

    list-style: none;
    padding: 0;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li {
    display: block;
    width: 100%;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li:not(:last-child) {
    margin-bottom: 8px;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a {
    display: block;

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;

    padding: 10px 10px 10px 46px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a.active,
#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a:hover {
    font-weight: 700;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a:before {
    content: '';
    display: block;

    position: absolute;
    left: 0;
    top: 50%;

    transition: all .3s ease;
    transform: translate(0, -50%);
    z-index: 1;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li:nth-child(1) > a:before {
    width: 22px;
    height: 21px;
    background: url("../img/orp_usercp_sidebar_menu_item_first.png") center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li:nth-child(2) > a:before {
    width: 22px;
    height: 20px;
    background: url("../img/orp_usercp_sidebar_menu_item_second.png") center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a:after {
    content: '';
    display: block;

    position: absolute;
    left: 0;
    top: 50%;

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;
    transform: translate(0, -50%);
    z-index: 2;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li:nth-child(1) > a:after {
    width: 22px;
    height: 21px;
    background: url("../img/orp_usercp_sidebar_menu_item_first_hover.png") center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li:nth-child(2) > a:after {
    width: 22px;
    height: 20px;
    background: url("../img/orp_usercp_sidebar_menu_item_second_hover.png") center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a.active:before,
#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a:hover:before {
    opacity: 0;
    visibility: hidden;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a.active:after,
#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-menu > li > a:hover:after {
    opacity: 1;
    visibility: visible;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-logout {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 17px;

    height: 59px;
    background: #fff;
    border-radius: 5px;

    color: #080c16;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: -3px 2px 0 rgba(39, 43, 65, 0.15);

    padding: 0 50px;
    margin: 25px 0 0 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_sidebar .orp-usercp_sidebar-bottom .orp-usercp_sidebar-logout:hover {
    background: #080c16;
    color: #fff;
}

#orp-usercp .orp-usercp_content .orp-usercp_main {
    display: flex;
    flex-direction: column;
    gap: 32px;

    min-width: calc( 100% - 358px );
    max-width: calc( 100% - 358px );
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 0;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item {
    display: flex;
    justify-content: flex-start;
    gap: 30px;

    min-width: calc( calc( 100% / 3 ) - 14px );
    max-width: calc( calc( 100% / 3 ) - 14px );

    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    padding: 44px 30px;
    margin: 0;

    position: relative;
    z-index: 1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.positive:before {
    content: '';
    display: block;

    width: 100%;
    height: 100%;

    background: url("../img/orp_usercp_main_apps_positive_background.png") left bottom no-repeat;
    background-size: 100% 100%;
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    pointer-events: none;
    z-index: -1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.negative:before {
    content: '';
    display: block;

    width: 100%;
    height: 100%;

    background: url("../img/orp_usercp_main_apps_negative_background.png") left bottom no-repeat;
    background-size: 100% 100%;
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    pointer-events: none;
    z-index: -1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item .orp-usercp_main-stats_item-icon {
    display: block;
    width: 89px;
    height: 89px;
    border-radius: 50%;
    background: #0079ea;
    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item .orp-usercp_main-stats_item-icon:before {
    content: '';
    display: block;

    width: 27px;
    height: 24px;

    background: url("../img/orp_usercp_main_apps_neutral.png") center no-repeat;

    position: absolute;
    left: 50%;
    top: 50%;

    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.positive .orp-usercp_main-stats_item-icon {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.positive .orp-usercp_main-stats_item-icon:before {
    width: 26px;
    height: 26px;
    background: url("../img/orp_usercp_main_apps_positive.png") center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.negative .orp-usercp_main-stats_item-icon {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    background: linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#ff003c",GradientType=1);
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.negative .orp-usercp_main-stats_item-icon:before {
    width: 24px;
    height: 24px;
    background: url("../img/orp_usercp_main_apps_negative.png") center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item .orp-usercp_main-stats_item-info {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item .orp-usercp_main-stats_item-info .orp-usercp_main-stats_item-info_number {
    color: #0079ea;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    padding: 0 0 15px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.positive .orp-usercp_main-stats_item-info .orp-usercp_main-stats_item-info_number {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item.negative .orp-usercp_main-stats_item-info .orp-usercp_main-stats_item-info_number {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    background: linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#ff003c",GradientType=1);
    background-size: 150%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item .orp-usercp_main-stats_item-info .orp-usercp_main-stats_item-info_desc {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest,
#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps,
#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form {
    display: flex;
    flex-direction: column;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;
    
    padding: 36px 30px;
    margin: 0;

    position: relative;
    z-index: 1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest:before,
#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps:before,
#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form:before {
    content: '';
    display: block;
    width: calc( 100% - 4px );
    height: calc( 100% - 4px );

    background: #080a15;
    border-radius: 5px;

    position: absolute;
    left: 2px;
    top: 2px;

    pointer-events: none;
    z-index: -1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_title,
#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_title,
#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .orp-usercp_main-form_title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 0 0 36px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form:has(> .orp-usercp_main-form_desc) .orp-usercp_main-form_title {
    padding: 0 0 7px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .orp-usercp_main-form_desc {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding: 0 0 36px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item {
    display: flex;
    align-items: center;
    flex-direction: column;

    min-width: calc( 20% - 16px );
    max-width: calc( 20% - 16px );

    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    padding: 34px 20px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item.positive:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/orp_usercp_main_apps_positive_background_vertical.png) left bottom no-repeat;
    background-size: 100% 100%;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item.negative:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/orp_usercp_main_apps_negative_background_vertical.png) left bottom no-repeat;
    background-size: 100% 100%;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item .orp-usercp_main-latest_content-item_icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 64px;
    height: 64px;

    background: #0079ea;
    border-radius: 50%;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item .orp-usercp_main-latest_content-item_icon:before {
    content: '';
    display: block;
    width: 27px;
    height: 24px;
    background: url(../img/orp_usercp_main_apps_neutral.png) center no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item.positive .orp-usercp_main-latest_content-item_icon {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item.negative .orp-usercp_main-latest_content-item_icon {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    background: linear-gradient(135deg, rgba(0,84,255,1) 0%, rgba(255,0,60,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#ff003c",GradientType=1);
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item.positive .orp-usercp_main-latest_content-item_icon:before {
    width: 26px;
    height: 26px;
    background: url(../img/orp_usercp_main_apps_positive.png) center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item.negative .orp-usercp_main-latest_content-item_icon:before {
    width: 26px;
    height: 26px;
    background: url(../img/orp_usercp_main_apps_negative.png) center no-repeat;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item .orp-usercp_main-latest_content-item_title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 19px 0 10px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item .orp-usercp_main-latest_content-item_date {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    width: 100%;

    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    padding: 20px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item:not(:last-child) {
    margin-bottom: 10px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;

    background: #0079ea;
    border-radius: 5px;

    color: #fff;
    font-size: 12px;
    font-weight: 700;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-info {
    flex: 1 1 auto;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-info .orp-usercp_main-apps_item-info_title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    padding: 0 0 5px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-info .orp-usercp_main-apps_item-info_date {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-status {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 42px;

    background: #0079ea;
    border-radius: 5px;

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    padding: 0 20px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-status.positive {
    color: #080a15;
    background: #00ffa2;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item .orp-usercp_main-apps_item-status.negative {
    background: #ff003c;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-pagination {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-pagination .orp-usercp_main-pagination_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    padding: 0;
    margin: 0;
    list-style: none;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-pagination .orp-usercp_main-pagination_list > li > a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 35px;
    
    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    color: #fff;
    font-size: 12px;
    font-weight: 400;
    
    padding: 0 15px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-pagination .orp-usercp_main-pagination_list > li.active > a {
    background: #0079ea;
    font-weight: 700;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    width: 100%;
    
    padding: 47px 0;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex: 1 1 auto;

    padding: 0;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content .orp-usercp_logs-content_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 25px;

    min-width: calc( 20% - 10px );
    max-width: calc( 20% - 10px );

    background: rgba( 0, 121, 234, 0.06 );
    border-radius: 5px;

    padding: 0 25px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content .orp-usercp_logs-content_item .orp-usercp_logs-content_item-icon {
    font-size: 18px;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content .orp-usercp_logs-content_item .orp-usercp_logs-content_item-info {
    flex: 1 1 auto;
    padding: 18px 0;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content .orp-usercp_logs-content_item .orp-usercp_logs-content_item-info .orp-usercp_logs-content_item-info_title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 0 0 7px;
}

#orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content .orp-usercp_logs-content_item .orp-usercp_logs-content_item-info .orp-usercp_logs-content_item-info_date {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

#orp-post {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-post .orp-post_content {
    display: block;
    width: 100%;
    padding: 50px 0;
    margin: 0;
    position: relative;
}

#orp-apps {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-apps .orp-apps_content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;

    padding: 0;
    margin: 0;

    position: relative;
}

#orp-apps .orp-apps_content .orp-apps_item {
    display: block;
    
    min-width: calc( ( 100% / 3 ) - 20px );
    max-width: calc( ( 100% / 3 ) - 20px );

    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    padding: 30px;
    margin: 0;

    position: relative;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-image {
    display: block;
    width: 100%;
    height: 175px;
    border-radius: 5px;
    position: relative;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-image img {
    object-fit: cover;
    display: block;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info {
    padding: 29px 0 0 0;
    margin: 0;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_title {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0 0 7px 0;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_desc {
    color: #4a5a70;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;

    margin: 0;
    padding: 0 0 29px;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_button {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 59px;
    border-radius: 5px;

    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 3px 2px 0 rgba(39, 43, 65, 0.15);

    padding: 0 50px;
    margin: 0;

    position: relative;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_button:before {
    content: '';
    display: block;
    width: calc( 100% - 4px );
    height: calc( 100% - 4px );
    aspect-ratio: 1;
    inset: 0;
    padding: 2px;
    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
    z-index: -1;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_button:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;

    background: rgb(0,84,255);
    background: -moz-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(85deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
    border-radius: 5px;

    position: absolute;
    left: 0;
    top: 0;

    transition: all .3s ease;

    z-index: -1;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_button:hover:before {
    opacity: 1;
    visibility: visible;
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-info .orp-apps_item-info_button:hover:after {
    opacity: 0;
    visibility: hidden;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .form-group {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .form-group:not(:last-child) {
    margin-bottom: 10px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    padding-top: 5px;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .form-group input {
    display: block;

    width: 100%;
    height: 42px;
    max-width: 350px;

    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;

    border: 0;
    box-shadow: none;
    
    padding: 8px 20px;
    margin: 0;

    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .form-group textarea {
    display: block;

    width: 100%;
    height: 250px;

    background: rgba( 6, 55, 104, 0.3 );
    border-radius: 5px;

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;

    border: 0;
    box-shadow: none;

    padding: 8px 20px;
    margin: 0;

    resize: none;
    position: relative;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .orp-usercp_main-form_button button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 17px;

    height: 59px;
    background: #fff;
    border-radius: 5px;
    border: 0;
    box-shadow: none;

    color: #080c16;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: -3px 2px 0 rgba(39, 43, 65, 0.15);

    padding: 0 50px;
    margin: 25px 0 0 0;

    position: relative;
    cursor: pointer;
    transition: all .3s ease;
}

#orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-form .orp-usercp_main-form_button button:hover {
    background: #0070ff;
    color: #fff;
}

.tippy-tooltip.tooltip-theme {
    background-color: #0070ff;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

.tippy-tooltip.tooltip-theme[data-animatefill] {
    background-color: transparent;
}

.tippy-tooltip.tooltip-theme .tippy-backdrop {
    background-color: #0070ff;
}

.tippy-tooltip[data-placement^='top'] .tippy-arrow {
    border-top-color: #0070ff;
}

.tippy-tooltip[data-placement^='bottom'] .tippy-arrow {
    border-bottom-color: #0070ff;
}

.tippy-tooltip[data-placement^='left'] .tippy-arrow {
    border-left-color: #0070ff;
}

.tippy-tooltip[data-placement^='right'] .tippy-arrow {
    border-right-color: #0070ff;
}

@media screen and (min-width: 979px) and (max-width: 1440px) {
    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item .orp-usercp_main-stats_item-info {
        text-align: center;
    }
}

@media screen and (max-width: 979px) {
    #orp-header .orp-header_content {
        justify-content: center;
    }

    #orp-header .orp-header_content .orp-header_menu,
    #orp-header .orp-header_content ul.orp-header_userbar,
    #orp-header .orp-header_content div.orp-header_userbar {
        display: none;
    }

    #orp-header .orp-header_content .orp-header_logo {
        text-align: center;
    }

    #orp-hero .orp-hero_content .orp-hero_content-text,
    #orp-about .orp-about_content .orp-about_text {
        min-width: 100%;
        max-width: 100%;
    }

    #orp-hero .orp-hero_content {
        padding: 50px 0 340px;
    }

    #orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons {
        flex-direction: column;
    }

    #orp-hero .orp-hero_content .orp-hero_content-text .orp-hero_content-text_buttons > li {
        width: 100%;
    }

    #orp-about .orp-about_content:before,
    #orp-about .orp-about_content .orp-about_logo {
        display: none;
    }

    #orp-stats .orp-stats_content {
        flex-direction: column;
        gap: 15px;
    }

    #orp-stats .orp-stats_content .orp-stats_box {
        width: 100%;
        height: 100%;
        background: #062d56;
        flex-direction: column;
        padding: 33px;
    }

    #orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item {
        min-width: 100%;
        max-width: 100%;
        height: 90px;
        justify-content: space-between;
    }

    #orp-stats .orp-stats_content .orp-stats_box .orp-stats_box-item .orp-stats_box-item_title {
        flex: unset;
    }

    #orp-stats .orp-stats_content .orp-stats_button {
        width: 100%;
        height: 60px;
    }

    #orp-stats .orp-stats_content .orp-stats_button > span {
        position: relative;
        left: 0;
        top: 0;
        transform: unset;
    }

    #orp-steps .orp-steps_content {
        flex-direction: column;
    }

    #orp-steps .orp-steps_content .orp-steps_item {
        min-width: 100%;
        max-width: 100%;
        padding: 44px 52px;
    }

    #orp-scoreboard .orp-scoreboard_content {
        flex-direction: column;
    }

    #orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item {
        min-width: 100%;
        max-width: 100%;
    }

    #orp-scoreboard .orp-scoreboard_content .orp-scoreboard_item:nth-child(2):before {
        width: 100%;
        height: 200%;
        top: unset;
        bottom: 0;
    }

    #orp-footer .orp-footer_content .orp-footer_logo {
        width: 74px;
    }

    #orp-footer .orp-footer_content .orp-footer_menu {
        display: none;
    }

    #orp-breadcrumb .orp-breadcrumb_content {
        flex-direction: column;
        gap: 15px;
    }

    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats {
        flex-direction: column;
    }

    #orp-usercp .orp-usercp_content .orp-usercp_sidebar,
    #orp-usercp .orp-usercp_content .orp-usercp_main,
    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-stats .orp-usercp_main-stats_item,
    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content .orp-usercp_main-latest_content-item,
    #orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content .orp-usercp_logs-content_item {
        min-width: 100%;
        max-width: 100%;
    }

    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-latest .orp-usercp_main-latest_content,
    #orp-usercp .orp-usercp_content .orp-usercp_logs,
    #orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content {
        flex-direction: column;
    }

    #orp-usercp .orp-usercp_content .orp-usercp_logs .orp-usercp_logs-content {
        width: 100%;
        gap: 15px;
    }

    #orp-usercp .orp-usercp_content .orp-usercp_main .orp-usercp_main-apps .orp-usercp_main-apps_item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #orp-apps .orp-apps_content .orp-apps_item {
        min-width: 100%;
        max-width: 100%;
    }
}

#orp-apps .orp-apps_content .orp-apps_item .orp-apps_item-image .orp-apps_item-image_count {
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    background: #0054ff;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

#orp-ranking {
    display: block;
    width: 100%;
    margin: 0;
    position: relative;
}

#orp-ranking .orp-ranking_content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;

    padding: 0;
    margin: 0;

    position: relative;
}

#orp-ranking .orp-ranking_content .orp-ranking_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 38px;

    min-width: calc( 100% / 3 );
    max-width: calc( 100% / 3 );

    background: rgba( 5, 46, 88, 0.08 );
    border-radius: 5px;

    padding: 45px 33px;
    margin: 0;

    position: relative;
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(1) {
    background: url("../img/orp_scoreboard.png") center left no-repeat ,rgba( 5, 46, 88, 0.08 );
    background-size: auto 100%;
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(2),
#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(3) {
    background: transparent;
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(2):before {
    content: '';
    display: block;
    width: 200%;
    height: 100%;

    background: rgba( 5, 46, 88, 0.08 );
    border-radius: 5px;

    position: absolute;
    right: 0;
    top: 0;

    pointer-events: none;
    z-index: -1;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-number {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 42px;
    height: 42px;
    border-radius: 5px;

    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: -3px 2px 0 rgba(39, 43, 65, 0.15);

    position: relative;
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(1) .orp-ranking_item-number {
    background: rgb(247,203,107);
    background: -moz-linear-gradient(0deg, rgba(247,203,107,1) 0%, rgba(251,169,128,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(247,203,107,1) 0%, rgba(251,169,128,1) 100%);
    background: linear-gradient(0deg, rgba(247,203,107,1) 0%, rgba(251,169,128,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7cb6b",endColorstr="#fba980",GradientType=1);
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(2) .orp-ranking_item-number {
    background: rgb(212,207,201);
    background: -moz-linear-gradient(0deg, rgba(212,207,201,1) 0%, rgba(52,71,84,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(212,207,201,1) 0%, rgba(52,71,84,1) 100%);
    background: linear-gradient(0deg, rgba(212,207,201,1) 0%, rgba(52,71,84,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d4cfc9",endColorstr="#344754",GradientType=1);
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(3) .orp-ranking_item-number {
    background: rgb(255,136,124);
    background: -moz-linear-gradient(0deg, rgba(255,136,124,1) 0%, rgba(182,50,95,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,136,124,1) 0%, rgba(182,50,95,1) 100%);
    background: linear-gradient(0deg, rgba(255,136,124,1) 0%, rgba(182,50,95,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff887c",endColorstr="#b6325f",GradientType=1);
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info {
    flex: 1 1 auto;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_name {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0 0 20px;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;

    height: 40px;

    background: #07152a;
    border-radius: 5px;

    margin: 0;
    padding: 0;

    position: relative;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 100%;

    padding: 0 22px;
    margin: 0;

    position: relative;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li:nth-child(3) {
    background: #052e58;
    border-radius: 5px;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li > .orp-ranking_item-info_stats-icon {
    width: 18px;
    height: 18px;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li:nth-child(1) > .orp-ranking_item-info_stats-icon {
    background: url("../img/orp_stats_money.png") center no-repeat;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li:nth-child(3) > .orp-ranking_item-info_stats-icon {
    background: url("../img/orp_stats_time.png") center no-repeat;
}

#orp-ranking .orp-ranking_content {
    justify-content: flex-start;
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(2):before {
    display: none;
}

#orp-ranking .orp-ranking_content .orp-ranking_item {
    min-width: calc( ( 100% / 3 ) - 20px );
    max-width: calc( ( 100% / 3 ) - 20px );
}

#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(2), 
#orp-ranking .orp-ranking_content .orp-ranking_item:nth-child(3) {
    background: rgba( 5, 46, 88, 0.08 );
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-number {
    background: rgb(0,84,255);
    background: -moz-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    background: linear-gradient(45deg, rgba(0,84,255,1) 0%, rgba(0,255,162,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0054ff",endColorstr="#00ffa2",GradientType=1);
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li:nth-child(2) {
    background: #052e58;
    border-radius: 5px;
}

#orp-ranking .orp-ranking_content .orp-ranking_item .orp-ranking_item-info .orp-ranking_item-info_stats > li > .orp-ranking_item-info_stats-icon {
    background: url(../img/orp_stats_time.png) center no-repeat;
}

@media screen and (max-width: 979px) {
    #orp-ranking .orp-ranking_content .orp-ranking_item {
        min-width: 100%;
        max-width: 100%;
    }
}




