.contentWrapper{
    display: block;
    position: relative;
    float: left;
    width: 100%;
    -webkit-box-shadow: 0 0 10px -7px black;
    -moz-box-shadow: 0 0 10px -7px black;
    box-shadow: 0 0px 10px -7px black;
}

/*Rank type*/
.contentRankType{
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #eee;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.header-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}
.contentMyrank{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    height: 100%;
}
.contentSelectedRankType{
    -webkit-box-shadow: inset 0 0px #c10000;
    -moz-box-shadow: inset 0 0px #c10000;
    box-shadow: inset 0 0px #c10000;
}
.contentrankuserimgholder{
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.contentrankuserimg{
    border-radius: 50%;
    width: 100%;
    height: 100%;
}
.contentMyrankText{
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}
.contentAvgrankIcon{
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    margin-right: 20px;
}
.contentAvgrankIcon:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.contentAvgrankIcon:active{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.contentAvgrank{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    height: 100%;
}
.contentrankavgimgholder{
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.contentAvgrankText{
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}
.contentMyrankIcon{
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    margin-right: 20px;
}
.contentMyrankIcon:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.contentMyrankIcon:active{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.rank-heading-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0 auto;
    height: 40px;
}
.contentRankText {
    position: relative;
    font-weight: bold;
    font-size: 17px;
    color: #666666;
}
.contentanimaiteddownarowicon {
    width: 20px;
    height: 20px;
    transform: translateY(-5px);
    background-image: url(../assets/sprites/icons_list.png);
    background-position: -41px -424px;
    -o-animation: scrolldown 1.5s ease-in-out 0s infinite;
    -webkit-animation: scrolldown 1.5s ease-in-out 0s infinite;
    animation: scrolldown 1.5s ease-in-out 0s infinite;
}
@-webkit-keyframes scrolldown {
    from {margin-top: 5px;}
    to {margin-top: 15px;}
}
@keyframes scrolldown {
    from {margin-top: 5px;}
    to {margin-top: 15px;}
}

/*Pie UI*/
.contentWrapperInner{
    position: relative;
    float: left;
    width: 100%;
    background-color: #fff;
}
#pieChartContainer{
    position: relative;
    float: left;
    width: 100%;
    min-height: 300px;
    -webkit-transition: height 1s;
    -moz-transition: height 1s;
    -ms-transition: height 1s;
    -o-transition: height 1s;
    transition: height 1s;
    transform-origin: center;
}
#pieChartContainer::before{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: calc(50% - 150px);
    left: calc(50% - 150px);
    background-image: url(../assets/spritesv2/gif/loadermid.gif);;
}
#pieChartContainer svg {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    padding: 0;
    background-color: #FFF;
    overflow: visible;
}
#pieChartContainer svg circle{
    cursor: pointer;
    -webkit-transition: r .3s;
    -moz-transition: r .3s;
    -ms-transition: r .3s;
    -o-transition: r .3s;
    transition: r .3s;
}
#pieChartContainer svg circle:hover{
    background: #444444;
    r: 8;
}
.label-circle {
    fill: transparent;
}
.label-line {
    stroke-width: .5;
    stroke: #000000;
}
.text-label {
    alignment-baseline : middle;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    fill: #666666;
}
.pieItemsContainer{
    position: relative;
    float: left;
    width: calc(100% - 20px);
    margin: 10px;
    border-top: 1px solid #e5e5e5;
}
.pieLegend , .pieItemsLegendtitle{
    position: relative;
    float: left;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #999;
    margin: 20px 0;
}
.pieItemsList{
    position: relative;
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.pieItemWrapper{
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: #EEEEEE;
    display: flex;
    align-items: center;
    overflow: hidden;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -ms-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}
.pieItemWrapper:hover{
    background-color: #E5E5E5;
}
.pieItemImgWrapper{
    position: relative;
    float: left;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
.pieItemImg{
    position: relative;
    float: left;
    width: 50px;
    height: 50px;
}
.pieItemName{
    position: relative;
    float: left;
    width: calc(100% - 70px);
    padding: 0 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: bold;
    overflow: hidden;
}
.pieItemName span{
    position: relative;
    float: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateX(0);
    transition-timing-function: cubic-bezier(0, 0, 0, 0);
}
.pieItemColor{
    position: relative;
    float: left;
    width: 10px;
    height: 100%;
    align-self: end;
}
@media screen and (max-width: 600px){
    svg {
        margin-top: 0px;
    }
}

/*Submit & Reset*/
.contentSubmit-ResetHolder {
    position: relative;
    float: left;
    display: grid;
    grid-template-columns: 20px 60px 1fr 90px;
    align-items: center;
    justify-items: center;
    gap: 10px;
    padding: 0 10px;
    width: calc(100% - 20px);
    height: 50px;
    background-color: #f6f6f6;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.contentsubmithelpicon {
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 360px 800px;
    background-position: 0 -560px;
    cursor: pointer;
}
#contentsubmitinstructionstext {
    display: none;
    position: absolute;
    left: 0px;
    padding: 11px;
    background-color: #FFFFFF;
    border: 1px solid #cfcfcf;
    top: -32px;
    -webkit-border-radius: 0.25em;
    -moz-border-radius: 0.25em;
    border-radius: 0.25em;
    -webkit-box-shadow: 0px 2px 10px -5px #000000;
    -moz-box-shadow: 0px 2px 10px -5px #000000;
    box-shadow: 0px 2px 10px -5px #000000;
    z-index: 9;
}
#contentsubmitinstructionstext p {
    color: #444444;
    font-weight: normal;
    text-decoration: none;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}
