﻿body {
}

.pageWrapper {
    width: 100%;
}

.header {
    font-size: 20px;
    text-align: center;
    color: #ff5722;
}

/*.headerSmall {
    font-size: 14px;
    text-align: center;
    color: #ff5722;
}*/

.rowSpace {        
    height: 20px;
}

.row {
    clear: both;
}

/*used inside tab panel*/
.itemRow {
    clear: both;
    /*padding-left: 0px;*/
}


.hidden {
    display: none;
}

/*columns type1 to 4 may need bottom margin to display validation message*/

/*normal*/
.colType1 {
    float: left;
    width: 25%; /*23*/
    /* margin: 10px 10px 0px 10px;  
    padding: 0px 25px 0px 5px;*/ /*old code*/
    padding: 10px 25px 0px 10px;
}

/*2 columns merged*/
.colType2 {
    float: left;
    width: 50%; /*48*/
    /* margin: 10px 10px 0px 10px;*/
    padding: 10px 25px 0px 10px;
}

/*3 columns merged*/
.colType3 {
    float: left;
    width: 73%;
    margin: 10px 10px 0px 10px;
    padding: 0px 25px 0px 5px;
}

/*4 columns merged*/
.colType4 {
    float: left;
    width: 100%;
    /* margin: 10px 10px 0px 10px;*/
    /*padding: 0px 10px 0px 0px;*/
    padding: 10px 25px 0px 10px;
}

/*tbx div inside main div*/
.colType5 {
    float: left;
    width: 93%; 
    margin: 0px 2% 0px 0px;
}

/*btn div inside main div*/
.colType6 {
    float: left;
    width: 5%;
    margin: 10px 0px 0px 0px;   /*10px margin is to center align the control kept next to it*/
}

/*div with 15% width*/
.colType7 {
    float: left;
    width: 13%;
    margin: 10px 2% 0px 0px;
}

/*div with 85%*/
.colType8 {
    float: left;
    width: 83%;
    margin: 10px 2% 0px 0px;
}

/*div with 25% and no top margin*/
.colType9 {
    float: left;
    width: 23%;
    margin: -10px 0px 0px 10px;
}



/*operation btn div*/
.btnColType1 {
    float: left;
    width: 10%;
    margin: 10px 10px 0px 10px;
}

/*wider btn div*/
.btnColType2 {
    float: left;
    width: 30%;
    margin: 10px 10px 0px 10px;
}

/*wider btn div (in reports)*/
.btnColType3 {
    float: left;
    width: 50%;
    margin: 10px 10px 0px 10px;
}

/*columns type1 to 4 can be used as a outer container where padding/margin is not req*/

/*normal*/
.shellColType1 {
    float: left;
    width: 25%;    
}

/*2 columns merged*/
.shellColType2 {
    float: left;
    width: 50%;    
   /* border-style: solid;*/
}

/*3 columns merged*/
.shellColType3 {
    float: left;
    width: 73%;    
}

/*4 columns merged*/
.shellColType4 {
    float: left;
    width: 100%;
}

.emptyCol {   
    height: 50px;
}

/*To create shapes*/
.dot {
    margin: -0.4rem 0 -0.4rem 0;
    height: 20px;
    width: 20px;
    background-color: #32CD32;
    border-radius: 50%;
    display: inline-block;
    /*border: 1px solid red;*/
}

.gridCellText {
    /*border: 1px solid red;*/
    vertical-align: middle;
    display: inline-block;
    /*margin-bottom: 10px;*/
}

/*For div text to display as label*/
.labelText {
    color: #ff5722;
}

/*For textbox placeholder to display as label*/
#tbx .dx-texteditor div.dx-placeholder {
    top: -15px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
    display: block !important;
    font-size: 0.8em;       
    transition: 0.3s ease all;
    color: #ff5722;
}

#tbx .dx-texteditor .dx-texteditor-input {
    padding: 7px 9px 0px !important;
}

#tbx .dx-texteditor-empty .dx-texteditor-input {
    padding: 7px 9px 8px !important;
}

#tbx .dx-texteditor-empty div.dx-placeholder {
    position: absolute;
    top: 0px;
    left: 10px;
    max-width: 100%;
    width: auto;
    height: 100%;
    text-align: left;
    cursor: text;
    pointer-events: none;
    font-size: 1em;
    color: gray;
}