
:root{
    --list_item_bg_color: #EEEEEE;
    --list_sprite_image: url(../assets/spritesv2/list.png);
    --list_sprite_size: 320px 800px;

}

#containerholderwrapper {
    width: calc(100% - 20px);
    max-width: 1440px;
    min-width: 375px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

#containerholder {
    float: left;
    margin-top: 10px;
    width: 100%;
}
#container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 10px;
}
#contentholder{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

#contenttitlebarwide{
    position: relative;
    width: 100%;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius);
}
.contentflagandnotificationcontrol {
    position: absolute;
    right: 10px;
    top: 13px;
    z-index: 2;
}
.contentflagtext, .currentitemflagtext {
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -60px;
    cursor: pointer;
}
.contentflagasdropdown, .currentitemflagas {
    display: none;
    position: absolute;
    width: 220px;
    right: 0;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius_half);
    z-index: 1;
}
.contentflagas, .flagasoptionscontent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contentflagas, .flagasoptionscontent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flagasoptionswrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.flagreportbuttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    -webkit-appearance: none;
}
.flagasoptionstext {
    cursor: pointer;
    display: block;
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #444444;
}
.contentnotificationbell {
    position: relative;
    float: left;
    width: 30px;
    height: 30px;
}
.contentbelliconturnedoff, .itembellturnedoff {
    cursor: pointer;
    position: relative;
    float: left;
    width: 30px;
    height: 30px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -400px;
}
.contentturnoninstruction, .contentturnoffinstruction, .itemturnoninstruction, .itemturnoffinstruction, .contentturnoninstructionalways {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    width: 150px;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius_half);
    z-index: 1;
}
.contentnotificationinstructiontext {
    line-height: 150%;
    text-align: justify;
}
.contentintrothumbcontainer{
    float: left;
    width: 160px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.contenttitlewide {
    float: left;
    width: calc(100% - 200px);
    margin-left: 10px;
}
.contenttitledetailsholder{
    float: left;
    width: calc(100% - 170px);
    margin-left: 10px;
    margin-top: 10px;
}
.contenttitlebarbottomsection{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contenttitlechannelholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.channelinnerwrapper > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.channelimage {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
#contenttitlechannelname {
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
}
.editcontentbutton{
    cursor: pointer;
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #FFFFFF;
    background-color: var(--blue_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
}
.editcontentbutton:hover{
    background-color: var(--blue_btn_hover_color)
}
.editcontentbutton:active{
    background-color: var(--blue_btn_active_color);
}
#contenthighlightsbar {
    display: flex;
    align-items: center;
    gap: 20px;
}
#contentlikeanddislike {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contentviewnumber:before, .contentsharenumber:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -20px;
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -540px;
}
#contenthighlightsbar > div, #contenthighlightsbarforitemview > div {
    position: relative;
}
.contentshareboxholder {
    display: none;
}
.contentlikebox, .contentdislikebox, #contentcomments, .contentsharebox {
    display: flex;
    align-items: center;
    gap: 5px;
}
.contentlikeicon, .contentlikedicon, .contentdislikeicon, #contentcommentsicon, .contentdislikedicon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.contentlikedicon .rmlicon-gray, .contentdislikedicon .rmlicon-gray {
    fill: #A24242 !important;
}
.contentlikeicon .rmlicon-red, .contentdislikeicon .rmlicon-red {
    fill: #666666;
}
.contentlikeicon, .contentlikedicon {
    translate: 0 -3px;
}
.contentdislikeicon, .contentdislikedicon {
    translate: 0 3px;
}
.newcontentshareicongroupouter {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}
.contentshareiconsnew {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    transition: opacity .3s ease-in-out;;
}
.contentshareiconsnew:hover{
    opacity: .75;
}
.contentshareiconsnew:active{
    opacity: 1;
}
.qrsharenew{
    background-position: -240px -280px;
}
#contentembedicon{
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: -240px -320px;
}
.facebooksharenew{
    background-position: -240px -360px;
}
.twittersharenew{
    background-position: -240px -440px;
}
.shareurlcopyicon{
    background-position: -280px -600px;
}
.linkedinsharenew{
    background-position: -240px -480px;
}
.redditsharenew{
    background-position: -240px -520px;
}
.pinterestsharenew{
    background-position: -240px -560px;
}
.tumblrsharenew{
    background-position: -280px -520px;
}
.whatsappsharenew{
    background-position: -280px -280px;
}
.instagramsharenew{
    background-position: -240px -400px;
}
.messengersharenew{
    background-position: -280px -320px;
}
.tiktoksharenew{
    background-position: -240px -600px;
}
.snapchatsharenew{
    background-position: -280px -360px;
}
.telegramsharenew{
    background-position: -280px 400px;
}
.vibersharenew{
    background-position: -280px -440px;
}
.vkontaktesharenew{
    background-position: -280px -560px;
}
.emailsharenew{
    background-position: -280px -480px;
}
.allcontentsharebutton{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    height: 30px;
    background-color: var(--light_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
}
.allcontentsharebutton:hover{
    background-color: var(--light_btn_hover_color);
}
.allcontentsharebutton:active{
    background-color: var(--light_btn_active_color);
}
.allcontentshareicon{
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -640px;
}
.allcontentsharetitle{
    font-weight: bold;
}
.newcontentsharepopupholderwrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: calc(100% - 50px);
    top: 50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}
.newcontentsharepopupholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newcontentsharepopup {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    border-radius: var(--card_radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newcontentsharepopuppreview {
    width: 100%;
    max-width: 860px;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    border-radius: var(--card_radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    overflow-x: hidden;
}
.newcontentsharepopuptitlebar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-light);
    padding-bottom: 10px;
}
.newcontentsharepopupbackword {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-image: var(--common_sprite_image);
    background-size: var(--common_sprite_size);
    background-position: -40px -400px;
    border-radius: var(--avatar_radius);
    transition: var(--btn_bgcolor_animation);
}
.newcontentsharepopuptitletext {
    font-size: 14px;
    font-weight: bold;
}
.newcontentsharepopupclose {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-image: var(--common_sprite_image);
    background-size: var(--common_sprite_size);
    background-position: -40px -360px;
    border-radius: var(--avatar_radius);
    transition: var(--btn_bgcolor_animation);
}
.newqrshareimageholder {
    display: none;
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
}
.newcontentshareimagepreviewbox {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    gap: 10px;
}
.newcontentsharepopupbody>div {
    padding: 10px;
    border-radius: var(--card_radius_half);
    transition: var(--btn_bgcolor_animation);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
#shareurlinput {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
}
.newcontentsharepopupbody {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
}
.contentshareurlcopysuccessmsg {
    position: absolute;
    padding: 2px 10px;
    background-color: #333;
    color: #FFF;
    white-space: nowrap;
    bottom: 8px;
    display: none;
}

.contentintrodescriptioncontainer{
    width: 100%;
    background-color: #ffffff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px -7px black;
    -moz-box-shadow: 0 0 10px -7px black;
    box-shadow: 0 0 10px -7px black;
    padding: 10px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.widecontentextendedmood .contentintrodescriptioncontainer {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}
.contenttitleintroimageholder {
    display: none;
}
.widecontentextendedmood .contenttitleintroimageholder {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
}
.contenttitleintroimageclose {
    display: none;
}
.listtagandcategoryholder {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px 0;
}
.listtagandcategory {
    font-size: 14px;
    font-weight: bold;
    color: #004e9b;
}
.contentintrodescription {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-font-smoothing: antialiased;
    text-overflow: ellipsis;
    line-height: 24px;
    word-wrap: break-word;
    text-align: justify;
    overflow: hidden;
}
.widecontentextendedmood .contentintrodescription {
    display: block;
    white-space: pre-line;
}
.showmorecontentdescription {
    width: 80px;
    margin-top: 10px;
    margin-left: auto;
    height: 30px;
    background-color: var(--light_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.showmorecontentdescription:hover{
    background-color: var(--light_btn_hover_color);
}
.showmorecontentdescription:active{
    background-color: var(--light_btn_active_color);
}
.contenttitlefollowunfollwbuttonstyle {
    cursor: pointer;
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: var(--red_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
}
.contenttitlefollowunfollwbuttonstyle:hover{
    background-color: var(--red_btn_hover_color);
}
.contenttitlefollowunfollwbuttonstyle:active{
    background-color: var(--red_btn_active_color);
}
.contenttitlefollowunfollwbuttonstyle span{
    color: #FFFFFF;
}

.followingbuttonbackground {
    background-color: var(--light_btn_color);
}
.followingbuttonbackground:hover{
    background-color: var(--light_btn_hover_color);
}
.followingbuttonbackground:active{
    background-color: var(--light_btn_active_color);
}
.followingbuttonbackground span{
    color: #444444;
}
.newunsubscribeconfirmholder {
    display: none;
    position: fixed;
    top: 300px;
    left: calc(50% - 160px);
    width: 300px;
    height: 150px;
    padding: 10px;
    z-index: 100;
    background-color: var(--black_transparent_bg);
    border-radius: var(--card_radius);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-around;
    justify-content: space-around;;
}
.newunsubscribeconfirmholder:before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--black_transparent);
    left: 0;
    top: 50px;
    z-index: -1;
}
.newunsubscribeconfirmtext{
    flex: none;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
}
.newunsubscribeconfirmbutton{
    width: 100px;
    height: 30px;
    background-color: var(--red_btn_color);
    color: #FFFFFF;
    border-radius: var(--card_radius_half);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newunsubscribeconfirmbutton:hover{
    background-color: var(--red_btn_hover_color);
}
.newunsubscribeconfirmbutton:active{
    background-color: var(--red_btn_active_color);
}

.newunsubscribeconfirmcancel{
    width: 100px;
    height: 30px;
    background-color: var(--light_btn_color);
    border-radius: var(--card_radius_half);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newunsubscribeconfirmcancel:hover{
    background-color: var(--light_btn_hover_color);
}
.newunsubscribeconfirmcancel:active{
    background-color: var(--light_btn_active_color);
}


/* ///  END DECORATION CSS  ///  */
.icon_select_mate {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 13px;
    right: 10px;
    font-size: 16px;
    transition: all 275ms;
}

.select_mate {
    position: relative;
    width: 205px;
    background-color: var(--red_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
}
.select_mate select {
    position: absolute;
    overflow: hidden;
    height: 0;
    opacity: 0;
    z-index: -1;
}

.cont_list_select_mate {
    position: relative;
}

.cont_select_int {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: #FFFFFF;
    box-shadow: 1px 4px 10px -2px rgba(0, 0, 0, 0.2);
    transition: all 375ms ease-in-out;
    border-radius: var(--btn_radius);
    overflow: hidden;
}
.cont_select_int li {
    display: flex;
    margin: 0;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 10px;
    border-bottom: var(--border-light);
}
.cont_select_int li:last-child {
    border-radius: 3px;
    border-bottom: none;
}
.cont_select_int li:hover {
    background-color: #EEEEEE;
}


/* etiqueta <p> con la opcion selecionada  */
.selecionado_opcion {
    display: flex;
    margin: 0;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 10px;
}
.bracketoptionimage{
    width: 30px;
    height: 30px;
    border-radius: var(--avatar_radius);
}
.selecionado_opcion .bracketoptiontitle{
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
}

#analyticsbutton{
    width: 30px;
    height: 30px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: -40px -160px;
    cursor: pointer;
}

.newbracketstagesholder {
    position: relative;
    float: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-color: var(--white_card_bgcolor);
    padding-top: 10px;
    box-shadow: var(--white_card_shadow);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;}

.stage {
    display: inline-block;
    visibility: hidden;
    position: relative;
    /* float: left; */
    min-width: 170px;
    margin: 0 5px;
    /* margin-right: 10px; */
    background-color: var(--light_card_bgcolor);
    border-radius: var(--card_radius);
    margin-bottom: 10px;
    padding-bottom: 5px;
    overflow: hidden;
    vertical-align: top;
    flex: none;
}
.newbracketstagetitle, .newbracketgrouptitle{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 15px 5px;
    background-color: var(--light_btn_active_color);
    color: var(--dark_btn_color);

}

.newbracketstagetitlewithoutellipsis, .newbracketgrouptitlewithoutellipsis{
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 15px 5px;
    background-color: var(--light_btn_active_color);
    color: var(--dark_btn_color);
}
.newbracketgrouptitle, .newbracketgrouptitlewithoutellipsis{
    background-color: var(--light_btn_active_color);
    color: var(--dark_btn_color);
    margin-top: 10px;
}
.groupholder{
    /*margin-top: 10px;*/
}

.group li{
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 5px;
    display: grid;
    gap: 5px;
    grid-template-columns: 50px 1fr 20px 20px;
    background-color: #F6F6F6;
    border-radius: var(--card_radius_half);
    -webkit-box-shadow: 0 1px 5px -2px #222222;
    -moz-box-shadow: 0 1px 5px -2px #222222;
    box-shadow: 0 1px 5px -2px #222222;
    z-index: 5 !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-tap-highlight-color: transparent !important;
    align-items: center;
}
.group li > div:not(.newbracketdragindicator, .locked_icon ){
    height: 50px;
}
.groupholder {
    position: relative;
    float: left;
    width: 100%;
}
.newbracketgroupinner {
    position: relative;
    float: left;
    width: 100%;
}
.group{
    padding: 0 5px;
    position: relative;
    float: left;
    width: 100%;
    overflow: hidden;
    padding-bottom: 3px;
}
.newbracketteamname, .newbracketteamnamewithoutellipsis{
    overflow: hidden;
    white-space: nowrap;
}
.sortableblocked {
    cursor: not-allowed !important;
}
.cloned {
    position: relative;
}
.cloned li {
    position: absolute;
    width: calc(100% - 10px);
    height: 50px;
    margin-top: 5px;
    display: grid;
    gap: 5px;
    grid-template-columns: 50px 1fr 20px 20px;
    background-color: #F6F6F6;
    border-radius: var(--card_radius_half);
    left: 45px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-tap-highlight-color: transparent !important;
}






#commentssectionholder{
    width: 100%;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius);
}
#commentholder{
    float: left;
    margin-top: 10px;
    clear: left;
    width: calc(100% - 510px);
    padding: 10px;
    padding-top: 0px;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius);
}
#commentssection{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#commentsectionheaderwrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}
#commentheadertotalcomment{
    font-size: 16px;
    font-weight: bold;
}
#commentsoption{
    position: relative;
    right: -10px;
    width: 40px;
    height: 40px;
}
.latestcomments {
    cursor: pointer;
    float: left;
    width: 40px;
    height: 40px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: -40px -480px;
}
.popularcomments {
    cursor: pointer;
    float: left;
    width: 40px;
    height: 40px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: -40px -520px;
}
#postcomment{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.postcommenttextholder{
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.commentprofileimageholder{
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: var(--avatar_radius);
    overflow: hidden;
}
.postcommenttext {
    width: calc(100% - 40px);
    padding: 10px;
    padding-top: 0;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    border: var(--white_card_border);
    border-radius: var(--card_radius_half);
    transition: padding .3s ease-in-out;
    min-height: 50px;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
}
#commentpostorclose{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}
.postcommentcharactersremaining{
    margin-left: 50px;
}
.postcomment{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.postcommentobutton{
    cursor: pointer;
    display: flex;
    width: 80px;
    height: 30px;
    margin-left: auto;
    color: #FFFFFF;
    background-color: var(--dark_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
}
.postcommentobutton:hover{
    background-color: var(--dark_btn_hover_color);
}
.postcommentobutton:active{
    background-color: var(--dark_btn_active_color);
}

#commentslist, .commentholdercontainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.commentholderlevelone{
    width: 100%;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
}
.commentheadandcontentholder{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: var(--light_card_bgcolor);
    border-radius: var(--card_radius_half);
}
.commentholderleveltwomarker{
    width: calc(100% - 40px);
    margin-left: 40px;
}
.commentholderleveltwo, .commentholderlevelthree {
    display: grid;
    gap: 10px;
    grid-template-columns: 30px 1fr;
}
.newreplycomment>.commentholderleveltwo, .newreplycomment >.commentholderlevelthree {
    display: unset;

}

.commentholderlevelthreemarker{
    width: calc(100% - 80px);
    margin-left: 80px;
}
.commenthead{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.commentcontent>.comment{
    line-height: 16px;
}
.commentusername{
    font-weight: bold;
}
.commentusername:hover{
    text-decoration: underline;
}
.commentfeedback{
    display: flex;
    justify-content: space-between;
    grid-column-start: 2;
}
.commentfeedbackleft{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.commentlikeanddislike{
    display: flex;
    align-items: center;
    gap: 5px;
}
.commentseparator{
    /*width: 20px;*/
    /*height: 20px;*/
    /*background-image: var(--list_sprite_image);*/
    /*background-size: var(--list_sprite_size);*/
    /*background-position: 0 -540px;*/
    display: none;
}
.commentreply{
    font-weight: bold;
    cursor: pointer;
}
.commentreply:hover{
    text-decoration: underline;
}
.numberofreplies{
    padding: 3px 5px;
    background-color: var(--light_card_bgcolor);
    border-radius: var(--card_radius_half);
}
.numberofrepliesnumber{
    font-size: 10px;
}
.commentfeedbackright {
    position: relative;
    width: 20px;
    height: 20px;
}
.commentoptionmorebutton_flag {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: -0 -60px;
}
.showcommentreplyholdertwo{
    margin-left: 40px;
}
.commentoptionmoreoptionholder_flag {
    display: none;
    position: absolute;
    width: 220px;
    right: 0;
    padding: 10px;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius_half);
    z-index: 1;
}
.showcommentreplyholder{
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 40px;
}
.commentreplyicon{
    cursor: pointer;
    width: 10px;
    height: 10px;
    flex: none;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: -20px -660px;
}
.profileimageicon{
    width: 20px;
    height: 20px;
    flex: none;
    border-radius: var(--avatar_radius);
    overflow: hidden;
}
.commentreplyusernameandtotalreply{
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.commentreplyusernameandtotalreply:hover{
    text-decoration: underline;
}
.commentseparatorblue{
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -540px;
}
.commentflagas{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flagasoptionslist{
    display: flex;
    flex-direction: column;
    gap: 10px;
}






#bracketdatasubmitform{
    position: relative;
    float: left;
    width: 100%;
}

.newbracketranktabholder{
    width: 100%;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    z-index: 1;
}
.newbracketranktabholder #analyticsbutton{
    position: relative;
    margin: 0;
    top: unset;
    bottom: unset;
}
.selectdiv {
    position: relative;
    float: right;
    min-width: 50px;
}
.selectdiv:after {
    content: '>';
    font: 17px "Consolas", monospace;
    font-weight: bold;
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 7px;
    top: 7px;
    position: absolute;
    pointer-events: none;
    background-image: linear-gradient(177deg,#de2d4d,#c72951);
}
select:focus {
    outline: none;
}
.newbracketranktab{
    position: relative;
    float: left;
    padding: 11px 14px;
    border-radius: 20px 10px;
    background-image: linear-gradient(249deg,#ff1e50,#232882);
    background-color: #05064d;
    color: #FFFFFF;
    cursor: pointer;
}





#adsandrelated, .relatedlistsholder, #iteminotherlistsholder, #iteminotherlistslist{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#adsandrelated {
    width: 100%;
    padding: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    align-items: start;
    justify-items: center;
    grid-column-start: 1;
    grid-column-end: -1;
    background-color: var(--white_card_bgcolor);
    box-shadow: var(--white_card_shadow);
    border-radius: var(--card_radius);
}
.relatedlistslisttitletext, .iteminotherlistslisttitletext, #iteminotherlistslisttitle{
    font-size: 16px;
    font-weight: bold;
}
#otherlistchanneltitlebar, #iteminotherlisttitlebar{
    font-size: 16px;
    font-weight: bold;
    color: #A24242;
    cursor: pointer;
}
.relatedlistcurrentitemname{
    display: none;
}
#otherlistchanneltitlebar:hover, #iteminotherlisttitlebar:hover{
    text-decoration: underline;
}
.relatedlistslist{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.relatedliholder {
    position: relative;
    height: 100px;
    border-radius: var(--card_radius);
    overflow: hidden;
    box-shadow: var(--white_card_shadow);
    transition: var(--card_shadow_animation);
}
.relatedliholder:hover{
    box-shadow: var(--white_card_shadow_hover);
}
.relatedlistlink{
    width: 100%;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 5px;
    row-gap: 8px;
    background-color: var(--white_card_bgcolor);
}
.relatedimageholder {
    position: relative;
    grid-row-start: 1;
    grid-row-end: -1;
    overflow: hidden;
}
.relatedlistsfeedlistinfo{
    display: flex;
    align-items: center;
    gap: 5px;
    height: 20px;
}
.relatedlistname {
    margin-top: 5px;
    padding-right: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    text-overflow: ellipsis;
}

.relatedlistsfeedlistviewicon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -600px;
}
.relatedlistsfeedlistrankingicon{
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -620px;
}
.relatedlistschannelnamelinkholder{
    position: absolute;
    left: 110px;
    bottom: 5px;
    width: 185px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.relatedlistschannelnameimage{
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.relatedlistschannelname{
    font-weight: bold;
}
.relatedlistschannelname:hover{
    text-decoration: underline;
}
.relatedlisttitle{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
    background-color: var(--light_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
    justify-content: center;
}
.relatedlisttitle:hover{
    background-color: var(--light_btn_hover_color);
}
.relatedlisttitle:active{
    background-color: var(--light_btn_active_color);
}

.relatedliholder:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.relatedliholder:hover .relatedlistsimg{
    transform: scale(1.1, 1.1);
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, .73, .31, 1.67);
}
.relatedliholder:not(:hover) .relatedlistsimg {
    transition-duration: .4s;
}
.relatedimageholder::before{
    display: block;
    position: absolute;
    z-index: 9;
    padding: 3px 6px;
    transform: skew(-8deg);
    background: rgba(0, 0, 0, .6);
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    top: 7px;
    right: 7px;
}


.newbracketsubmitbuttonholder {
    position: relative;
    padding: 0 10px;
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 10px;
    z-index: 1;
    top: -10px;
    box-shadow: var(--white_card_shadow);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: var(--list_item_bg_color);
}
#channelinnerwrapperrank {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.profileimagerank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.morerankprivacyoptions {
    cursor: pointer;
    height: 20px;
    width: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -480px;
}
#rankprivacybuttonclick {
    position: absolute;
    display: none;
    width: 185px !important;
    height: auto !important;
    background-color: var(--white_card_bgcolor);
    top: 38px;
    border-radius: var(--card_radius_half);
    box-shadow: var(--white_card_shadow);
    overflow: hidden;
}
.publicprivacyparentholder {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: var(--light_card_bgcolor);
}
.publicprivacyparentholder:hover{
    background-color: var(--light_btn_hover_color);
}
.lessrankprivacyoptions {
    cursor: pointer;
    height: 20px;
    width: 20px;
    background-image: var(--list_sprite_image);
    background-size: var(--list_sprite_size);
    background-position: 0 -500px;
}
#bracketrankresetbutton {
    font-weight: bold;
    line-height: 100%;
    background-color: transparent;
    cursor: pointer;
    margin-left: auto;
}