#contentchannelinnerwrapperrank {
    display: flex;
    gap: 5px;
    align-items: center;
}
#contentrankprivacybuttonclick {
    position: absolute;
    display: none;
    z-index: 100;
    width: 185px;
    background-color: #f6f6f6;
    top: 30px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 9px -5px black;
    -moz-box-shadow: 0 4px 9px -5px black;
    box-shadow: 0 4px 9px -5px black;
}
.contentSubmitHolder {
    width: 80px;
    height: 30px;
    text-align: center;
}
.contentsubmitbuttonback {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: #418b45;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;

}
#contentsubmitform{
    display: block;
    position: relative;
    width: 100%;
}
#contentsubmitobutton{
    display: inline-block;
}
#contentSubmitButton{
    position: relative;
    float: left;
    width: 80px;
    padding: 8px 0;
    background-color: #418b45;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    border-radius: 3px;
    margin-left: -25px;
}
#contentSubmitButton:hover	{
    cursor: pointer;
    background-color: #4ea052;
}
.contentSubmitButtondisabled{
    background-color: #bbbbbb !important;
    cursor: default !important;
}
.contentSubmitbuttonbackanimation {
    -webkit-animation: beat 1.5s ease 0s infinite;
    -o-animation: beat 1.5s ease 0s infinite;
    animation: beat 1.5s ease 0s infinite;
}
.contentSubmitbuttonbackanimation:before, .contentSubmitbuttonbackanimation:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0c9c1c;
    -webkit-border-radius: 1.2em;
    -moz-border-radius: 1.2em;
    border-radius: 1.2em;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=17);
    -moz-opacity: 0.17;
    -khtml-opacity: 0.17;
    opacity: 0.17;
}
.contentSubmitbuttonbackanimation:before {
    z-index: -2;
    -webkit-animation: beat-before 1.5s ease 100ms infinite;
    -o-animation: beat-before 1.5s ease 100ms infinite;
    animation: beat-before 1.5s ease 100ms infinite;
}
.contentSubmitbuttonbackanimation:after {
    z-index: -1;
    -webkit-animation: beat-after 1.5s ease 200ms infinite;
    -o-animation: beat-after 1.5s ease 200ms infinite;
    animation: beat-after 1.5s ease 200ms infinite;
}
@keyframes beat{
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes beat-before {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.4, 1.4);
        -moz-transform: scale(1.4, 1.4);
        -ms-transform: scale(1.4, 1.4);
        -o-transform: scale(1.4, 1.4);
        transform: scale(1.4, 1.4);
    }
}
@keyframes beat-after {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.8, 1.8);
        -moz-transform: scale(1.8, 1.8);
        -ms-transform: scale(1.8, 1.8);
        -o-transform: scale(1.8, 1.8);
        transform: scale(1.8, 1.8);
    }
}
.contentReset {
    justify-self: end;
}
#contentResetButton {
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 100%;
    background-color: transparent;
    color: #666666;
    padding: 18px 0;
    cursor: pointer;
}
#contentResetButton:hover	{
    cursor: pointer;
    border: none;
    color: #888888;
    background-color: transparent;
    background-image: none;
    -ms-filter: none;
    filter: none;
}
#contentResetButton:active	{
    color: #333333;
    cursor:pointer;
    border:none;
    background-color:transparent; /* Old browsers */
    background-image: none;
    -ms-filter: none; /* IE 6-9 */
    filter: none; /* IE 6-9 */
}