﻿@font-face {
  font-family: 'FontAwesome';
  src: url('font-awesome/fontawesome-webfont.eot?v=4.3.0');
  src: url('font-awesome/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('font-awesome/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('font-awesome/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('font-awesome/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('font-awesome/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* setup button icon */
/*[class^="icon-"], [class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("../img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

.icon-chevron-right {
  background-position: -456px -72px;
}*/

.icon-aswesome {
    position: relative;
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.arrow-circle-right:before {
    content: "\f0a9";
    padding-left: 5px; 
}

.exclamation-triangle:before {
    content: "\f06a"; 
}

.chevron-circle-left:before {
  content: "\f137";
}

.color-white {
    padding-right: 5px; 
    font-size : 14px;
    color     : white;
}

/* Button */
.btn {
    display: inline-block;
    border:none;
    display: inline;
    padding: 4px 12px;
    margin-bottom: 0;
    *margin-left: .3em;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    *background-color: #e6e6e6;
    background-repeat: repeat-x;
    *-webkit-border-radius: 4px;
        -moz-border-radius: 4px;
             border-radius: 4px;
    zoom: 1;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
    outline:none;
    color: #333333;
    background-color: #e6e6e6;
    *background-color: #d9d9d9;
}

.btn:active,
.btn.active {
  background-color: #cccccc;
}

.btn:first-child {
  *margin-left: 0;
}

.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

.btn:focus {
  outline: none;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

/* Button - Success or button green */
.btn-success {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #5bb75b;
    *background-color: #51a351;
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    border-left-color: #51a351;
    border-right-color: #51a351;
    border-top-color: #51a351;
    border-bottom-color: #387038;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #ffffff;
  background-color: #51a351;
  *background-color: #499249;
  outline:none;
}

.btn-success:active,
.btn-success.active {
  background-color: #408140;
}

/* Button - Infor or button blue */
.btn-info {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #49afcd;
    *background-color: #2f96b4;
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
    border-left-color: #2f96b4;
    border-right-color: #2f96b4;
    border-top-color: #2f96b4;
    border-bottom-color: #1f6377;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  color: #ffffff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}

.btn-info:active,
.btn-info.active {
  background-color: #24748c;
}

/* Button - Blue or button blue */
.btn-primary {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #006dcc;
    *background-color: #0044cc;
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #0088cc, #0044cc);
    border-left-color: #0044cc;
    border-right-color: #0044cc;
    border-top-color: #0044cc;
    border-bottom-color: #002a80;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
    color: #ffffff;
    background-color: #0044cc;
    *background-color: #003bb3;
}

.btn-primary:active,
.btn-primary.active {
    background-color: #003399;
}

/* Button - Red or button error */
.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  *background-color: #bd362f;
  background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
    border-left-color: #bd362f;
    border-right-color: #bd362f;
    border-top-color: #bd362f;
    border-bottom-color: #802420;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  color: #ffffff;
  background-color: #bd362f;
  *background-color: #a9302a;
}

.btn-danger:active,
.btn-danger.active {
  background-color: #942a25;
}

/* Checkbox */
.chk-s1-01 {
    padding-left:20px;
}
.chk-s1-01 input[type="checkbox"] {
    display:none;
}
.chk-s1-01 label {
    position: relative;
    padding-left: 5px; 
}
.chk-s1-01 input[type="checkbox"]:focus + label::before {
    outline:none;
}
.chk-s1-01 input[type="checkbox"]:checked + label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}
.chk-s1-01 label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 13px;    height: 13px;
    margin-left: -20px;
    margin-top: 1px;
    left: 0;
    border: 1px solid #cccccc;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.chk-s1-01 label::after {
    display: inline-block;
    position: absolute;
    width: 13px;        height: 13px;
    margin-top: 1px;    margin-left: -22px;
    left: 0;
    top: 0;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 13px;
    color: #555555; 
}
.chk-s1-01 input[type="checkbox"]:disabled + label {
    opacity: 0.65; 
}
.chk-s1-01 input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; 
}
.chk-s1-01-blue input[type="checkbox"]:checked + label::before{
    background-color: #6495ED;
    border-color: #6495ED; 
}
.chk-s1-01-blue input[type="checkbox"]:checked + label::after{
    color: #fff;
}

/* ----- Textbox with image (Login) ----- */
.textbox-user {
    background: white url(../img/asp_login_icon_username.png) left no-repeat;
}

.textbox-pass {
    background: white url(../img/asp_login_icon_locker.png) left no-repeat;
}

input[type="text"].l_img_txt, input[type="password"].l_img_txt {
    padding: 10px 10px 10px 48px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
}

input[type="text"].l_img_txt:focus,     input[type="text"].l_img_txt.focus,
input[type="password"].l_img_txt:focus, input[type="password"].l_img_txt.focus {
  border: solid 1px grey;
  box-shadow: 0 0 5px 1px lightgrey;
}

input[type="text"].l_txt {
    padding: 10px 10px 10px 10px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
}

input[type="text"].l_txt:focus,     input[type="text"].l_txt.focus {
  border: solid 1px grey;
  box-shadow: 0 0 5px 1px lightgrey;
}

/* ----- Normal textbox ------ */
input[type="text"].nor_txt, input[type="password"].nor_txt, textarea.nor_txt {
    padding: 4px 4px 4px 4px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    resize:none;
}

input[type="text"].nor_txt:focus,     input[type="text"].nor_txt.focus, 
input[type="password"].nor_txt:focus, input[type="password"].nor_txt.focus, 
textarea.nor_txt:focus, textarea.nor_txt.focus {
  border: solid 1px grey;
  box-shadow: 0 0 5px 1px lightgrey;
}

/* ----- search textbox ------ */
input[type="text"].txt_with_icon, input[type="password"].txt_with_icon {
    padding: 4px 44px 4px 4px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
    resize:none;
    width: 150px;
}

input[type="text"].txt_with_icon:focus, input[type="text"].txt_with_icon.focus {
  border: solid 1px grey;
  box-shadow: 0 0 5px 1px lightgrey;
}

.icon_search {
    cursor:pointer; 
    position:relative;
    float:left;
}
.icon_search:before {
    content: "\f002";
    font-family: 'FontAwesome';
    position: absolute;
    height:18px;
    width:25px;
    text-align:center;
    top: 2px;
    right: 2px;
    background-color:#006dcc;
    padding:2px;
    color:white;
}

/* File Upload */
.nor_upload{

}

/* Link */
.lbllink {
    color  : blue;
    cursor : pointer;
}

/* ----- Dropdown list ----- */
select.nor_ddl {
    padding: 3px 3px 3px 3px;
    border: solid 1px #dcdcdc;
    transition: box-shadow 0.3s, border 0.3s;
}

/*select.nor_ddl option {
    height:50px;
}*/

select.nor_ddl:focus, select.nor_ddl.focus {
  border: solid 1px grey;
  box-shadow: 0 0 5px 1px lightgrey;
}