.newbracketindicatorholder{
    width: 20px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    grid-row-start: 1;
    grid-row-end: -1;
    grid-column-start: -3;
}
.newbracketindicatorup{
    cursor: pointer;
    width: 18px;
    height: 18px;
    background-image: url("../assets/sprites/indicatorforbracket.png");
    background-size: 18px 78px;
    background-position: 0px 0px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}
.teamname:nth-child(1) .newbracketindicatorup{
    visibility: hidden;
}
.teamname:nth-child(1) .newbracketindicatordown{
    margin-top: -5px;
}
.newbracketindicatordown{
    cursor: pointer;
    width: 18px;
    height: 18px;
    background-image: url("../assets/sprites/indicatorforbracket.png");
    background-size: 18px 78px;
    background-position: 0px -18px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .3s;
    -moz-transition: transform .3s;
    -ms-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}
.teamname:nth-last-child(1) .newbracketindicatorup{
    margin-top: 12px;
}
.teamname:nth-last-child(1) .newbracketindicatordown{
    visibility: hidden;
}
.newbracketindicatorup: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);
}
.newbracketindicatordown: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);
}
.newbracketdragindicator{
    cursor: pointer;
    width: 18px;
    height: 42px;
    background-image: url(../assets/sprites/indicatorforbracket.png);
    background-size: 18px 78px;
    background-position: 0px -36px;
    margin: 4px 2px;
}
.locked_icon {
    position: relative;
    top: 15px;
    width: 18px;
    height: 18px;
    background-image: url(../assets/sprites/lock-icon.png);
    z-index: 1;
    right: 10px;
    float: right;
    align-self: baseline;
}
.sortableblocked .newbracketdragindicator {
    visibility: hidden;
}
.sortableblocked .newbracketindicatorholder {
    visibility: hidden;
}

