*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}
:root
{
    --foreground-color: rgb(21, 31, 46);
    --block-color: #152232;
    --block-color-hover: #27415e;
    --text-color: rgb(159,173,189);
}
body{
    position: relative;
    background-color: rgb(11,22,34);
}
body::-webkit-scrollbar {
    width: 10px;
    background-color: var(--foreground-color);
}
body::-webkit-scrollbar-thumb {
    background-color: #71cfff;
    border-radius: 5px;
    outline: 0;
}
header
{
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--foreground-color);
    width: 100%;
    border-bottom: 3px solid rgb(31, 41, 55);
    z-index: 999;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.header-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    padding: 10px 5px;
}
.logo{
    width: 300px;
}
.logo img{
    width: 100%;
    height: 100%;
}
.nickname a{
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #fff;
    padding: 3px 5px;
    background-color: rgba(255, 255, 255, 0.111);
    border-radius: 3px;

    font-size: 13px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.nickname a:hover{
    color: #000;
    background-color: #fff;
}
.content{
    margin-top: 62px;
    margin-bottom: 100px;
}
.challenge-image{
    margin-top: 100px;
    width: 100%;
    text-align: center;
}
h1{
    font-family: 'Secular One', sans-serif;
    margin-top: 45px;
    color: #f5f5f5;
    font-size: 40px;
}
.challenge-image img
{
    width: 400px;
}

#challenge-items{
    margin-top: 40px;
}
#challenge-items .item,
#challenge-items .hr-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#challenge-items .hr-block{
    position: relative;
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.181);

    margin-bottom: 40px;
    margin-top: 40px;
}
#challenge-items.hide-hr .hr-block{
    display: none;
}
#challenge-items .item{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;

    background-color: var(--block-color);
    margin-bottom: 20px;

    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    color: #a0b1c5;
    -webkit-transition: 0.15s ease;
    -o-transition: 0.15s ease;
    transition: 0.15s ease;
    text-decoration: none;
}

#challenge-items .item-img{
    height: 110px;
    width: 70px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
#challenge-items img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
#challenge-items .info{
    position: relative;
    margin-left: 30px;
    min-height: 100%;
    font-size: 23px;
    width: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    flex-direction: column;
    justify-content: center;
}
#challenge-items .big-day{
    position: absolute;
    right: 0px;
    bottom: -10px;
    font-size: 60px;

    color: rgba(255, 255, 255, 0.116);
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    -webkit-transition: 0.15s ease;
    -o-transition: 0.15s ease;
    transition: 0.15s ease;
}
#challenge-items.hide-days .big-day{
    display: none;
}
#challenge-items .tag-stats{
    display: flex;
    font-size: 15px;
    margin-bottom: 10px;
}
#challenge-items .tag-stats span{
    display: inline-block;
    color: #fff;
    background-color: #3c3c3c;
    padding: 1px 5px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
    white-space: nowrap;
}

#challenge-items .item:hover{
    background-color: #c4d8ef;
    color: #152232;
}
#challenge-items .item:hover .tag-stats span{
    color: #fff;
    opacity: 0.7;
}
#challenge-items .item .tag-stats .likes{
    position: relative;
    padding-right: 22px;
}
#challenge-items.hide-likes .tag-stats .likes{
    display: none;
}
#challenge-items .item .tag-stats .likes::after{
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;

    right: 4px;
    top: calc(50% - 1px);
    transform: translateY(-50%);

    background-image: url(../images/like.svg);
    background-size: contain;
}
#challenge-items.hide-difficulty .tag-stats .difficulty{
    display: none;
}
#challenge-items .tag-stats .difficulty-1{
    background-color: rgb(0, 164, 8);
}
#challenge-items .tag-stats .difficulty-2{
    background-color: rgb(212, 195, 0);
}
#challenge-items .tag-stats .difficulty-3{
    background-color: rgb(186, 0, 0);
}
#challenge-items .item:hover{
    background-color: #c4d8ef;
}
#challenge-items .item:hover span{
    color: rgba(0, 0, 0, 0.422);
}
#challenge-items .item:hover img{
    opacity: 0.8;
}
.information .text{
    background-color: var(--block-color);
    color: var(--text-color);
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
    padding: 20px 15px;
}
.information .date{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--text-color);
    margin-top: 20px;
}
.information .date span{
    margin: 0 15px;
}
.date-block{
    border-radius: 3px;
    text-align: center;
    background-color: var(--block-color);

    padding: 5px;
    width: 200px;
}
footer{
    background-color: var(--foreground-color);
    text-align: center;
    padding: 20px 5px;
    color: var(--text-color);
}
a{
    color: rgb(61,180,242);
}
#challenge-items .hr-block div{
    position: absolute;
    display: block;

    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    text-align: center;

    color: rgba(255, 255, 255, 0.238);
    border: 1px solid rgba(255, 255, 255, 0.181);
    border-radius: 3px;
    background-color: var(--block-color);
    font-weight: 600;

    padding: 5px 30px;

    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.blocks{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-top: 26px;
}
h2{
    color: rgba(255, 255, 255, 0.711);
    font-size: 24px;
    font-family: 'Secular One', sans-serif;
}
input{
    background-color: var(--block-color);
    color: #fff;
    border: 0;
    font-size: 14px;
    border-radius: 3px;
    padding: 10px 15px;
    width: 100%;
    
    -webkit-transition: 0.15s ease;
    
    -o-transition: 0.15s ease;
    
    transition: 0.15s ease;
}
input::-webkit-input-placeholder{
    color: rgb(220, 220, 220);
}
input::-moz-placeholder{
    color: rgb(220, 220, 220);
}
input:-ms-input-placeholder{
    color: rgb(220, 220, 220);
}
input::-ms-input-placeholder{
    color: rgb(220, 220, 220);
}
input::placeholder{
    color: rgb(220, 220, 220);
}
input:focus{
    outline: none;
    background-color: var(--block-color-hover);
}
h2{
    margin-top: 30px;
}
.subtext-input{
    font-size: 10px;
    color: rgba(255, 255, 255, 0.411);
    line-height: 14px;
    margin-top: 4px;
    margin-left: 10px;
}
.hide{
    display: none !important;
}
.select{
    display: inline-block;
    background-color: var(--block-color);
    padding: 10px 15px;
    color: rgb(220, 220, 220);
    border-radius: 3px;
    margin-right: 10px;
    margin-bottom: 10px;

    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: 0.15s ease;
    -o-transition: 0.15s ease;
    transition: 0.15s ease
}
.select:hover{
    background-color: #416b9b;
}
.select.selected{
    background-color: var(--block-color-hover);
}
#nothing-text{
    color: #adadad;
    line-height: 24px;
    padding: 30px 10px;
    text-align: center;
}

