@import "bourbon";

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700);
@import url(https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css);

$shadow-color: #23203b;
$input-color: lighten(#AB9E95, 10%);
$input-border-color: #5E5165;
$button-background-color: #27AE60;

//color1 #005bac
//color2 #428bca  #71a3ce
//color3 #ff9100



//table_color #eaf6fc #fcf9ca #71a3ce
//#9fc7b2


#eaf6fc
#c95560

#f9c27a

html {
  background: url(https://dl.dropboxusercontent.com/u/159328383/background.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  //background: transparent linear-gradient(#eaf6fc, white);
  background: transparent;

}

hr {
	matgin-top: 5px;
}

body, input, button {
  font-family: 'Source Sans Pro', sans-serif;
}

.content{
	margin: 14px 0 10px 0;
padding: 0 10px 10px 50px;
text-align: left;
}


@mixin normalize-input {
  display: block;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  border-radius: 0px;
}

.login {
  padding: 15px;
  width: 400px;
  min-height: 400px;
  margin: 2% auto 0 auto;

  .heading {
    text-align: center;
    margin-top: 1%;

    h2 {
      font-size: 3em;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.7);
      display: inline-block;
      padding-bottom: 5px;
      text-shadow: 1px 1px 3px $shadow-color;
    }
  }

  form {
    .input-group {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 1px solid rgba(255, 255, 255, 0.1);

      &:last-of-type {
        border-top: none;
      }

      span {
        background: transparent;
        min-width: 53px;
        border: none;

        i {
          font-size: 1.5em;
          color: rgba(255, 255, 255, 0.2);
        }
      }
    }

    input.form-control {
      @include normalize-input;

      padding: 10px;
      font-size: 1.6em;
      width: 100%;
      background: transparent;
      color: $input-color;

      &:focus {
        border: none;
      }
    }

    button {
      margin-top: 20px;
      background: $button-background-color;
      border: none;
      font-size: 1.6em;
      font-weight: 300;
      padding: 5px 0;
      width: 100%;
      border-radius: 3px;
      color: lighten($button-background-color, 40%);
      border-bottom: 4px solid darken($button-background-color, 10%);

      &:hover {
        background: tint($button-background-color, 4%);
        -webkit-animation: hop 1s;
        animation: hop 1s;
      }
    }
  }
}

.float {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.float:hover, .float:focus, .float:active {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* Large Devices, Wide Screens */

@media only screen and (max-width : 1500px) {
}

@media only screen and (max-width : 1200px) {
  .login {
    width: 600px;
    font-size: 2em;
  }
}

@media only screen and (max-width : 1100px) {
  .login {
    margin-top: 2%;
    width: 600px;
    font-size: 1.7em;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .login {
    margin-top: 1%;
    width: 550px;
    font-size: 1.7em;
    min-height: 0;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .login {
    margin-top: 0;
    width: 500px;
    font-size: 1.3em;
    min-height: 0;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  .login {

    h2 {
      margin-top: 0;
    }

    margin-top: 0;
    width: 400px;
    font-size: 1em;
    min-height: 0;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
  .login {
    margin-top: 0;
    width: 200px;
    font-size: 0.7em;
    min-height: 0;
  }
}

.submit_div{

    margin-top: 20px;
}


input[type="submit"]{
  width:100%;
  background:#ff9100;
  border:0;
  padding:4%;
  font-family:'Open Sans',sans-serif;
  font-size:100%;
  color:#fff;
  cursor:pointer;
  transition:background .3s;
  -webkit-transition:background .3s;
}

input[type="submit"]:hover{
  background:#f9c27a;
}

// background:#53B9A8;


/* header ************************************************/
.header {
	color: gray;
	font-size: 16px;
	text-align: center;
	height: 75px;
	position: relative;
	overflow: hidden;
}

.header-top {
	float: right;
	width: 180px;
}
.header-top-right {
	padding-right: 0px;
	float: right;
	width: 350px;
}
.header-top-left {
	margin-left: 20px;
	padding-left: 10px;
	padding-right: 20px;
	float: left;

	height: 50px;

	background-image: url('/img/logo.png');
	background-repeat:no-repeat;
	background-size:55%;

}

.headerlogo {
	width: 100%;
	text-align: center;
}



ul#tab {
	zoom: 1;
	border-bottom: 3px solid #005bac;
	list-style: none;
	margin: 0 auto;
	padding: 0;

}
ul#tab:after { content:"."; display: block; height:0px; clear:both; line-height:0; visibility:hidden; }
ul#tab li {
	background: #eaf6fc;
	float: left;
	text-align: center;
}
ul#tab li:last-child {
//	background: none;
}
ul#tab li a {
	display: block;
	width: 138px;
	padding: 8px 0;
	text-decoration: none;
	color: #222;
    border: 1px solid #005bac;
	color: black;
}
ul#tab li a:hover {
	background: #428bca;
	color: #fff;
}
ul#tab li.active,
ul#tab li.active a,
ul#tab li.active a:hover {
	background: #c81528;
	color: #fff;
}

ul#tab li.selected {
	background: #005bac;
	color: #fff;
}