#submitbracketdata {
    cursor: pointer;
    width: 80px;
    padding: 8px 0;
    background-color: var(--green_bg_color);
    color: #FFFFFF;
    transition: var(--btn_bgcolor_animation);
    border-radius: var(--card_radius_half);
    -webkit-appearance: none;
}

#submitbracketdata:hover{
    background-color: var(--green_hover_color);
}
#submitbracketdata:active{
    background-color: var(--green_active_color);
}
.submitbracketdata_animate {
    -webkit-animation-direction: beat 1.5s ease 0s infinite;
    -moz-animation-direction: beat 1.5s ease 0s infinite;
    -o-animation-direction: beat 1.5s ease 0s infinite;
    animation-direction: beat 1.5s ease 0s infinite;
}
.submitbracketdata_animate:before, .submitbracketdata_animate:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #418b45;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=17);
    -moz-opacity: 0.17;
    -khtml-opacity: 0.17;
    opacity: 0.17;
}
.submitbracketdata_animate: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;
}
.submitbracketdata_animate: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);
    }
}
.noteamdefined .newbracketteamflag {
    visibility: hidden;
}

.newbracketstagenevigatorholderleft{
    display: none;
    visibility: hidden;
    cursor: pointer;
    position: fixed;
    top: calc(80% - 160px);
    /*left: 20px;*/
    height: 40px;
    -webkit-border-radius: 0px 0px 5px 5px;
    -moz-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
    background-color: rgba(5, 6, 77, 0.7);
    z-index: 10;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    -moz-transform: rotate(-90deg) translateX(-50%);
    -ms-transform: rotate(-90deg) translateX(-50%);
    -o-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    -webkit-transform-origin: center left;
    -moz-transform-origin: center left;
    -ms-transform-origin: center left;
    -o-transform-origin: center left;
    transform-origin: center left;

}


.newbracketstagenevigatorholderright{
    display: none;
    visibility: hidden;
    cursor: pointer;
    position: fixed;
    top: calc(80% - 160px);
    /*right: 350px;*/
    height: 40px;
    -webkit-border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 5px 0px 0px;
    background-color: rgba(5, 6, 77, 0.7);
    z-index: 10;
    -webkit-transform: rotate(-90deg) translateX(50%);
    -moz-transform: rotate(-90deg) translateX(50%);
    -ms-transform: rotate(-90deg) translateX(50%);
    -o-transform: rotate(-90deg) translateX(50%);
    transform: rotate(-90deg) translateX(50%);
    -webkit-transform-origin: center right;
    -moz-transform-origin: center right;
    -ms-transform-origin: center right;
    -o-transform-origin: center right;
    transform-origin: center right;

}



