﻿
/*#region Page Loader*/
div.ccsc_modalbg {
    opacity: 0.7;
    filter: alpha(opacity=20);
    background-color: #DCDCDC;
    width: 100%;
    height: 100%;
    z-index: 1001;
    top: 0;
    left: 0;
    position: fixed;
}

div.ccsc_loader {
    position: fixed;
    top: 30%;
    left: 45%;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #009FDF;
    border-bottom: 5px solid #4F4F4F;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    animation: ccsc_loaderspin 2s linear infinite;
    z-index: 1002;
}

div.ccsc_insideloader {
    position: relative;
    border: 5px solid #f3f3f3;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #009FDF;
    border-right: 5px solid #4F4F4F;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    animation: ccsc_loaderspin 1s linear infinite reverse;
    animation-direction: reverse;
    z-index: 1002;
}

div.ccsc_middleloader {
    position: relative;
    border: 5px solid #f3f3f3;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: ccsc_loaderspin 4s linear infinite;
    z-index: 1002;
}

div.ccsc_loadstatus {
    font: 13px Tahoma, Verdana;
    color: #333333;
    position: absolute;
    top: calc(50% + 100px);
    left: calc(50% - 75px);
}

@keyframes ccsc_loaderspin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*#endregion End Page Loader*/

/*#region Container Loader*/
div.ccsmini_modalbg {
    opacity: 0.7;
    filter: alpha(opacity=20);
    background-color: #DCDCDC;
    width: 100%;
    height: 100%;
    z-index: 1001;
    top: 0;
    left: 0;
    position: absolute;
}

div.ccsmini_loader_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

div.ccsmini_loader {
    position: relative;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #009FDF;
    border-bottom: 3px solid #4F4F4F;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: ccsc_miniloaderspin 2s linear infinite;
}

div.ccsmini_insideloader {
    position: relative;
    border: 3px solid #f3f3f3;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 3px solid #009FDF;
    border-right: 3px solid #4F4F4F;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    animation: ccsc_miniloaderspin 1s linear infinite reverse;
}

@keyframes ccsc_miniloaderspin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*#endregion End Container Loader*/

div.pd_modalbg {
    opacity: 0.3;
    background-color: #AAAAAA;
    width: 100%;
    height: 100%;
    z-index: 90;
    top: 0;
    left: 0;
    position: fixed;
}

div.pd_pagecontainer {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 1px solid #DCDCDC;
    background-color: #FFFFFF;
    z-index: 201;
}

div.pd_icontainer {
    position: relative;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #DCDCDC;
    margin: 10px;
}

iframe.pd_pageframe {
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    border: 0;
    margin: 0px;
}

div.pd_toolcontainer {
    width: 100%;
    height: 35px;
    /*line-height: 35px;*/
    background-color: #E0E0E0;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-top: 5px;
}

div.pd_button {
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    color: #333333;
    display: inline-block;
    border-left: solid 1px #FFFFFF;
    cursor: pointer;
    font-size: 16px;
}

    div.pd_button:hover {
        color: #000000;
    }

div.subtool-container {
    width: 100%;
    background-color: white;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    margin-top: 5px;
}

div.subgridtitle {
    text-align: center;
    height: 14px;
    line-height: 14px;
}

div.subcentertool-container {
    text-align: center;
    font-weight: normal;
}

div.subcentertool-container_select {
    text-align: right;
    float: right;
}

tr.toBeApproved td {
    background-color: #FFE9C9;
}

tr.rejected td {
    background-color: #FFE9E9;
}