ul#tab li.selected a{
	color: #fff;
}


table {
    *border-collapse: collapse; /* IE7 and lower */
    border-spacing: 0;
}
th:first-child {
    -moz-border-radius: 6px 0 0 0;
    -webkit-border-radius: 6px 0 0 0;
    border-radius: 6px 0 0 0;
}

th:last-child {
    -moz-border-radius: 0 6px 0 0;
    -webkit-border-radius: 0 6px 0 0;
    border-radius: 0 6px 0 0;
}
.bordered
{
    padding: 5px;
    margin: 15px;
     border-collapse: collapse;
     border: 1px solid #005bac;
     background-color: #eaf6fc;
}
.bordered th
{
     padding: 5px;
     border-bottom: 3px double #005bac;
     background-color: #71a3ce;
     text-align: left;
}
.bordered td
{
     padding: 5px;
     margin:5px;
     text-align: left;
}
.bordered tr
{
     border-bottom: 1px dotted #005bac;
}

.table_button{
     border: none;
}
.table_button tr{
     border: none;
}


.bordered tr:hover
{
    background: #fbf8e9;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.highlight
{
  background: #fbf8e9;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.zebra tbody tr:nth-child(even) {
    background: #f5f5f5;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.alternate {
    background: #f5f5f5;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
    -moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.card_select_div{
	margin: 20px 0px;
	display: -webkit-flex;
	display: flex;
	//-webkit-justify-content: space-between;
	//justify-content: space-between;
	text-align:left;
}
.button_middle{
    padding: 15px;
    margin-left: 100px;
     border-collapse: collapse;
     border: 1px solid #005bac;
}

ul.flexbox {
    display:flex;
    width:700px;
}
ul.flexbox li {
    width:400px;
    list-style-type:none;
    border-left:1px solid white;
    text-align:center;
}

ul.flexbox li.texts {
    width:250px;
    list-style-type:none;
    border-left:1px solid white;
    text-align:left;
}

ul.flexbox li.texts {
    width:250px;
    list-style-type:none;
    border-left:1px solid white;
    text-align:left;
}

.error_div{
        background-color:#FFEFEF;
        margin:10px 40px 10px 10px;
        padding:10px 40px 10px 40px;
        color:#C25338;
        border:1px solid #D4440D;
        line-height:1.5;
        clear:both;
        background-repeat:no-repeat;
        background-position:5px 5px;
        min-height:58px;
 }
.error_div span{
	background: url('/img/errors.png');
        //filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/img/errors.png', sizingMethod='scale');
        width:48px; height:48px;
        position:relative;
        top:-5px; left:-30px;
        display:block;
        text-indent:-9999px;
        float:left;
 }