.backtopreviousstageicon{
    position: relative;
    float: left;
    width: 40px;
    height: 40px;
    background-image: url("../assets/sprites/whiteindicatoricons.png");
    background-size: 40px 160px;
    background-position:  0 0px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.gotonextstageicon{
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    background-image: url(../assets/sprites/whiteindicatoricons.png);
    background-size: 40px 160px;
    background-position: 0 -40px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.gotonextstagename{
    position: relative;
    float: right;
    min-width: 110px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    color: #ffffff;
    padding: 12px 10px 0px 0px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.backtopreviousstagename{
    position: relative;
    float: right;
    min-width: 110px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    color: #ffffff;
    padding: 0px 0px 12px 10px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);

}


.contentitemquickviewpopup{
    display: none;
    position: fixed;
    width: 220px;
    padding: 10px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    z-index: 108;
    border-radius: 10px;
    box-shadow: 0 0 10px -8px black;
    /*overflow: hidden;*/
}
.contentitemquickviewvideoholder, .contentitemquickviewimageholder{
    position: relative;
    float: left;
    width: 100%;
    height: 154px;
    overflow: hidden;
}
.contentitemquickviewpopupMAX .contentitemquickviewvideoholder, .contentitemquickviewpopupMAX .contentitemquickviewimageholder{
    height: 100%;
}
.contentitemquickviewvideoholder iframe{
    width: 100%;
}
.contentitemquickviewimageoneholder{
    display: none;
    position: absolute;
    width: 220px;
    height: 154px;
    top: 0;
    left: 0px;
    background-color: #000000;
    background-image: url(../assets/sprites/loadermini.gif);
    background-repeat: no-repeat;
    background-position: center;
}
.contentitemquickviewimagetwoholder{
    display: none;
    position: absolute;
    width: 220px;
    height: 154px;
    top: 0;
    left: 220px;
    background-color: #000000;
    background-image: url(../assets/sprites/loadermini.gif);
    background-repeat: no-repeat;
    background-position: center;
}
.contentitemquickviewimagethreeholder{
    display: none;
    position: absolute;
    width: 220px;
    height: 154px;
    top: 0;
    left: 440px;
    background-color: #000000;
    background-image: url(../assets/sprites/loadermini.gif);
    background-repeat: no-repeat;
    background-position: center;
}
/*.contentitemquickviewimageoneholder:before, .contentitemquickviewimagetwoholder:before, .contentitemquickviewimagethreeholder:before{*/
/*    content: "";*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    position: absolute;*/
/*    top: calc(50% - 20px);*/
/*    left: calc(50% - 20px);*/
/*    background-image: url("../assets/sprites/loadermini.gif");*/
/*    background-position: 0 0;*/
/*}*/
.contentitemquickviewimageone, .contentitemquickviewimagetwo, .contentitemquickviewimagethree{
    width: 100%;
    height: 100%;
}

.contentitemquickviewimageprevbox{
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background-image: -webkit-linear-gradient(
            180deg
            , rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 40%) 150%);
}

.contentitemquickviewimagenextbox{
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background-image: -webkit-linear-gradient(
            0deg
            , rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 40%) 150%);
}
.contentitemquickviewimageprevicon{
    cursor: pointer;
    content: "";
    position: absolute;
    left: 5px;
    top: calc(50% - 15px);
    width: 40px;
    height: 40px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;;
    background-position: -20px -600px;
}
.contentitemquickviewimagenexticon{
    cursor: pointer;
    content: "";
    position: absolute;
    right: 5px;
    top: calc(50% - 15px);
    width: 40px;
    height: 40px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;;
    background-position: -20px -560px;
}
.contentitemquickviewimagemaximize{
    cursor: pointer;
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;;
    background-position: -43px 0;
}
.contentitemquickviewitemtitleholder{
    position: relative;
    float: left;
    width: 100%;
}
.contentitemquickviewflagbox{
    position: absolute;
    right: 0;
    top: 8px;
}
.contentitemquickviewflagicon{
    position: relative;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;;
    background-position: -20px -480px;
    transform: rotate(90deg);
    cursor: pointer;
}
.contentitemquickviewlikedislikebox{
    position: relative;
    float: left;
    width: 100%;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.contentitemquickviewlikebox, .contentitemquickviewdislikebox, .contentitemquickviewsharebox{
    cursor: pointer;
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.contentitemquickviewnotificationbox{
    position: absolute;
    right: 0;
    top: 8px;
}
.contentitemquickviewlikeicon{
    cursor: pointer;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: 0 0;
}
.contentitemquickviewlikedicon{
    cursor: pointer;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: -20px 0;
}
.contentitemquickviewdislikeicon{
    cursor: pointer;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: 0 -20px;
}
.contentitemquickviewdislikedicon{
    cursor: pointer;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: -20px -20px;
}
.contentitemnotificationon, .contentitemnotificationalwayson{
    position: relative;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: 0 -661px;
    cursor: pointer;
}
.contentitemnotificationoff, .contentitemnotificationalwaysoff{
    position: relative;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: 0 -680px;
    cursor: pointer;

}
.contentitemnotificationtextholder{
    display: none;
    position: absolute;
    width: 180px;
    padding: 10px;
    background-color: #e5e5e5;
    top: 20px;
    right: 0;
    z-index: 2;
    border-radius: 10px;
}
.contentitemnotificationtext{
    position: relative;
    float: left;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 150%;
}
.contentitemnotificationtext a{
    color: #a24242;
}
.contentitemnotificationtext a:hover{
    text-decoration: underline;
}
.contentitemquickviewshareicon{
    cursor: pointer;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: 0 -640px;
}
.contentitemquickviewlikenumber, .contentitemquickviewdislikenumber, .contentitemquickviewsharenumber{
    position: relative;
    float: left;
    margin-top: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #999999;
}
.contentitemquickviewdescription{
    display: none;
    position: relative;
    float: left;
    width: 100%;
}
.contentitemquickviewdescriptiontext{
    font-size: 12px;
    white-space: pre-line;
    text-align: justify;
    line-height: 150%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666666;
}
.contentitemquickviewpopupmaximize{
    cursor: pointer;
    position: relative;
    float: right;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #A24242;
}
.contentitemquickviewitemname{
    position: relative;
    float: left;
    margin: 5px 0;
    max-width: calc(100% - 20px);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 20px;

    line-height: 110%;

    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contentitemquickviewpopupClose{
    display: none;
}
.contentitemquickviewgallery{
    position: relative;
    float: left;
    width: 100%;
}
.contentitemquickviewpopupdescriptionbox{
    position: relative;
    float: left;
    width: 100%;
}
.contentitemquickviewflagas	{
    display: none;
    position: absolute;
    width: 220px;
    right: 0;
    top: 25px;
    padding: 5px 0;
    background-color: #ffffff;
    z-index: 1;
    border-top: 1px solid #e5e5e5;
}
.contentitemflagtext{
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: #a24242;
    margin-top: 5px;
}
.contentitemflagasoptionsbox{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 10px;
}
.contentitemflagasoptionswrapper{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}
.contentitemflagasoptions{
    display:block;
    position:relative;
    float:left;
}



.contentitemflagasoptionswrapper input[type="checkbox"]:after, .contentitemflagasoptionswrapper input[type="checkbox"]:active:after:after {
    border-radius: .5em;
    width: 4px;
    height: 4px;
    padding: 1px;
    box-shadow: 0 0 0 2px #EEE;
    content: '';
    /*display: inline-block;*/
}

.contentitemflagasoptionswrapper input[type="checkbox"] {
    box-shadow: 0 0 0 2px #cccccc inset, 0 0 0 1px #fff inset;
    transition: all .2s;
    width: 14px;
    height: 14px;
}

.contentitemflagasoptionswrapper input[type="checkbox"]:active {
    background: #A24242;
    box-shadow: 0 0 0 0 #A24242 inset, 0 0 0 1px #bbbbbb inset, 0 0 0 8px #eee inset, 0 0 0 0 #ddd inset, 0 0 0 0 #ddd;
}

.contentitemflagasoptionswrapper input[type="checkbox"]:checked:active {
    background: #A24242;
    box-shadow: 0 0 0 8px #A24242 inset, 0 0 0 0 #666666 inset, 0 0 0 8px #EEE inset, 0 0 0 12px #ddd inset, 0 0 0 8px #D6E5E4;
}

.contentitemflagasoptionswrapper input[type="checkbox"]:checked {
    box-shadow: 0 0 0 9px #A24242 inset, 0 0 0 2px #EEE;
    content: url(../assets/sprites/OrSqEu5.png);
}






.contentitemflagasoptionstext{
    cursor: pointer;
    display: block;
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #222222;
}
.contentitemflagreportbuttonholder{
    position: relative;
    float: left;
    width: 100%;
}
.contentitemflagreportobutton{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-around;

}
.contentitemflagreportbutton{
    position: relative;
    float: right;
    width: 68px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    background-color: #a24242;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}
.contentitemflagreportbutton:hover	{
    background-color: #852727;

}

.contentitemsharepopupclose, .contentitemflagreportclosedropwonbutton{
    position: absolute;
    top: 2px;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(/assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: 0 -500px;
    cursor: pointer;
}
.contentitemsharepopup{
    display: none;
    position: absolute;
    width: 100%;
    min-height: 90px;
    left: 0;
    top: 40px;
    /*padding: 5px 0;*/
    background-color: #ffffff;
    z-index: 1;
    /*border-top: 1px solid #e5e5e5;*/
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 0 10px -8px black;
}
.closecontentitemsharepopup{
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 2px;
    right: 2px;
    background: url("../assets/sprites/closesharepopup.png");
    background-position: 0 0;
    border-radius: 50px;
    cursor: pointer;
    transition: all .5s;
}

.contentitemsharepopuptitle{
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: #a24242;
    margin-top: 5px;
}
.contentitemshareicongroup{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.contentitemshareicon {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    float: left;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    cursor: pointer;
}
.contentitemfacebookshare{
    background-position: 0 -120px;
}


.contentitemtwittershare{
    background-position: 0 -160px;
}
.contentitemlinkedinshare{
    background-position: 0 -180px;
}
.contentitempinterestshare{
    background-position: 0 -220px;
}

.contentitemredditshare{
    background-position: 0 -200px;
}
.contentitemtumblrshare{
    background-position: -20px -120px;
}
.contentitemvkontakteshare{
    background-position: -20px -140px;
}

/*new*/
.contentitemwhatsappshare{
    background-position: 0 -280px;
}
.contentitemssnapchathare{
    background-position: 0 -320px;
}
.contentitemtelegramshare{
    background-position: 0 -340px;
}
.contentitemvibarshare{
    background-position: -20px -80px;
}
.contentitememailshare{
    background-position: -20px -100px;
}


/*<MaxMood>*/

.contentitemquickviewpopupMAX {
    width: calc(100% - 42px);
    height: calc(100% - 91px);
    top: 60px !important;
    left: 10px !important;
    box-shadow: 0 0 0 20px rgb(0 0 0 / 70%);
}


.contentitemquickviewpopupMAX .contentitemquickviewgallery{
    width: calc(100% - 310px);
    height: 100%;
}
.contentitemquickviewpopupMAX .contentitemquickviewpopupdescriptionbox{
    width: 300px;
    height: 100%;
    margin-left: 10px;
}
.contentitemquickviewpopupMAX .contentitemquickviewvideoholder{
    height: 100%;
}

.contentitemquickviewpopupMAX .contentitemquickviewimageoneholder, .contentitemquickviewpopupMAX .contentitemquickviewimagetwoholder, .contentitemquickviewpopupMAX .contentitemquickviewimagethreeholder{
    width: 100%;
    height: 100%;
}
.contentitemquickviewpopupMAX .contentitemquickviewpopupClose{
    display: block;
    cursor: pointer;
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    background-image: url(../assets/spritesv2/common.png);
    background-size: 360px 800px;
    background-position: -40px -360px;
    border-radius: 50%;
    transition: background-color .3s ease-in-out;
}
.contentitemquickviewpopupMAX .contentitemquickviewpopupClose:hover{
    background-color: #dddddd;
}
.contentitemquickviewpopupMAX .contentitemquickviewnotificationbox, .contentitemquickviewpopupMAX .contentitemquickviewflagbox{
    right: 40px;
    top: -30px;
}
.contentitemquickviewpopupMAX .contentitemquickviewdescriptiontext{
    display: block;
    max-height: calc(100% - 35px);
    overflow: auto;
    padding-right: 10px;
}
.contentitemquickviewpopupMAX .contentitemquickviewpopupmaximize{
    display: none;
}
.contentitemquickviewpopupMAX .contentitemquickviewimagemaximize{
    background-position: -44px -80px;
}
.contentitemquickviewpopupMAX .contentitemquickviewflagas{
    padding: 10px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    z-index: 120;
    border-radius: 10px;
    box-shadow: 0 0 10px -8px black;
}
.contentitemquickviewpopupMAX .contentitemflagreportclosedropwonbutton{
    display: none;
}
.contentitemquickviewpopupMAX .contentitemsharepopup{
    padding: 10px;
    width: 220px;
    left: unset;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    z-index: 120;
    border-radius: 10px;
    box-shadow: 0 0 10px -8px black;
}
.contentitemquickviewpopupMAX .contentitemsharepopupclose{
    display: none;
}
.contentitemquickviewpopupMAX .contentitemquickviewdescription{
    height: calc(100% - 135px);
    overflow: auto;
    padding-right: 10px;
}
.contentitemquickviewvideoholder{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}
.newbrackettitlescoreandleaderboardholder{
    display: none;
}
.allrelatedforbracket{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.clickedcontentnumberofpeopleranked:hover {
    cursor: pointer;
    text-decoration: underline;
}

#listrankedusermsgpopupbackground	{
    display:block;
    position:fixed;
    height:100%;
    width:100%;
    left: 0;
    z-index:1002;
    top:40px;
    background-color:#000000;
    opacity:0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -khtml-opacity: 0.5;
    -moz-opacity: 0.5;
}

#listrankedusermsgpopupwrapper	{
    position: fixed;
    height: calc(100% - 50px);
    width: 100%;
    top: 50px;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    overflow-y: auto;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

#listrankeduserpopupclose	{
    position: relative;
    width: 40px;
    height: 40px;
    flex: none;
    background-image: url("../assets/spritesv2/common.png");
    background-size: 360px 800px;
    background-position: -40px -360px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -ms-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

#listrankeduserpopupclose:hover	{
    background-color: #EEEEEE;
}

.listrankeduserpopuptop{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEE;
}
.listlikeduserpopuptop{
    position: relative;
    float: left;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #EEE;
}
.listrankeduserpopupbottom{
    display: none;
    position: relative;
    float: left;
    overflow: auto;
    width: 100% !important;
    height: 470px;
}
.listlikeduserpopupbottom{
    display: none;
    position: relative;
    float: left;
    width: 100%;
    margin: 10px 0;

}
.listrankedusersorder{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rankedlistuserloadmorebtnholder {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
}
.likedlistuserloadmorebtnholder {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
}



#listlikedusermsgpopupwrapper	{
    position: fixed;
    height: calc(100% - 50px);
    width: 100%;
    top: 50px;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}
.listlikedusersgpopup	{
    position: relative;
    width: calc(100% - 40px);
    background-color: #FFF;
    max-width: 460px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#listlikeduserpopupclose, #listrankeduserpopupclose	{
    position:relative;
    float:right;
    font-family:'Roboto', sans-serif;
    font-size:16px;
    color:#AAAAAA;
    cursor: pointer;
}

#listlikeduserpopupclose:hover, #listrankeduserpopupclose:hover {
    color:#666666;
}

#listlikeduserpopupclose:active, #listrankeduserpopupclose:active	{
    color:#999999;
}


.listsmanagelistdelete{
    display: block;
    width: calc(100% - 10px);
    float: left;
    padding:5px 5px 5px 5px;
}
.listrankeduserli{
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;

}
.listlikeduserli{
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.listlikedusersorder{
    position: relative;
    float: left;
    width: calc(100% - 10px);
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 310px;
    overflow: auto;
}
.listlikeduserdataholder{
    position: relative;
    float: left;
    flex: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-right: auto;
}
.listlikeduserdataholder>a{
    display: flex;
    align-items: center;
    gap: 5px;
}
.listlikedsubscribebtnhldr{

}
.listlikeduserimageholder{
    position: relative;
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}
.popuprankviewicon{
    cursor: pointer;
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    background: url(../assets/spritesv2/list.png);
    background-size: 320px 800px;
    background-position: -20px -680px;
}
.listlikedusernameholder{
    position: relative;
    float: left;
}
.userprofileimage {
    width: 30px;
    height: 30px;
}
.usernametext{
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #666;
}
.usernametext:hover{

}
.newbracketleaderboardcolshareimage {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}



.newunsubscribeconfirmcancel{
    position: relative;
    float: right;
    width: 90px;
    margin-right: 10px;
    padding: 5px;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    background-color: #BBBBBB;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.newunsubscribeconfirmcancel:hover{
    cursor: pointer;
    background-color: #CFCFCF;
}
.newunsubscribeconfirmbutton {
    position: relative;
    float: left;
    width: 90px;
    margin-left: 10px;
    padding: 5px;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #ffffff;
    background-color: #B13D3D;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.followbuttonbackground{
    background-color: #A24242;
}
.followbuttonbackground:hover{
    background-color: #8d3333;
}
.followingbuttonbackground{
    background-color: #bbbbbb;
}
.followfollwingbuttonstyle{
    cursor: pointer;
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #FFFFFF;
    margin-top: 10px;
    text-align: center;
    padding: 8px 22px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -ms-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}
.commonfollowunfollwbuttonstyle {
    position: relative;
    float: left;
    padding: 8px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    cursor: pointer;
}
.empty_result{
    display: block;
    float: left;
    position: relative;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 12px;
}
.empty_result_text_likedlist{
    display: block;
    position: relative;
    width:115px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 150px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: justify;
    font-size: 12px;
    color: #666666;
    line-height: 140%;
}
.empty_result_text{
    display: block;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    margin-top: 150px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: justify;
    font-size: 12px;
    color: #666666;
    line-height: 140%;
}
.likedlistuserloadmorebtnholder {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
}
.likedlistuserloadmorebtn {
    display: block;
    width: 100%;
    height: 22px;
    text-align: center;
    background-color: #dddfe2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 8px;
    padding-top: 12px;
}
.likedlistuserloadmorebtn:hover {
    cursor: pointer;
    background-color: #e9ebee;
}
.rankedlistuserloadmorebtn {
    display: block;
    width: 100%;
    height: 22px;
    text-align: center;
    background-color: #dddfe2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 8px;
    padding-top: 12px;
}
.rankedlistuserloadmorebtn:hover {
    cursor: pointer;
    background-color: #e9ebee;
}
.likedlistuserloadmorebtntxt {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 14px;
    color: #666666;
}

.listrankedusernumberholder{
    display: block;
    width: calc(100% - 15px);
    float: left;
    position: relative;

}
.listlikedusernumberholder{
    display: block;
    width: calc(100% - 15px);
    float: left;
    position: relative;

}
.listrankedusernumbertext{
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}
.listrankeduserpopuptopsearchbarholder{
    position: relative;
    float: left;
    width: 100%;
}
.listrankeduserpopuptopsearchbar{
    position: relative;
    float: left;
    width: calc(100% - 52px);
    padding: 12px 40px 12px 10px;
    border: 1px solid #e5e5e5;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #999999;
    background-color: #eeeeee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-sizing: unset;
}
.listrankeduserpopuptopsearchicon {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-image: url(../assets/spritesv2/common.png);
    background-size: 360px 800px;
    background-position: 0 -240px;
    background-color: transparent;
}

.hideusernumber{
    display: block;
    float: left;
    position: relative;
    width: 100%;
}
.hideusernumbertext{
    position: relative;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #666;
}
.usersresponsepopupview{
    position: relative;
    width: calc(100% - 40px);
    background-color: #FFF;
    max-width: 460px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.loadinggig{
    position: relative;
    float: left;
    width: 100%;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.usersresponsepopupview > .loadinggig{
    height: 530px;
}
.gifinner{
    position: relative;
    float: left;
    width: 200px;
    height: 200px;
    background-image: url(../assets/spritesv2/gif/loadermid.gif);
    background-size: 200px 200px;
    background-position: 0 0;
}
.usersresponsecloseclose{
    cursor: pointer;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background-image: url(../assets/spritesv2/common.png);
    background-size: 360px 800px;
    background-position: -40px -360px;
}
.usersresponsecloseclose:hover{
    border-radius: 50%;
    background-color: #EEE;
}
.usersresponsecloseback{
    cursor: pointer;
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url(../assets/spritesv2/common.png);
    background-size: 360px 800px;
    background-position: -40px -400px;
}
.usersresponsecloseback:hover{
    border-radius: 50%;
    background-color: #EEE;
}
.profilesubscribebuttonholdernew {
    position: relative;
    float: left;
}
.newprofilesubscribedbutton {
    position: relative;
    float: left;
    min-width: 80px;
    padding: 0 10px;
    height: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #bbbbbb;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.newprofilesubscribebutton {
    position: relative;
    float: left;
    min-width: 80px;
    padding: 0 10px;
    height: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #A24242;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.anonymous_result{
    display: block;
    float: left;
    position: relative;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 12px;
}
.empty_result_text:hover{
    cursor: pointer;
    text-decoration: underline;
}
.empty_result_texthover {
    display: none;
    top: 20px;
    width: 155px;
    position: absolute;
    background-color: #3b3b3b;
    padding: 7px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: justify;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 140%;
    border-radius: 3px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.empty_result_loadmore_texthover {
    display: none;
    top: -100px;
    width: 155px;
    position: absolute;
    background-color: #3b3b3b;
    padding: 7px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: justify;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 140%;
    border-radius: 3px;
}
.empty_result_text:hover .empty_result_texthover{
    display: block;
}
.hideusernumbertext:hover .empty_result_texthover{
    display: block;
}
.hideusernumbertext:hover .empty_result_loadmore_texthover{
    display: block;

}
.hideusernumbertext:hover{
    cursor: pointer;
    text-decoration: underline;
}
#submitthensharepopupmessagewrapper, #noresponsetosharepopupmessagewrapper {
    position: fixed;
    height: calc(100% - 50px);
    width: 100%;
    z-index: 999998;
    top: 50px;
    left: 0;
}
.submitthensharepopupmsgholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#submitthensharepopupmsg {
    position: relative;
    padding: 10px;
    width: 100%;
    max-width: 600px;
    background-color: var(--white_card_bgcolor);
    border-radius: var(--card_radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 45%);
    -moz-box-shadow: 0 0 10px 2px rgb(0 0 0 / 45%);
    -webkit-box-shadow: 0 0 10px 2px rgb(0 0 0 / 45%);
}
#submitthensharepopupmsgtext {
    display: flex;
    justify-content: center;
}
#submitthensharepopupmsgtext, #submitthensharepopupmsgtext ul, #submitthensharepopupmsgtext ul li, #submitthensharepopupmsgtext a {
    position: relative;
    float: left;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #666666;
}
#submitthensharepopupmsgbtncontainer {
    position: relative;
    width: 100%;
    /* height: 150px; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.submitthensharepopupmsgbtnholderyes {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}
.submitthensharepopupmsgbtnyes, .submitthensharepopupmsgbtnno, .noresponsetosharepopupclose {
    position: relative;
    width: 100px;
    padding: 5px 0;
    margin: 10px 0;
    /* background-color: #A24242; */
    color: #FFFFFF;
    /* border-radius: 3px; */
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: var(--red_btn_color);
    border-radius: var(--btn_radius);
    transition: var(--btn_bgcolor_animation);
}




























@media only screen and (max-width: 1024px) {
    #container {
        display: block;
    }
    .allrelatedforbracket {
        width: 100%;
        padding: 10px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        align-items: start;
        justify-items: center;
        grid-column-start: 1;
        grid-column-end: -1;
        background-color: var(--white_card_bgcolor);
        box-shadow: var(--white_card_shadow);
        border-radius: var(--card_radius);
    }
    .newbrackettitlescoreandleaderboardholder {
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .newbrackettitlescore, .newbracketleaderboardbutton {
        position: relative;
        float: left;
        width: 90px;
        height: 30px;
        padding: 0 10px;
        background-color: #eee;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Roboto', sans-serif;
        font-size: 12px;
        transition: background-color .3s;
        font-weight: bold;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .newbrackettitlescore:hover, .newbracketleaderboardbutton:hover {
        background-color: #e5e5e5;
    }
}


























@media only screen and (max-width: 720px){
    .contentintrothumbcontainer{
        width: 100px;
        height: 100px;
    }
    .contenttitlewide {
        float: left;
        width: calc(100% - 130px);
    }
    .contenttitledetailsholder {
        width: calc(100% - 110px);
    }
    .newbracketranktabholder{
        width: calc(100% - 20px);
        margin: 10px;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewgallery{
        width: 100%;
        height: fit-content;
        min-height: 50%;
        display: grid;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewimageholder{
        height: 100%;
        width: 100%;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewvideoholder{
        height: 100%;
        width: 100%;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewpopupdescriptionbox{
        width: 100%;
        margin: 0;
        padding: 10px;

    }
    .contentitemquickviewpopupMAX .contentitemquickviewlikedislikebox{
        position: fixed;
        left: 0;
        bottom: 15px;
        z-index: 1;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewitemname{

        line-height: normal;
        margin: 0;
    }


    .contentitemquickviewpopupMAX .contentitemquickviewitemtitleholder{
        margin-bottom: 10px;
    }
    .contentitemquickviewpopupMAX {
        padding: 0px;
        width: 100%;
        height: calc(100% - 51px);
        top: 50px !important;
        left: 0 !important;
        box-shadow: none;
        border-radius: 0;
    }
    .contentitemquickviewpopupMAX {}

    .contentitemquickviewpopupMAX .contentitemquickviewdescription{
        /*width: calc(100% - 25px);*/
    }
    .contentitemquickviewpopupMAX .contentitemquickviewimagemaximize{
        display: none;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewpopupClose{
        position: fixed;
        top: 60px;
        right: 10px;
        z-index: 1;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewnotificationbox, .contentitemquickviewpopupMAX .contentitemquickviewflagbox{
        right: 0;
        top: 3px;
    }
    .contentitemquickviewpopupMAX .contentitemquickviewdescriptiontext{
        max-height: calc(100% - 300px);
    }
    .contentitemquickviewpopupMAX .contentitemsharepopup{
        bottom: 49px;
        top: unset;
        width: calc(100% - 20px);
    }
    html, body{
        background-color: #FFFFFF;
    }
    #contentholder{
        gap: 0;
    }
    #contenttitlebarwide{
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        border-bottom: 1px solid #cfcfcf;
    }
    .contentintrodescriptioncontainer, .newbracketstagesholder, #commentssectionholder, #adsandrelated{
        box-shadow: none;
        border-radius: 0;
    }
    #adsandrelated{
        padding: 0;
    }
    .listtagandcategoryholder{
        margin: 0;
    }
    .newbracketsubmitbuttonholder{
        top: 0;
        border-radius: 0;
        box-shadow: none;
    }


}

@media only screen and (max-width: 720px){
    .contenttitlelikedislikeandsharebuttonholder {
        position: fixed;
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        height: 60px;
        background-color: #ffffff;
        z-index: 101;
        border-radius: 10px;
        -webkit-box-shadow: 0 0 10px -5px black;
        -moz-box-shadow: 0 0 10px -5px black;
        box-shadow: 0 0 10px -5px black;
        margin-top: 0;
    }
    .contentlikeboxholder, .contentdislikeboxholder, .contentcommentboxholder {
        width: 100%;
    }
    .contentlikebox, .contentdislikebox, #contentcomments, .contentsharebox {
        display: flex;
        position: relative;
        float: left;
        width: 100%;
        height: 60px;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
    .contentshareboxholder, .contentshareboxholderwide {
        width: 100%;
        position: relative;
        display: block;
    }
    .contentshareiconnew {
        cursor: pointer;
        display: block;
        float: left;
        width: 20px;
        height: 20px;
        background: url(../assets/spritesv2/list.png);
        background-size: 320px 800px;
        background-position: 0 -640px;
    }
    .widecontentextendedmood  .contentintrodescriptioncontainer{
        display: flex;
        flex-direction: column;
    }
    .contenttitleintroimageclose{
        position: absolute;
        right: 10px;
        top: 10px;
        display: block;
        cursor: pointer;
        width: 40px;
        height: 40px;
        background-image: var(--common_sprite_image);
        background-size: var(--common_sprite_size);
        background-position: -40px -360px;
        border-radius: var(--avatar_radius);
        transition: var(--btn_bgcolor_animation);
        background-color: rgb(0 0 0 / 10%);
    }
    .contenttitleintroimageclose:hover {
        background-color: rgb(0 0 0 / 30%);
    }
}
@media only screen and (max-width: 375px){
    .contentintrothumbcontainer{
        width: 70px;
        height: 70px;
    }
    .contenttitlewide {
        float: left;
        width: calc(100% - 100px);
    }
    .contenttitledetailsholder {
        width: calc(100% - 80px);
    }
}