/*
 * jquery sDashboard (2.0)
 * Copyright 2012, Model N, Inc
 * Distributed under MIT license.
 * https://github.com/ModelN/sDashboard
 */

@font-face {
    font-family: Roboto-Black;
    src: url(../../css/Font/Roboto-Black.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-BlackItalic;
    src: url(../../css/Font/Roboto-BlackItalic.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../../css/Font/Roboto-Bold.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-BoldItalic;
    src: url(../../css/Font/Roboto-BoldItalic.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Italic;
    src: url(../../css/Font/Roboto-Italic.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Light;
    src: url(../../css/Font/Roboto-Light.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-LightItalic;
    src: url(../../css/ont/Roboto-LightItalic.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Medium;
    src: url(../../css/Font/Roboto-Medium.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-MediumItalic;
    src: url(../../css/Font/Roboto-MediumItalic.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Regular;
    src: url(../../css/Font/Roboto-Regular.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Thin;
    src: url(../../css/Font/Roboto-Thin.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-ThinItalic;
    src: url(../../css/Font/Roboto-ThinItalic.ttf) format('truetype');
}

/*dashboard css*/
.sDashboard {
    list-style-type: none;
    margin: 0;
    /*padding-left: 10px;
	padding-top: 10px;*/
    width: 100%;
    height: 100%;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-family: roboto-regular;
    font-size: 13px;
    /*overflow: auto;*/
}

    .sDashboard li {
        /*padding-left: 0.25%;
        padding-right: 0.25%;
        float: left;
        width: 49.5%;
        height: auto;*/
        padding-left: 1rem;
        padding-right: 1rem;
        float: left;
        width: 50%;
        height: auto;
    }

/*dashboard widget css*/
.sDashboardWidget {
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border: 1px solid #ffffff82;
    background-color: #ffffff82;
}

    .sDashboardWidget:hover {
        border: 1px solid #AFAFAF;
        -webkit-transition: border-color 0.3s;
        -moz-transition: border-color 0.3s;
        transition: border-color 0.3s;
    }

/*dashboard widget header css*/
.sDashboardWidgetHeader {
    text-align: center;
    cursor: move;
    border-radius: 5px 5px 0 0;
    color: var(--grey-color);
    /*background-color: #ffffff82;*/
    font-size: 13px;
    font-family: 'Roboto-Bold';
    padding: 4px 10px 4px 20px;
    border-bottom: 1px solid var(--grey-color);
}

/*dashboard widget content css*/
.sDashboardWidgetContent {
    margin: 0.3em;
    padding: 0.4em;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.sDashboardWidgetContentMaximized {
    margin: 0.3em;
    padding: 0.4em;
    height: 90%;
}

/*for centering trick see  : http://css-tricks.com/quick-css-trick-how-to-center-an-object-exactly-in-the-center/*/
.sDashboardWidgetContainerMaximized {
    /*z-index: 9999;
	position: fixed;
	width: 800px;
	height: 450px;
	left: 50%;
	top: 50%;
	margin-top: -225px;
	margin-left: -400px;*/
    z-index: 9999;
    position: fixed;
    width: 92vw;
    height: 92vh;
    left: 0;
    top: 0;
    margin: 2vh;
}



/*dashboard table widget css*/
.sDashboardTableView {
    width: 100%;
    height: 95%;
    overflow: auto;
}


    .sDashboardTableView tbody tr:nth-child(odd) {
        background-color: #F5F5F5;
    }

    .sDashboardTableView tbody tr:nth-child(even) {
        background-color: #FFFFFF;
    }

        .sDashboardTableView tbody tr:nth-child(odd):hover,
        .sDashboardTableView tbody tr:nth-child(even):hover {
            background-color: #FCEFA1;
            cursor: pointer;
        }


.dataTables_length,
.dataTables_info {
    float: left;
}

.dataTables_filter,
.dataTables_paginate {
    float: right;
}


/*dashboard chart view css*/
.sDashboardChart {
    /*	width: 200px;
	 height: 180px;*/
    width: 100%;
    height: 95%;
    /*	cursor: pointer;*/
}

.sDashboardChartClickable {
    cursor: pointer;
}

.sDashboardChartSelectable {
    width: 100%;
    height: 95%;
    cursor: crosshair;
}

/*jquery sortable placeholder styles */
.ui-sortable-placeholder {
    border: 1px dotted black;
    visibility: visible !important;
    height: 225px !important;
    width: 375px !important;
}

    .ui-sortable-placeholder * {
        visibility: hidden;
    }

li.ui-sortable-placeholder {
    background-color: #FCEFA1;
}

/*icons*/
.sDashboard-icon {
    margin: 0 5px 0 2px;
    float: right;
}

    .sDashboard-icon:hover {
        cursor: pointer;
    }

    .sDashboard-icon.sDashboard-circle-plus-icon {
        background: url('../../Images/icon_widget_magnifier.PNG') no-repeat;
        background-size: contain;
        width: 17px;
        height: 15px;
        margin-top: 1px;
    }

    .sDashboard-icon.sDashboard-circle-minus-icon {
        background: url('../../Images/icon_widget_minus.PNG') no-repeat;
        background-size: contain;
        width: 17px;
        height: 15px;
        margin-top: 1px;
    }

    .sDashboard-icon.sDashboard-circle-remove-icon {
        /*background: url('../../Images/icon_widget_x.PNG') no-repeat;
        background-size: contain;
        width: 17px;
        height: 15px;
        margin-top: 1px;*/
        /*background: url(../../Images/icon_widget_x.PNG) no-repeat;
        background-size: contain;
        width: 15px;
        height: 12px;*/
        margin-top: 1px;
    }

    .sDashboard-icon.sDashboard-plus-icon {
        background-position: -3px -83px;
    }

    .sDashboard-icon.sDashboard-minus-icon {
        background-position: -2px -109px;
    }

    .sDashboard-icon.sDashboard-remove-icon {
        background-position: -3px -135px;
    }


    .sDashboard-icon.sDashboard-trash-icon {
        background-position: -4px -159px;
    }

    .sDashboard-icon.sDashboard-refresh-icon {
        background-position: -3px -186px;
    }

    .sDashboard-icon.sDashboard-maximize-icon {
        background-position: -2px -212px;
    }

    .sDashboard-icon.sDashboard-minimize-icon {
        background-position: -2px -236px;
    }

/*clear fix*/

.sDashboard-clearfix:before, .sDashboard-clearfix:after {
    content: "";
    display: table;
}

.sDashboard-clearfix:after {
    clear: both;
}

.sDashboard-clearfix {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

/*overlay*/

.sDashboard-overlay {
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    z-index: 9998; /*z-index one less than window maximized css*/
}
/*.sDashboard-overlay {
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.1);
 background-size: 100% 100%;
 position: fixed;
 }*/


#Widget_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}


#Widget_Pr_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}

#Widget_Pr_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}

#Widget_T_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}

#Widget_Parent_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}

#Widget_ST_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}


#Widget_ST_AlbumSliderList {
    /*margin: 3px 3px 3px 0;*/
    padding: 1px;
    float: left;
    width: 100%;
    height: auto;
}

#DivAlbumSliderList {
    width: 100%;
}
