﻿.tableprint>tbody>tr>td, .tableprint>tbody>tr>th, .tableprint>tfoot>tr>td, .tableprint>tfoot>tr>th, .tableprint>thead>tr>td, .tableprint>thead>tr>th {
	padding: 5px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #ddd
}

.tableAccStatement
{  width: 100%;
     max-width: 100%;
         margin-bottom: 20px;
         border-spacing: 0;
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
}
 table
 {
       border: 0px solid #ddd;
 }
.tableAccStatement > tbody > tr > td,  .tableAccStatement > tfoot > tr > td,  .tableAccStatement > thead > tr > td
{   
       
    padding: 5px;
    line-height: 1.42857143;
    vertical-align: top;
   
    border: 0px solid #000000;
    font-weight: normal;
    color: #000000;
}
.tableAccStatement > tbody > tr > th, .tableAccStatement > tfoot > tr > th, .tableAccStatement > thead > tr > th
{
    padding: 5px;
    line-height: 1.42857143;
    vertical-align: top;
    font-weight: normal;
    color: #000000;
    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: #000000;
    background-color: #CCC;
}
.tableAccStatement .tableAccStatementGrpHeader
{
    font-weight: bold;
}
.tableAccStatement .tableAccStatementGrandFooter
{
    border-style: solid;
    border-width: 2px 0px 2px 0px;
    border-color: #000000;
    font-weight: bold;
}

.tableAccStatement .tableAccStatementGrpFooter
{
    border-style: solid;
    border-width: 2px 0px 0px 0px;
    border-color: #000000;
    font-weight: bold;
}
.tableAccStatement .tableAccStatementGrpFooter2
{
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #000000;
    font-weight: bold;
}
.norowhorizontalborder > tbody > tr > td
{
    border-color: #FFFFFF #000000 #FFFFFF #000000;
}
.vrajHideColumn
{
    padding: 0px;
    margin: 0px;
    display: none;
    font-size: 1px;
    color: #00FFFF;
    background-color: #FFFFFF;
    overflow: hidden;
    visibility: hidden;
}
.vrajColumnSmallButton
{
    padding: 0px;
    margin: 0px;
    width: 20px;
    text-align: center;
    vertical-align: middle;
}
.vrajColumnRowNumberFormat
{
    padding: 0px;
    margin: 0px;
    width: 40px;
    text-align: right;
    vertical-align: middle;
}
.vrajColumnRowNumberFormatBig
{
    padding: 0px;
    margin: 0px;
    min-width: 40px;
    width:auto;
    text-align: right;
    vertical-align: middle;
}
.responsive-invisibility tr th td
{
    display: none !important;
}
.grdLink
{
    cursor: pointer;
}
.vrajHighlightBoldColor
{
    font-size: 22px;
    color: #FF0000;
    font-weight: bold;
}
.vrajReportFooterBold
{
    font-weight: bold;
    color: #FF0000;
    font-size: 16px;
}
.completionList
{
    border-style: solid none solid solid;
    border-width: 1px;
    border-color: Gray;
    margin: 0px;
    padding: 1px;
    height: auto;
    max-height: 250px;
    overflow: scroll;
    background-color: white;
    z-index: 1051;
}


.completionListBig
{
    min-width: 700px;
}
.completionListMedium
{
    min-width: 400px;
}
.completionListItem
{
    background-color: window; /* color: windowtext;*/
    padding: 1px;
}
.completionListItemHighlight
{
    background-color: #333399;
    color: #FFFFFF;
    padding: 1px;
}
.completionListTable
{
    padding: 0px;
    border-color: Black;
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    overflow: hidden;
    display: block;
    max-height: 15px;
    font-weight: bold;
}

.completionListTable-sm-2
{
    width: 16.67%;
    overflow: hidden;
}
.completionListTable-sm-4
{
    width: 33.33%;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.completionListTable-sm-1
{
    width: 8.33%;
    overflow: hidden;
}
.completionListTable:hover, .completionListTable:focus
{
    background-color: #333399;
    color: #FFFFFF;
}
.InvoiceCustomerName
{
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    padding: 0px;
    margin: 0px;
}
.thAlignRight
{
    text-align: right;
}
.thAlignCenter
{
    text-align: center;
}
.vrajResponseImage
{
    max-width: 200px;
    max-height: 150px;
    min-height: 150px;
}
.vrajResponseImagecarousel
{
    max-height: 340px;
}



/* Customize the label (the container) */
.containercheckbox
{
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.containercheckbox input
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark
{
    position: absolute;
    border: 2px solid rgba(0,0,0,.54);
    border-radius: 2px;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
}

/* On mouse-over, add a grey background color */
.containercheckbox:hover input ~ .checkmark
{
    background-color: #FFFFFF;
}

/* When the checkbox is checked, add a blue background */
.containercheckbox input:checked ~ .checkmark
{
    background-color: #009688;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after
{
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containercheckbox input:checked ~ .checkmark:after
{
    display: block;
}

/* Style the checkmark/indicator */
.containercheckbox .checkmark:after
{
    left: 5px;
    top: 0px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modalprogress
{
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.centerprogress
{
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
    background-color: black;
    border-radius: 10px;
    filter: alpha(opacity=50);
    opacity: 1;
    -moz-opacity: 1;
}
.centerprogress img
{
    height: 128px;
    width: 128px;
}
  .lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btnSmallNormal
{ 
     background-color: #66CCFF; 
}

.pnlGridStyle
{
    height: auto;
    max-height: 20%;
    overflow: scroll;
}
.CartButton
{
    border: 2px solid transparent;
     border-radius: 20px;
  -webkit-transition: 0.2s all;
}

@media screen{
    .no-screenshow
    {
        display:none;
    }
}

.imgLogin
{
    height: auto;
    max-height:50px;
} 

.profileViewBold
{
    font-weight: bold;
}
.profileViewNormal
{
    font-weight: normal;
}
.textboxVrajRound
{
    border-radius: 10px;
  border: 1px solid #0073b7;
  padding: 2px;
  width: 200px;
  
}

 .disabled {
        opacity: .5;   
        pointer-events: none;
        cursor:  not-allowed;
    }
    .disabled:hover {
        cursor:  not-allowed;
    }