/** 
 *------------------------------------------------------------------------------
 * @package       T3 Framework for Joomla!
 *------------------------------------------------------------------------------
 * @copyright     Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved.
 * @license       GNU General Public License version 2 or later; see LICENSE.txt
 * @authors       JoomlArt, JoomlaBamboo, (contribute to this project at github 
 *                & Google group to become co-author)
 * @Google group: https://groups.google.com/forum/#!forum/t3fw
 * @Link:         http://t3-framework.org 
 *------------------------------------------------------------------------------
 */

/* MAIN STYLE
---------------------*/

* {
	box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
	background: #fbfbfb url("../images/-deco.png") no-repeat left bottom;
  color: #666;
	font-family: 'Libre Franklin', sans-serif;
	font-size: 14px;
  font-weight: 400;
  line-height: 1.625;
  margin: 0;
  padding: 0;
  position: relative;
}

.error {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

/* ERROR CODE 
--------------------*/
.error-code {
  color: #234269;
  font-family: 'Fjalla One', sans-serif;
	font-size: 200px;
	line-height: 1;
}

/* ERROR IMAGE
---------------------*/
#offline-img {
	margin-bottom: 10px;
}

#offline-img img {
	max-width: 100%;
}

/* ERROR MESSAGE
--------------------*/

.error-message h2 {
  color: #444;
	display: inline-block;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  margin-top: 0;
  padding: 0 15px;
}

#errorboxbody p {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 300;
  margin-bottom: 25px;
  margin-top: 0;
}

/* BTN HOME PAGE 
---------------------*/
.button-home {
	background: linear-gradient(to bottom, #ff965c 0%, #f87932 100%);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 11px;
  font-weight: 400;
  height: 42px;
  letter-spacing: 1px;
  line-height: 42px;
  padding: 0 36px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.button-home:hover,
.button-home:focus,
.button-home:active {
	background: #f87932;
	cursor: pointer;
}

/* RESPONSIVE */

@media screen and (min-width: 1600px) {

  body {
    background-size: 100%;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {

  body {
    background-image: none !important;
  }
}