﻿ body 
 {
     background:white url('../../../Content/imageLib/Background1.gif');
 }

#divHeaderTitle 
{
    background-color:#41a867;
    background-image:url('../../imageLib/watermark1.png');
    background-position:right;
    background-repeat:no-repeat;
}

 /* The container */
 .container {
     display: block;
     position: relative;
     padding-left: 35px;
     margin-bottom: 12px;
     cursor: pointer;
     font-size: 22px;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
 }

 /* Hide the browser's default checkbox */
 .container input {
     position: absolute;
     opacity: 0;
     cursor: pointer;
 }

 /* Create a custom checkbox */
 .checkmark {
     position: absolute;
     top: 0;
     left: 0;
     height: 25px;
     width: 25px;
     background-color: #eee;
 }

 /* On mouse-over, add a grey background color */
 .container:hover input ~ .checkmark {
     background-color: #ccc;
 }

 /* When the checkbox is checked, add a blue background */
 .container input:checked ~ .checkmark {
     background-color: #2196F3;
 }

 /* Create the checkmark/indicator (hidden when not checked) */
 .checkmark:after {
     content: "";
     position: absolute;
     display: none;
 }

 /* Show the checkmark when checked */
 .container input:checked ~ .checkmark:after {
     display: block;
 }

 /* Style the checkmark/indicator */
 .container .checkmark:after {
     left: 9px;
     top: 5px;
     width: 5px;
     height: 10px;
     border: solid white;
     border-width: 0 3px 3px 0;
     -webkit-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     transform: rotate(45deg);
 }

 .tdLabel 
 {
     font-weight:600;
     color:#485273;
 }

 .lbl-rg-il 
 {
     padding-top:1em;
     padding-bottom:0.3em;
     display:none;
 }

 .txtRegInfo 
 {
     font-size:1.2em;
     padding:0.5em;
     border:1px solid #ccc;
     width:calc(100% - 30px);
     border-radius:3px;
 }

 .txtRegInfo:focus
 {
     background-color:#bbddf9;
 }

 input[type='button'], .btn
 {
     color: #333333;
     line-height: 20px;
     font-size:1.2em;
     padding: 6px 15px 6px 15px;
     margin-bottom: 0px;
     border-top-color: rgba(0,0,0,0.1);
     border-right-color: rgba(0,0,0,0.1);
     border-bottom-color: #b3b3b3;
     border-left-color: rgba(0,0,0,0.1);
     border-width: 1px;
     border-style: solid;
     border-radius: 4px;
     cursor: pointer;
     background-image: linear-gradient(rgb(255, 255, 255), rgb(230, 230, 230));
 }

 input[type='button']:hover, .btn:hover
 {
     box-shadow:
         inset 0 1px 0 rgba(255,255,255,0.3),
         inset 0 -10px 10px rgba(0,0,0,0.1);
 }

 .btn-green
 {
     color: white !important;
     background-image: linear-gradient(#62c462, #51a351) !important;
 }

 .btn-blue
{
    color: white !important;
    background-image: linear-gradient(#0088cc, #0044cc) !important;
}

 .btn-orange
{
    color: white !important;
    background-image: linear-gradient(#fbb450, #f89406) !important;
}

.divSubmitLoadingModal 
{
    width:100%;
    height:100vh;
    top:0px;
    position:fixed;
    background:rgba(5, 52, 7, 0.6);
    display:none;
}

.divLoaderWrap 
{
    width:20em;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    background-color:white;
    top:calc(50% - 120px);
    left:calc(50% - 150px);
    position:absolute;
    border-radius:6px;
    padding:1em;
}

.btn-file 
{
    overflow: hidden !important;
    position: relative;
    display: inline-block;
    text-align: center;
    height: 1.7em;
    width: 3.5em;
    text-align:center;
    padding-top:0.3em;
    border:1px solid #d6d6d6;
    border-radius:2px;
    background-color:white;
    vertical-align:top; /*align div to textbox*/
}

.btn-file:hover
{
    background-color:#ffffd2;
}

.btn-file > input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translate(-300px, 0) scale(4);
    font-size: 23px;
    direction: ltr;
    cursor: pointer;
}

/*for tablets*/
@media screen and (max-width:959px) {
    
}

/*for phones*/
@media screen and (max-width:640px) {
    
}

@media screen and (max-width:500px) {
    .td-rg-il 
    {
        display:none;
    }

    .lbl-rg-il 
    {
        display:block;
    }
}

/*smallest screen for phones*/
@media screen and (max-width:320px) {
    
}