
.analyst_submenu_div{
    margin-left: 60px;
    margin-right: 60px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.analyst_submenu_table{

}

.analyst_submenu_table td {
    padding-left: 30px;
}

.analyst-table_div{
    margin-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.analyst-table{
    margin-left: 30px;
    margin-top:  0px;
    border-collapse: collapse;
}

.analyst-table th{
    cursor: pointer;
}

.analyst-table img{
    cursor: pointer;

    width: 16px;
    height: 16px;
}

.analyst-table td, th{
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid black;
}

/* Mobile devices */
@media only screen and (min-width: 480px) {

    .spinner {
        width: 40px;
        height: 40px;
        display: block;
        color: black;

        position: fixed;
        z-index: 999;

        top: 300px;
        left: 300px;
        bottom: 0;
        right: 0;
    }

}


/* Desktops */
@media only screen and (min-width: 992px) {

    .spinner {
        width: 40px;
        height: 40px;
        display: block;
        color: black;

        /*
        center of the screen
        */
        position: fixed;
        z-index: 999;
        overflow: show;
        margin: auto;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
}



.spinner:after {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    border: 3px solid currentColor;
    border-bottom-color: transparent;
    border-radius: 100%;
    background: transparent;

    animation: ball-clip-rotate .75s linear infinite;
}

@keyframes ball-clip-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.dimension-panel-div {

    background: #bbbbbb;

    font-family: Arial, Tahoma, Verdana, sans-serif;
    font-style: normal;
    font-size: 16px;

    margin-left: 60px;
    margin-right: 60px;
    margin-bottom:10px;


    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;

    min-height: 10px;
    padding: 5px;
    overflow: auto;

}


.dimension-div{

    background: lightgray;

    font-size: 14px;

    display: none;

    margin-top: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;

    border: 1px solid black;

}


.dimension-table{

    /*background: lightcyan;*/

    margin-bottom: 10px;

}

.dimension-table-select{

    width: 100%;

}

.dimension-table-input{

    width: 95%;

}