body{
    margin: 0;
}


#analyticsmaincontent{
    text-align: center;
}

#analyticsbutton {
    margin:0 auto;
    display:block;
    cursor: pointer;
}

[aria-hidden="true"]{
    display: none;
}

[aria-hidden="false"] {
    display: flex;
}

#analyticsholder{
    top: 51px;
    left: 0;
    position: fixed;
    width: 100%;
    height: calc(100% - 51px);
    z-index: 9999;
    background-color: rgba(0,0,0,.8);
display: none;
    align-items: center;
    justify-content: center;
}
#analyticspopup {
    position: relative;
    float: left;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: #FFF;
    border-radius: 10px;
    overflow: auto;
}
#analyticspopupclose {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    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;
}

#analyticspopupclose:hover{
    background-color: #EEEEEE;
}


#analyticspopupcontent {
    height: calc(100% - 40px);
    width: calc(100% - 20px);
    padding: 10px;
    box-sizing: border-box;
}


#showanalytics{
    height: 100%;
    width: 100%;

}

#analyticsbutton{
    position: absolute;
    top: 10px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: url(../assets/spritesv2/list.png);
background-size: 320px 800px;
    background-position: -40px -160px;
    cursor: pointer;
    z-index: 1;

}
#contenttitlebarwide #analyticsbutton{
    right: 40px;
}
.dropdown{
    height: 40px;
    /* width: 190px; */
    padding: 10px;
    background: grey;
    border-radius: 5px;
}

.analytics-dropdown-wrapper {
    float: right;
    width: 150px;
    margin-right: 30px;
    margin-top: 10px;
    position: relative;
    background-color: #e5e5e5;
    border-radius: 5px;
    cursor: pointer;
}

.analytics-dropdown-wrapper:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
    background-image: url(../assets/spritesv2/createcontent.png);
    background-size: 320px 800px;
    background-position: 0 -740px;
}

.analytics-dropdown {
    width: calc(100% - 20px);
    padding: 8px;
    background-color: #e5e5e5;
    border-radius: 5px;
    box-sizing: border-box;
}

.analytics-dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    overflow-y: auto;
    background-color: #e5e5e5;
    border: 1px solid #bcbec0;
    box-sizing: border-box;
}

.analytics-dropdown-options li {
    padding: 8px 5px;
}

.analytics-dropdown-options li:hover {
    background-color: #bcbec0;
}

.analytics-dropdown-option {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.analytics-dropdown-option-text {
    display: block;
    font-size: 12px;
    color: #666666;
    width: 100%;
}

.analytics-dropdown-option-text-default {
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateX(0) !important;
}

.analytics-dropdown-option-text-scrolling {
    overflow: unset;
    text-overflow: unset;
    will-change: transform;
    transition: transform 1.5s linear;
}



