﻿*, label {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-weight: 300;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
}

body {
    background-color: #24313c;
}

/*-----------------Common-----------------*/

.clsGrid {
    table-layout: fixed;
    border:none;
}

    .clsGrid th {
        padding:10px 0px;;
        font-size: 14px;
        border:none;
        border-bottom:1px solid lightgrey;
        background-color: whitesmoke;
        color: #2B334F;
        font-weight: bold;
    }

    .clsGrid tr, .clsGrid td {
        border:none;
        padding: 7px 14px;
    }

    .clsGrid tr:nth-child(even) {
        background-color: #efefef;
    }

    .clsGrid tr:hover {
        background-color: #f9faff;
    }

    .clsGrid tr td, .clsGrid tr td span {
        word-wrap:break-word;
        border-bottom: 1px solid whitesmoke;
        font-size:14px;
    }

        .clsGrid tr td, .clsGrid tr td span sup {
            font-size:14px;
        }

    .clsGrid-LnkBtn {
        background-repeat:no-repeat;
        background-size: 100%;
        display: inline-block;
        width: 26px;
        height: 26px;
    }

        .clsGrid-LnkBtn:hover {
            transform:scale(1.07);
        }

    .clsGrid a {
        text-decoration: none;
        color: #2B334F;
        font-size: 14px;
    } 

     .clsGrid a:hover {
         text-decoration:underline;
    }

/*---form Mozilla---*/
input {
    box-shadow:none;
}

/*-----------------Login-----------------*/

