/*
* Author: Luis Serrano
* Template: Tekview
* Version: 1.0.0
* Bootstrap version: 3
* Copyright 2014 Luis Serrano
* mail: luisgserrano.d@gmail.com
*/

@font-face {
	font-family: "Fogo Light";
	src: url("../fonts/Foco_Lt.ttf");
}

@font-face {
	font-family: "Fogo Bold";
	src: url("../fonts/Foco_Bd.ttf");
}

/* Changes on Bootstrap */

body {
	font-family: 'Foco Light', 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, sans-serif !important;
}

h1, h2, h3, h4, h5 {
	font-family: 'Foco Bold', 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, sans-serif !important;
}

a {
	color: #1a573e;
}

.input-group-btn a {
	padding: 8px 15px;
}

.align-center {
	text-align: center;
}

/* This is for texts in form, normally isn't align with label*/
.input-padding-text {
	padding: 19px 10px;
}

.smshistory-container .mb20 {
	font-size: 24px;
}

.smshistory-container .col-sm-3 .mr20 {
	float: left;
	line-height: 40px;
}

.fileinput .form-control {
	padding-bottom: 8px !important;
}

/* Changes in button's width for control device pages */

.controldevice-button {
	width: 183px;
}

/* change position of checkbox */

.document .ckbox input[type="checkbox"]:checked + label::after {
	top: 3px;
}

/* Control devices */

.control-buttons h3 {
	margin-top: 15px;
	font-size: 20px;
}

.control-buttons .col-lg-9 {
	color: white;
}

.control-buttons .col-lg-9 .btn {
	margin-top: 13px;
}

.control-buttons .panel-body h3 {
	float: none;
}

.control-device-duo h4.panel-title {
	font-size: 16px;
}

/* Effect to animate spinner icon */

.spinner {
  display: inline-block;
  opacity: 0;
  width: 0;

  -webkit-transition: opacity 0.25s, width 0.25s;
  -moz-transition: opacity 0.25s, width 0.25s;
  -o-transition: opacity 0.25s, width 0.25s;
  transition: opacity 0.25s, width 0.25s;
}

.has-spinner.active {
  cursor:progress;
}

.has-spinner.active .spinner {
  opacity: 1;
  width: auto;
}

.has-spinner.btn.active .spinner {
    width: 19px;
}

.device-status,
.sms-stats {
	color: white;
}



/* Bigger toggle on/off */

/* Maybe add in markup a class for the parent div, just for specify this toggle */
.panel .panel-heading .toggle-device {
	margin: 15px auto !important;
}

.toggle-device .toggle-on {
	text-indent: 20px !important;
}

.toggle-device .toggle-off {
	text-indent: 35px !important;
}

.toggle-device .toggle-slide .toggle-on,
.toggle-device .toggle-slide .toggle-off {
	font-size: 14px !important;
}

.disable-click {opacity: 0.50; pointer-events: none;}

/* Media Queries */

@media screen and (max-width: 1200px) {
	.control-buttons h3 {
		font-size: 18px;
	}
	.toggle.col-md-offset-6 {
		margin-left: 50%;
	}
}

@media screen and (max-width: 767px) {
	.form-bordered .form-group {
		padding: 15px;
	}
	.form-bordered .form-group label {
		padding-left: 0;
	}
}

/* Fix control-device height of tiles */
@media screen and (max-width: 1232px) {
	.control-buttons .col-xs-12 {
		width: 100%;
	}
}






