/* ##### BTN ##### */
.btn {
  background-color:#56e1ff;
  text-align:center;
  color:#001627;
  font-size:16px;
  font-weight: 900;
  display:inline-block;
  height:40px;
  line-height:36px;
  padding:0 20px;
  text-decoration:none;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  border: 2px solid transparent;
  border-radius: 12px;
  text-transform: uppercase;
}

.btn:hover, .btn.active, .btn:focus {opacity: 0.9;background-color:#fff;color:#001627;}

/* ##### BTN BTN-MULTI-LINED ##### */
.btn.btn-multi-lined {
  white-space: normal;
}
.btn.btn-multi-lined span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

/* ##### BTN BTN-SECONDARY ##### */
.btn.btn-secondary {background-color:transparent; color:#fff; border: 2px solid #fff;}
.btn.btn-secondary:hover, .btn.btn-secondary.active, .btn.btn-secondary:focus {background-color:#fff;color:#001627;}

/* ##### BTN BTN-DEFAULT ##### */
.btn.btn-default {background-color:#a09f9f; color:#fff; border-color:#a09f9f;}
.btn.btn-default:hover, .btn.btn-default.active, .btn.btn-default:focus  {color: #fff; background-color: #b6b5b5; border-color: #b6b5b5;}


/* ##### BTN BIG ##### */
.btn.big {
  height: 50px;
  line-height: 46px;
  font-size: 16px;
  font-weight: 900;
}

/* ##### BTN SMALL ##### */
.btn.small {
  height: 30px;
  line-height: 26px;
  font-size: 16px;
  font-weight: 900;
}
/* ##### BTN DISABLED ##### */
.btn.btn-disabled {
	color: #525252 !important;
	text-shadow:none !important;
	background-color:#e8e8e8 !important;
	cursor:default !important;
  opacity: 1 !important;
}


@media all and (max-width: 991px) {
  .btn, .btn.big {font-size:16px; padding:0 20px;}
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5){

  .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
}
