
/* SUBLINHADO */
.sublinhado_amarelo_1 {
  border-bottom: 3px solid #fdb812;
  box-shadow: inset 0 -5px 0 #fdb812;
  color: inherit;
  -webkit-transition: background .15s cubic-bezier(.33,.66,.66,1);
  transition: background .15s cubic-bezier(.33,.66,.66,1);
}


/* ROTATING */

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}


.white-popup {
  position: relative;
  background: #fff;
  padding: 20px;
  width:auto;
  max-width: 500px;
  margin: 20px auto;
}


.xtagList-item-selected {
  height:200px;
}


.mobileHeader{
  height:50px; 
  padding:0 20px;
  line-height:50px;
  background-color:#333; color:#fff;
}

.mobileFooter{
  height:50px; background-color:#333; color:#fff;
}


.draggable {
  padding: 5px 10px; 
  margin-bottom:5px; 
  border:solid 1px #333; 
  border-radius:3px;
  cursor: pointer;
  -webkit-transition: all 0.0s linear;
  -moz-transition: all 0.0s linear;
  -ms-transition: all 0.0s linear;
  -o-transition: all 0.0s linear;
  transition: all 0.0s linear;
}

.dropper {
  margin:0 5px;
  text-align: center;
  min-height:30px;
  line-height:30px;
  background-color:#f9f9f9;
}

.dropActive {
  border: dashed 2px #ccc;
  min-height: 40px;
  height: 40px;
}

.dropHover {
  background-color: #ddd;
}

.dropped {
  text-align: left;
  margin:2px 5px;
  padding:0 5px;
  border: solid 1px #eee;
  line-height: 40px;
}



.draghere{
  min-height:40px !important;
  line-height:40px !important;
}

.ui-droppable{
  min-height:0px;
}




/* ALERTS ohsnap */
/* inspired by Twitter Bootstrap */

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #eed3d7;
  border-radius: 4px;
  position: absolute;
  bottom: 0px;
  right: 21px;
  /* Each alert has its own width */
  float: right;
  clear: right;
}

.alert-red {
  color: white;
  background-color: #DA4453;
}
.alert-green {
  color: white;
  background-color: #37BC9B;
}
.alert-blue {
  color: white;
  background-color: #4A89DC;
}
.alert-yellow {
  color: white;
  background-color: #F6BB42;
}
.alert-orange {
  color:white;
  background-color: #E9573F;
}