.clsLoginBox {
    position:fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

    .clsLoginBox > div {
        display:none;
        margin-top: 25px;
        height: 0px;
        opacity:0;
        overflow: hidden;
        border: 1px solid #303f4c;
        padding: 15px;
        border-radius: 5px;
    }

    .clsLoginBox input[type=submit] {
        margin-top: 5px;
        border: none;
        outline: none;
        height:35px;
        font-size: 13px;
        font-weight: bold;
        color: #2B334F;
        border-radius: 5px;
        -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        background-color: #44caa5;
        padding: 10px 15px;
        cursor:pointer;
        -webkit-transition: color .9s;
        transition: color .9s;
    }

        .clsProgressBar {
            background: #44caa5 url('/Image/progressbar.gif') no-repeat top left;
            background-size: 100% 100%;
            opacity: 0.5;
        }

        .clsLoginBox input[type=submit]:focus, .clsLoginBox input[type=submit]:hover, .clsLoginBox input[type=submit]:active {
            color:white;
        }

        /*.clsLoginBox > div img {
            display:none;
            width: 268px;
            height: 35px;
            position: absolute;
            border-radius: 5px;
            opacity: 0.4;
            bottom: 13px;
        }*/

    .clsLoginBox p {
        margin-top: 15px;
        text-align: center;
        font-size: 14px;
        color: #ff3884;
    }

    header > img {
        padding: 10px;
        height: 72px;
        margin-top: 6px;
        border: 3px solid white;
        border-radius: 50%;
    }

    .clsSpin {
        -webkit-animation-name: spin;
        -webkit-animation-duration: 4000ms;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-name: spin;
        -moz-animation-duration: 4000ms;
        -moz-animation-iteration-count: infinite;
        -moz-animation-timing-function: linear;
        -ms-animation-name: spin;
        -ms-animation-duration: 4000ms;
        -ms-animation-iteration-count: infinite;
        -ms-animation-timing-function: linear;
    
        animation-name: spin;
        animation-duration: 2000ms;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }
    @-ms-keyframes spin {
        from { -ms-transform: rotate(0deg); }
        to { -ms-transform: rotate(360deg); }
    }
    @-moz-keyframes spin {
        from { -moz-transform: rotate(0deg); }
        to { -moz-transform: rotate(360deg); }
    }
    @-webkit-keyframes spin {
        from { -webkit-transform: rotate(0deg); }
        to { -webkit-transform: rotate(360deg); }
    }
    @keyframes spin {
        from {
            transform:rotate(0deg);
        }
        to {
            transform:rotate(360deg);
        }
    }

    header > div:nth-child(2) {
        opacity:0;
        position: absolute;
        top: 0;
        left: 0;
    }

    header > div:nth-child(2) h2 {
        color: white;
        font-family: 'Lobster', cursive;
        font-size: 50px;
        font-weight: 300;
    }

    header > div:nth-child(2) h3 {
        opacity:0;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        color: whitesmoke;
        font-size: 15px;
        margin-top: -7px;
    }


/*--login textbox--*/

.clstxtBox {
    position:relative;
}

    .clstxtBox input {
        background-color:transparent;   
        color: whitesmoke;
        outline: none;
        padding: 10px 0px;
        width: 265px;
        border: none;
        font-weight: bold;
        border-bottom: 1px dashed #3d4c59;
        transition: all 0.7s;
    }

    .clstxtBox label {
        color:whitesmoke;
        position:absolute;
        top: 11px;
        left: 0px;
        transition: all 0.2s ease-in;
    }

    .clstxtBox input:focus {
        border-bottom:1px solid #44caa5;
    }

    .clstxtBox input:focus span {
        transform: scale(1);
    }

    .clstxtBox input:focus + label {
        font-size: 12px;
        top: -9px;
        left: 0px;
        color: darkgray;
    }

    .clstxtBox input:valid + label {
        font-size: 12px;
        top: -9px;
        left: 0px;
        color: darkgray;
    }

/*-----------------Dashboard-----------------*/

header {
    width: 95%;
    margin: auto;
    margin-top: 30px;
    position: relative;
    margin-bottom: 30px;
}

    header >  div:nth-child(3) p {
        color: white;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding-right: 55px;
        text-align: right;
        font-size: 18px;
        transition:all 0.5s;
    }

        header > div:nth-child(3) p span {
            color: white;
            font-size: 14px;
            display: inline-block;
        }

        header > div:nth-child(3):hover > p {
            opacity:0 !important;
        }

        header > div:nth-child(3):hover > a {
            opacity:0.7 !important;
        }

        header > div:nth-child(3):hover > a:nth-child(2) {
            right: 54px !important;
        }

        header > div:nth-child(3):hover > a:nth-child(3) {
            right: 137px !important;
        }

        header > div:nth-child(3) > a:hover {
            opacity:1 !important;
        }

    header > div:nth-child(3) a {
        display: inline-block;
        opacity:0;
        position: absolute;
        right: 0;
        top: 11px;
        text-decoration: none;
        padding: 20px 0px 20px 0px;
        /*background-color: #24313c;*/
        background-color: transparent;
        transition:all 0.5s;
        padding-left:30px;
    }

        header > div:nth-child(3) a span {
            background-color: white;
            padding: 8px 15px;
            border-radius: 5px;
            color: #24313c;
            font-size: 13px;
            font-weight: bold;
            -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
            -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        header > div:nth-child(3) a span:after {
            top: 50%;
            right: -15px;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-left-color: #ffffff;
            border-width: 8px;
            -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
            transform: translateY(-50%);
        }

.clsContain {
    margin: auto;
    margin-top:20px;
    margin-bottom: 20px;
    width: 95%;
    background-color: white;
    /*-moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);*/
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    position:relative;
}

    .clsContainHeader {
        padding:15px;
        border-bottom:1px solid lightgrey;
    }

        .clsContainHeader a {
            text-decoration: none;
            color: #2B334F;
            display: inline-block;
            padding: 10px;
            border-radius: 20px;
            background-repeat: no-repeat;
            background-size: 38px;
            padding-left: 45px;
            background-position: 0px 0px;
            background-color: whitesmoke;
            margin-right:10px;
            -webkit-transition: all .5s;
            transition: all .5s;
        }

        .clsContainHeader a:first-child {
            background-image: url('/image/add.png');
        }

        .clsContainHeader a:nth-child(2) {
            background-image: url('/image/viewall-back.png');
            background-position-y: 0px;
        }

            .clsContainHeader a:hover {
                padding-left: 10px;
                padding-right: 45px;
                background-position: top right;
            }

    .clsContainBody{
        overflow-x: auto;
    }

        .clsDashboardCard {
            display: inline-block;
            border-right: 1px dashed lightgrey;
            margin: 20px 0px;
        }

            .clsDashboardCard > p:first-child {
                font-size: 16px;
                color: #707070;
                padding: 30px 50px 10px 50px;
                text-align: center;
            }

             .clsDashboardCard > p:nth-child(2) {
                padding: 10px 20px 40px 20px;
                text-align: center;
                font-size: 36px;
                color: #24313C;
            }


        .clsGroupData {
            display:none;
            margin:30px;
        }

            .clsGroupData-Refresh {
                background: url('/image/refresh.png') no-repeat;
                position: absolute;
                right: 18px;
                top: 17px;
                text-decoration: none;
                color: #2B334F;
                display: inline-block;
                padding: 10px;
                border-radius: 20px;
                background-repeat: no-repeat;
                background-size: 38px;
                padding-right: 45px;
                background-position: top right;
                background-color: whitesmoke;
                -webkit-transition: all .5s;
                transition: all .5s;
            }

            .clsGroupData-Refresh:hover {
                padding-left: 45px;
                padding-right: 10px;
                background-position: top left;
            }

            .clsGroupData-Loading {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background-color: rgba(255,255,255,0.8);
            }

                .clsGroupData-Loading img {
                    height: 37px;
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translateY(-50%);
                }

            .clsGroupCard {
                display: inline-table;
                vertical-align:top;
                margin-right: 15px;
                margin-bottom: 15px;
                position: relative;
                box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
                border-radius: 5px;
                background-color: whitesmoke;
                overflow: hidden;
                transition:all 0.3s;
            }

                .clsGroupCardHover:hover {
                    transform:scale(1.1);
                    cursor:pointer;
                }

                .clsGroupCard > div:first-child {
                    padding: 20px;
                    width:140px;
                }

                .clsGroupCard-MakeLeft {
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    border-right: 1px solid lightgrey;
                }

                .clsGroupCard > div:first-child > p:first-child {
                    background-image: url('/image/group.png');
                    background-repeat: no-repeat;
                    background-size: 45px;
                    padding: 5px 0px 30px 53px;
                    font-size: 28px;
                    margin-top: 10px;
                    margin-bottom: 20px;
                    border-bottom: 1px dashed lightgrey;
                }

                .clsGroupCard > div:first-child > p:nth-child(2) {
                    margin-bottom: 2px;
                    font-size: 16px;
                    width: 100px;
                }

                .clsGroupCard > div:first-child > p:nth-child(3) {
                    font-size:10px;
                    color:darkgray;
                }

                    .clsGroupCard > div:first-child > p:nth-child(3) > sup {
                        font-size:10px;
                        color:darkgray;
                    }

                .clsGroupCard > div {
                    display:inline-block;
                }

                .clsGroupCard > div:nth-child(2) {
                    display:none;
                    padding: 0px 0px 0px 140px;
                    border-radius: 5px;
                    min-height:186px;
                }

                    .clsGroupCard > div:nth-child(2) > a:first-child {
                        text-decoration: none;
                        position: absolute;
                        top: 5px;
                        right: 5px;
                        background-image: url('/image/close.png');
                        display: inline-block;
                        height: 26px;
                        width: 26px;
                        background-size: 100%;
                        transition:all 0.1s;
                    }

                        .clsGroupCard > div:nth-child(2) > a:first-child:hover {
                            transform:scale(1.1);
                        }

/*-----------------Side Panel-----------------*/

.clsSidePanel-Title {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 40px;
    color: black;
    padding: 20px;
    opacity: 0.2;
}

.clsSidePanel-Contain {
    margin-top: 10px;
}

    .clsSidePanel-Info {
        display:none;
        margin-top: 3px;
        font-size: 12px;
        color: #3e31ff;
    }

    .clsSidePanel-Error {
        display:none;
        margin-top: 3px;
        font-size: 12px;
        color: #ff3131;
    }

        .clsSidePnl-txtBox {
            position:relative;
        }

        .clsSidePnl-txtBox input {
            background-color: transparent;
            color: #24313c;
            outline: none;
            padding: 10px 0px;
            width: 100%;
            border: none;
            border-bottom: 1px solid lightgrey;
            transition: all 0.7s;
        }

        .clsSidePnl-txtBox label {
            color: darkgrey;
            position: absolute;
            top: 11px;
            left: 0px;
            transition: all 0.2s ease-in;
        }

        .clsSidePnl-txtBox input:focus {
            border-bottom:1px solid #24313c;
        }

        .clsSidePnl-txtBox input:focus span {
            transform: scale(1);
        }

        .clsSidePnl-txtBox input:focus + label {
            font-size: 12px;
            top: -9px;
            left: 0px;
            color: darkgray;
        }

        .clsSidePnl-txtBox input:valid + label {
            font-size: 12px;
            top: -9px;
            left: 0px;
            color: darkgray;
        }

    .clsSidePnl-Radio {
        display:none;
    }

        .clsSidePnl-Radio + label {
            width:49%;
            color: #24313c;
            display: inline-block;
            padding: 5px 10px;
            background-color: white;
            border-radius: 5px;
            text-align: center;
            background-image: url('/image/ok.png');
            background-size: 22px;
            background-repeat: no-repeat;
            background-position: 3px 30px;
            transition: all 0.3s;
            cursor:pointer;
        }

        .clsSidePnl-Radio:checked + label {
            background-position: 3px 3px;
        }

.clsSidePanel-Controls {
    margin-top:40px;
}

.clsSidePnl-Button {
    display:block;
    text-decoration:none;
    text-align:center;
    width: 100%;
    margin-top: 5px;
    outline: none;
    border-radius: 5px;
    background-color: transparent;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: color .9s;
    transition: all .3s;
    border: 1px solid darkgrey;
    background-size: 30px;
    background-repeat:no-repeat;
    background-position:center 40px;
}

    .clsSidePnl-Button > span {
        font-size: 13px;
        font-weight: bold;
        color: #24313c;
        transition: all .3s;
    }

    .clsSidePnl-Button:hover, .clsSidePnl-Button:active, .clsSidePnl-Button:focus {
        background-position:center 5px;
    }

    .clsSidePnl-Button:hover > span, .clsSidePnl-Button:active > span, .clsSidePnl-Button:focus > span {
        opacity:0;
    }

.clsCopyLnk {
    background-color: whitesmoke;
    color: #24313c !important;
    padding: 3px 7px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
    font-size: 12px;
}