/*######################### Fuentes ###################################3*/


@font-face {
  font-family: 'ITCAvantGardeGothicStdBold';
  src: url('fonts/itcavantgardestd-bold-webfont.woff');
  font-weight: normal;
  font-style: normal;
  -webkit-text-stroke: 25px;
  -webkit-font-smoothing: none;
}

@font-face {
  font-family: 'ITCAvantGardeGothicStdDemi';
  src: url('fonts/itcavantgardestd-demi-webfont.woff');
  font-weight: normal;
  font-style: normal;
  -webkit-text-stroke: 25px;
  -webkit-font-smoothing: none;
}

@font-face {
  font-family:'ITCAvantGardeGothicStdBook';
  src: url('fonts/itcavantgardestd-bk-webfont.woff');
  font-weight: normal;
  font-style: normal;
}


/******** INIT ***********/
html{
    font-family: 'ITCAvantGardeGothicStdBook';
}



/*********************************/


.new-login, .new-login *{
  box-sizing:border-box;
}
.new-login{
  font-size: 0; /*remove whitspace*/
}
.new-login > div{
  font-size: 14px;
}

/********* blocks **********/
/**** Login vertical ****/
.new-login.new-login--vertical{
  width: 250px;
  padding:10px;
}
.new-login.new-login--vertical .new-login__title{
  margin-bottom: 10px;
}

.new-login.new-login--vertical .new-login__leftpart, .new-login.new-login--vertical .new-login__rightpart{
  display: inline-block;
  vertical-align: top;
}
.new-login.new-login--vertical .new-login__leftpart{
  margin-right: 10px;
}
.new-login.new-login--vertical .new-login__form{
  margin-bottom: 10px;
}

.new-login.new-login--vertical .new-login__link{
  margin-bottom: 10px;
}

/******** login horizontal *************/
.new-login.new-login--horizontal{
  /*height: 50px;*/
  width:420px;
  padding:10px;
}
.new-login.new-login--horizontal .new-login__form-wrap, .new-login.new-login--horizontal .new-login__btn.new-login__btn--small{
  display: inline-block;
  vertical-align: top;
}
.new-login.new-login--horizontal .new-login__form-wrap{
  margin-right: 5px;
}



/*******ELEMENTS**********/

.new-login__title{
  display:block;
  text-transform: uppercase;
  /*color:#f6960c;*/
  color:#ed8415;
  font: 14px "ITCAvantGardeGothicStdDemi",Verdana ;
}
.new-login__form{
  display: table;
}


.new-login__form__icon{
  display: table-cell;
  height: 30px;
  width:30px;
  border-radius: 5px 0 0 5px;
  border:1px solid #eab4b4;
  color: #ae6701;
  background-color: #f6960c;
  line-height: 28px;
  text-align: center;
}
.new-login__form__input{
  display: table-cell;
  height: 30px;
  border:1px solid #ddd;
  border-left: none;
  color:#888;
  width: 150px;
  font-size: 12px;
  border-radius: 0 5px 5px 0;
  padding:0 5px;
  font-family: 'ITCAvantGardeGothicStdBook';
}

.new-login__btn{
  background-color: #f6960c;
  border-radius: 5px;
  color:white;
  cursor:pointer;
  text-align: center;
}

.new-login__btn:active{
  background-color: #d07a00;

}


.new-login__btn--small{
  height: 30px;
  width:30px;
  line-height: 30px;
}
.new-login__btn--big{
  height: 70px;
  width:40px;
  line-height: 70px;
}

.new-login__link{
  color:  #aaa;
  text-align: center;
  display: block;
  text-decoration: underline;
  font-size: 12px;
}

.new-login__link:hover{
  color:  #ccc;
}
.new-login__link:active{
  color:  #444;
}
/******** Error panel ***********/

div.new-login__error{
  width:100%;
  border-radius: 5px;
  padding: 6px;
  background-color: #FFDDDD;
  color: #B94A48;
  border:1px solid #da9594;
  margin-bottom: 10px;
  font-size: 12px;
  position: relative;
}
.new-login__error__close{
  padding-left:10px;
  position: absolute;
  right: 10px;
  top:4px;
  display: block;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}
.new-login__error__close:active{
  color: #7b1010;
}

/*************** LOADER SPINNER  ***********************/
.new-login__btn--big .nl-loader{
  top: 18px;
  margin:auto;
  width: 30px;
  height: 30px;
  position: relative;
}

.new-login__btn--small .nl-loader{
  top: 5px;
  margin:auto;
  width: 20px;
  height: 20px;
  position: relative;
}

.nl-loader .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.nl-loader .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.nl-loader .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.nl-loader .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.nl-loader .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.nl-loader .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.nl-loader .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.nl-loader .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nl-loader .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.nl-loader .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.nl-loader .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.nl-loader .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg);
}
.nl-loader .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg);
}
.nl-loader .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.nl-loader .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.nl-loader .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.nl-loader .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.nl-loader .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.nl-loader .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
.nl-loader .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.nl-loader .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.nl-loader .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.nl-loader .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.nl-loader .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