#other-users{
    margin-top: 20px;
}
.user{
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: var(--block-color);
    color: var(--text-color);
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 16px;

    border-radius: 3px;
    

    transition: 0.15s ease;
}
.user-img{
    width: 32px;
    height: 32px;

    border-radius: 3px;
    overflow: hidden;
}
.user-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.user-nickname{
    padding: 0 10px;
    white-space: nowrap;
}
.user:hover{
    background-color: var(--block-color-hover);
}
.user::after{
    content: 'test';
    position: absolute;

    font-size: 10px;
    color: #fff;

    right: 0px;
    top: -6px;

    padding: 1px 3px;
    border-radius: 2px;
    background-color: #adadad;
}
.user.complete::after{
    content: 'Completed';
    background-color: rgb(7, 148, 0);
}
.user.current::after{
    content: 'Current';
    background-color: rgb(0, 35, 148);
}
.user.failed::after{
    content: 'Failed';
    background-color: rgb(148, 0, 0);
}
#stats-number__graph{
    margin-top: 20px;
}
#stats-number__graph
{
    width: 100%;
    height: 20px;
    background-color: #000;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}
#stats-number__graph span{
    display: inline-block;
    height: 100%;
}

#stats-number__text span{
    position: absolute;
    width: 10px;
    height: 10px;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}
#stats-number__text .item-stat{
    position: relative;
    color: var(--text-color);
    margin-bottom: 10px;
    margin-left: 14px;
    width: fit-content;

    cursor: pointer;
}
#stats-number__text .item-stat::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(54, 54, 54);
    bottom: -4px;
    left: 0;
    transition: 0.15s ease;
}
#stats-number__text .item-stat:hover::after{
    height: 4px;
    background-color: rgb(61,180,242);
}
.btn{
    display: inline-block;
    background-color: var(--block-color);
    padding: 10px 15px;
    color: rgb(220, 220, 220);
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.15s ease;
    -o-transition: 0.15s ease;
    transition: 0.15s ease;
}
.btn:hover{
    background-color: var(--block-color-hover);
}
#stats-number__text .btn{
    margin-top: 14px;
}
.like-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 23px 5px;
}
.likebtn-icon{
    display: none !important;
}
.like-btn .likebtn-button{
    background-color: #152232 !important;
    border: 1px solid rgb(61,180,242) !important;
    padding: 0px !important;

    display: flex;
    align-items: center;

    transition: 0.15s ease;
}
.like-btn .likebtn-button:hover{
    background-color: rgb(61,180,242) !important;
}
.lb-like{
    height: auto !important;
}
.likebtn-label{
    color: rgb(159,173,189) !important;
    font-size: 24px !important;
    font-family: 'Montserrat', sans-serif !important; 
    font-weight: 600 !important;
    line-height: 32px !important;
    display: block !important;
    padding: 4px 20px !important;
    box-sizing: border-box !important;
    transition: 0.15s ease;
}
.lb-count{
    color: rgb(159,173,189) !important;
    font-size: 14px !important;

    transition: 0.15s ease;
}
.sub-block{
    margin-bottom: 10px;
}
h4{
    color: #767676;
    margin-bottom: 7px;
}
.like-btn .likebtn-button:hover .lb-count{
    color: rgb(255, 255, 255) !important;
}
.lb-style-white .lb-a:hover .lb-like-label, .lb-style-white .lb-a:hover .lb-dislike-label, .lb-style-padded .lb-a:hover .lb-like-label, .lb-style-padded .lb-a:hover .lb-dislike-label, .lb-style-drop .lb-a:hover .lb-like-label, .lb-style-drop .lb-a:hover .lb-dislike-label{
    color: #fff !important;
}

@media only screen and (max-width: 600px){
    .blocks{
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
@media only screen and (max-width: 590px) {
    h1{
        text-align: center;
        font-size: 25px;
    }
    .logo{
        width: 200px;
    }
}
@media only screen and (max-width: 445px) {
    .challenge-image img{
        width: 300px;
    }
    #challenge-items .info{
        font-size: 20px;
    }
    #challenge-items .big-day{
        font-size: 45px;
    }
}
@media only screen and (max-width: 330px) {
    .logo{
        width: 100px;
    }
    .challenge-image img{
        width: 190px;
    }
    .information .text{
        font-size: 14px;
        line-height: 23px;
    }
    #challenge-items .info{
        font-size: 14px;
    }
}