#error_msg{
    color: red;
    font-weight: 400;
}

.modal-header, h4, .close,.footer_blue {
    background-color: #086AB5;
    color:white !important;
    text-align: center;
    font-size: 22px;        
}
.modal-title{
    text-transform: uppercase;
}

.bold_text{
    font-weight: bold;
}
.p1{
    margin: 5px 0px;
}

label {
  display: block;
  position: relative;
/*  margin: 40px 0px;*/
  margin: 25px 0px;
}
input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none;
}
select {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none; 
}

.line-box {
  position: relative;
  width: 100%;
  height: 2px;
  background: #BCBCBC;
}

.line {
  position: absolute;
  width: 0%;
  height: 2px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #337AB7;
  transition: ease .6s;
}

input:focus + .line-box .line {
  width: 100%;
}
select:focus + .line-box .line {
  width: 100%;
}
.label-txt {
  position: absolute;
  top: -1.6em;
  padding: 10px;
  font-family: sans-serif;
  font-size: .8em;
  letter-spacing: 1px;
  color: rgb(120,120,120);
  transition: ease .3s;
  
}

.label-active {
  top: -3em;
}

.hr_style_2 { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #337AB7, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #337AB7, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #337AB7, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #337AB7, #f0f0f0); 
}
.hr_style { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

//button
a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  color: #337AB7;
  font-size:14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  border-radius: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
a.animated-button:link:after, a.animated-button:visited:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  -webkit-transition: all 0.75s ease 0s;
  -moz-transition: all 0.75s ease 0s;
  -o-transition: all 0.75s ease 0s;
  transition: all 0.75s ease 0s;
}
a.animated-button:link:hover, a.animated-button:visited:hover {
  color: #FFF;
  text-shadow: none;
}
a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
  height: 450%;
}
a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
/*  margin: 20px auto 0;*/
  padding: 14px 15px;
/*  padding: 5px 5px;*/
/*  color: #fff;*/
  color: #337AB7;
  font-size:14px;
  border-radius: 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

a.animated-button.victoria-four {
/*  border: 2px solid #D24D57;*/
  border: 2px solid #337AB7;
}
a.animated-button.victoria-four:after {
/*  background: #D24D57;*/
  background: #337AB7;
  opacity: .5;
  -moz-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
a.animated-button.victoria-four:hover:after {
  opacity: 1;
  height: 600% !important;
}

//my
.small_button_padding{
     padding: 5px 5px;
}

//checkbox

/* The  container_check */
.container_check {
    z-index: -1;
    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_check 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_check:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_check 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_check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container_check .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);
}

//
a.button_radius{
   border-radius: 0px;
   font-weight: bold;
}
a.button_radius:hover {
    background-color: #337AB7;
    color: #ffffff;
}

.visible{
    display: block;
}
.hide{
    display: none;
}

.error_background{
   background-color: #F2DEDE !important; 
   color: red !important;
}

.success_background{
    background-color: #2196F3 !important; 
    color: blue !important;
}

.strong_text{
    margin-top: 30px;
    margin-bottom: 30px;
    
}

.clienttable_data{
    /*font-size: 40px;*/
}

.clienttable_data:hover{
    border-bottom: 1px solid blue;
    color: blue;
}