Commit 69e536ab by David Villalba
parents 81a3248a 89c1d3b6
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Auth\Model_Auth_Role;
use Auth\Model_Auth_GroupRole;
use Auth\Model_Auth_Group;
use Fuel\Core\Response;
use \Parser\View;
class Controller_Administracion_Grupos_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('maestras','grupos');
public function before(){
//Se cargan funciones de javascript especificas de esta funcionalidad
Casset::js('administracion/grupos/index.js');
//Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// ds : String a mostrar
// url : url del enlace en modo absoluto
$this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
$this->_bc[] = array('ds'=>'Maestras','url'=>'/dashboard');
$this->_bc[] = array('ds'=>'Perfiles','url'=>'/grupos','class'=>'active');
parent::before();
}
public function get_index()
{
$view = View::forge('administracion/grupos/index.twig');
$view->grupos = Model_Auth_Group::query()->get();
$view->roles = Model_Auth_Role::query()->order_by('orden','asc')->get();
//Titulo de la vista
$view->title = "Gestión de Perfiles";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
public function get_show($id)
{
//Se recuperan los datos a mostrar en la vista que peuden cambair en función de como se llame a esa vista
$grupo = Model_Auth_Group::query()->where('id', $id)->get_one();
return $this->load_show($grupo);
}
public function load_show($grupo){
//Se selecciona la vista a devolver
$view = View::forge('administracion/grupos/form.twig');
//En funcion del tipo, cambia el titulo
$view->title = "Detalle de Perfil";
//Se recuperan los datos de los desplegables de la vista
$view->roles = Model_Auth_Role::query()->order_by('orden','asc')->get();
//Se añaden los datos a la vista
$view->grupo = $grupo;
//Se añade una miga de pan a la vista
$this->_bc[] = array('ds'=>$view->title,'url'=>'','class'=>'active');
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
public function get_update($id)
{
//Se recuperan los datos a mostrar en la vista que peuden cambair en función de como se llame a esa vista
$grupo = Model_Auth_Group::query()->where('id',$id)->get_one();
// A : Alta || M : Modificacion
if($id == 0){
return $this->load_form($grupo, 'A');
}else{
return $this->load_form($grupo, 'M');
}
}
public function post_update()
{
$name = Input::post('nombre','');
$roles = Input::post('roles');
$id = Input::post('id','');
$found = Model_Auth_Group::query()->where('nombre' , $name)->get_one();
//nombre no existente
if (((is_null($found) || $found == "" ) && count($roles) > 0))
{
//grupo no existente
$grupo = Model_Auth_Group::forge();
if($id != '')//grupo existente
{
$grupo = Model_Auth_Group::query()->where("id",$id)->get_one();
//elimina roles que el grupo tuviera
foreach($grupo->roles as $role) $role->delete();
$grupo->roles = null;
}
//establece nombre grupo
$grupo->nombre = $name;
//crea fila en GroupRole con roles selecionados para el grupo
foreach($roles as $role)
{
$grupoRole = Model_Auth_GroupRole::forge();
$grupoRole->role_id = $role;
$grupo->roles[] = $grupoRole;
}
//guarda grupo
$grupo->save();
Session::set_flash('message',array('type'=>'success','text'=>'Modificaciones realizadas con éxito'));
Response::redirect('grupos');
}
//nombre existente
else if(($found) && count($roles) > 0)
{
if($id != '')//grupo existente
{
$grupo = Model_Auth_Group::query()->where("id",$id)->get_one();
//grupo existente
//si el 'id' del grupo es igual al 'id' de la fila encontrada, estamos editando
if($grupo->id == $found->id)
{
//elimina roles que el grupo tuviera
foreach($grupo->roles as $role) $role->delete();
$grupo->roles = null;
//el nombre del grupo no ha cambiado, no lo sobreescribimos
//crea fila en GroupRole con roles selecionados para el grupo
foreach($roles as $role)
{
$grupoRole = Model_Auth_GroupRole::forge();
$grupoRole->role_id = $role;
$grupo->roles[] = $grupoRole;
}
//guarda grupo
$grupo->save();
Session::set_flash('message',array('type'=>'success','text'=>'Modificaciones realizadas con éxito'));
Response::redirect('grupos');
}
//grupo existente y nombre existente en otro grupo
else
{
Session::set_flash('message',array('type'=>'error','text'=>'No se ha podido realizar la grabación con éxito. El nombre de grupo ya está en uso.'));
Response::redirect('grupos');
}
}
//grupo no existente
else
{
Session::set_flash('message',array('type'=>'error','text'=>'No se ha podido realizar la grabación con éxito. El nombre de grupo ya está en uso.'));
Response::redirect('grupos');
}
}
else
{
Session::set_flash('message',array('type'=>'error','text'=>'No se ha podido realizar la grabación con éxito. Debes seleccionar algún rol.'));
Response::redirect('grupos');
}
}
public function load_form($grupo, $tipo){
//Se selecciona la vista a devolver
$view = View::forge('administracion/grupos/form.twig');
//En funcion del tipo, cambia el titulo
$view->title = (($tipo=='A')?"Alta":"Modificación")." de Perfiles";
//Se recuperan los datos de los desplegables de la vista
$view->roles = Model_Auth_Role::query()->get();
//Se añaden los datos a la vista
$view->grupo = $grupo;
//Se añade una miga de pan a la vista
$this->_bc[] = array('ds'=>$view->title,'url'=>'','class'=>'active');
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
public function post_delete()
{
$id = Input::post('id','');
$grupo = Model_Auth_Group::query()->where("id",$id)->get_one();
if ($grupo && $grupo != "" )
{
//elimina roles que el grupo tuviera
foreach($grupo->roles as $role) $role->delete();
$grupo->roles = null;
$grupo->delete();
}
Session::set_flash('message',array('type'=>'success','text'=>'Modificaciones realizadas con éxito'));
Response::redirect('grupos');
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Auth\Model_Auth_User;
use Auth\Model_Auth_Group;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Administracion_Usuarios_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('maestras','usuarios');
public function before(){
//Se cargan funciones de javascript especificas de esta funcionalidad
Casset::js('administracion/usuarios/index.js');
//Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// ds : String a mostrar
// url : url del enlace en modo absoluto
$this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
$this->_bc[] = array('ds'=>'Maestras','url'=>'/dashboard');
$this->_bc[] = array('ds'=>'Usuarios','url'=>'/usuarios','class'=>'active');
parent::before();
}
public function get_index()
{
$view = View::forge('administracion/usuarios/index.twig');
$view->usuarios = Model_Auth_User::query()->get();
$view->grupos = Model_Auth_Group::query()->where('id','!=',1)->get();
//Titulo de la vista
$view->title = "Gestión de Usuarios";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
public function get_update($id){
//Se recuperan los datos a mostrar en la vista que peuden cambair en función de como se llame a esa vista
$usuario = Model_Auth_User::query()->where('id',$id)->get_one();
// A : Alta || M : Modificacion
if($id == 0){
return $this->load_form($usuario, 'A');
}else{
return $this->load_form($usuario, 'M');
}
}
public function get_profile()
{
$view = View::forge('administracion/usuarios/profile.twig');
$user_logged = Auth::get_user_id();
$auth_user = \Auth\Model_Auth_User::query()->where('id',$user_logged)->get_one();
$view->usuario = $auth_user;
//Titulo de la vista
$view->title = "My profile";
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
public function post_update(){
$usuario = Model_Auth_User::forge();
if(Input::post('id','')!=''){
$usuario = Model_Auth_User::query()->where('id',Input::post('id',''))->get_one();
}
$usuario->nombre = Input::post('nombre','');
$usuario->apellidos = Input::post('apellidos','');
$usuario->email = Input::post('email','');
$usuario->username = Input::post('user','');
if(Input::post('grupo','')!=''){
$usuario->group_id = Input::post('grupo','');
}
if(Input::post('id','')!='' and Input::post('password','') != ''){
$usuario->set_password(Input::post('password',''));
}else if(Input::post('id','')==''){
$usuario->set_password(Input::post('password',''));
}
//Comprobamos si ya existe en la BBDD un usuario con el mismo codigo y si es así, devolvemos un error.
$found = Model_Auth_User::query()->where('username' , $usuario->username )->get_one();
//no existe username o existe pero es del propio usuario
if ((is_null($found) || $found == "") || ($found != "" and $usuario->id != '' and $found->id == $usuario->id)){
try{
$usuario->save();
Session::set_flash('message',array('type'=>'success','text'=>'Grabación realizada con éxito.'));
return $this->load_form($usuario,'M');
}
catch(Exception $e){
Log::error('administracion/usuarios/controller/index/post_update--->'.$e->getMessage());
Session::set_flash('message',array('type'=>'error','text'=>'No se ha podido realizar la grabación.'));
}
}
else{
Session::set_flash('message',array('type'=>'error','text'=>'No se ha podido realizar la grabación. El nombre de usuario ya está en uso.'));
}
// A : Alta de usuario || M : Modificacion de usuario
return $this->load_form($usuario,'M');
}
public function load_form($usuario, $tipo){
//Se selecciona la vista a devolver
$view = View::forge('administracion/usuarios/form.twig');
//En funcion del tipo, cambia el titulo
$view->title = (($tipo=='A')?"Alta":"Modificación")." de Usuarios";
//Se recuperan los datos de los desplegables de la vista
$view->grupos = Model_Auth_Group::query()->where('is_assignable','S')->get();
//Se añaden los datos a la vista
$view->usuario = $usuario;
//Se añade una miga de pan a la vista
$this->_bc[] = array('ds'=>$view->title,'url'=>'','class'=>'active');
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
public function post_active(){
$id = Input::post('id','');
$usuario = Model_Auth_User::query()->where('id',$id)->get_one();
if ($usuario){
try{
$usuario->is_active = $usuario->is_active=="S"?"N":"S";
$usuario->save();
Session::set_flash('message',array('type'=>'success','text'=>'Modificaciones realizadas con éxito.'));
return true;
}
catch(Exception $e){
Log::error('administracion/controller/index/post_update--->'.$e->getMessage());
}
}
Session::set_flash('message',array('type'=>'error','text'=>'No se ha podido realizar la grabación.'));
return false;
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Articulo_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Articulo');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
// Casset::js('dashboard/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('articulo/index.twig');
//Titulo de la vista
$view->title = "Artículo";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Boletinsaludable_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Recetario');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
// Casset::js('recetario/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('boletinsaludable/index.twig');
//Titulo de la vista
$view->title = "Boletín saludable";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Menupersonalizado_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Menú Personalizado');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
// Casset::js('dashboard/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('menupersonalizado/index.twig');
//Titulo de la vista
$view->title = "Menú Personalizado";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Menussaludables_Lista_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Menús Saludables');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
// Casset::js('dashboard/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('menussaludables/lista/index.twig');
//Titulo de la vista
$view->title = "Listado Menús Saludables";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Menussaludables_Menu_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Menús Saludables');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
// Casset::js('dashboard/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('menussaludables/menu/index.twig');
//Titulo de la vista
$view->title = "Menús Saludables";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Perfil_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Mi Perfil');
public function before(){
//Se cargan funciones de javascript especificas de esta funcionalidad
Casset::js('dashboard/index.js');
//Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// ds : String a mostrar
// url : url del enlace en modo absoluto
$this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('perfil/index.twig');
//Titulo de la vista
$view->title = "Mi Perfil";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Receta_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Receta');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
// Casset::js('dashboard/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('receta/index.twig');
//Titulo de la vista
$view->title = "Receta";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
<?php
/**
* Created by JetBrains PhpStorm.
* User: Luis
* Date: 16/12/13
* Time: 20:55
* To change this template use File | Settings | File Templates.
*/
use Fuel\Core\DB;
use Fuel\Core\Response;
use \Parser\View;
use Auth\Auth;
class Controller_Recetario_Index extends \Controller_App{
//Variable para guardar las migas de pan que van a aparecer en las vistas
private $_bc = array();
//Array con los elementos del menu que se deben marcar con la clase "active" para que esten seleccionados en el menu.
private $_option_menu=array('Recetario');
public function before(){
// //Se cargan funciones de javascript especificas de esta funcionalidad
Casset::js('recetario/index.js');
//
// //Se marca la navegación en forma de migas de pan. Cada miga de pan la forman dos variables:
// // ds : String a mostrar
// // url : url del enlace en modo absoluto
// $this->_bc[] = array('ds'=>'Inicio','url'=>'/dashboard');
parent::before();
}
public function action_index(){
$view = View::forge('recetario/index.twig');
//Titulo de la vista
$view->title = "Recetario";
//Paso de las migas de pan a la vista
$view->bc = $this->_bc;
//Paso de las opciones de menu que deben aparecer seleccionadas
$view->option_menu = $this->_option_menu;
return Response::forge($view);
}
}
\ No newline at end of file
......@@ -9,7 +9,7 @@ return array(
'auth/login' => 'login/index/login',
'auth/logout' => 'login/index/logout',
'recover' => 'login/index/recover',
'dashboard' => 'dashboard/index',
'app/locale' => 'app/locale',
......@@ -22,4 +22,26 @@ return array(
'grupos' =>'administracion/grupos/index',
'grupos/update' =>'administracion/grupos/index/update',
'grupos/show/:id' =>'administracion/grupos/index/show/$1',
/*HOME*/
'dashboard' => 'dashboard/index',
'perfil' =>'perfil/index',
'menupersonalizado' =>'menupersonalizado/index',
'menussaludables' =>'menussaludables/lista/index',
'menussaludables-menu' =>'menussaludables/menu/index',
'receta-detalle' =>'receta/index',
'recetario' =>'recetario/index',
'boletin-saludable' =>'boletinsaludable/index',
'articulo-detalle' =>'articulo/index',
);
\ No newline at end of file
<?php defined('COREPATH') or exit('No direct script access allowed'); ?>
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:56:37 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:56:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:56:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:56:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:57:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:57:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:57:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:57:05 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:57:05 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:57:05 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:57:05 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:57:05 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:57:05 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:57:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:57:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:57:09 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 08:57:09 --> VALIDADO
INFO - 2018-11-28 08:57:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 08:57:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:57:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:59:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:59:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:59:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:59:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 08:59:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:59:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 08:59:46 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 08:59:46 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:59:46 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 08:59:47 --> VALIDADO
INFO - 2018-11-28 08:59:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 08:59:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 08:59:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:01:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:01:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:01:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:05:44 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:05:44 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:05:44 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:05:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 09:05:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:05:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:05:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 09:05:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:05:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:05:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:05:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:05:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:16:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:16:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:16:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:18:02 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:18:02 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:18:02 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:18:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:18:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:18:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:19:00 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:19:00 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:19:00 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:19:02 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:19:02 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:19:02 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:19:03 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 09:19:03 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:19:03 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:19:31 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:19:31 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:19:31 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:20:51 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:20:51 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:20:51 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:20:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:20:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:20:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:37:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:37:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:37:18 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:37:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:37:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:37:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:38:55 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:38:55 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:38:55 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:39:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:39:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:39:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:39:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:39:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:39:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:41:24 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:41:24 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:41:24 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 09:41:51 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 09:41:51 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 09:41:51 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:13:49 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:13:49 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:13:49 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:17:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:17:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:17:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:18:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:18:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:18:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:20:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:20:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:20:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:20:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:20:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:20:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:20:37 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:20:37 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:20:37 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:22:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:22:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:22:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:22:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:22:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:22:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:52:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:53:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:53:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:53:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:53:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 10:53:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:53:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:53:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 10:53:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:53:06 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 10:53:06 --> VALIDADO
INFO - 2018-11-28 10:53:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:53:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:53:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:55:11 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:55:11 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:55:11 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:55:11 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 10:55:11 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:55:11 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 10:55:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 10:55:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:55:15 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 10:55:15 --> VALIDADO
INFO - 2018-11-28 10:55:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 10:55:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 10:55:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:01:31 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:01:31 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:01:31 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:02:16 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:02:16 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:02:16 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:03:03 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:03:03 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:03:03 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:04:10 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:04:10 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:04:10 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:05:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:05:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:05:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:05:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:05:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:05:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:05:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:05:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:05:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:06:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:06:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:06:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:06:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:06:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:06:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:09:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:09:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:09:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:13:24 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:13:24 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:13:24 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:14:03 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:14:03 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:14:03 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:14:03 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 11:14:03 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:14:03 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:14:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:14:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:14:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:14:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 11:14:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:14:12 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 11:14:12 --> VALIDADO
INFO - 2018-11-28 11:14:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:14:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:14:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:17:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:17:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:17:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:19:59 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:19:59 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:19:59 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:20:00 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:20:00 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:20:00 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:20:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 11:20:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:20:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:20:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 11:20:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:20:08 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 11:20:08 --> VALIDADO
INFO - 2018-11-28 11:20:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:20:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:20:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:25:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:25:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:25:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:25:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:25:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:25:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:25:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "favicon"
INFO - 2018-11-28 11:25:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:25:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:25:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:25:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:25:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:27:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:27:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:27:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:27:17 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:27:17 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:27:17 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:27:17 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:27:17 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:27:17 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:28:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:28:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:28:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:29:55 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:29:55 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:29:55 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:30:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:30:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:30:18 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:30:37 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 11:30:37 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:30:37 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:32:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 11:32:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:32:35 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 11:32:35 --> VALIDADO
INFO - 2018-11-28 11:32:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:32:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:32:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:32:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:32:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:32:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:38:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:38:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:38:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:42:51 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:42:51 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:42:51 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:44:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:44:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:44:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:44:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:44:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:44:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:45:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:45:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:45:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:45:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:45:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:45:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:46:30 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:46:30 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:46:30 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:49:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:49:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:49:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:50:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:50:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:50:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:55:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:55:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:55:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:55:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:55:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:55:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:55:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:55:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:55:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:56:17 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:56:17 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:56:17 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:56:17 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 11:56:17 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:56:17 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:56:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 11:56:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:56:18 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:57:29 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 11:57:29 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:57:29 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:57:33 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 11:57:33 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:57:33 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 11:57:33 --> VALIDADO
INFO - 2018-11-28 11:57:33 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:57:33 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:57:33 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 11:57:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 11:57:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 11:57:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:01:36 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:01:36 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:01:36 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:01:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:01:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:01:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:01:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:01:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:01:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:03:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:54 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:54 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:54 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:03:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:03:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:03:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:03:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:04:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 12:04:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:04:13 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:04:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 12:04:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:04:18 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 12:04:18 --> VALIDADO
INFO - 2018-11-28 12:04:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 12:04:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:04:18 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:04:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:04:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:04:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:08:39 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:08:39 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:08:39 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:09:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:09:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:09:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:09:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:09:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:09:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:10:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:10:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:10:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:10:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:10:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:10:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:10:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:10:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:10:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:10:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:10:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:10:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:10:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:10:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:10:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:11:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:11:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:11:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:15:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:15:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:15:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:17:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:17:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:17:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:19:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:19:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:19:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:19:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:19:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:19:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:21:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:21:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:21:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:22:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:22:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:22:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:22:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:22:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:22:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:22:26 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:22:26 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:22:26 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:22:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:22:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:22:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:23:14 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:23:14 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:23:14 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:24:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:24:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:24:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:24:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:24:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:24:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:24:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 12:24:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:24:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:24:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 12:24:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:24:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:24:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 12:24:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:24:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:24:50 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:24:50 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:24:50 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:11 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:33:11 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:11 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/AnimatedCheckboxes/css/component"
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/TextInputEffects/css/set2"
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/AnimatedCheckboxes/js/svgcheckbx"
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/AnimatedCheckboxes/js/svgcheckbx"
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/TextInputEffects/css/set2"
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/AnimatedCheckboxes/css/component"
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/libraries/frontpage/AnimatedCheckboxes/js/svgcheckbx"
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:33:16 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:33:16 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:33:16 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:34:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:34:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:34:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:36:31 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:36:31 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:36:31 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:36:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:36:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:36:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:38:10 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:38:10 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:38:10 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:38:12 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:38:12 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:38:12 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:38:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:38:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:38:13 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:38:48 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:38:48 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:38:48 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:38:51 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:38:51 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:38:51 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:38:51 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:38:51 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:38:51 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:39:24 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:39:24 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:39:24 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:39:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:39:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:39:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:39:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:39:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:39:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:40:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:40:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:40:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:40:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:40:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:40:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:41:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:41:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:41:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:41:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:41:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:41:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:41:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:41:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:41:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:41:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:41:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:41:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:42:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:42:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:42:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:42:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:42:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:42:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:43:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:43:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:43:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:44:26 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:44:26 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:44:26 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:44:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:44:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:44:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:44:29 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 12:44:29 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:44:29 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:45:50 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:45:50 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:45:50 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:47:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:47:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:47:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:48:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 12:48:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:48:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:48:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 12:48:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:48:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:48:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 12:48:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:48:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:48:24 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:48:24 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:48:24 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:54:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 12:54:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:54:13 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:54:23 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 12:54:23 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:54:23 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 12:54:24 --> VALIDADO
INFO - 2018-11-28 12:54:24 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 12:54:24 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:54:24 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:54:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:54:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:54:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 12:58:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 12:58:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 12:58:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 18:52:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 18:52:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 18:52:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 18:52:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-28 18:52:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 18:52:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 18:52:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 18:52:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 18:52:13 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 18:52:14 --> VALIDADO
INFO - 2018-11-28 18:52:14 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 18:52:14 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 18:52:14 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 18:52:19 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 18:52:19 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 18:52:19 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 18:53:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 18:53:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 18:53:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 19:17:59 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-28 19:17:59 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 19:17:59 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-28 19:17:59 --> VALIDADO
INFO - 2018-11-28 19:17:59 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-28 19:17:59 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 19:17:59 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 19:18:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-28 19:18:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 19:18:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-28 19:18:11 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-28 19:18:11 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-28 19:18:11 --> Fuel\Core\Request::execute - Setting main Request
<?php defined('COREPATH') or exit('No direct script access allowed'); ?>
INFO - 2018-11-29 08:07:56 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-29 08:07:56 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-29 08:07:56 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-29 14:26:39 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-29 14:26:39 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-29 14:26:39 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-29 14:26:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-29 14:26:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-29 14:26:41 --> Fuel\Core\Request::execute - Setting main Request
<?php defined('COREPATH') or exit('No direct script access allowed'); ?>
INFO - 2018-11-30 07:58:36 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 07:58:36 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 07:58:36 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 07:58:38 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 07:58:38 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 07:58:38 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:01:00 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 08:01:00 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:01:00 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 08:01:01 --> VALIDADO
INFO - 2018-11-30 08:01:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 08:01:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:01:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:01:03 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:01:03 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:01:03 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:08:49 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:08:49 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:08:49 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:08:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:08:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:08:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:08:54 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:08:54 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:08:54 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:09:17 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:09:17 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:09:17 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:30:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 08:30:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:30:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:30:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 08:30:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:30:13 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 08:30:13 --> VALIDADO
INFO - 2018-11-30 08:30:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 08:30:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:30:13 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:31:49 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 08:31:49 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:31:49 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:31:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:31:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:31:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:33:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:33:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:33:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:33:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:33:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:33:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:33:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:33:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:33:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:34:23 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:34:23 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:34:23 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:34:34 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:34:34 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:34:34 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:35:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 08:35:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:35:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:35:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 08:35:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:35:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:36:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 08:36:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:36:01 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 08:36:01 --> VALIDADO
INFO - 2018-11-30 08:36:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 08:36:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:36:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:36:03 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 08:36:03 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:36:03 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:36:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:36:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:36:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:39:50 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:39:50 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:39:50 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:40:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:40:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:40:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:40:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:40:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:40:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:38 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:38 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:38 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:38 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:41:38 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:38 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:54 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:41:54 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:54 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:56 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:41:56 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:56 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:41:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:41:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:41:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:05 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:08 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:42:08 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:08 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:54 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:42:54 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:54 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:42:55 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:42:55 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:42:55 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:43:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:43:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:43:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:44:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:44:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:44:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:44:55 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:44:55 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:44:55 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:45:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:45:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:45:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:46:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:46:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:46:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:48:32 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:48:32 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:48:32 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:48:33 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 08:48:33 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:48:33 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:49:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:49:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:49:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 08:50:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 08:50:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 08:50:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:07:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:07:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:07:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:07:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:07:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:07:18 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:20:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:20:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:20:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:20:04 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:20:04 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:20:04 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:23:02 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:23:02 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:23:02 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:25:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:25:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:25:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:29:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:29:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:29:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:21 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:29:21 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:21 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:22 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:29:22 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:22 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "favicon"
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:41 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 09:29:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:45 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 09:29:45 --> VALIDADO
INFO - 2018-11-30 09:29:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:29:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:46 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:29:46 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:46 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:29:46 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "favicon"
INFO - 2018-11-30 09:29:46 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:29:46 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:30:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:18 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:30:18 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:18 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 09:30:47 --> VALIDADO
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:54 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 09:30:54 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:54 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 09:30:54 --> VALIDADO
INFO - 2018-11-30 09:30:55 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:30:55 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:55 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:30:55 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:30:55 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:30:55 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:31:01 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:31:01 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:31:01 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:31:02 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:31:02 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:31:02 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:31:51 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:31:51 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:31:51 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:32:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:32:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:32:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:38:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:38:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:38:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:38:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:38:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:38:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:39:00 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:39:00 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:39:00 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:40:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:40:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:40:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:41:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:41:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:41:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:43:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:43:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:43:35 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:43:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:43:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:43:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:45:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:45:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:45:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:46:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:46:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:46:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:47:10 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 09:47:10 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:47:10 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:47:15 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:47:15 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:47:15 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:56:10 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:56:10 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:56:10 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:57:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:57:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:57:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:57:31 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:57:31 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:57:31 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:57:32 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 09:57:32 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:57:32 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 09:58:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 09:58:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 09:58:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:01:13 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:01:13 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:01:13 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:02:11 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:02:11 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:02:11 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:02:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:02:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:02:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:02:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:02:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:02:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:02:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 10:02:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:02:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:04:06 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 10:04:06 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:04:06 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:04:07 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "favicon"
INFO - 2018-11-30 10:04:07 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:04:07 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:06:16 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:06:16 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:06:16 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:06:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:06:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:06:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:06:53 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:06:53 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:06:53 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:11:31 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:11:31 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:11:31 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:11:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:11:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:11:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:11:59 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:11:59 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:11:59 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:12:58 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:12:58 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:12:58 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:16:00 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:16:00 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:16:00 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:16:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:16:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:16:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:18:09 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:18:09 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:18:09 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:18:34 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:18:34 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:18:34 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:21:00 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:21:00 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:21:00 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:21:36 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:21:36 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:21:36 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:30:52 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 10:30:52 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:30:52 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:31:44 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 10:31:44 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:31:44 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:31:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:31:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:31:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:32:24 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:32:24 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:32:24 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:33:27 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:33:27 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:33:27 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:33:29 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 10:33:29 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:33:29 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:33:33 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:33:33 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:33:33 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:34:23 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:34:23 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:34:23 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:36:20 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:36:20 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:36:20 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:36:45 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:36:45 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:36:45 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:37:42 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:37:42 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:37:42 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:37:46 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:37:46 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:37:46 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:37:47 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "assets/img/favicon"
INFO - 2018-11-30 10:37:47 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:37:47 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:39:26 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:39:26 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:39:26 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:42:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:42:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:42:25 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:42:28 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:42:28 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:42:28 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:42:35 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:42:35 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:42:35 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 10:42:36 --> Error - Unexpected token "operator" of value ">" in "index.twig" at line 7 in C:\PROYECTOS GIT\INUTRALIA_2018_WEB_APP\fuel\vendor\twig\twig\lib\Twig\ExpressionParser.php on line 178
INFO - 2018-11-30 10:42:36 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "favicon"
INFO - 2018-11-30 10:42:36 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:42:36 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:42:56 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:42:56 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:42:56 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:43:11 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = ""
INFO - 2018-11-30 10:43:11 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:43:11 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::execute - Setting main Request
ERROR - 2018-11-30 10:43:40 --> VALIDADO
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "auth/login"
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "dashboard"
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:43:40 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:43:43 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:43:43 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:43:43 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:43:56 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:43:56 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:43:56 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:44:57 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:44:57 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:44:57 --> Fuel\Core\Request::execute - Setting main Request
INFO - 2018-11-30 10:45:25 --> Fuel\Core\Request::__construct - Creating a new main Request with URI = "perfil"
INFO - 2018-11-30 10:45:25 --> Fuel\Core\Request::execute - Called
INFO - 2018-11-30 10:45:25 --> Fuel\Core\Request::execute - Setting main Request
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-other">
<div class="container">
{{ title }}
</div>
</div>
<!--contenido-->
<div class="container mt20 pb40" >
<div class="col-container">
{#imagen#}
<div class="col">
<img src="assets/img/articulo/articulo.jpg" class="img-responsive-custom">
</div>
{#titulo y fecha#}
<div class="col bg-color-other">
<div class="solid-box mt0">
<i class="fa fa-calendar"></i> 12-10-2018
<h3>Batch cooking:cocina un día para toda la semana</h3>
</div>
</div>
</div>
<!-- preparación receta-->
<p class="text-justify mt20">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate sapien eu hendrerit hendrerit. Etiam nec leo in nibh sodales ultricies. Duis auctor urna at nisl porttitor, eget pretium quam faucibus. Sed velit tortor, luctus eget tempor vel, posuere quis arcu. Vestibulum finibus nibh sem, sit amet dapibus dui interdum in. Proin velit metus, ultricies id sapien semper, auctor ullamcorper nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Proin varius vulputate nulla, quis tempor velit interdum in. Sed vulputate dignissim aliquet. Cras pharetra tristique velit id semper. Vestibulum est tortor, varius id auctor nec, commodo ut est. Praesent ac tellus ligula. Duis ut neque aliquam libero sagittis pellentesque. Morbi varius ex ac lectus fermentum laoreet. Vivamus viverra erat molestie tempor volutpat. Curabitur in pharetra mi. Quisque non erat felis. Fusce lobortis, sem et ultricies elementum, odio felis condimentum urna, quis sagittis ante augue sit amet odio. Duis lacinia aliquam eros, a hendrerit ex suscipit a.
</p>
<!-- footer, firma inutralia-->
<div class="mt40">
publicado por: <img src="assets/img/logos/inutralia.png" class="img-responsive-custom">
</div>
</div>
{% endblock %}
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-other">
<div class="container">
{{ title }}
</div>
</div>
<!--contenido-->
<div class="container mt20">
<div class="pb40">
{% include 'list.twig' %}
</div>
</div>
{% endblock %}
{% for i in 0..11 %}
<!--item lista, una receta-->
<div class="receta-and-articulo-item-list pointer mt10" style="background-image:url('assets/img/articulo/articulo.jpg')">
<a href="articulo-detalle">
<div class="black-overlay">
<div class="date-box solid-box bg-color-other mt0">
<i class="fa fa-calendar"></i> 12-10-2018
</div>
<div class="text-receta-and-articulo-item-list">
<h2><b>Batch cooking: cocina un día para toda la semana</b></h2>
<p>Conoce a fondo esta forma esta forma de organizarse en la cocina y come sano durante toda...</p>
</div>
</div>
</a>
</div>
{% endfor %}
\ No newline at end of file
{% extends 'layout/template.twig' %}
{% block action_zone %}
{% endblock %}
{% block content %}
<div class="container">
<div class="container pt-container-ppal">
<div class="row">
<div class="col-md-7">
{#fila 1#}
<div class="col-container">
<div class="col bg-color-menu-personalizado">
<h2>Column 1</h2>
<p>Hello World</p>
<div class="col-container mt20">
<div class="col bg-color-perfil border-box-home btn-home">
<a href="perfil">
<div class="text-center">
<img src="assets/img/home/perfil3.png" class="img-responsive-custom btn-home"/>
</div>
<div class="p-text-btn-home">
<p class="whitecolor">Mi Perfil</p>
</div>
</a>
</div>
<div class="col bg-color-perfil">
<h2>Column 2</h2>
<p>Hello World!</p>
<p>Hello World!</p>
<p>Hello World!</p>
<p>Hello World!</p>
<div class="col bg-color-menu-personalizado border-box-home btn-home">
<a href="menupersonalizado">
<div class="text-center">
<img src="assets/img/home/menu_personalizado2.png" class="img-responsive-custom " />
</div>
<div class="p-text-btn-home">
<p class="whitecolor">Menú Personalizado</p>
</div>
</a>
</div>
</div>
{#fila 2#}
<div class="col-container">
<div class="col bg-color-menus-saludables">
<h2>Column 1</h2>
<p>Hello World</p>
<div class="col bg-color-menus-saludables border-box-home btn-home">
<a href="menussaludables">
<div class="text-center">
<img src="assets/img/home/menus_saludables.png" class="img-responsive-custom btn-home"/>
</div>
<div class="p-text-btn-home">
<p class="whitecolor">Menús Saludables</p>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-5">
<div class="row item-list-style mt30">
<div class="col-xs-10"> Inicio</div>
<div class="col-xs-2"><i class="fa fa-angle-right"></i></div>
</div>
<a href="recetario">
<div class="row item-list-style">
<div class="col-xs-10"> Recetario</div>
<div class="col-xs-2"><i class="fa fa-angle-right"></i></div>
</div>
<div class="col bg-color-trivial">
<h2>Column 2</h2>
<p>Hello World!</p>
<p>Hello World!</p>
<p>Hello World!</p>
<p>Hello World!</p>
</a>
<a href="boletin-saludable">
<div class="row item-list-style">
<div class="col-xs-10">Boletín saludable</div>
<div class="col-xs-2"><i class="fa fa-angle-right"></i></div>
</div>
</a>
<div class="row item-list-style">
<div class="col-xs-10">Lista de la compra </div>
<div class="col-xs-2"><i class="fa fa-angle-right"></i></div>
</div>
</div>
<div class="col-md-5"></div>
</div>
</div>
{% endblock %}
......
......@@ -3,9 +3,19 @@
<script src="/assets/js/jquery-2.1.1.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
<!--menu principal animacion-->
<!--menu principal animacion: classie.js tambien se usa para input text con efecto-->
<script src="/assets/libraries/menu/classie.js"></script>
<script src="/assets/libraries/menu/demo1.js"></script>
<!--checkboxes-->
<script src="assets/libraries/AnimatedCheckboxes/js/svgcheckbx.js"></script>
<!-- selectores especiales-->
<script src="assets/libraries/SelectInspiration/js/selectFx.js"></script>
<!-- js personalizado ppal-->
<script src="assets/js/main.js"></script>
{{ asset_render_js() }}
\ No newline at end of file
<link href="/assets/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="/assets/css/animate.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!--efecto menú principal-->
<link rel="stylesheet" type="text/css" href="/assets/css/menu_effect.css" />
<!-- input text effect-->
<link rel="stylesheet" type="text/css" href="assets/libraries/TextInputEffects/css/set2.css" />
<!-- checkboxes animated-->
<link rel="stylesheet" type="text/css" href="assets/libraries/AnimatedCheckboxes/css/component.css" />
<!-- selectores especiales-->
<link rel="stylesheet" type="text/css" href="assets/libraries/SelectInspiration/css/normalize.css" />
{#<link rel="stylesheet" type="text/css" href="assets/libraries/SelectInspiration/css/demo.css" />#}
<link rel="stylesheet" type="text/css" href="assets/libraries/SelectInspiration/css/cs-select.css" />
<link rel="stylesheet" type="text/css" href="assets/libraries/SelectInspiration/css/cs-skin-underline.css" />
<!--custom generic css-->
<link href="/assets/css/custom.css" rel="stylesheet">
......@@ -5,11 +5,11 @@
<div class="row mt20">
<div class="col-xs-2 text-left">
<a type="button" id="trigger-overlay" >
<i class="fa fa-bars fa-2x line-height-60 color-menu-personalizado"></i>
<i class="fa fa-bars fa-2x line-height-60 color-menu-personalizado"></i>
</a>
</div>
<div class="col-xs-10 text-right">
<a href="#home" class="smooth"><img src="assets/img/logos/inutralia.png" class="img-responsive-custom"/></a>
<a href="dashboard" class="smooth"><img src="assets/img/logos/inutralia.png" class="img-responsive-custom"/></a>
</div>
</div>
</div>
......@@ -20,15 +20,13 @@
<button type="button" class="overlay-close">Close</button>
<nav>
<ul>
<li><a href="#home" class="smooth">Inicio</a></li>
<li><a href="#aboutus" class="smooth">Mi Perfil</a></li>
<li><a href="#boxes" class="smooth">Menú Personalizado</a></li>
<li><a href="#boxes" class="smooth">Menús Saludables</a></li>
<li><a href="#boxes" class="smooth">Recetario</a></li>
<li><a href="#boxes" class="smooth">Boletín saludable</a></li>
<li><a href="#boxes" class="smooth">Lista de la compra</a></li>
<li><a href="dashboard">Inicio</a></li>
<li><a href="perfil">Mi Perfil</a></li>
<li><a href="menupersonalizado" >Menú Personalizado</a></li>
<li><a href="menussaludables" >Menús Saludables</a></li>
<li><a href="recetario">Recetario</a></li>
<li><a href="boletin-saludable">Boletín saludable</a></li>
<li><a href="#boxes">Lista de la compra</a></li>
</ul>
</nav>
</div>
\ No newline at end of file
......@@ -10,7 +10,7 @@
<base href="{{ base_url(false) }}">
<title>
{% block title %}
{{ session_get('empresa').nombre_largo }}
APP| {{ session_get('empresa').nombre_largo }}
{% endblock %}
</title>
......@@ -33,18 +33,15 @@
<div class="se-pre-con" style="z-index:9999"></div>
<!--menú vertical y horizontal-->
{% include 'layout/menu.twig' %}
<!--content-->
<div class="pt-container-ppal">
<div>
{% block content %}
{% endblock %}
</div>
<!--footer-->
<!--includes js-->
{% include 'includes/includes_after.twig' %}
......
......@@ -6,62 +6,47 @@
<!--[if !IE]><!-->
<html><!-- <![endif]-->
<head>
<base href="{{ base_url(false) }}">
<title>
{% block title %}
Aplicación Producción - Seti Consultyn
{% endblock %}
</title>
<link rel="shortcut icon" href="/assets/img/favicon.ico">
<meta charset="UTF-8" />
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
{% include 'includes/includes_before.twig' %}
</head>
<body class="gray-bg">
<div class="middle-box text-center animated fadeInDown">
<div>
<div>
<!--<h1 class="logo-name">IN+</h1>-->
<img src="/assets/img/logos/logo_seti_50x50_black_orange.png">
<head>
<base href="{{ base_url(false) }}">
<title>
{% block title %}
Inutralia
{% endblock %}
</title>
<link rel="shortcut icon" href="/assets/img/favicon.ico">
<meta charset="UTF-8" />
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
{% include 'includes/includes_before.twig' %}
</head>
<body>
<div class="box-login">
<img src="assets/img/logos/inutralia.png" class="img-responsive-custom mt40"/>
<form class="m-t" method="post" action="auth/login">
{{ form_csrf() }}
<div class="form-group">
<p class="text-left"><i class="fa fa-user"></i> Usuario</p>
<input type="text" name="username" class="form-control" placeholder="Usuario" required="">
</div>
<div class="form-group">
<p class="text-left"><i class="fa fa-unlock-alt"></i> Contraseña</p>
<input type="password" name = "password" class="form-control" placeholder="Contraseña" required="">
</div>
<div class="label label-danger">{{ get_flash("message:error") }}</div>
<button type="submit" class="btn btn-custom btn-menu-personalizado mt20" >Entrar</button>
</form>
</div>
<h3>Bienvenido a Seti Consultyn</h3>
<p>Introduce tu usuario y contraseña.</p>
<div class="label label-danger">{{ get_flash("message:error") }}</div>
<form class="m-t" method="post" action="auth/login">
{{ form_csrf() }}
<div class="form-group">
<input type="text" name="username" class="form-control" placeholder="Usuario" required="">
</div>
<div class="form-group">
<input type="password" name = "password" class="form-control" placeholder="Contraseña" required="">
</div>
<button type="submit" class="btn btn-primary block full-width m-b">Entrar</button>
<a href="#"><small>¿Olvidaste tu contraseña?</small></a>
<a class="btn btn-sm btn-white btn-block" href="register.html">Create una cuenta</a>
</form>
<p class="m-t"> <small>Fully designed by SETI Consultyn S.L. 2015</small> </p>
</div>
</div>
{% include 'includes/includes_after.twig' %}
</body>
{% include 'includes/includes_after.twig' %}
</body>
</html>
......
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-menu-personalizado">
<div class="container">
{{ title }}
</div>
</div>
<div class="container mt20" >
<div id="exTab2" class="container">
<ul class="nav nav-tabs nav-tabs-menu-personalizado">
<li class="active">
<a href="#1" data-toggle="tab">LU</a>
</li>
<li>
<a href="#2" data-toggle="tab">MA</a>
</li>
<li>
<a href="#3" data-toggle="tab">MIE</a>
</li>
<li>
<a href="#4" data-toggle="tab">JUE</a>
</li>
<li>
<a href="#5" data-toggle="tab">VIE</a>
</li>
<li>
<a href="#6" data-toggle="tab">SAB</a>
</li>
<li>
<a href="#7" data-toggle="tab">DOM</a>
</li>
</ul>
<div class="tab-content tab-content-menu-persoanlizado">
{% for i in 1..6 %}
<div class="tab-pane {% if i == 1 %}active {% endif %}" id="{{ i }}">
<div class="row">
{#comida#}
<div class="col-md-6">
<h2 class="color-menu-personalizado">COMIDA {{ i }}</h2>
<div class="border-box border-menu-personalizado-light">
<div class="title-box-border-box bg-color-menu-personalizado-light">
PRIMER PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="comida_primer_1_{{ i }}" name="comida_primer{{ i }}" value="1" type="radio"><label for="comida_primer_1_{{ i }}">sopa de verduras</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="comida_primer_2_{{ i }}" name="comida_primer{{ i }}" value="0" type="radio"><label for="comida_primer_2_{{ i }}">crema de calabaza </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
<div class="border-box border-menu-personalizado-light">
<div class="title-box-border-box bg-color-menu-personalizado-light">
SEGUNDO PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="comida_segun_1_{{ i }}" name="comida_segun{{ i }}" value="1" type="radio"><label for="comida_segun_1_{{ i }}">pollo con verduras al vapor </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="comida_segun_2_{{ i }}" name="comida_segun{{ i }}" value="0" type="radio"><label for="comida_segun_2_{{ i }}">merluza al vapor </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
</div>
{#cena#}
<div class="col-md-6">
<h2 class="color-menu-personalizado">CENA {{ i }}</h2>
<div class="border-box border-menu-personalizado-light">
<div class="title-box-border-box bg-color-menu-personalizado-light">
PRIMER PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="cena_primer_1_{{ i }}" name="cena_primer{{ i }}" value="1" type="radio"><label for="cena_primer_1_{{ i }}">ensalada </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="cena_primer_2_{{ i }}" name="cena_primer{{ i }}" value="0" type="radio"><label for="cena_primer_2_{{ i }}">sopa</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
<div class="border-box border-menu-personalizado-light">
<div class="title-box-border-box bg-color-menu-personalizado-light">
SEGUNDO PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="cena_segun_1_{{ i }}" name="cena_segun{{ i }}" value="1" type="radio"><label for="cena_segun_1_{{ i }}">coliflor </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="cena_segun_2_{{ i }}" name="cena_segun{{ i }}" type="radio"><label for="cena_segun_2_{{ i }}">tortilla francesa </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
<div class="row">
<div class="col-md-6 col-md-offset-6">
<button class="btn btn-custom btn-menu-personalizado-light mt20"> Recomendaciones resto del día <i class="fa fa-angle-double-right"></i> </button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-8">
<button class="btn btn-custom btn-menu-personalizado mt20" ><i class="fa fa-save"></i> Guardar Perfil</button>
</div>
</div>
</div>
{% endblock %}
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-menus-saludables">
<div class="container">
{{ title }}
</div>
</div>
<div class="container mt20" >
{% for i in 0..5 %}
<a href="menussaludables-menu">
<div class="row item-list-style">
<div class="col-xs-11"> Menú tipo {{ i }}</div>
<div class="col-xs-1"><i class="fa fa-angle-right"></i></div>
</div>
</a>
{% endfor %}
</div>
{% endblock %}
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-menus-saludables">
<div class="container">
{{ title }}
</div>
</div>
<div class="container mt20" >
<div id="exTab2" class="container">
<ul class="nav nav-tabs nav-tabs-menus-saludables">
<li class="active">
<a href="#1" data-toggle="tab">LU</a>
</li>
<li>
<a href="#2" data-toggle="tab">MA</a>
</li>
<li>
<a href="#3" data-toggle="tab">MIE</a>
</li>
<li>
<a href="#4" data-toggle="tab">JUE</a>
</li>
<li>
<a href="#5" data-toggle="tab">VIE</a>
</li>
<li>
<a href="#6" data-toggle="tab">SAB</a>
</li>
<li>
<a href="#7" data-toggle="tab">DOM</a>
</li>
</ul>
<div class="tab-content tab-content-menus-saludables">
{% for i in 1..6 %}
<div class="tab-pane {% if i == 1 %}active {% endif %}" id="{{ i }}">
<div class="row">
{#comida#}
<div class="col-md-6">
<h2 class="color-menus-saludables">COMIDA {{ i }}</h2>
<div class="border-box border-menus-saludables-light">
<div class="title-box-border-box bg-color-menus-saludables-light">
PRIMER PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="comida_primer_1_{{ i }}" name="comida_primer{{ i }}" value="1" type="radio"><label for="comida_primer_1_{{ i }}">sopa de verduras</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="comida_primer_2_{{ i }}" name="comida_primer{{ i }}" value="0" type="radio"><label for="comida_primer_2_{{ i }}">crema de calabaza</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
<div class="border-box border-menus-saludables-light">
<div class="title-box-border-box bg-color-menus-saludables-light">
SEGUNDO PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="comida_segun_1_{{ i }}" name="comida_segun{{ i }}" value="1" type="radio"><label for="comida_segun_1_{{ i }}">pollo con verduras al vapor</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="comida_segun_2_{{ i }}" name="comida_segun{{ i }}" value="0" type="radio"><label for="comida_segun_2_{{ i }}">merluza al vapor</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
</div>
{#cena#}
<div class="col-md-6">
<h2 class="color-menus-saludables">CENA {{ i }}</h2>
<div class="border-box border-menus-saludables-light">
<div class="title-box-border-box bg-color-menus-saludables-light">
PRIMER PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="cena_primer_1_{{ i }}" name="cena_primer{{ i }}" value="1" type="radio"><label for="cena_primer_1_{{ i }}">ensalada</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="cena_primer_2_{{ i }}" name="cena_primer{{ i }}" value="0" type="radio"><label for="cena_primer_2_{{ i }}">sopa</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
<div class="border-box border-menus-saludables-light">
<div class="title-box-border-box bg-color-menus-saludables-light">
SEGUNDO PLATO
</div>
<div class="container-box-border-box">
<form class="ac-custom ac-radio ac-fill" autocomplete="off">
<a href="receta-detalle">
<div class="row">
<div class="col-xs-11 plr0">
<input id="cena_segun_1_{{ i }}" name="cena_segun{{ i }}" value="1" type="radio"><label for="cena_segun_1_{{ i }}">coliflor </label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
<a href="receta-detalle">
<div class="row mt20">
<div class="col-xs-11 plr0">
<input id="cena_segun_2_{{ i }}" name="cena_segun{{ i }}" type="radio"><label for="cena_segun_2_{{ i }}">tortilla francesa</label>
</div>
<div class="col-xs-1 plr0">
<i class="fa fa-search pointer a-black"></i>
</div>
</div>
</a>
</form>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-6">
<button class="btn btn-custom btn-menus-saludables-light mt20"> Recomendaciones resto del día <i class="fa fa-angle-double-right"></i> </button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-8">
<button class="btn btn-custom btn-menus-saludables mt20" ><i class="fa fa-save"></i> Guardar Perfil</button>
</div>
</div>
</div>
{% endblock %}
<span class="input input--nao">
<input class="input__field input__field--nao" type="text" id="edad" name="edad" required=""/>
<label class="input__label input__label--nao" for="input-1">
<span class="input__label-content input__label-content--nao">Edad</span>
</label>
<svg class="graphic graphic--nao" width="300%" height="100%" viewBox="0 0 1200 60" preserveAspectRatio="none">
<path d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0"/>
</svg>
</span>
<span class="input input--nao">
<input class="input__field input__field--nao" type="text" id="altura" name="altura" required=""/>
<label class="input__label input__label--nao" for="input-1">
<span class="input__label-content input__label-content--nao">Altura</span>
</label>
<svg class="graphic graphic--nao" width="300%" height="100%" viewBox="0 0 1200 60" preserveAspectRatio="none">
<path d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0"/>
</svg>
</span>
<span class="input input--nao">
<input class="input__field input__field--nao" type="text" id="peso" name="peso" required=""/>
<label class="input__label input__label--nao" for="input-1">
<span class="input__label-content input__label-content--nao">Peso</span>
</label>
<svg class="graphic graphic--nao" width="300%" height="100%" viewBox="0 0 1200 60" preserveAspectRatio="none">
<path d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0"/>
</svg>
</span>
<span class="input input--nao">
<input class="input__field input__field--nao" type="text" id="genero" name="genero" required=""/>
<label class="input__label input__label--nao" for="input-1">
<span class="input__label-content input__label-content--nao">Género</span>
</label>
<svg class="graphic graphic--nao" width="300%" height="100%" viewBox="0 0 1200 60" preserveAspectRatio="none">
<path d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0"/>
</svg>
</span>
<select class="cs-select cs-skin-underline mt20">
<option value="" disabled selected>Actividad fisica...</option>
<option value="1">Sedentario</option>
<option value="2">Ligero</option>
<option value="3">Moderado</option>
<option value="4">Intenso</option>
<option value="5">Muy Intenso</option>
</select>
<select class="cs-select cs-skin-underline mt20">
<option value="" disabled selected>Preferencia de dieta...</option>
<option value="1">Normal</option>
<option value="2">Vegetariana</option>
<option value="3">Vegana</option>
</select>
\ No newline at end of file
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-perfil">
<div class="container">
{{ title }}
</div>
</div>
<div class="container" >
<div class="row">
<div class="col-md-4">
<div class="solid-box bg-color-perfil pb50">
{% include 'datos_generales.twig' %}
</div>
</div>
<div class="col-md-8">
<div class="border-box border-perfil">
<div class="title-box-border-box bg-color-perfil">
¿Padeces, estás o tienes...
</div>
<div class="container-box-border-box">
{% include 'switches.twig' %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-8">
<button class="btn btn-custom btn-perfil mt20" ><i class="fa fa-save"></i> Guardar Perfil</button>
</div>
</div>
</div>
{% endblock %}
<div class="row">
{% for i in 1..13 %}
<div class="col-xs-6 col-sm-6 col-md-4">
<div class="form-group text-center">
<label class="switch" for="checkbox_{{ i }}">
<input type="checkbox" id="checkbox_{{ i }}" />
<div class="slider round"></div>
</label>
<p>caracteristica {{ i }}</p>
</div>
</div>
{% endfor %}
</div>
\ No newline at end of file
<h2>Nombre de la receta</h2>
<!-- imagen mas caja negra-->
<img src="assets/img/receta/receta.jpg" class="img-responsive-custom">
<div class="solid-box bg-color-other mt0">
<div class="row ">
{#tiempo de receta#}
<div class="col-md-6">
<i class="fa fa-clock-o"></i>
30.00 min
</div>
{#dificultad de recdeta#}
<div class="col-md-6">
<i class="fa fa-star-o"></i> Dificultad:
Media
</div>
</div>
</div>
<!-- preparación receta-->
<p class="text-justify mt20">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate sapien eu hendrerit hendrerit. Etiam nec leo in nibh sodales ultricies. Duis auctor urna at nisl porttitor, eget pretium quam faucibus. Sed velit tortor, luctus eget tempor vel, posuere quis arcu. Vestibulum finibus nibh sem, sit amet dapibus dui interdum in. Proin velit metus, ultricies id sapien semper, auctor ullamcorper nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Proin varius vulputate nulla, quis tempor velit interdum in. Sed vulputate dignissim aliquet. Cras pharetra tristique velit id semper. Vestibulum est tortor, varius id auctor nec, commodo ut est. Praesent ac tellus ligula. Duis ut neque aliquam libero sagittis pellentesque. Morbi varius ex ac lectus fermentum laoreet. Vivamus viverra erat molestie tempor volutpat. Curabitur in pharetra mi. Quisque non erat felis. Fusce lobortis, sem et ultricies elementum, odio felis condimentum urna, quis sagittis ante augue sit amet odio. Duis lacinia aliquam eros, a hendrerit ex suscipit a.
</p>
<!-- footer, firma inutralia-->
<div class="mt40">
publicado por: <img src="assets/img/logos/inutralia.png" class="img-responsive-custom">
</div>
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-other">
<div class="container">
{{ title }}
</div>
</div>
<!--contenido-->
<div class="container mt20 pb40" >
<div class="row">
<div class="col-md-7">
{% include 'content.twig' %}
</div>
<div class="col-md-5">
{% include 'tables.twig' %}
</div>
</div>
</div>
{% endblock %}
<!--tabla ingredientes-->
<div class="border-box border-other">
<div class="title-box-border-box bg-color-other">
Ingredientes (4 personas)
</div>
<div class="container-box-border-box">
{% for i in 0..14 %}
<div class="row antirow mt10">
<div class="col-md-8">Ingrediente {{ i }}</div>
<div class="col-md-4 text-right">100 g</div>
</div>
{% endfor %}
</div>
</div>
<!--tabla información nutricional-->
<div class="border-box border-other">
<div class="title-box-border-box bg-color-other">
Información Nutricional por Ración
</div>
<div class="container-box-border-box">
{% for i in 0..5 %}
<div class="row antirow mt10">
<div class="col-md-7">Propiedad {{ i }}</div>
<div class="col-md-5 text-right">100 g</div>
</div>
{% endfor %}
</div>
</div>
\ No newline at end of file
<div class="border-box border-other">
<div class="title-box-border-box bg-color-other">
<i class="fa fa-filter"></i> Filtros de Búsqueda
</div>
<div class="container-box-border-box">
<!--flecha desplegable filtros-->
<div id="btn-show-filter-recetario" class="text-right mt-arrow-filters pointer">
<i class="fa fa-angle-down fa-2x" id="arrow-filters"> </i>
</div>
<!--contenido desplegable filtros-->
<div class="hidden" id="content-filter-recetario">
<div class="row mt20">
{% for i in 1..12 %}
<div class="col-md-3">
<div class="form-group text-center">
<label class="switch" for="switch_filter_{{ i }}">
<input type="checkbox" id="switch_filter_{{ i }}" />
<div class="slider round"></div>
</label>
<p>filtro {{ i }}</p>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-md-6 col-md-offset-6">
<button class="btn btn-custom btn-other mt20" > aplicar <i class="fa fa-angle-double-right"></i></button>
</div>
</div>
</div>
</div>
</div>
{% extends 'layout/template.twig' %}
{% block content %}
<!-- barra superior titulo de pagina-->
<div class="div-title bg-color-other">
<div class="container">
{{ title }}
</div>
</div>
<!--contenido-->
<div class="container mt20">
<div>
{% include 'filters.twig' %}
</div>
<div class="pb40">
{% include 'list.twig' %}
</div>
</div>
{% endblock %}
{% for i in 0..11 %}
<!--item lista, una receta-->
<div class="receta-and-articulo-item-list pointer mt10" style="background-image:url('assets/img/receta/receta.jpg')">
<a href="receta-detalle">
<div class="black-overlay">
<div class="text-receta-and-articulo-item-list">
<h2><b>Titulo receta</b></h2>
<p>Frase especial de receta</p>
</div>
</div>
</a>
</div>
{% endfor %}
\ No newline at end of file
......@@ -2,30 +2,237 @@
/*-*--*-*-*-*-*-**--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*--*--**-*estilos generales-*-*--*-*-*-*-*-*-*-*-*-*---*-*-*-*-*-*-*-*-*-*-*-*-**/
body{
font-family: 'Playfair Display', serif;
font-family: 'Montserrat', sans-serif;
font-size:1.5em;
letter-spacing: 0.01em;
color: #333;
}
/*----------------------------------------------------*/
/*--------------COLORES CORPORATIVOS------------------*/
/*-------------------------------------------------------*/
.color-menu-personalizado {color:#c966cd;}
.color-menu-personalizado-light {color:#dea1e0;}
.color-perfil {color:#87cdde;}
.color-menus-saludables {color:#92bb00}
.color-menus-saludables-light {color:#cdde87}
.color-trivial {color:#b3b3b3;}
.color-other {color:#000;}
.bg-color-menu-personalizado{background-color:#c966cd; }
.bg-color-menu-personalizado-light{background-color:#dea1e0; }
.bg-color-perfil{background-color:#87cdde; }
.bg-color-menus-saludables{background-color:#92bb00 }
.bg-color-trivial{background-color: #b3b3b3}
.bg-color-menus-saludables{background-color:#92bb00;}
.bg-color-menus-saludables-light{background-color:#cdde87;}
.bg-color-trivial{background-color: #b3b3b3;}
.bg-color-other{background-color: #000;}
.border-menu-personalizado{border:2px solid #c966cd!important; }
.border-menu-personalizado-light{border:2px solid #dea1e0!important; }
.border-perfil{border:2px solid #87cdde!important; }
.border-menus-saludables{border:2px solid #92bb00!important; }
.border-menus-saludables-light{border:2px solid #cdde87!important; }
.border-trivial{border:2px solid #b3b3b3!important;}
.border-other{border:2px solid #000!important;}
/*------------------------------------------------*/
/*---------------LISTADOS-------------------------*/
/*------------------------------------------------*/
.item-list-style{
padding:20px 5px 20px 5px;
border-bottom:1px solid #ccc;
cursor:pointer;
color:#333!important;
}
.item-list-style:hover, .item-list-style:active,.item-list-style:active {
/*background-color: #ccc;*/
background-color: #000;
color:#fff!important;
}
/*-----------------------------------------------------*/
/*----------- DIVS, CAJAS , ESTILOS GENÉRICOS-----------*/
/*------------------------------------------------------*/
/*******************************TOGGLE SWITCHES STYLE*****************************/
.switch {
display: inline-block;
height: 34px;
position: relative;
width: 60px;
}
.switch input {
display:none;
}
.slider {
background-color: #ccc;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
}
.slider:before {
background-color: #fff;
bottom: 4px;
content: "";
height: 26px;
left: 4px;
position: absolute;
transition: .4s;
width: 26px;
}
input:checked + .slider {
background-color: #66bb6a;
}
input:checked + .slider:before {
transform: translateX(26px);
}
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
.mt-label-switch{
margin-top:10px;
}
/*END TOGGLE SWITCHES STYLE
*/
/******************* ESTILOS DE CAJAS, CAJA SOLID AY CAJA CON BORDE Y TÍTULO EN CAJITA*******************************************/
.solid-box{
padding:20px;
color:#fff;
margin-top:20px;
}
.border-box{
position:relative;
padding:20px;
margin-top:40px;
}
.title-box-border-box{
position:absolute;
left:40px;
top:-20px;
padding:15px;
color:#fff;
}
.container-box-border-box{
margin-top:40px;
}
/*----------------------------------------------------*/
/*--------------BOTONES CORPORATIVOS------------------*/
/*-------------------------------------------------------*/
.btn-custom{
color:#fff;
width: 100%;
font-size:20px;
text-transform: uppercase;
}
.btn i{
font-size:20px!important;
}
.btn-custom:hover{
opacity:0.8;
color:#fff;
width: 100%;
}
.btn-menu-personalizado{background-color:#c966cd!important; }
.btn-menu-personalizado-light{background-color:#dea1e0!important; }
.btn-perfil{background-color:#87cdde; }
.btn-menus-saludables{background-color:#92bb00 }
.btn-menus-saludables-light{background-color:#cdde87 }
.btn-trivial{background-color: #b3b3b3}
.btn-other{background-color: #000}
/*----------------------------------------------------*/
/*------------TABS PERSONALIZADOS, PARA MENÚS CON COLORES CORPORATIVOS. PARA LA TAB DEL MENÚ PERSONALIZADO Y PARA LAS DE LOS MENÚS SALUDABLES------------------*/
/*-------------------------------------------------------*/
.nav-tabs-menu-personalizado>li.active>a, .nav-tabs-menu-personalizado>li.active>a:focus, .nav-tabs-menu-personalizado>li.active>a:hover {
color: #fff;
cursor: default;
background-color: #c966cd;
border: 1px solid #c966cd;
border-bottom-color: transparent;
}
.nav-tabs-menu-personalizado>li{
float: left;
margin-bottom: 5px;
margin-left:5px;
background-color: #e9afdd;
}
.nav-tabs-menu-personalizado>li a:hover, .nav-tabs-menu-personalizado>li a:focus, .nav-tabs-menu-personalizado>li a:active{
background-color: #c966cd;
border: 1px solid #c966cd;
}
.tab-content-menu-persoanlizado{
border: 2px solid #c966cd;
padding:20px;
}
.nav-tabs-menus-saludables>li.active>a, .nav-tabs-menus-saludables>li.active>a:focus, .nav-tabs-menus-saludables>li.active>a:hover {
color: #fff;
cursor: default;
background-color: #92bb00;
border: 1px solid #92bb00;
border-bottom-color: transparent;
}
.nav-tabs-menus-saludables>li {
float: left;
margin-bottom: 5px;
margin-left:5px;
background-color: #cdde87;
}
.nav-tabs-menus-saludables>li a:hover, .nav-tabs-menus-saludables>li a:focus, .nav-tabs-menus-saludables>li a:active{
color: #fff;
cursor: default;
background-color: #92bb00;
border: 1px solid #92bb00;
border-bottom-color: transparent;
}
.tab-content-menus-saludables{
border: 2px solid #92bb00;
padding:20px;
}
/*----------------------------------------------------*/
/*-------------TEXTOS, PADINGS, MARGINS------------------*/
/*-------------------------------------------------------*/
h1{
font-size:2.5em!important;
}
.antirow{
margin-left:0px;
margin-right:0px;
}
.whitecolor{
color:white;
}
......@@ -45,12 +252,27 @@ h1{
.mt80{
margin-top: 80px;
}
.pt0{
padding-top:0px;
}
.pt80{
padding-top: 80px;
}
.mt20{
margin-top:20px;
}
.mt30{
margin-top:30px;
}
.p10{
padding:10px;
}
.plr0{
padding-left:0px;
padding-right:0px;
}
.ptpb50{
padding-bottom: 50px;
padding-top: 50px;
......@@ -63,7 +285,12 @@ h1{
padding-bottom: 200px;
padding-top: 200px;
}
.pb40{
padding-bottom:40px;
}
.pb50{
padding-bottom:50px;
}
.pt-container-ppal{
padding-top:80px;
}
......@@ -79,7 +306,12 @@ h1{
.mb60{
margin-bottom:60px;
}
.mt10{
margin-top:10px;
}
.mt0{
margin-top:0px!important;
}
.mauto{
margin:auto!important;
}
......@@ -102,6 +334,128 @@ a:focus {
text-decoration: none !important;
}
.a-black{
color:#333;
}
.pointer{
cursor:pointer;
}
.pointer:hover{
opacity:0.7;
}
/*****************************************************************************/
/**********************************CHECKBOX Y RADIOBUTTON CUSTOM*****************/
/***************************************************************************************/
.ac-custom {
padding: 0 2em;
max-width:100%;
}
.ac-custom label {
display: inline-block;
position: relative;
font-size: 2em;
padding: 0 0 0 80px;
vertical-align: top;
color: rgba(0,0,0,0.2);
cursor: pointer;
transition: color 0.3s;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
width: 30px;
height: 30px;
top: 50%;
left: 0;
margin-top: -15px;
position: absolute;
cursor: pointer;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
opacity: 0;
display: inline-block;
vertical-align: middle;
z-index: 100;
}
.ac-custom label::before {
content: '';
border: 4px solid #CCC;
transition: opacity 0.3s;
}
.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
color: #333;
}
.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
opacity: 0.8;
}
/*trazado radio button*/
.ac-custom svg path {
stroke: #92bb00;
stroke-width: 13px;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
.ac-custom label {
display: inline-block;
position: relative;
font-size: 1em;
padding: 0 0 0 50px;
vertical-align: top;
color: rgba(0,0,0,0.2);
cursor: pointer;
transition: color 0.3s;
}
.ac-custom svg {
position: absolute;
width: 20px;
height: 20px;
top: 50%;
margin-top: -10px;
left: 5px;
pointer-events: none;
}
.ac-custom li {
margin: 0 auto;
padding: 1em 0;
position: relative;
}
@media (max-width:600px){
.ac-custom {
padding: 0 1em;
max-width:100%;
margin: 0 auto;
}
}
/*********************************************LOGIN***********************************************************************************/
/*.box-login {*/
/*position: absolute;*/
/*left: 50%;*/
/*top: 50%;*/
/*transform: translate(-50%, -50%);*/
/*width: 30%;*/
/*height: 60%;*/
/*padding: 20px;*/
/*text-align: center;*/
/*box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);*/
/*}*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-MAIN MENU HORIZONTAL NAVBAR*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
......@@ -113,24 +467,255 @@ a:focus {
margin-top:60px;
}
/************************************************DIV TITULO DE TODAS PAGINAS MENOS HOME**********************************************/
.div-title{
padding:20px;
color:#fff;
margin-top:40px;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-DASHBOARD, HOME*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.p-text-btn-home{
padding:10px 10px 10px 30px;
}
.btn-home:hover img{
-webkit-animation: bounce 1s;
animation: bounce 1s;
}
.btn-home:hover {
opacity:0.8;
}
/*----------------------------------------*/
/*----------CUADRÍCULA CUADRADOS MISMA ALTURA HOME--------------*/
.col-container {
display: table; /* Make the container element behave like a table */
width: 100%; /* Set full-width to expand the whole page */
display: table;
width: 100%;
}
.col {
display: table-cell; /* Make elements inside the container behave like table cells */
display: table-cell;
cursor:pointer;
}
.border-box-home{
border:10px solid #fff;
position:relative;
padding:20px 20px 10px 20px;
margin-top:40px;
}
/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 600px) {
.col {
display: block;
width: 100%;
}
}
\ No newline at end of file
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-FILTROS RECETARIO*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.mt-arrow-filters{
margin-top:-40px;
}
.receta-and-articulo-item-list{
background-size:cover;
height:200px;
width:100%;
}
.text-receta-and-articulo-item-list{
color:#fff;
position:absolute;
bottom:20px;
left:20px;
}
.black-overlay {
background-color: rgba(0, 0, 0, 0.5);
top: 0;
left: 0;
width: 100%;
height: 100%;
position: relative;
z-index: 9;
}
/****************************************************LISTADO DE ARTICULOS***************************************************************/
.date-box{
position:absolute;
top:0;
right:0;
}
/*-*-*-*---*-*-*--*-*-*--*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*RESPONSIVE-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*---*-*-*-*-*-*/
/***_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_vertical iphone 3, 4, 5 **_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
/*@media (width: 320px) {*/
@media (min-width: 318px) and (max-width: 329px) {
}
/*v**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_vertical androids peques**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
@media (min-width: 330px) and (max-width: 374px) {
}
/***_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_horizontal iphone 3, 4, 5 **_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
@media (min-width: 479px) and (max-width: 569px) {
}
/***_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_vertical iphone 6 u 6plis **_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
@media (min-width: 374px) and (max-width: 639px) {
}
@media (max-width:639px){
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 60%;
padding: 10px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
/**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_horizontal iphone 6 y 6plus **_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
@media (min-width: 640px) and (max-width: 736px) {
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 30%;
height: 60%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
/***_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_ Small devices (tablets, 768px and up) **_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
@media (min-width:737px) and (max-width: 991px){
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 50%;
height: 60%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
/***_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_ ipad 3/4 horizontal 1024x 768**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_*/
@media(min-width: 992px)and (max-width: 1199px){
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 50%;
height: 60%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
/***_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_ po típico 1366x768**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_**_*_ */
@media (min-width: 1199px)and (max-width: 1367px) {
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 30%;
height: 60%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
@media (min-width: 1368px)and (max-width: 1598px) {
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 30%;
height: 50%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
@media (min-width: 1599px)and (max-width: 1599px) {
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 30%;
height: 60%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
@media (min-width: 1600px)and (max-width: 1930px) {
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 30%;
height:45%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
@media (min-width: 1935px) {
/*********************************************LOGIN***********************************************************************************/
.box-login {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 30%;
height: 40%;
padding: 20px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
}
......@@ -62,6 +62,8 @@
color: #fff;
-webkit-transition: color 0.2s;
transition: color 0.2s;
font-family: 'Montserrat', sans-serif;
}
.overlay ul li a:hover,
......
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&lang=en);h1,h2,h3,h4,h5,h6{font-weight:100}h1{font-size:30px}h2{font-size:24px}h3{font-size:16px}h4{font-size:14px}h5{font-size:12px}h6{font-size:10px}h3,h4,h5{margin-top:5px;font-weight:600}.nav>li>a{color:#a7b1c2;font-weight:600;padding:14px 20px 14px 25px}.nav.navbar-right>li>a{color:#999c9e}.nav>li.active>a{color:#fff}.navbar-default .nav>li>a:focus,.navbar-default .nav>li>a:hover{background-color:#293846;color:#fff}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background:#fff}.nav.navbar-top-links>li>a:focus,.nav.navbar-top-links>li>a:hover{background-color:transparent}.nav>li>a i{margin-right:6px}.navbar{border:0}.navbar-default{background-color:transparent;border-color:#2f4050}.navbar-top-links li{display:inline-block}.navbar-top-links li:last-child{margin-right:40px}.navbar-top-links li a{padding:20px 10px;min-height:50px}.dropdown-menu{border:none;border-radius:3px;box-shadow:0 0 3px rgba(86,96,117,.7);display:none;float:left;font-size:12px;left:0;list-style:none;padding:0;position:absolute;text-shadow:none;top:100%;z-index:1000}.dropdown-menu>li>a{border-radius:3px;color:inherit;line-height:25px;margin:4px;text-align:left;font-weight:400}.dropdown-menu>li>a.font-bold{font-weight:600}.navbar-top-links .dropdown-menu li{display:block}.navbar-top-links .dropdown-menu li:last-child{margin-right:0}.navbar-top-links .dropdown-menu li a{padding:3px 20px;min-height:0}.navbar-top-links .dropdown-menu li a div{white-space:normal}.navbar-top-links .dropdown-alerts,.navbar-top-links .dropdown-messages,.navbar-top-links .dropdown-tasks{width:310px;min-width:0}.navbar-top-links .dropdown-messages{margin-left:5px}.navbar-top-links .dropdown-tasks{margin-left:-59px}.navbar-top-links .dropdown-alerts{margin-left:-123px}.navbar-top-links .dropdown-user{right:0;left:auto}.dropdown-alerts,.dropdown-messages{padding:10px}.dropdown-alerts li a,.dropdown-messages li a{font-size:12px}.dropdown-alerts li em,.dropdown-messages li em{font-size:10px}.nav.navbar-top-links .dropdown-alerts a{font-size:12px}.nav-header{padding:33px 25px;background:url(patterns/header-profile.png) no-repeat}.nav>li.active{border-left:4px solid #19aa8d;background:#293846}.nav.nav-second-level>li.active{border:none}.nav.nav-second-level.collapse[style]{height:auto!important}.nav-header a{color:#DFE4ED}.nav-header .text-muted{color:#8095a8}.minimalize-styl-2{padding:4px 12px;margin:14px 5px 5px 20px;font-size:14px;float:left}.navbar-form-custom{float:left;height:50px;padding:0;width:200px;display:inline-table}.navbar-form-custom .form-group{margin-bottom:0}.nav.navbar-top-links a{font-size:14px}.navbar-form-custom .form-control{background:none;border:none;font-size:14px;height:60px;margin:0;z-index:2000}.count-info .label{line-height:12px;padding:2px 5px;position:absolute;right:6px;top:12px}.arrow{float:right}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.nav-second-level li,.nav-third-level li{border-bottom:none!important}.nav-second-level li a{padding:7px 10px 7px 52px}.nav-third-level li a{padding-left:62px}.nav-second-level li:last-child{margin-bottom:10px}.mini-navbar .nav li:focus>.nav-second-level,body:not(.fixed-sidebar):not(.canvas-menu).mini-navbar .nav li:hover>.nav-second-level{display:block;border-radius:0 2px 2px 0;min-width:140px;height:auto}body.mini-navbar .navbar-default .nav>li>.nav-second-level li a{font-size:12px;border-radius:3px}.fixed-nav .slimScrollDiv #side-menu{padding-bottom:60px}.mini-navbar .nav-second-level li a{padding:10px 10px 10px 15px}.mini-navbar .nav-second-level{position:absolute;left:70px;top:0;background-color:#2f4050;padding:10px;font-size:12px}.canvas-menu.mini-navbar .nav-second-level{background:#293846}.mini-navbar li.active .nav-second-level{left:65px}.navbar-default .special_link a{background:#1ab394;color:#fff}.navbar-default .special_link a:hover{background:#17987e!important;color:#fff}.navbar-default .special_link a span.label{background:#fff;color:#1ab394}.navbar-default .landing_link a{background:#1cc09f;color:#fff}.navbar-default .landing_link a:hover{background:#1ab394!important;color:#fff}.navbar-default .landing_link a span.label{background:#fff;color:#1cc09f}.logo-element{text-align:center;font-size:18px;font-weight:600;color:#fff;display:none;padding:18px 0}.pace-done #page-wrapper,.pace-done .footer,.pace-done .nav-header,.pace-done .navbar-static-side,.pace-done li.active{-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}.navbar-fixed-top{transition-duration:.5s;border-bottom:1px solid #e7eaec!important;z-index:2030}.navbar-fixed-top,.navbar-static-top{background:#f3f3f4}.fixed-nav #wrapper{margin-top:60px}.fixed-nav .minimalize-styl-2{margin:14px 5px 5px 15px}.body-small .navbar-fixed-top{margin-left:0}body.mini-navbar .navbar-static-side{width:70px}body.mini-navbar .nav-label,body.mini-navbar .navbar-default .nav li a span,body.mini-navbar .profile-element{display:none}body.canvas-menu .profile-element{display:block}body:not(.fixed-sidebar):not(.canvas-menu).mini-navbar .nav-second-level{display:none}body.mini-navbar .navbar-default .nav>li>a{font-size:16px}body.mini-navbar .logo-element{display:block}body.canvas-menu .logo-element{display:none}body.mini-navbar .nav-header{padding:0;background-color:#1ab394}body.canvas-menu .nav-header{padding:33px 25px}body.mini-navbar #page-wrapper{margin:0 0 0 70px}body.canvas-menu.mini-navbar .footer,body.fixed-sidebar.mini-navbar .footer{margin:0!important}body.canvas-menu.mini-navbar #page-wrapper,body.canvas-menu.mini-navbar .footer{margin:0}body.canvas-menu .navbar-static-side,body.fixed-sidebar .navbar-static-side{position:fixed;width:220px;z-index:2001;height:100%}body.fixed-sidebar.mini-navbar .navbar-static-side{width:0}body.fixed-sidebar.mini-navbar #page-wrapper{margin:0}body.body-small.fixed-sidebar.mini-navbar #page-wrapper{margin:0 0 0 220px}body.body-small.fixed-sidebar.mini-navbar .navbar-static-side{width:220px}.canvas-menu.mini-navbar .nav li:focus>.nav-second-level,.fixed-sidebar.mini-navbar .nav li:focus>.nav-second-level{display:block;height:auto}body.fixed-sidebar.mini-navbar .navbar-default .nav>li>.nav-second-level li a{font-size:12px;border-radius:3px}body.canvas-menu.mini-navbar .navbar-default .nav>li>.nav-second-level li a{font-size:13px;border-radius:3px}.canvas-menu.mini-navbar .nav-second-level,.fixed-sidebar.mini-navbar .nav-second-level{position:relative;padding:0;font-size:13px}.canvas-menu.mini-navbar li.active .nav-second-level,.fixed-sidebar.mini-navbar li.active .nav-second-level{left:0}body.canvas-menu.mini-navbar .navbar-default .nav>li>a,body.fixed-sidebar.mini-navbar .navbar-default .nav>li>a{font-size:13px}body.canvas-menu.mini-navbar .nav-label,body.canvas-menu.mini-navbar .navbar-default .nav li a span,body.fixed-sidebar.mini-navbar .nav-label,body.fixed-sidebar.mini-navbar .navbar-default .nav li a span{display:inline}body.canvas-menu.mini-navbar .navbar-default .nav li .profile-element a span{display:block}.canvas-menu.mini-navbar .nav-second-level li a,.fixed-sidebar.mini-navbar .nav-second-level li a{padding:7px 10px 7px 52px}.canvas-menu.mini-navbar .nav-second-level,.fixed-sidebar.mini-navbar .nav-second-level{left:0}body.canvas-menu nav.navbar-static-side{z-index:2001;background:#2f4050;height:100%;position:fixed;display:none}body.canvas-menu.mini-navbar nav.navbar-static-side{display:block;width:220px}.top-navigation #page-wrapper{margin-left:0}.top-navigation .navbar-nav .dropdown-menu>.active>a{background:#fff;color:#1ab394;font-weight:700}.white-bg .navbar-fixed-top,.white-bg .navbar-static-top{background:#fff}.top-navigation .navbar{margin-bottom:0}.top-navigation .nav>li>a{padding:15px 20px;color:#676a6c}.top-navigation .nav>li a:focus,.top-navigation .nav>li a:hover{background:#fff;color:#1ab394}.top-navigation .nav>li.active{background:#fff;border:none}.top-navigation .nav>li.active>a{color:#1ab394}.top-navigation .navbar-right{margin-right:10px}.top-navigation .navbar-nav .dropdown-menu{box-shadow:none;border:1px solid #e7eaec}.top-navigation .dropdown-menu>li>a{margin:0;padding:7px 20px}.navbar .dropdown-menu{margin-top:0}.top-navigation .navbar-brand{background:#1ab394;color:#fff;padding:15px 25px}.top-navigation .navbar-top-links li:last-child{margin-right:0}.body-small.fixed-sidebar.mini-navbar .top-navigation #page-wrapper,.canvas-menu #page-wrapper,.mini-navbar .top-navigation #page-wrapper,.top-navigation.body-small.fixed-sidebar.mini-navbar #page-wrapper,.top-navigation.mini-navbar #page-wrapper{margin:0}.fixed-nav #wrapper.top-navigation,.top-navigation.fixed-nav #wrapper{margin-top:50px}.top-navigation .footer.fixed{margin-left:0!important}.top-navigation .wrapper.wrapper-content{padding:40px}.body-small .top-navigation .wrapper.wrapper-content,.top-navigation.body-small .wrapper.wrapper-content{padding:40px 0}.navbar-toggle{background-color:#1ab394;color:#fff;padding:6px 12px;font-size:14px}.top-navigation .navbar-nav .open .dropdown-menu .dropdown-header,.top-navigation .navbar-nav .open .dropdown-menu>li>a{padding:10px 15px 10px 20px}@media (max-width:768px){.top-navigation .navbar-header{display:block;float:none}}.menu-visible-lg,.menu-visible-md{display:none!important}@media (min-width:1200px){.menu-visible-lg{display:block!important}}@media (min-width:992px){.menu-visible-md{display:block!important}}@media (max-width:767px){.menu-visible-lg,.menu-visible-md{display:block!important}}.btn{border-radius:3px}.float-e-margins .btn{margin-bottom:5px}.btn-w-m{min-width:120px}.btn-primary.btn-outline{color:#1ab394}.btn-success.btn-outline{color:#1c84c6}.btn-info.btn-outline{color:#23c6c8}.btn-warning.btn-outline{color:#f8ac59}.btn-danger.btn-outline{color:#ed5565}.btn-danger.btn-outline:hover,.btn-info.btn-outline:hover,.btn-primary.btn-outline:hover,.btn-success.btn-outline:hover,.btn-warning.btn-outline:hover{color:#fff}.btn-primary{background-color:#1ab394;border-color:#1ab394;color:#FFF}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#18a689;border-color:#18a689;color:#FFF}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active[disabled],.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#1dc5a3;border-color:#1dc5a3}.btn-success{background-color:#1c84c6;border-color:#1c84c6;color:#FFF}.btn-success.active,.btn-success:active,.btn-success:focus,.btn-success:hover,.open .dropdown-toggle.btn-success{background-color:#1a7bb9;border-color:#1a7bb9;color:#FFF}.btn-success.active,.btn-success:active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.active[disabled],.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#1f90d8;border-color:#1f90d8}.btn-info{background-color:#23c6c8;border-color:#23c6c8;color:#FFF}.btn-info.active,.btn-info:active,.btn-info:focus,.btn-info:hover,.open .dropdown-toggle.btn-info{background-color:#21b9bb;border-color:#21b9bb;color:#FFF}.btn-info.active,.btn-info:active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.active[disabled],.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#26d7d9;border-color:#26d7d9}.btn-default{background-color:#c2c2c2;border-color:#c2c2c2;color:#FFF}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#bababa;border-color:#bababa;color:#FFF}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active[disabled],.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#ccc;border-color:#ccc}.btn-warning{background-color:#f8ac59;border-color:#f8ac59;color:#FFF}.btn-warning.active,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open .dropdown-toggle.btn-warning{background-color:#f7a54a;border-color:#f7a54a;color:#FFF}.btn-warning.active,.btn-warning:active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.active[disabled],.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f9b66d;border-color:#f9b66d}.btn-danger{background-color:#ed5565;border-color:#ed5565;color:#FFF}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#ec4758;border-color:#ec4758;color:#FFF}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active[disabled],.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#ef6776;border-color:#ef6776}.btn-link{color:inherit}.btn-link.active,.btn-link:active,.btn-link:focus,.btn-link:hover,.open .dropdown-toggle.btn-link{color:#1ab394;text-decoration:none}.btn-link.active,.btn-link:active,.open .dropdown-toggle.btn-link{background-image:none}.btn-link.active[disabled],.btn-link.disabled,.btn-link.disabled.active,.btn-link.disabled:active,.btn-link.disabled:focus,.btn-link.disabled:hover,.btn-link[disabled],.btn-link[disabled]:active,.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link,fieldset[disabled] .btn-link.active,fieldset[disabled] .btn-link:active,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#cacaca}.btn-white{color:inherit;background:#fff;border:1px solid #e7eaec}.btn-white.active,.btn-white:active,.btn-white:focus,.btn-white:hover,.open .dropdown-toggle.btn-white{color:inherit;border:1px solid #d2d2d2}.btn-white.active,.btn-white:active{box-shadow:0 2px 5px rgba(0,0,0,.15) inset}.btn-white.active,.btn-white:active,.open .dropdown-toggle.btn-white{background-image:none}.btn-white.active[disabled],.btn-white.disabled,.btn-white.disabled.active,.btn-white.disabled:active,.btn-white.disabled:focus,.btn-white.disabled:hover,.btn-white[disabled],.btn-white[disabled]:active,.btn-white[disabled]:focus,.btn-white[disabled]:hover,fieldset[disabled] .btn-white,fieldset[disabled] .btn-white.active,fieldset[disabled] .btn-white:active,fieldset[disabled] .btn-white:focus,fieldset[disabled] .btn-white:hover{color:#cacaca}.form-control,.form-control:focus,.has-error .form-control:focus,.has-success .form-control:focus,.has-warning .form-control:focus,.navbar-collapse,.navbar-form,.navbar-form-custom .form-control:focus,.navbar-form-custom .form-control:hover,.open .btn.dropdown-toggle,.panel,.popover,.progress,.progress-bar{box-shadow:none}.btn-outline{color:inherit;background-color:transparent;transition:all .5s}.btn-rounded{border-radius:50px}.btn-large-dim{width:90px;height:90px;font-size:42px}button.dim{display:inline-block;color:#fff;text-decoration:none;text-transform:uppercase;text-align:center;padding-top:6px;margin-right:10px;position:relative;cursor:pointer;border-radius:5px;font-weight:600;margin-bottom:20px!important}button.dim:active{top:3px}button.btn-primary.dim{box-shadow:inset 0 0 0 #16987e,0 5px 0 0 #16987e,0 10px 5px #999}button.btn-primary.dim:active{box-shadow:inset 0 0 0 #16987e,0 2px 0 0 #16987e,0 5px 3px #999}button.btn-default.dim{box-shadow:inset 0 0 0 #b3b3b3,0 5px 0 0 #b3b3b3,0 10px 5px #999}button.btn-default.dim:active{box-shadow:inset 0 0 0 #b3b3b3,0 2px 0 0 #b3b3b3,0 5px 3px #999}button.btn-warning.dim{box-shadow:inset 0 0 0 #f79d3c,0 5px 0 0 #f79d3c,0 10px 5px #999}button.btn-warning.dim:active{box-shadow:inset 0 0 0 #f79d3c,0 2px 0 0 #f79d3c,0 5px 3px #999}button.btn-info.dim{box-shadow:inset 0 0 0 #1eacae,0 5px 0 0 #1eacae,0 10px 5px #999}button.btn-info.dim:active{box-shadow:inset 0 0 0 #1eacae,0 2px 0 0 #1eacae,0 5px 3px #999}button.btn-success.dim{box-shadow:inset 0 0 0 #1872ab,0 5px 0 0 #1872ab,0 10px 5px #999}button.btn-success.dim:active{box-shadow:inset 0 0 0 #1872ab,0 2px 0 0 #1872ab,0 5px 3px #999}button.btn-danger.dim{box-shadow:inset 0 0 0 #ea394c,0 5px 0 0 #ea394c,0 10px 5px #999}button.btn-danger.dim:active{box-shadow:inset 0 0 0 #ea394c,0 2px 0 0 #ea394c,0 5px 3px #999}button.dim:before{font-size:50px;line-height:1em;font-weight:400;color:#fff;display:block;padding-top:10px}button.dim:active:before{top:7px;font-size:50px}.label{background-color:#d1dade;color:#5e5e5e;font-family:'Open Sans';font-size:10px;font-weight:600;padding:3px 8px;text-shadow:none}.badge{background-color:#d1dade;color:#5e5e5e;font-family:'Open Sans';font-size:11px;font-weight:600;padding-bottom:4px;padding-left:6px;padding-right:6px;text-shadow:none}.badge-primary,.label-primary{background-color:#1ab394;color:#FFF}.badge-success,.label-success{background-color:#1c84c6;color:#FFF}.badge-warning,.label-warning{background-color:#f8ac59;color:#FFF}.badge-warning-light,.label-warning-light{background-color:#f8ac59;color:#fff}.badge-danger,.label-danger{background-color:#ed5565;color:#FFF}.badge-info,.label-info{background-color:#23c6c8;color:#FFF}.badge-inverse,.label-inverse{background-color:#262626;color:#FFF}.badge-white,.label-white{background-color:#FFF;color:#5E5E5E}.badge-disable,.label-white{background-color:#2A2E36;color:#8B91A0}.chosen-container-single .chosen-single{background:#FFF;box-shadow:none;-moz-box-sizing:border-box;border:1px solid #CBD5DD;border-radius:2px;cursor:text;height:auto!important;margin:0;min-height:30px;overflow:hidden;padding:4px 12px;position:relative;width:100%}.chosen-container-multi .chosen-choices li.search-choice{background:#f1f1f1;border:1px solid #ededed;border-radius:2px;box-shadow:none;color:#333;cursor:default;line-height:13px;margin:3px 0 3px 5px;padding:3px 20px 3px 5px;position:relative}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f4f4f4;border-color:#DDD;color:inherit;cursor:default;z-index:2}.pagination>li>a,.pagination>li>span{background-color:#FFF;border:1px solid #DDD;color:inherit;float:left;line-height:1.42857;margin-left:-1px;padding:4px 10px;position:relative;text-decoration:none}.tooltip-inner{background-color:#2F4050}.tooltip.top .tooltip-arrow{border-top-color:#2F4050}.tooltip.right .tooltip-arrow{border-right-color:#2F4050}.tooltip.bottom .tooltip-arrow{border-bottom-color:#2F4050}.tooltip.left .tooltip-arrow{border-left-color:#2F4050}.easypiechart{position:relative;text-align:center}.easypiechart .h2{margin-left:10px;margin-top:10px;display:inline-block}.easypiechart canvas{top:0;left:0}.easypiechart .easypie-text{line-height:1;position:absolute;top:33px;width:100%;z-index:1}.easypiechart img{margin-top:-4px}.jqstooltip{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-state-default{background-color:#fff;background-image:none;background-repeat:repeat-x;box-shadow:none;color:#333;text-shadow:none;border:1px solid}.fc-button{color:inherit;border:1px solid #e7eaec;cursor:pointer;display:inline-block;height:1.9em;line-height:1.9em;overflow:hidden;padding:0 .6em;position:relative;white-space:nowrap}.fc-state-active{background-color:#1ab394;border-color:#1ab394;color:#fff}.fc-header-title h2{font-size:16px;font-weight:600;color:inherit}.fc-content .fc-widget-content,.fc-content .fc-widget-header{border-color:#e7eaec;font-weight:400}.fc-border-separate tbody{background-color:#F8F8F8}.fc-state-highlight{background:#FCF8E3}.external-event{padding:5px 10px;border-radius:2px;cursor:pointer;margin-bottom:5px}.fc-ltr .fc-event-hori.fc-event-end,.fc-rtl .fc-event-hori.fc-event-start{border-radius:2px}.fc-agenda .fc-event-time,.fc-event,.fc-event a{padding:4px 6px;background-color:#1ab394;border-color:#1ab394}.fc-event-time,.fc-event-title{color:#717171;padding:0 1px}.ui-calendar .fc-event-time,.ui-calendar .fc-event-title{color:#fff}.chat-activity-list .chat-element{border-bottom:1px solid #e7eaec}.chat-element:first-child{margin-top:0}.chat-element{padding-bottom:15px}.chat-element,.chat-element .media{margin-top:15px}.chat-element,.media-body{overflow:hidden}.media-body{display:block;width:auto}.chat-element>.pull-left{margin-right:10px}.chat-element img.img-circle,.dropdown-messages-box img.img-circle{width:38px;height:38px}.chat-element .well{border:1px solid #e7eaec;box-shadow:none;margin-top:10px;margin-bottom:5px;padding:10px 20px;font-size:11px;line-height:16px}.chat-element .actions{margin-top:10px}.chat-element .photos{margin:10px 0}.right.chat-element>.pull-right{margin-left:10px}.chat-photo{max-height:180px;border-radius:4px;overflow:hidden;margin-right:10px;margin-bottom:10px}.chat{margin:0;padding:0;list-style:none}.chat li{margin-bottom:10px;padding-bottom:5px;border-bottom:1px dotted #B3A9A9}.chat li.left .chat-body{margin-left:60px}.chat li.right .chat-body{margin-right:60px}.chat li .chat-body p{margin:0;color:#777}.chat .glyphicon,.panel .slidedown .glyphicon{margin-right:5px}.chat-panel .panel-body{height:350px;overflow-y:scroll}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover{background-color:#1ab394;border-color:#1ab394;color:#FFF;z-index:2}.list-group-item-heading{margin-top:10px}.list-group-item-text{margin:0 0 10px;color:inherit;font-size:12px;line-height:inherit}.no-padding .list-group-item{border-left:none;border-right:none;border-bottom:none}.no-padding .list-group-item:first-child{border-left:none;border-right:none;border-bottom:none;border-top:none}.no-padding .list-group{margin-bottom:0}.list-group-item{background-color:inherit;border:1px solid #e7eaec;display:block;margin-bottom:-1px;padding:10px 15px;position:relative}.elements-list .list-group-item{border-left:none;border-right:none;padding:15px 25px}.elements-list .list-group-item:first-child{border-left:none;border-right:none;border-top:none!important}.elements-list .list-group{margin-bottom:0}.elements-list a{color:inherit}.elements-list .list-group-item.active,.elements-list .list-group-item:hover{background:#f3f3f4;color:inherit;border-color:#e7eaec;border-radius:0}.elements-list li.active{transition:none}.element-detail-box{padding:25px}.flot-chart{display:block;height:200px}.widget .flot-chart.dashboard-chart{display:block;height:120px;margin-top:40px}.flot-chart.dashboard-chart{display:block;height:180px;margin-top:40px}.flot-chart-content{width:100%;height:100%}.flot-chart-pie-content{width:200px;height:200px;margin:auto}.jqstooltip{position:absolute;display:block;left:0;top:0;visibility:hidden;background:#2b303a;background:rgba(43,48,58,.8);color:#fff;text-align:left;white-space:nowrap;z-index:10000;padding:5px;min-height:22px;border-radius:3px}.jqsfield{color:#fff;text-align:left}.h-200{min-height:200px}.legendLabel{padding-left:5px}.stat-list li:first-child{margin-top:0}.stat-list{list-style:none;padding:0;margin:0}.stat-percent{float:right}.stat-list li{margin-top:15px;position:relative}table.dataTable thead .sorting,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{background:0 0}table.dataTable thead .sorting_asc:after{float:right;font-family:fontawesome}table.dataTable thead .sorting_desc:after{content:"\f0dd";float:right;font-family:fontawesome}table.dataTable thead .sorting:after{content:"\f0dc";float:right;font-family:fontawesome;color:rgba(50,50,50,.5)}.dataTables_wrapper{padding-bottom:30px}.img-circle{border-radius:50%}.btn-circle{width:30px;height:30px;padding:6px 0;border-radius:15px;text-align:center;font-size:12px;line-height:1.428571429}.btn-circle.btn-lg{width:50px;height:50px;padding:10px 16px;border-radius:25px;font-size:18px;line-height:1.33}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 16px;border-radius:35px;font-size:24px;line-height:1.33}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;border:1px solid #ddd;background-color:#eee!important}.show-grid{margin:15px 0}.css-animation-box h1{font-size:44px}.animation-efect-links a{padding:4px 6px;font-size:12px}#animation_box{background-color:#f9f8f8;border-radius:16px;width:80%;margin:0 auto;padding-top:80px}.animation-text-box{position:absolute;margin-top:40px;left:50%;margin-left:-100px;width:200px}.animation-text-info{position:absolute;margin-top:-60px;left:50%;margin-left:-100px;width:200px;font-size:10px}.animation-text-box h2{font-size:54px;font-weight:600;margin-bottom:5px}.animation-text-box p{font-size:12px;text-transform:uppercase}.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pace .pace-progress{background:#1ab394;position:fixed;z-index:2000;top:0;right:100%;width:100%;height:2px}.pace-inactive{display:none}.widget{border-radius:5px;padding:15px 20px;margin-bottom:10px;margin-top:10px}.widget.style1 h2{font-size:30px}.widget h2,.widget h3{margin-top:5px;margin-bottom:0}.widget-text-box{padding:20px;border:1px solid #e7eaec;background:#fff}.widget-head-color-box{border-radius:5px 5px 0 0;margin-top:10px}.widget .flot-chart{height:100px}.vertical-align div{display:inline-block;vertical-align:middle}.vertical-align h2,.vertical-align h3{margin:0}.todo-list{list-style:none;margin:0;padding:0;font-size:14px}.todo-list.small-list{font-size:12px}.todo-list.small-list>li{background:#f3f3f4;border-left:none;border-right:none;border-radius:4px;color:inherit;margin-bottom:2px;padding:6px 6px 6px 12px}.todo-list.small-list .btn-group-xs>.btn,.todo-list.small-list .btn-xs{border-radius:5px;font-size:10px;line-height:1.5;padding:1px 2px 1px 5px}.todo-list>li{background:#f3f3f4;border-left:6px solid #e7eaec;border-right:6px solid #e7eaec;border-radius:4px;color:inherit;margin-bottom:2px;padding:10px}.todo-list .handle{cursor:move;display:inline-block;font-size:16px;margin:0 5px}.todo-list>li .label{font-size:9px;margin-left:10px}.check-link{font-size:16px}.todo-completed{text-decoration:line-through}.geo-statistic h1{font-size:36px;margin-bottom:0}.glyphicon.fa{font-family:FontAwesome}.inline{display:inline-block!important}.input-s-sm{width:120px}.input-s{width:200px}.input-s-lg{width:250px}.i-checks{padding-left:0}.form-control,.single-line{background-color:#FFF;background-image:none;border:1px solid #e5e6e7;border-radius:1px;color:inherit;display:block;padding:6px 12px;transition:border-color .15s ease-in-out 0s,box-shadow .15s ease-in-out 0s;width:100%;font-size:14px}.form-control:focus,.single-line:focus{border-color:#1ab394!important}.has-success .form-control{border-color:#1ab394}.has-warning .form-control{border-color:#f8ac59}.has-error .form-control{border-color:#ed5565}.has-success .control-label{color:#1ab394}.has-warning .control-label{color:#f8ac59}.has-error .control-label{color:#ed5565}.input-group-addon{background-color:#fff;border:1px solid #E5E6E7;border-radius:1px;color:inherit;font-size:14px;font-weight:400;line-height:1;padding:6px 12px;text-align:center}.spinner-buttons.input-group-btn .btn-xs{line-height:1.13}.spinner-buttons.input-group-btn{width:20%}.noUi-connect{background:#1ab394;box-shadow:none}.slider_red .noUi-connect{background:#ed5565;box-shadow:none}.ui-sortable .ibox-title{cursor:move}.ui-sortable-placeholder{border:1px dashed #cecece!important;visibility:visible!important;background:#e7eaec}.ibox.ui-sortable-placeholder{margin:0 0 23px!important}.onoffswitch{position:relative;width:54px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.onoffswitch-checkbox{display:none}.onoffswitch-label{display:block;overflow:hidden;cursor:pointer;border:2px solid #1AB394;border-radius:3px}.onoffswitch-inner{display:block;width:200%;margin-left:-100%;-moz-transition:margin .3s ease-in 0s;-webkit-transition:margin .3s ease-in 0s;-o-transition:margin .3s ease-in 0s;transition:margin .3s ease-in 0s}.onoffswitch-inner:after,.onoffswitch-inner:before{display:block;float:left;width:50%;height:16px;padding:0;line-height:16px;font-size:10px;color:#fff;font-family:Trebuchet,Arial,sans-serif;font-weight:700;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.onoffswitch-inner:before{content:"ON";padding-left:7px;background-color:#1AB394;color:#FFF}.onoffswitch-inner:after{content:"OFF";padding-right:7px;background-color:#FFF;color:#919191;text-align:right}.onoffswitch-switch{display:block;width:18px;margin:0;background:#FFF;border:2px solid #1AB394;border-radius:3px;position:absolute;top:0;bottom:0;right:36px;-moz-transition:all .3s ease-in 0s;-webkit-transition:all .3s ease-in 0s;-o-transition:all .3s ease-in 0s;transition:all .3s ease-in 0s}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner{margin-left:0}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch{right:0}.ui-jqgrid{-moz-box-sizing:content-box}.ui-jqgrid-btable,.ui-jqgrid-htable{border-collapse:separate}.ui-jqgrid-titlebar{height:40px;line-height:15px;color:#676a6c;background-color:#F9F9F9;text-shadow:0 1px 0 rgba(255,255,255,.5)}.ui-jqgrid .ui-jqgrid-title{float:left;margin:1.1em 1em .2em}.ui-jqgrid .ui-jqgrid-titlebar{position:relative;border-left:0 solid;border-right:0 solid;border-top:0 solid}.ui-widget-header{background:#f5f5f6;text-transform:uppercase;border-top-left-radius:0;border-top-right-radius:0}.ui-jqgrid tr.ui-row-ltr td{border-right-style:solid;border-right-width:1px;text-align:left;border-color:#DDD;background-color:inherit}.ui-search-toolbar input[type=text]{font-size:12px;height:15px;border:1px solid #CCC;border-radius:0}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{background:#F9F9F9;border:1px solid #DDD;line-height:15px;font-weight:700;color:#676a6c;text-shadow:0 1px 0 rgba(255,255,255,.5)}.ui-widget-content{box-sizing:content-box}.ui-icon-triangle-1-n{background-position:1px -16px}.ui-jqgrid tr.ui-search-toolbar th{border-top-width:0!important;border-top-color:inherit!important;border-top-style:ridge!important}.ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus{background:#f5f5f5;border-collapse:separate}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{background:#f2fbff}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #ddd;background:#fff;font-weight:400;color:#212121}.ui-jqgrid .ui-pg-input{font-size:inherit;width:50px;border:1px solid #CCC;height:15px}.ui-jqgrid .ui-pg-selbox{display:block;font-size:1em;height:25px;line-height:18px;margin:0;width:auto}.ui-jqgrid .ui-pager-control{position:relative}.ui-jqgrid .ui-jqgrid-pager{height:32px;position:relative}.ui-pg-table .navtable .ui-corner-all{border-radius:0}.ui-jqgrid .ui-pg-button:hover{padding:1px;border:0}.ui-jqgrid .loading{position:absolute;top:45%;left:45%;width:auto;height:auto;z-index:101;padding:6px;margin:5px;text-align:center;font-weight:700;display:none;border-width:2px!important;font-size:11px}.ui-jqgrid .form-control{height:10px;width:auto;display:inline;padding:10px 12px}.ui-jqgrid-pager{height:32px}.ui-corner-all,.ui-corner-left,.ui-corner-tl,.ui-corner-top{border-top-left-radius:0}.ui-corner-all,.ui-corner-right,.ui-corner-top,.ui-corner-tr{border-top-right-radius:0}.ui-corner-all,.ui-corner-bl,.ui-corner-bottom,.ui-corner-left{border-bottom-left-radius:0}.ui-corner-all,.ui-corner-bottom,.ui-corner-br,.ui-corner-right{border-bottom-right-radius:0}.ui-widget-content{border:1px solid #ddd}.ui-jqgrid .ui-jqgrid-titlebar{padding:0;border-bottom:1px solid #ddd}.ui-jqgrid tr.jqgrow td{padding:6px}.ui-jqdialog .ui-jqdialog-titlebar{padding:10px}.ui-jqdialog .ui-jqdialog-title{float:none!important}.ui-jqdialog>.ui-resizable-se{position:absolute}.dd{position:relative;display:block;margin:0;padding:0;list-style:none;font-size:13px;line-height:20px}.dd-list{display:block;position:relative;margin:0;padding:0;list-style:none}.dd-list .dd-list{padding-left:30px}.dd-collapsed .dd-list{display:none}.dd-empty,.dd-item,.dd-placeholder{display:block;position:relative;margin:0;padding:0;min-height:20px;font-size:13px;line-height:20px}.dd-handle{display:block;margin:5px 0;padding:5px 10px;color:#333;text-decoration:none;border:1px solid #e7eaec;background:#f5f5f5;-webkit-border-radius:3px;border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box}.dd-handle span{font-weight:700}.dd-handle:hover{background:#f0f0f0;cursor:pointer;font-weight:700}.dd-item>button{display:block;position:relative;cursor:pointer;float:left;width:25px;height:20px;margin:5px 0;padding:0;text-indent:100%;white-space:nowrap;overflow:hidden;border:0;background:0 0;font-size:12px;line-height:1;text-align:center;font-weight:700}.dd-item>button:before{content:'+';display:block;position:absolute;width:100%;text-align:center;text-indent:0}.dd-item>button[data-action=collapse]:before{content:'-'}#nestable2 .dd-item>button{font-family:FontAwesome;height:34px;width:33px;color:#c1c1c1}#nestable2 .dd-item>button:before{content:"\f067"}#nestable2 .dd-item>button[data-action=collapse]:before{content:"\f068"}.dd-empty,.dd-placeholder{margin:5px 0;padding:0;min-height:30px;background:#f2fbff;border:1px dashed #b6bcbf;box-sizing:border-box;-moz-box-sizing:border-box}.dd-empty{border:1px dashed #bbb;min-height:100px;background-color:#e5e5e5;background-image:-webkit-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff),-webkit-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff);background-image:-moz-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff),-moz-linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff);background-image:linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff),linear-gradient(45deg,#fff 25%,transparent 25%,transparent 75%,#fff 75%,#fff);background-size:60px 60px;background-position:0 0,30px 30px}.dd-dragel{position:absolute;z-index:9999;pointer-events:none}.dd-dragel>.dd-item .dd-handle{margin-top:0}.dd-dragel .dd-handle{-webkit-box-shadow:2px 4px 6px 0 rgba(0,0,0,.1);box-shadow:2px 4px 6px 0 rgba(0,0,0,.1)}.nestable-lists{display:block;clear:both;padding:30px 0;width:100%;border:0;border-top:2px solid #ddd;border-bottom:2px solid #ddd}#nestable-menu{padding:0;margin:10px 0 20px}#nestable-output,#nestable2-output{width:100%;line-height:1.333333em;font-family:open sans,lucida grande,lucida sans unicode,helvetica,arial,sans-serif}#nestable2 .dd-handle{color:inherit;border:1px dashed #e7eaec;background:#f3f3f4;padding:10px}#nestable2 span.label{margin-right:10px}#nestable-output,#nestable2-output{font-size:12px;padding:25px;box-sizing:border-box;-moz-box-sizing:border-box}.CodeMirror{border:1px solid #eee;height:auto}.CodeMirror-scroll{overflow-y:hidden;overflow-x:auto}.google-map{height:300px}label.error{color:#cc5965;display:inline-block;margin-left:5px}.form-control.error{border:1px dotted #cc5965}.gridStyle{border:1px solid #d4d4d4;width:100%;height:400px}.gridStyle2{border:1px solid #d4d4d4;width:500px;height:300px}.ngH eaderCell{border-right:none;border-bottom:1px solid #e7eaec}.ngCell{border-right:none}.ngTopPanel{background:#F5F5F6}.ngRow.even{background:#f9f9f9}.ngRow.selected{background:#EBF2F1}.ngRow{border-bottom:1px solid #e7eaec}.ngCell{background-color:transparent}.ngHeaderCell{border-right:none}#toast-container>.toast{background-image:none!important}#toast-container>.toast:before{position:fixed;font-family:FontAwesome;font-size:24px;line-height:24px;float:left;color:#FFF;padding-right:.5em;margin:auto .5em auto -1.5em}#toast-container>.toast-warning:before{content:"\f0e7"}#toast-container>.toast-error:before{content:"\f071"}#toast-container>.toast-info:before{content:"\f005"}#toast-container>.toast-success:before{content:"\f00C"}#toast-container>div{-moz-box-shadow:0 0 3px #999;-webkit-box-shadow:0 0 3px #999;box-shadow:0 0 3px #999;opacity:.9;-ms-filter:alpha(opacity=90);filter:alpha(opacity=90)}#toast-container>:hover{-moz-box-shadow:0 0 4px #999;-webkit-box-shadow:0 0 4px #999;box-shadow:0 0 4px #999;opacity:1;-ms-filter:alpha(opacity=100);filter:alpha(opacity=100);cursor:pointer}.toast,.toast-success{background-color:#1ab394}.toast-error{background-color:#ed5565}.toast-info{background-color:#23c6c8}.toast-warning{background-color:#f8ac59}.toast-top-full-width{margin-top:20px}.toast-bottom-full-width{margin-bottom:20px}.cg-notify-message.inspinia-notify{background:#fff;padding:0;box-shadow:0 0 1px rgba(0,0,0,.1),0 2px 4px rgba(0,0,0,.2);-webkit-box-shadow:0 0 1 px rgba(0,0,0,.1),0 2 px 4 px rgba(0,0,0,.2);-moz-box-shadow:0 0 1 px rgba(0,0,0,.1),0 2 px 4 px rgba(0,0,0,.2);border:none;margin-top:30px;color:inherit}.inspinia-notify.alert-warning{border-left:6px solid #f8ac59}.inspinia-notify.alert-success{border-left:6px solid #1c84c6}.inspinia-notify.alert-danger{border-left:6px solid #ed5565}.inspinia-notify.alert-info{border-left:6px solid #1ab394}.img-container,.img-preview{overflow:hidden;text-align:center;width:100%}.img-preview-sm{height:130px;width:200px}.forum-post-container .media{margin:10px;padding:20px 10px;border-bottom:1px solid #f1f1f1}.forum-avatar{float:left;margin-right:20px;text-align:center;width:110px}.forum-avatar .img-circle{height:48px;width:48px}.author-info{color:#676a6c;font-size:11px;margin-top:5px;text-align:center}.forum-post-info{padding:9px 12px 6px;background:#f9f9f9;border:1px solid #f1f1f1}.media-body>.media{background:#f9f9f9;border-radius:3px;border:1px solid #f1f1f1}.forum-post-container .media-body .photos{margin:10px 0}.forum-photo{max-width:140px;border-radius:3px}.media-body>.media .forum-avatar{width:70px;margin-right:10px}.media-body>.media .forum-avatar .img-circle{height:38px;width:38px}.mid-icon{font-size:66px}.forum-item{margin:10px 0;padding:10px 0 20px;border-bottom:1px solid #f1f1f1}.views-number{font-size:24px;line-height:18px;font-weight:400}.forum-container,.forum-post-container{padding:30px!important}.forum-item small{color:#999}.forum-item .forum-sub-title{color:#999;margin-left:50px}.forum-title{margin:15px 0}.forum-info{text-align:center}.forum-desc{color:#999}.forum-icon{float:left;width:30px;margin-right:20px;text-align:center}a.forum-item-title{color:inherit;display:block;font-size:18px;font-weight:600}a.forum-item-title:hover{color:inherit}.forum-icon .fa{font-size:30px;margin-top:8px;color:#9b9b9b}.forum-item.active .fa,.forum-item.active a.forum-item-title{color:#1ab394}@media (max-width:992px){.forum-info{margin:15px 0 10px;display:none}.forum-desc{float:none!important}}.vertical-container{width:90%;max-width:1170px;margin:0 auto}.vertical-container::after{content:'';display:table;clear:both}#vertical-timeline{position:relative;padding:0;margin-top:2em;margin-bottom:2em}#vertical-timeline::before{content:'';position:absolute;top:0;left:18px;height:100%;width:4px;background:#f1f1f1}.vertical-timeline-content .btn{float:right}#vertical-timeline.light-timeline:before{background:#e7eaec}.dark-timeline .vertical-timeline-content:before{border-color:transparent #f5f5f5 transparent transparent}.dark-timeline.center-orientation .vertical-timeline-content:before{border-color:transparent transparent transparent #f5f5f5}.dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before,.dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before{border-color:transparent #f5f5f5 transparent transparent}.dark-timeline .vertical-timeline-content,.dark-timeline.center-orientation .vertical-timeline-content{background:#f5f5f5}@media only screen and (min-width:1170px){#vertical-timeline.center-orientation{margin-top:3em;margin-bottom:3em}#vertical-timeline.center-orientation:before{left:50%;margin-left:-2px}}@media only screen and (max-width:1170px){.center-orientation.dark-timeline .vertical-timeline-content:before{border-color:transparent #f5f5f5 transparent transparent}}.vertical-timeline-block{position:relative;margin:2em 0}.vertical-timeline-block:after{content:"";display:table;clear:both}.vertical-timeline-block:first-child{margin-top:0}.vertical-timeline-block:last-child{margin-bottom:0}@media only screen and (min-width:1170px){.center-orientation .vertical-timeline-block{margin:4em 0}.center-orientation .vertical-timeline-block:first-child{margin-top:0}.center-orientation .vertical-timeline-block:last-child{margin-bottom:0}}.vertical-timeline-icon{position:absolute;top:0;left:0;width:40px;height:40px;border-radius:50%;font-size:16px;border:3px solid #f1f1f1;text-align:center}.vertical-timeline-icon i{display:block;width:24px;height:24px;position:relative;left:50%;top:50%;margin-left:-12px;margin-top:-9px}@media only screen and (min-width:1170px){.center-orientation .vertical-timeline-icon{width:50px;height:50px;left:50%;margin-left:-25px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden;font-size:19px}.center-orientation .vertical-timeline-icon i{margin-left:-12px;margin-top:-10px}.center-orientation .cssanimations .vertical-timeline-icon.is-hidden{visibility:hidden}}.vertical-timeline-content{position:relative;margin-left:60px;background:#fff;border-radius:.25em;padding:1em}.vertical-timeline-content:after{content:"";display:table;clear:both}.vertical-timeline-content h2{font-weight:400;margin-top:4px}.vertical-timeline-content p{margin:1em 0;line-height:1.6}.vertical-timeline-content .vertical-date{float:left;font-weight:500}.vertical-date small{color:#1ab394;font-weight:400}.vertical-timeline-content::before{content:'';position:absolute;top:16px;right:100%;height:0;width:0;border:7px solid transparent;border-right:7px solid #fff}@media only screen and (min-width:768px){.vertical-timeline-content h2{font-size:18px}.vertical-timeline-content p{font-size:13px}}@media only screen and (min-width:1170px){.center-orientation .vertical-timeline-content{margin-left:0;padding:1.6em;width:45%}.center-orientation .vertical-timeline-content::before{top:24px;left:100%;border-color:transparent;border-left-color:#fff}.center-orientation .vertical-timeline-content .btn{float:left}.center-orientation .vertical-timeline-content .vertical-date{position:absolute;width:100%;left:122%;top:2px;font-size:14px}.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content{float:right}.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before{top:24px;left:auto;right:100%;border-color:transparent;border-right-color:#fff}.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn{float:right}.center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date{left:auto;right:122%;text-align:right}.center-orientation .cssanimations .vertical-timeline-content.is-hidden{visibility:hidden}}.sidebard-panel{width:220px;background:#ebebed;padding:10px 20px;position:absolute;right:0}.sidebard-panel .feed-element img.img-circle{width:32px;height:32px}.media-body,.sidebard-panel .feed-element,.sidebard-panel p{font-size:12px}.sidebard-panel .feed-element{margin-top:20px;padding-bottom:0}.sidebard-panel .list-group{margin-bottom:10px}.sidebard-panel .list-group .list-group-item{padding:5px 0;font-size:12px;border:0}.sidebar-content .wrapper,.wrapper.sidebar-content{padding-right:230px!important}.body-small .sidebar-content .wrapper,.body-small .wrapper.sidebar-content{padding-right:20px!important}#right-sidebar{background-color:#fff;border-left:1px solid #e7eaec;border-top:1px solid #e7eaec;overflow:hidden;position:fixed;top:60px;width:260px!important;z-index:1009;bottom:0;right:-260px}#right-sidebar.sidebar-open{right:0}#right-sidebar.sidebar-open.sidebar-top{top:0;border-top:none}.sidebar-container ul.nav-tabs{border:none}.sidebar-container ul.nav-tabs.navs-4 li{width:25%}.sidebar-container ul.nav-tabs.navs-3 li{width:33.3333%}.sidebar-container ul.nav-tabs.navs-2 li{width:50%}.sidebar-container ul.nav-tabs li{border:none}.sidebar-container ul.nav-tabs li a{border:none;padding:12px 10px;margin:0;border-radius:0;background:#2f4050;color:#fff;text-align:center;border-right:1px solid #334556}.sidebar-container ul.nav-tabs li.active a{border:none;background:#f9f9f9;color:#676a6c;font-weight:700}.sidebar-container .nav-tabs>li.active>a:focus,.sidebar-container .nav-tabs>li.active>a:hover{border:none}.sidebar-container ul.sidebar-list{margin:0;padding:0}.sidebar-container ul.sidebar-list li{border-bottom:1px solid #e7eaec;padding:15px 20px;list-style:none;font-size:12px}.sidebar-container .sidebar-message:nth-child(2n+2){background:#f9f9f9}.sidebar-container ul.sidebar-list li a{text-decoration:none;color:inherit}.sidebar-container .sidebar-content{padding:15px 20px;font-size:12px}.sidebar-container .sidebar-title{background:#f9f9f9;padding:20px;border-bottom:1px solid #e7eaec}.sidebar-container .sidebar-title h3{margin-bottom:3px;padding-left:2px}.sidebar-container .tab-content h4{margin-bottom:5px}.sidebar-container .sidebar-message>a>.pull-left{margin-right:10px}.sidebar-container .sidebar-message>a{text-decoration:none;color:inherit}.sidebar-container .sidebar-message{padding:15px 20px}.sidebar-container .sidebar-message .message-avatar{height:38px;width:38px;border-radius:50%}.sidebar-container .setings-item{padding:15px 20px;border-bottom:1px solid #e7eaec}body{font-family:"open sans","Helvetica Neue",Helvetica,Arial,sans-serif;background-color:#2f4050;font-size:13px;color:#676a6c;overflow-x:hidden}body,body.full-height-layout #page-wrapper,body.full-height-layout #wrapper,html{height:100%}body.boxed-layout{background:url(patterns/shattered.png)}body.boxed-layout #wrapper{background-color:#2f4050;max-width:1200px;margin:0 auto;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.75);-moz-box-shadow:0 0 5px 0 rgba(0,0,0,.75);box-shadow:0 0 5px 0 rgba(0,0,0,.75)}.boxed-layout #wrapper.top-navigation,.top-navigation.boxed-layout #wrapper{max-width:1300px!important}.block{display:block}.clear{display:block;overflow:hidden}a{cursor:pointer}a:focus,a:hover{text-decoration:none}.border-bottom{border-bottom:1px solid #e7eaec!important}.font-bold{font-weight:600}.font-noraml{font-weight:400}.text-uppercase{text-transform:uppercase}.b-r{border-right:1px solid #e7eaec}.hr-line-dashed{border-top:1px dashed #e7eaec;color:#fff;background-color:#fff;height:1px;margin:20px 0}.hr-line-solid{border-bottom:1px solid #e7eaec;background-color:transparent;border-style:solid!important;margin-top:15px;margin-bottom:15px}video{width:100%!important;height:auto!important}.gallery>.row>div{margin-bottom:15px}.fancybox img{margin-bottom:5px;width:24%}.note-editor{height:auto;min-height:300px}.modal-content{background-clip:padding-box;background-color:#FFF;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,.3);outline:0;position:relative}.modal-dialog{z-index:1200}.modal-body{padding:20px 30px 30px}.inmodal .modal-body{background:#f8fafb}.inmodal .modal-header{padding:30px 15px;text-align:center}.animated.modal.fade .modal-dialog{-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}.inmodal .modal-title{font-size:26px}.inmodal .modal-icon{font-size:84px;color:#e2e3e3}.modal-footer{margin-top:0}#wrapper{width:100%;overflow-x:hidden}.wrapper{padding:0 20px}.wrapper-content{padding:20px 10px 40px}#page-wrapper{padding:0 15px;min-height:568px;position:relative!important}@media (min-width:768px){#page-wrapper{position:inherit;margin:0 0 0 240px;min-height:1000px}}.title-action{text-align:right;padding-top:30px}.ibox-content h1,.ibox-content h2,.ibox-content h3,.ibox-content h4,.ibox-content h5,.ibox-title h1,.ibox-title h2,.ibox-title h3,.ibox-title h4,.ibox-title h5{margin-top:5px}ol.unstyled,ul.unstyled{list-style:none;margin-left:0}.big-icon{font-size:160px;color:#e5e6e7}.footer{background:#fff;border-top:1px solid #e7eaec;bottom:0;left:0;padding:10px 20px;position:absolute;right:0}.footer.fixed_full{position:fixed;bottom:0;left:0;right:0;z-index:1000;padding:10px 20px;background:#fff;border-top:1px solid #e7eaec}.footer.fixed{position:fixed;bottom:0;left:0;right:0;z-index:1000;padding:10px 20px;background:#fff;border-top:1px solid #e7eaec;margin-left:220px}body.body-small.mini-navbar .footer.fixed,body.mini-navbar .footer.fixed{margin:0 0 0 70px}body.canvas-menu .footer.fixed,body.mini-navbar.canvas-menu .footer.fixed{margin:0!important}body.fixed-sidebar.body-small.mini-navbar .footer.fixed{margin:0 0 0 220px}body.body-small .footer.fixed{margin-left:0}.page-heading{border-top:0;padding:0 10px 20px}.panel-heading h1,.panel-heading h2{margin-bottom:5px}.table-bordered{border:1px solid #EBEBEB}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{background-color:#F5F5F6}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #e7e7e7}.table>thead>tr>th{border-bottom:1px solid #DDD}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{border-top:1px solid #e7eaec;line-height:1.42857;padding:8px;vertical-align:top}.panel.blank-panel{background:0 0;margin:0}.blank-panel .panel-heading{padding-bottom:0}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:0 0;border-color:#ddd #ddd transparent;border-bottom:#f3f3f4;border-image:none;border-style:solid;border-width:1px;color:#555;cursor:default}.nav.nav-tabs li{background:0 0;border:none}.nav-tabs>li>a{color:#A7B1C2;font-weight:600;padding:10px 20px 10px 25px}.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background-color:#e6e6e6;color:#676a6c}.ui-tab .tab-content{padding:20px 0}.no-padding{padding:0!important}.no-borders{border:none!important}.no-margins{margin:0!important}.no-top-border{border-top:0!important}.ibox-content.text-box{padding-bottom:0;padding-top:15px}.border-left-right{border-left:1px solid #e7eaec;border-right:1px solid #e7eaec;border-top:none;border-bottom:none}.border-left{border-left:1px solid #e7eaec;border-right:none;border-top:none;border-bottom:none}.border-right{border-left:none;border-right:1px solid #e7eaec;border-top:none;border-bottom:none}.full-width{width:100%!important}.link-block{font-size:12px;padding:10px}.nav.navbar-top-links .link-block a{font-size:12px}.link-block a{font-size:10px;color:inherit}body.mini-navbar .branding{display:none}img.circle-border{border:6px solid #FFF;border-radius:50%}.branding{float:left;color:#FFF;font-size:18px;font-weight:600;padding:17px 20px;text-align:center;background-color:#1ab394}.login-panel{margin-top:25%}.icons-box h3{margin-top:10px;margin-bottom:10px}.icons-box .infont a i{font-size:25px;display:block;color:#676a6c}.icons-box .infont a{color:#a6a8a9;padding:10px;margin:1px;display:block}.ui-draggable .ibox-title{cursor:move}.breadcrumb{background-color:#fff;padding:0;margin-bottom:0}.breadcrumb>.active,.breadcrumb>li a{color:inherit}code{background-color:#F9F2F4;border-radius:4px;color:#ca4440;font-size:90%;padding:2px 4px;white-space:nowrap}.ibox{clear:both;margin-bottom:25px;margin-top:0;padding:0}.ibox.collapsed .ibox-content{display:none}.ibox.collapsed .fa.fa-chevron-up:before{content:"\f078"}.ibox.collapsed .fa.fa-chevron-down:before{content:"\f077"}.ibox:after,.ibox:before{display:table}.ibox-title{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background-color:#fff;border-color:#e7eaec;border-image:none;border-style:solid solid none;border-width:4px 0 0;color:inherit;margin-bottom:0;padding:14px 15px 7px;min-height:48px}.ibox-content{background-color:#fff;color:inherit;padding:15px 20px 20px;border-color:#e7eaec;border-image:none;border-style:solid solid none;border-width:1px 0}table.table-mail tr td{padding:12px}.table-mail .check-mail{padding-left:20px}.table-mail .mail-date{padding-right:20px}.check-mail,.star-mail{width:40px}.unread td,.unread td a{font-weight:600;color:inherit}.read td,.read td a{font-weight:400;color:inherit}.unread td{background-color:#f9f8f8}.ibox-content{clear:both}.ibox-heading{background-color:#f3f6fb;border-bottom:none}.ibox-heading h3{font-weight:200;font-size:24px}.ibox-title h5{display:inline-block;font-size:14px;margin:0 0 7px;padding:0;text-overflow:ellipsis;float:left}.ibox-title .label{float:left;margin-left:4px}.ibox-tools{display:inline-block;float:right;margin-top:0;position:relative;padding:0}.ibox-tools a{cursor:pointer;margin-left:5px;color:#c4c4c4}.ibox-tools a.btn-primary{color:#fff}.ibox-tools .dropdown-menu>li>a{padding:4px 10px;font-size:12px}.ibox .open>.dropdown-menu{left:auto;right:0}.gray-bg{background-color:#f3f3f4}.white-bg{background-color:#fff}.navy-bg{background-color:#1ab394;color:#fff}.blue-bg{background-color:#1c84c6;color:#fff}.lazur-bg{background-color:#23c6c8;color:#fff}.yellow-bg{background-color:#f8ac59;color:#fff}.red-bg{background-color:#ed5565;color:#fff}.black-bg{background-color:#262626}.panel-primary{border-color:#1ab394}.panel-primary>.panel-heading{background-color:#1ab394;border-color:#1ab394}.panel-success{border-color:#1c84c6}.panel-success>.panel-heading{background-color:#1c84c6;border-color:#1c84c6;color:#fff}.panel-info{border-color:#23c6c8}.panel-info>.panel-heading{background-color:#23c6c8;border-color:#23c6c8;color:#fff}.panel-warning{border-color:#f8ac59}.panel-warning>.panel-heading{background-color:#f8ac59;border-color:#f8ac59;color:#fff}.panel-danger{border-color:#ed5565}.panel-danger>.panel-heading{background-color:#ed5565;border-color:#ed5565;color:#fff}.progress-bar{background-color:#1ab394}.progress-small,.progress-small .progress-bar{height:10px}.progress-mini,.progress-small{margin-top:5px}.progress-mini,.progress-mini .progress-bar{height:5px;margin-bottom:0}.progress-bar-navy-light{background-color:#3dc7ab}.progress-bar-success{background-color:#1c84c6}.progress-bar-info{background-color:#23c6c8}.progress-bar-warning{background-color:#f8ac59}.progress-bar-danger{background-color:#ed5565}.panel-title{font-size:inherit}.jumbotron{border-radius:6px;padding:40px}.jumbotron h1{margin-top:0}.text-navy{color:#1ab394}.text-primary{color:inherit}.text-success{color:#1c84c6}.text-info{color:#23c6c8}.text-warning{color:#f8ac59}.text-danger{color:#ed5565}.text-muted{color:#888}.simple_tag{background-color:#f3f3f4;border:1px solid #e7eaec;border-radius:2px;color:inherit;font-size:10px;margin-right:5px;margin-top:5px;padding:5px 12px;display:inline-block}.img-shadow{-webkit-box-shadow:0 0 3px 0 #919191;-moz-box-shadow:0 0 3px 0 #919191;box-shadow:0 0 3px 0 #919191}.ComposeEmail .navbar.navbar-static-top,.Dashboard_2 .navbar.navbar-static-top,.Dashboard_3 .navbar.navbar-static-top,.Dashboard_4_1 .navbar.navbar-static-top,.EmailView .navbar.navbar-static-top,.Inbox .navbar.navbar-static-top,.dashboards\.dashboard_2 nav.navbar,.dashboards\.dashboard_3 nav.navbar,.dashboards\.dashboard_4_1 nav.navbar,.mailbox\.email_compose nav.navbar,.mailbox\.email_view nav.navbar,.mailbox\.inbox nav.navbar{background:#fff}a.close-canvas-menu{position:absolute;top:10px;right:15px;z-index:1011;color:#a7b1c2}a.close-canvas-menu:hover{color:#fff}.full-height{height:100%}.fh-breadcrumb{height:calc(100% - 196px);margin:0 -15px;position:relative}.fh-no-breadcrumb{height:calc(100% - 99px);margin:0 -15px;position:relative}.fh-column{background:#fff;height:100%;width:240px;float:left}.modal-backdrop{z-index:2040!important}.modal{z-index:2050!important}.spiner-example{height:200px;padding-top:70px}.p-xxs{padding:5px}.p-xs{padding:10px}.p-sm{padding:15px}.p-m{padding:20px}.p-md{padding:25px}.p-lg{padding:30px}.p-xl{padding:40px}.m-xxs{margin:2px 4px}.m-xs{margin:5px}.m-sm{margin:10px}.m{margin:15px}.m-md{margin:20px}.m-lg{margin:30px}.m-xl{margin:50px}.m-n{margin:0!important}.m-l-none{margin-left:0}.m-l-xs{margin-left:5px}.m-l-sm{margin-left:10px}.m-l{margin-left:15px}.m-l-md{margin-left:20px}.m-l-lg{margin-left:30px}.m-l-xl{margin-left:40px}.m-l-n-xxs{margin-left:-1px}.m-l-n-xs{margin-left:-5px}.m-l-n-sm{margin-left:-10px}.m-l-n{margin-left:-15px}.m-l-n-md{margin-left:-20px}.m-l-n-lg{margin-left:-30px}.m-l-n-xl{margin-left:-40px}.m-t-none{margin-top:0}.m-t-xxs{margin-top:1px}.m-t-xs{margin-top:5px}.m-t-sm{margin-top:10px}.m-t{margin-top:15px}.m-t-md{margin-top:20px}.m-t-lg{margin-top:30px}.m-t-xl{margin-top:40px}.m-t-n-xxs{margin-top:-1px}.m-t-n-xs{margin-top:-5px}.m-t-n-sm{margin-top:-10px}.m-t-n{margin-top:-15px}.m-t-n-md{margin-top:-20px}.m-t-n-lg{margin-top:-30px}.m-t-n-xl{margin-top:-40px}.m-r-none{margin-right:0}.m-r-xxs{margin-right:1px}.m-r-xs{margin-right:5px}.m-r-sm{margin-right:10px}.m-r{margin-right:15px}.m-r-md{margin-right:20px}.m-r-lg{margin-right:30px}.m-r-xl{margin-right:40px}.m-r-n-xxs{margin-right:-1px}.m-r-n-xs{margin-right:-5px}.m-r-n-sm{margin-right:-10px}.m-r-n{margin-right:-15px}.m-r-n-md{margin-right:-20px}.m-r-n-lg{margin-right:-30px}.m-r-n-xl{margin-right:-40px}.m-b-none{margin-bottom:0}.m-b-xxs{margin-bottom:1px}.m-b-xs{margin-bottom:5px}.m-b-sm{margin-bottom:10px}.m-b{margin-bottom:15px}.m-b-md{margin-bottom:20px}.m-b-lg{margin-bottom:30px}.m-b-xl{margin-bottom:40px}.m-b-n-xxs{margin-bottom:-1px}.m-b-n-xs{margin-bottom:-5px}.m-b-n-sm{margin-bottom:-10px}.m-b-n{margin-bottom:-15px}.m-b-n-md{margin-bottom:-20px}.m-b-n-lg{margin-bottom:-30px}.m-b-n-xl{margin-bottom:-40px}.space-15{margin:15px 0}.space-20{margin:20px 0}.space-25{margin:25px 0}.space-30{margin:30px 0}body.modal-open{padding-right:inherit!important}.search-form{margin-top:10px}.search-result h3{margin-bottom:0;color:#1E0FBE}.search-result .search-link{color:#006621}.search-result p{font-size:12px;margin-top:5px}.contact-box{background-color:#fff;border:1px solid #e7eaec;padding:20px;margin-bottom:20px}.contact-box a{color:inherit}.invoice-table tbody>tr>td:last-child,.invoice-table tbody>tr>td:nth-child(2),.invoice-table tbody>tr>td:nth-child(3),.invoice-table tbody>tr>td:nth-child(4),.invoice-table thead>tr>th:last-child,.invoice-table thead>tr>th:nth-child(2),.invoice-table thead>tr>th:nth-child(3),.invoice-table thead>tr>th:nth-child(4),.invoice-total>tbody>tr>td:first-child{text-align:right}.invoice-total>tbody>tr>td{border:0}.invoice-total>tbody>tr>td:last-child{border-bottom:1px solid #DDD;text-align:right;width:15%}.middle-box{max-width:400px;z-index:100;margin:0 auto;padding-top:40px}.lockscreen.middle-box{width:200px;padding-top:110px}.loginscreen.middle-box{width:300px}.loginColumns{max-width:800px;margin:0 auto;padding:100px 20px 20px}.passwordBox{max-width:460px;margin:0 auto;padding:100px 20px 20px}.logo-name{color:#e6e6e6;font-size:180px;font-weight:800;letter-spacing:-10px;margin-bottom:0}.middle-box h1{font-size:170px}.wrapper .middle-box{margin-top:140px}.lock-word{z-index:10;position:absolute;top:110px;left:50%;margin-left:-470px}.lock-word span{font-size:100px;font-weight:600;color:#e9e9e9;display:inline-block}.lock-word .first-word{margin-right:160px}.dashboard-header{border-top:0;padding:20px}.dashboard-header h2{margin-top:10px;font-size:26px}.fist-item{border-top:none!important}.statistic-box{margin-top:40px}.dashboard-header .list-group-item span.label{margin-right:10px}.list-group.clear-list .list-group-item{border-top:1px solid #e7eaec;border-bottom:0;border-right:0;border-left:0;padding:10px 0}ul.clear-list:first-child{border-top:none!important}.timeline-item .date i{position:absolute;top:0;right:0;padding:5px;width:30px;text-align:center;border-top:1px solid #e7eaec;border-bottom:1px solid #e7eaec;border-left:1px solid #e7eaec;background:#f8f8f8}.timeline-item .date{text-align:right;width:110px;position:relative;padding-top:30px}.timeline-item .content{border-left:1px solid #e7eaec;border-top:1px solid #e7eaec;padding-top:10px;min-height:100px}.timeline-item .content:hover{background:#f6f6f6}ul.notes li,ul.tag-list li{list-style:none}ul.notes li h4{margin-top:20px;font-size:16px}ul.notes li div{position:relative}ul.notes li div small{position:absolute;top:5px;right:5px;font-size:10px}ul.notes li div a{position:absolute;right:10px;bottom:10px;color:inherit}ul.notes li{margin:10px 40px 50px 0;float:left}ul.notes li div p{font-size:12px}ul.notes li div{-webkit-transform:rotate(-6deg);-o-transform:rotate(-6deg);-moz-transform:rotate(-6deg)}ul.notes li:nth-child(even) div{-o-transform:rotate(4deg);-webkit-transform:rotate(4deg);-moz-transform:rotate(4deg);position:relative;top:5px}ul.notes li:nth-child(3n) div{-o-transform:rotate(-3deg);-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);position:relative;top:-5px}ul.notes li:nth-child(5n) div{-o-transform:rotate(5deg);-webkit-transform:rotate(5deg);-moz-transform:rotate(5deg);position:relative;top:-10px}ul.notes li div:focus,ul.notes li div:hover{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-o-transform:scale(1.1);position:relative;z-index:5}ul.notes li div{text-decoration:none;color:#000;background:#ffc;display:block;height:210px;width:210px;padding:1em;-moz-box-shadow:5px 5px 7px #212121;-webkit-box-shadow:5px 5px 7px rgba(33,33,33,.7);box-shadow:5px 5px 7px rgba(33,33,33,.7);-moz-transition:-moz-transform .15s linear;-o-transition:-o-transform .15s linear;-webkit-transition:-webkit-transform .15s linear}.file-box{float:left;width:220px}.file-manager h5{text-transform:uppercase}.file-manager{list-style:none;margin:0;padding:0}.folder-list li a{color:#666;display:block;padding:5px 0}.folder-list li{border-bottom:1px solid #e7eaec;display:block}.folder-list li i{margin-right:8px;color:#3d4d5d}.category-list li a{color:#666;display:block;padding:5px 0}.category-list li{display:block}.category-list li i{margin-right:8px;color:#3d4d5d}.category-list li a .text-navy{color:#1ab394}.category-list li a .text-primary{color:#1c84c6}.category-list li a .text-info{color:#23c6c8}.category-list li a .text-danger{color:#EF5352}.category-list li a .text-warning{color:#F8AC59}.file-manager h5.tag-title{margin-top:20px}.tag-list li{float:left}.tag-list li a{font-size:10px;background-color:#f3f3f4;padding:5px 12px;color:inherit;border-radius:2px;border:1px solid #e7eaec;margin-right:5px;margin-top:5px;display:block}.file{border:1px solid #e7eaec;padding:0;background-color:#fff;position:relative;margin-bottom:20px;margin-right:20px}.file-manager .hr-line-dashed{margin:15px 0}.file .icon,.file .image{height:100px;overflow:hidden}.file .icon{padding:15px 10px;text-align:center}.file-control{color:inherit;font-size:11px;margin-right:10px}.file-control.active{text-decoration:underline}.file .icon i{font-size:70px;color:#dadada}.file .file-name{padding:10px;background-color:#f8f8f8;border-top:1px solid #e7eaec}.file-name small{color:#676a6c}.corner{position:absolute;display:inline-block;width:0;height:0;line-height:0;border:.6em solid transparent;border-right:.6em solid #f1f1f1;border-bottom:.6em solid #f1f1f1;right:0;bottom:0}a.compose-mail{padding:8px 10px}.mail-search{max-width:300px}.profile-content{border-top:none!important}.feed-activity-list .feed-element{border-bottom:1px solid #e7eaec}.feed-element:first-child{margin-top:0}.feed-element{padding-bottom:15px}.feed-element,.feed-element .media{margin-top:15px}.feed-element,.media-body{overflow:hidden}.feed-element>.pull-left{margin-right:10px}.dropdown-messages-box img.img-circle,.feed-element img.img-circle{width:38px;height:38px}.feed-element .well{border:1px solid #e7eaec;box-shadow:none;margin-top:10px;margin-bottom:5px;padding:10px 20px;font-size:11px;line-height:16px}.feed-element .actions{margin-top:10px}.feed-element .photos{margin:10px 0}.feed-photo{max-height:180px;border-radius:4px;overflow:hidden;margin-right:10px;margin-bottom:10px}.mail-box{background-color:#fff;border:1px solid #e7eaec;border-top:0;padding:0;margin-bottom:20px}.mail-box-header{background-color:#fff;border:1px solid #e7eaec;border-bottom:0;padding:30px 20px 20px}.mail-box-header h2{margin-top:0}.mailbox-content .tag-list li a{background:#fff}.mail-body{border-top:1px solid #e7eaec;padding:20px}.mail-text{border-top:1px solid #e7eaec}.mail-text .note-toolbar{padding:10px 15px}.mail-body .form-group{margin-bottom:5px}.mail-text .note-editor .note-toolbar{background-color:#F9F8F8}.mail-attachment{border-top:1px solid #e7eaec;padding:20px;font-size:12px}.mailbox-content{background:0 0;border:none;padding:10px}.mail-ontact{width:23%}.project-actions,.project-people{text-align:right;vertical-align:middle}dd.project-people{text-align:left;margin-top:5px}.project-people img{width:32px;height:32px}.project-title a{font-size:14px;color:#676a6c;font-weight:600}.project-list table tr td{border-top:none;border-bottom:1px solid #e7eaec;padding:15px 10px;vertical-align:middle}.project-manager .tag-list li a{font-size:10px;background-color:#fff;padding:5px 12px;color:inherit;border-radius:2px;border:1px solid #e7eaec;margin-right:5px;margin-top:5px;display:block}.project-files li a{font-size:11px;color:#676a6c;margin-left:10px;line-height:22px}.faq-item{padding:20px;margin-bottom:2px;background:#fff}.faq-question{font-size:18px;font-weight:600;color:#1ab394;display:block}.faq-question:hover{color:#179d82}.faq-answer{margin-top:10px;background:#f3f3f4;border:1px solid #e7eaec;border-radius:3px;padding:15px}.faq-item .tag-item{background:#f3f3f4;padding:2px 6px;font-size:10px;text-transform:uppercase}.message-input{height:90px!important}.chat-avatar{white:36px;height:36px;float:left;margin-right:10px}.chat-user-name{padding:10px}.chat-user{padding:8px 10px;border-bottom:1px solid #e7eaec}.chat-user a{color:inherit}.chat-view{z-index:20012}.chat-statistic,.chat-users{margin-left:-30px}@media (max-width:992px){.chat-statistic,.chat-users{margin-left:0}}.chat-view .ibox-content{padding:0}.chat-message{padding:10px 20px}.message-avatar{height:48px;width:48px;border:1px solid #e7eaec;border-radius:4px;margin-top:1px}.chat-discussion .chat-message:nth-child(2n+1) .message-avatar{float:left;margin-right:10px}.chat-discussion .chat-message:nth-child(2n) .message-avatar{float:right;margin-left:10px}.message{background-color:#fff;border:1px solid #e7eaec;text-align:left;display:block;padding:10px 20px;position:relative;border-radius:4px}.chat-discussion .chat-message:nth-child(2n+1) .message-date{float:right}.chat-discussion .chat-message:nth-child(2n) .message-date{float:left}.chat-discussion .chat-message:nth-child(2n+1) .message{text-align:left;margin-left:55px}.chat-discussion .chat-message:nth-child(2n) .message{text-align:right;margin-right:55px}.message-date{font-size:10px;color:#888}.message-content{display:block}.chat-discussion{background:#eee;padding:15px;height:400px;overflow-y:auto}.chat-users{overflow-y:auto;height:400px}.chat-message-form .form-group{margin-bottom:0}.jstree-open>.jstree-anchor>.fa-folder:before{content:"\f07c"}.jstree-default .jstree-icon.none{width:0}.clients-list{margin-top:20px}.clients-list .tab-pane{position:relative;height:600px}.client-detail{position:relative;height:620px}.clients-list table tr td{height:46px;vertical-align:middle;border:none}.client-link{font-weight:600;color:inherit}.client-link:hover{color:inherit}.client-avatar{width:42px}.client-avatar img{width:28px;height:28px;border-radius:50%}.contact-type{width:20px;color:#c1c3c4}.client-status{text-align:left}.client-detail .vertical-timeline-content p{margin:0}.client-detail .vertical-timeline-icon.gray-bg{color:#a7aaab}.clients-list .nav-tabs>li.active>a,.clients-list .nav-tabs>li.active>a:focus,.clients-list .nav-tabs>li.active>a:hover{border-bottom:1px solid #fff}.blog h2{font-weight:700}.blog .btn,.blog h5{margin:0 0 5px}.article h1{font-size:48px;font-weight:700;color:#2F4050}.article p{font-size:15px;line-height:26px}.article-title{text-align:center;margin:40px 0 100px}.article .ibox-content{padding:40px}.issue-tracker .btn-link{color:#1ab394}table.issue-tracker tbody tr td{vertical-align:middle;height:50px}.issue-info{width:50%}.issue-info a{font-weight:600;color:#676a6c}.issue-info small{display:block}.team-members{margin:10px 0}.team-members img.img-circle{width:42px;height:42px;margin-bottom:5px}.sortable-list{padding:10px 0}.agile-list{list-style:none;margin:0}.agile-list li{background:#FAFAFB;border:1px solid #e7eaec;margin:0 0 10px;padding:10px;border-radius:2px}.agile-list li:hover{cursor:pointer;background:#fff}.agile-list li.warning-element{border-left:3px solid #f8ac59}.agile-list li.danger-element{border-left:3px solid #ed5565}.agile-list li.info-element{border-left:3px solid #1c84c6}.agile-list li.success-element{border-left:3px solid #1ab394}.agile-detail{margin-top:5px;font-size:12px}ins{background-color:#c6ffc6;text-decoration:none}del{background-color:#ffc6c6}#small-chat{position:fixed;bottom:20px;right:20px;z-index:100}#small-chat .badge{position:absolute;top:-3px;right:-4px}.open-small-chat{height:38px;width:38px;display:block;background:#1ab394;padding:9px 8px;text-align:center;color:#fff;border-radius:50%}.open-small-chat:hover{color:#fff;background:#1ab394}.small-chat-box{display:none;position:fixed;bottom:20px;right:75px;background:#fff;border:1px solid #e7eaec;width:230px;height:320px;border-radius:4px}.small-chat-box.ng-small-chat{display:block}.body-small .small-chat-box{bottom:70px;right:20px}.small-chat-box.active{display:block}.small-chat-box .heading{background:#2f4050;padding:8px 15px;font-weight:700;color:#fff}.small-chat-box .chat-date{opacity:.6;font-size:10px;font-weight:400}.small-chat-box .content{padding:15px}.small-chat-box .content .author-name{font-weight:700;margin-bottom:3px;font-size:11px}.small-chat-box .content>div{padding-bottom:20px}.small-chat-box .content .chat-message{padding:5px 10px;border-radius:6px;font-size:11px;line-height:14px;max-width:80%;background:#f3f3f4;margin-bottom:10px}.small-chat-box .content .chat-message.active{background:#1ab394;color:#fff}.small-chat-box .content .left{text-align:left;clear:both}.small-chat-box .content .left .chat-message{float:left}.small-chat-box .content .right{text-align:right;clear:both}.small-chat-box .content .right .chat-message{float:right}.small-chat-box .form-chat{padding:10px}.sk-spinner-rotating-plane.sk-spinner{width:30px;height:30px;background-color:#1ab394;margin:0 auto;-webkit-animation:sk-rotatePlane 1.2s infinite ease-in-out;animation:sk-rotatePlane 1.2s infinite ease-in-out}@-webkit-keyframes sk-rotatePlane{0%{-webkit-transform:perspective(120px) rotateX(0deg) rotateY(0deg);transform:perspective(120px) rotateX(0deg) rotateY(0deg)}50%{-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg);transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}100%{-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes sk-rotatePlane{0%{-webkit-transform:perspective(120px) rotateX(0deg) rotateY(0deg);transform:perspective(120px) rotateX(0deg) rotateY(0deg)}50%{-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg);transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}100%{-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.sk-spinner-double-bounce.sk-spinner{width:40px;height:40px;position:relative;margin:0 auto}.sk-spinner-double-bounce .sk-double-bounce1,.sk-spinner-double-bounce .sk-double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#1ab394;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-doubleBounce 2s infinite ease-in-out;animation:sk-doubleBounce 2s infinite ease-in-out}.sk-spinner-double-bounce .sk-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes sk-doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-doubleBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.sk-spinner-wave.sk-spinner{margin:0 auto;width:50px;height:30px;text-align:center;font-size:10px}.sk-spinner-wave div{background-color:#1ab394;height:100%;width:6px;display:inline-block;-webkit-animation:sk-waveStretchDelay 1.2s infinite ease-in-out;animation:sk-waveStretchDelay 1.2s infinite ease-in-out}.sk-spinner-wave .sk-rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.sk-spinner-wave .sk-rect3{-webkit-animation-delay:-1s;animation-delay:-1s}.sk-spinner-wave .sk-rect4{-webkit-animation-delay:-.9s;animation-delay:-.9s}.sk-spinner-wave .sk-rect5{-webkit-animation-delay:-.8s;animation-delay:-.8s}@-webkit-keyframes sk-waveStretchDelay{0%,100%,40%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}20%{-webkit-transform:scaleY(1);transform:scaleY(1)}}@keyframes sk-waveStretchDelay{0%,100%,40%{-webkit-transform:scaleY(.4);transform:scaleY(.4)}20%{-webkit-transform:scaleY(1);transform:scaleY(1)}}.sk-spinner-wandering-cubes.sk-spinner{margin:0 auto;width:32px;height:32px;position:relative}.sk-spinner-wandering-cubes .sk-cube1,.sk-spinner-wandering-cubes .sk-cube2{background-color:#1ab394;width:10px;height:10px;position:absolute;top:0;left:0;-webkit-animation:sk-wanderingCubeMove 1.8s infinite ease-in-out;animation:sk-wanderingCubeMove 1.8s infinite ease-in-out}.sk-spinner-wandering-cubes .sk-cube2{-webkit-animation-delay:-.9s;animation-delay:-.9s}@-webkit-keyframes sk-wanderingCubeMove{25%{-webkit-transform:translateX(42px) rotate(-90deg) scale(.5);transform:translateX(42px) rotate(-90deg) scale(.5)}50%{-webkit-transform:translateX(42px) translateY(42px) rotate(-179deg);transform:translateX(42px) translateY(42px) rotate(-179deg)}50.1%{-webkit-transform:translateX(42px) translateY(42px) rotate(-180deg);transform:translateX(42px) translateY(42px) rotate(-180deg)}75%{-webkit-transform:translateX(0) translateY(42px) rotate(-270deg) scale(.5);transform:translateX(0) translateY(42px) rotate(-270deg) scale(.5)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes sk-wanderingCubeMove{25%{-webkit-transform:translateX(42px) rotate(-90deg) scale(.5);transform:translateX(42px) rotate(-90deg) scale(.5)}50%{-webkit-transform:translateX(42px) translateY(42px) rotate(-179deg);transform:translateX(42px) translateY(42px) rotate(-179deg)}50.1%{-webkit-transform:translateX(42px) translateY(42px) rotate(-180deg);transform:translateX(42px) translateY(42px) rotate(-180deg)}75%{-webkit-transform:translateX(0) translateY(42px) rotate(-270deg) scale(.5);transform:translateX(0) translateY(42px) rotate(-270deg) scale(.5)}100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.sk-spinner-pulse.sk-spinner{width:40px;height:40px;margin:0 auto;background-color:#1ab394;border-radius:100%;-webkit-animation:sk-pulseScaleOut 1s infinite ease-in-out;animation:sk-pulseScaleOut 1s infinite ease-in-out}@-webkit-keyframes sk-pulseScaleOut{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes sk-pulseScaleOut{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}.sk-spinner-chasing-dots.sk-spinner{margin:0 auto;width:40px;height:40px;position:relative;text-align:center;-webkit-animation:sk-chasingDotsRotate 2s infinite linear;animation:sk-chasingDotsRotate 2s infinite linear}.sk-spinner-chasing-dots .sk-dot1,.sk-spinner-chasing-dots .sk-dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#1ab394;border-radius:100%;-webkit-animation:sk-chasingDotsBounce 2s infinite ease-in-out;animation:sk-chasingDotsBounce 2s infinite ease-in-out}.sk-spinner-chasing-dots .sk-dot2{top:auto;bottom:0;-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes sk-chasingDotsRotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes sk-chasingDotsRotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes sk-chasingDotsBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-chasingDotsBounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.sk-spinner-three-bounce.sk-spinner{margin:0 auto;width:70px;text-align:center}.sk-spinner-three-bounce div{width:18px;height:18px;background-color:#1ab394;border-radius:100%;display:inline-block;-webkit-animation:sk-threeBounceDelay 1.4s infinite ease-in-out;animation:sk-threeBounceDelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.sk-spinner-three-bounce .sk-bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.sk-spinner-three-bounce .sk-bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes sk-threeBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-threeBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.sk-spinner-circle.sk-spinner{margin:0 auto;width:22px;height:22px;position:relative}.sk-spinner-circle .sk-circle{width:100%;height:100%;position:absolute;left:0;top:0}.sk-spinner-circle .sk-circle:before{content:'';display:block;margin:0 auto;width:20%;height:20%;background-color:#1ab394;border-radius:100%;-webkit-animation:sk-circleBounceDelay 1.2s infinite ease-in-out;animation:sk-circleBounceDelay 1.2s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.sk-spinner-circle .sk-circle2{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg)}.sk-spinner-circle .sk-circle3{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg)}.sk-spinner-circle .sk-circle4{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sk-spinner-circle .sk-circle5{-webkit-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg)}.sk-spinner-circle .sk-circle6{-webkit-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg)}.sk-spinner-circle .sk-circle7{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.sk-spinner-circle .sk-circle8{-webkit-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg)}.sk-spinner-circle .sk-circle9{-webkit-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg)}.sk-spinner-circle .sk-circle10{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.sk-spinner-circle .sk-circle11{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg)}.sk-spinner-circle .sk-circle12{-webkit-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg)}.sk-spinner-circle .sk-circle2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.sk-spinner-circle .sk-circle3:before{-webkit-animation-delay:-1s;animation-delay:-1s}.sk-spinner-circle .sk-circle4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}.sk-spinner-circle .sk-circle5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}.sk-spinner-circle .sk-circle6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}.sk-spinner-circle .sk-circle7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}.sk-spinner-circle .sk-circle8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}.sk-spinner-circle .sk-circle9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}.sk-spinner-circle .sk-circle10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}.sk-spinner-circle .sk-circle11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}.sk-spinner-circle .sk-circle12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes sk-circleBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-circleBounceDelay{0%,100%,80%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}.sk-spinner-cube-grid.sk-spinner{width:30px;height:30px;margin:0 auto}.sk-spinner-cube-grid .sk-cube{width:33%;height:33%;background-color:#1ab394;float:left;-webkit-animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-spinner-cube-grid .sk-cube:nth-child(1){-webkit-animation-delay:.2s;animation-delay:.2s}.sk-spinner-cube-grid .sk-cube:nth-child(2){-webkit-animation-delay:.3s;animation-delay:.3s}.sk-spinner-cube-grid .sk-cube:nth-child(3){-webkit-animation-delay:.4s;animation-delay:.4s}.sk-spinner-cube-grid .sk-cube:nth-child(4){-webkit-animation-delay:.1s;animation-delay:.1s}.sk-spinner-cube-grid .sk-cube:nth-child(5){-webkit-animation-delay:.2s;animation-delay:.2s}.sk-spinner-cube-grid .sk-cube:nth-child(6){-webkit-animation-delay:.3s;animation-delay:.3s}.sk-spinner-cube-grid .sk-cube:nth-child(7){-webkit-animation-delay:0s;animation-delay:0s}.sk-spinner-cube-grid .sk-cube:nth-child(8){-webkit-animation-delay:.1s;animation-delay:.1s}.sk-spinner-cube-grid .sk-cube:nth-child(9){-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes sk-cubeGridScaleDelay{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}@keyframes sk-cubeGridScaleDelay{0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}}.sk-spinner-wordpress.sk-spinner{background-color:#1ab394;width:30px;height:30px;border-radius:30px;position:relative;margin:0 auto;-webkit-animation:sk-innerCircle 1s linear infinite;animation:sk-innerCircle 1s linear infinite}.sk-spinner-wordpress .sk-inner-circle{display:block;background-color:#fff;width:8px;height:8px;position:absolute;border-radius:8px;top:5px;left:5px}@-webkit-keyframes sk-innerCircle{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes sk-innerCircle{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.sk-spinner-fading-circle.sk-spinner{margin:0 auto;width:22px;height:22px;position:relative}.sk-spinner-fading-circle .sk-circle{width:100%;height:100%;position:absolute;left:0;top:0}.sk-spinner-fading-circle .sk-circle:before{content:'';display:block;margin:0 auto;width:18%;height:18%;background-color:#1ab394;border-radius:100%;-webkit-animation:sk-circleFadeDelay 1.2s infinite ease-in-out;animation:sk-circleFadeDelay 1.2s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.sk-spinner-fading-circle .sk-circle2{-webkit-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg)}.sk-spinner-fading-circle .sk-circle3{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg)}.sk-spinner-fading-circle .sk-circle4{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sk-spinner-fading-circle .sk-circle5{-webkit-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg)}.sk-spinner-fading-circle .sk-circle6{-webkit-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg)}.sk-spinner-fading-circle .sk-circle7{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.sk-spinner-fading-circle .sk-circle8{-webkit-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg)}.sk-spinner-fading-circle .sk-circle9{-webkit-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg)}.sk-spinner-fading-circle .sk-circle10{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.sk-spinner-fading-circle .sk-circle11{-webkit-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg)}.sk-spinner-fading-circle .sk-circle12{-webkit-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg)}.sk-spinner-fading-circle .sk-circle2:before{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.sk-spinner-fading-circle .sk-circle3:before{-webkit-animation-delay:-1s;animation-delay:-1s}.sk-spinner-fading-circle .sk-circle4:before{-webkit-animation-delay:-.9s;animation-delay:-.9s}.sk-spinner-fading-circle .sk-circle5:before{-webkit-animation-delay:-.8s;animation-delay:-.8s}.sk-spinner-fading-circle .sk-circle6:before{-webkit-animation-delay:-.7s;animation-delay:-.7s}.sk-spinner-fading-circle .sk-circle7:before{-webkit-animation-delay:-.6s;animation-delay:-.6s}.sk-spinner-fading-circle .sk-circle8:before{-webkit-animation-delay:-.5s;animation-delay:-.5s}.sk-spinner-fading-circle .sk-circle9:before{-webkit-animation-delay:-.4s;animation-delay:-.4s}.sk-spinner-fading-circle .sk-circle10:before{-webkit-animation-delay:-.3s;animation-delay:-.3s}.sk-spinner-fading-circle .sk-circle11:before{-webkit-animation-delay:-.2s;animation-delay:-.2s}.sk-spinner-fading-circle .sk-circle12:before{-webkit-animation-delay:-.1s;animation-delay:-.1s}@-webkit-keyframes sk-circleFadeDelay{0%,100%,39%{opacity:0}40%{opacity:1}}@keyframes sk-circleFadeDelay{0%,100%,39%{opacity:0}40%{opacity:1}}body.rtls #page-wrapper{margin:0 220px 0 0}body.rtls .nav-second-level li a{padding:7px 35px 7px 10px}body.rtls .ibox-title h5{float:right}body.rtls .pull-right{float:left!important}body.rtls .pull-left{float:right!important}body.rtls .ibox-tools,body.rtls .stat-percent{float:left}body.rtls .navbar-right{float:left!important}body.rtls .navbar-top-links li:last-child{margin-right:0}body.rtls .minimalize-styl-2{float:right;margin:14px 20px 5px 5px}body.rtls .feed-element>.pull-left{margin-left:10px;margin-right:0}body.rtls .timeline-item .date{text-align:left}body.rtls .timeline-item .date i{left:0;right:auto}body.rtls .timeline-item .content{border-right:1px solid #e7eaec;border-left:none}body.rtls .theme-config{left:0;right:auto}body.rtls .spin-icon{border-radius:0 20px 20px 0}body.rtls .toast-close-button{float:left}body.rtls #toast-container>.toast:before{margin:auto -1.5em auto .5em}body.rtls #toast-container>div{padding:15px 50px 15px 15px}body.rtls .center-orientation .vertical-timeline-icon i{margin-left:0;margin-right:-12px}body.rtls .vertical-timeline-icon i{right:50%;left:auto;margin-left:auto;margin-right:-12px}body.rtls .file-box,body.rtls ul.notes li{float:right}body.rtls .chat-statistic,body.rtls .chat-users{margin-right:-30px;margin-left:auto}body.rtls .dropdown-menu>li>a{text-align:right}body.rtls .b-r{border-left:1px solid #e7eaec;border-right:none}body.rtls .dd-list .dd-list{padding-right:30px;padding-left:0}body.rtls .dd-item>button{float:right}body.rtls .theme-config-box{margin-left:-220px;margin-right:0}body.rtls .theme-config-box.show{margin-left:0;margin-right:0}body.rtls .spin-icon{right:0;left:auto}body.rtls .skin-setttings{margin-right:40px;margin-left:0;direction:ltr}body.rtls .footer.fixed{margin-right:220px;margin-left:0}@media (max-width:992px){body.rtls .chat-statistic,body.rtls .chat-users{margin-right:0}}body.body-small.mini-navbar .footer.fixed,body.rtls.mini-navbar .footer.fixed{margin:0 70px 0 0}body.body-small.mini-navbar .footer.fixed,body.rtls.mini-navbar.fixed-sidebar .footer.fixed{margin:0}body.rtls.top-navigation .navbar-toggle{float:right;margin-left:15px;margin-right:15px}.body-small.rtls.top-navigation .navbar-header{float:none}body.rtls.top-navigation #page-wrapper{margin:0}body.rtls.mini-navbar #page-wrapper{margin:0 70px 0 0}body.rtls.mini-navbar.fixed-sidebar #page-wrapper{margin:0}body.rtls.body-small.fixed-sidebar.mini-navbar #page-wrapper{margin:0 220px 0 0}body.rtls.body-small.fixed-sidebar.mini-navbar .navbar-static-side{width:220px}.body-small.rtls .navbar-fixed-top{margin-right:0}.body-small.rtls .navbar-header{float:right}body.rtls .navbar-top-links li:last-child{margin-left:20px}body.rtls .top-navigation #page-wrapper,body.rtls .top-navigation .footer.fixed,body.rtls.mini-navbar .top-navigation #page-wrapper,body.rtls.mini-navbar.top-navigation #page-wrapper,body.rtls.top-navigation .footer.fixed{margin:0}@media (max-width:768px){body.rtls .navbar-top-links li:last-child{margin-left:20px}.body-small.rtls #page-wrapper{position:inherit;margin:0;min-height:1000px}.body-small.rtls .navbar-static-side{display:none;z-index:2001;position:absolute;width:70px}.body-small.rtls.mini-navbar .navbar-static-side{display:block}.rtls.fixed-sidebar.body-small .navbar-static-side{display:none;z-index:2001;position:fixed;width:220px}.rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side{display:block}}.rtls .ltr-support{direction:ltr}.theme-config{position:absolute;top:90px;right:0;overflow:hidden}.theme-config-box{margin-right:-220px;position:relative;z-index:2000;transition-duration:.8s}.theme-config-box.show{margin-right:0}.spin-icon{background:#1ab394;position:absolute;padding:7px 10px 7px 13px;border-radius:20px 0 0 20px;font-size:16px;top:0;left:0;width:40px;color:#fff;cursor:pointer}.skin-setttings{width:220px;margin-left:40px;background:#f3f3f4}.skin-setttings .title{background:#efefef;text-align:center;text-transform:uppercase;font-weight:600;display:block;padding:10px 15px;font-size:12px}.setings-item{padding:10px 30px}.setings-item.skin{text-align:center}.setings-item .switch{float:right}.skin-name a{text-transform:uppercase}.setings-item a{color:#fff}.blue-skin,.default-skin,.ultra-skin,.yellow-skin{text-align:center}.default-skin{font-weight:600;background:#1ab394}.default-skin:hover{background:#199d82}.blue-skin{font-weight:600;background:url(patterns/header-profile-skin-1.png)}.blue-skin:hover{background:#0d8ddb}.yellow-skin{font-weight:600;background:url(patterns/header-profile-skin-3.png) 0 100%}.yellow-skin:hover{background:#ce8735}.ultra-skin{font-weight:600;background:url(patterns/header-profile-skin-2.png)}.ultra-skin:hover{background:#1a2d40}.skin-1 .minimalize-styl-2{margin:14px 5px 5px 30px}.skin-1 .navbar-top-links li:last-child{margin-right:30px}.skin-1.fixed-nav .minimalize-styl-2{margin:14px 5px 5px 15px}.skin-1 .spin-icon{background:#0e9aef!important}.skin-1 .nav-header{background:url(patterns/header-profile-skin-1.png)}.skin-1.mini-navbar .nav-second-level{background:#3e495f}.skin-1 .breadcrumb{background:0 0}.skin-1 .page-heading{border:none}.skin-1 .nav>li.active{background:#3a4459}.skin-1 .nav>li>a{color:#9ea6b9}.skin-1 .nav>li.active>a{color:#fff}.skin-1 .navbar-minimalize{background:#0e9aef;border-color:#0e9aef}body.skin-1{background:#3e495f}.skin-1 .navbar-static-top{background:#fff}.skin-1 .dashboard-header{background:0 0;border-bottom:none!important;border-top:none;padding:20px 30px 10px}.fixed-nav.skin-1 .navbar-fixed-top{background:#fff}.skin-1 .wrapper-content{padding:30px 15px}.skin-1 #page-wrapper{background:#f4f6fa}.skin-1 .ibox-content,.skin-1 .ibox-title{border-width:1px}.skin-1 .ibox-content:last-child{border-style:solid}.skin-1 .nav>li.active{border:none}.skin-1 .nav-header{padding:35px 25px 25px}.skin-1 .nav-header a.dropdown-toggle{color:#fff;margin-top:10px}.skin-1 .nav-header a.dropdown-toggle .text-muted{color:#fff;opacity:.8}.skin-1 .profile-element{text-align:center}.skin-1 .img-circle{border-radius:5px}.skin-1 .navbar-default .nav>li>a:focus,.skin-1 .navbar-default .nav>li>a:hover{background:#3a4459;color:#fff}.skin-1 .nav.nav-tabs>li.active>a{color:#555}.skin-1 .nav.nav-tabs>li.active{background:0 0}body.skin-2{color:#565758!important}.skin-2 .minimalize-styl-2{margin:14px 5px 5px 25px}.skin-2 .navbar-top-links li:last-child{margin-right:25px}.skin-2 .spin-icon{background:#23c6c8!important}.skin-2 .nav-header{background:url(patterns/header-profile-skin-2.png)}.skin-2.mini-navbar .nav-second-level{background:#ededed}.skin-2 .breadcrumb{background:0 0}.skin-2.fixed-nav .minimalize-styl-2{margin:14px 5px 5px 15px}.skin-2 .page-heading{border:none;background:rgba(255,255,255,.7)}.skin-2 .nav>li.active{background:#e0e0e0}.skin-2 .logo-element{padding:17px 0}.skin-2 .nav>li>a,.skin-2 .welcome-message{color:#edf6ff}.skin-2 #top-search::-moz-placeholder{color:#edf6ff;opacity:.5}.skin-2 #side-menu>li>a,.skin-2 .nav.nav-second-level>li>a{color:#586b7d}.skin-2 .nav>li.active>a{color:#213a53}.skin-2.mini-navbar .nav-header{background:#213a53}.skin-2 .navbar-minimalize{background:#23c6c8;border-color:#23c6c8}.skin-2 .border-bottom{border-bottom:none!important}.skin-2 #top-search{color:#fff}body.skin-2 #wrapper{background-color:#ededed}.skin-2 .navbar-static-top{background:#213a53}.fixed-nav.skin-2 .navbar-fixed-top{background:#213a53;border-bottom:none!important}.skin-2 .nav-header{padding:30px 25px}.skin-2 .dashboard-header{background:rgba(255,255,255,.4);border-bottom:none!important;border-top:none;padding:20px 30px}.skin-2 .wrapper-content{padding:30px 15px}.skin-2 .dashoard-1 .wrapper-content{padding:0 30px 25px}.skin-2 .ibox-title{background:rgba(255,255,255,.7);border:none;margin-bottom:1px}.skin-2 .ibox-content{background:rgba(255,255,255,.4);border:none!important}.skin-2 #page-wrapper{background:#f6f6f6;background:-webkit-radial-gradient(center,ellipse cover,#f6f6f6 20%,#d5d5d5 100%);background:-o-radial-gradient(center,ellipse cover,#f6f6f6 20%,#d5d5d5 100%);background:-ms-radial-gradient(center,ellipse cover,#f6f6f6 20%,#d5d5d5 100%);background:radial-gradient(ellipse at center,#f6f6f6 20%,#d5d5d5 100%);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#f6f6f6, endColorstr=#d5d5d5)"}.skin-2 .ibox-content,.skin-2 .ibox-title{border-width:1px}.skin-2 .ibox-content:last-child{border-style:solid}.skin-2 .nav>li.active{border:none}.skin-2 .nav-header a.dropdown-toggle{color:#edf6ff;margin-top:10px}.skin-2 .nav-header a.dropdown-toggle .text-muted{color:#edf6ff;opacity:.8}.skin-2 .img-circle{border-radius:10px}.skin-2 .nav.navbar-top-links>li>a:focus,.skin-2 .nav.navbar-top-links>li>a:hover{background:#1a2d41}.skin-2 .navbar-default .nav>li>a:focus,.skin-2 .navbar-default .nav>li>a:hover{background:#e0e0e0;color:#213a53}.skin-2 .nav.nav-tabs>li.active>a{color:#555}.skin-2 .nav.nav-tabs>li.active{background:0 0}.skin-3 .minimalize-styl-2{margin:14px 5px 5px 30px}.skin-3 .navbar-top-links li:last-child{margin-right:30px}.skin-3.fixed-nav .minimalize-styl-2{margin:14px 5px 5px 15px}.skin-3 .spin-icon{background:#ecba52!important}body.boxed-layout.skin-3 #wrapper{background:#3e2c42}.skin-3 .nav-header{background:url(patterns/header-profile-skin-3.png)}.skin-3.mini-navbar .nav-second-level{background:#3e2c42}.skin-3 .breadcrumb{background:0 0}.skin-3 .page-heading{border:none}.skin-3 .nav>li.active{background:#38283c}.fixed-nav.skin-3 .navbar-fixed-top{background:#fff}.skin-3 .nav>li>a{color:#948b96}.skin-3 .nav>li.active>a{color:#fff}.skin-3 .navbar-minimalize{background:#ecba52;border-color:#ecba52}body.skin-3{background:#3e2c42}.skin-3 .navbar-static-top{background:#fff}.skin-3 .dashboard-header{background:0 0;border-bottom:none!important;border-top:none;padding:20px 30px 10px}.skin-3 .wrapper-content{padding:30px 15px}.skin-3 #page-wrapper{background:#f4f6fa}.skin-3 .ibox-content,.skin-3 .ibox-title{border-width:1px}.skin-3 .ibox-content:last-child{border-style:solid}.skin-3 .nav>li.active{border:none}.skin-3 .nav-header{padding:35px 25px 25px}.skin-3 .nav-header a.dropdown-toggle{color:#fff;margin-top:10px}.skin-3 .nav-header a.dropdown-toggle .text-muted{color:#fff;opacity:.8}.skin-3 .profile-element{text-align:center}.skin-3 .img-circle{border-radius:5px}.skin-3 .navbar-default .nav>li>a:focus,.skin-3 .navbar-default .nav>li>a:hover{background:#38283c;color:#fff}.skin-3 .nav.nav-tabs>li.active>a{color:#555}.skin-3 .nav.nav-tabs>li.active{background:0 0}@media (min-width:768px){#page-wrapper{position:inherit;margin:0 0 0 220px;min-height:1200px}.navbar-static-side{z-index:2001;position:absolute;width:220px}.navbar-top-links .dropdown-alerts,.navbar-top-links .dropdown-messages,.navbar-top-links .dropdown-tasks{margin-left:auto}}@media (max-width:768px){#page-wrapper{position:inherit;margin:0;min-height:1000px}.body-small .navbar-static-side{display:none;z-index:2001;position:absolute;width:70px}.body-small.mini-navbar .navbar-static-side{display:block}.lock-word,.navbar-form-custom{display:none}.navbar-header{display:inline;float:left}.sidebard-panel{z-index:2;position:relative;width:auto;min-height:100%!important}.sidebar-content .wrapper{padding-right:0;z-index:1}.fixed-sidebar.body-small .navbar-static-side{display:none;z-index:2001;position:fixed;width:220px}.fixed-sidebar.body-small.mini-navbar .navbar-static-side{display:block}.ibox-tools{float:none;text-align:right;display:block}}@media (max-width:350px){.timeline-item .date{text-align:left;width:110px;position:relative;padding-top:30px}.timeline-item .date i{position:absolute;top:0;left:15px;padding:5px;width:30px;text-align:center;border:1px solid #e7eaec;background:#f8f8f8}.timeline-item .content{border-left:none;border-top:1px solid #e7eaec;padding-top:10px;min-height:100px}.nav.navbar-top-links li.dropdown{display:none}.ibox-tools{float:none;text-align:left;display:inline-block}}@media (max-width:1000px){.welcome-message{display:none}}
\ No newline at end of file
/**
* Created by Luis on 2/7/15.
*/
$('#btn_frm_grupo_admin_submit').on('click', function(){
if(!$('#frm_principal').valid()){
return false;
}
$('#frm_principal').submit();
});
/**
* Created by Luis on 2/7/15.
*/
$('#btn_frm_usuario_admin_submit').on('click', function(){
if(!$('#frm_principal').valid()){
return false;
}
$('#frm_principal').submit();
});
/*----------------------------------------------------*/
/* Text imput effects
/*----------------------------------------------------*/
(function() {
// trim polyfill : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim
if (!String.prototype.trim) {
(function() {
// Make sure we trim BOM and NBSP
var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
String.prototype.trim = function() {
return this.replace(rtrim, '');
};
})();
}
[].slice.call( document.querySelectorAll( 'input.input__field' ) ).forEach( function( inputEl ) {
// in case the input is already filled..
if( inputEl.value.trim() !== '' ) {
classie.add( inputEl.parentNode, 'input--filled' );
}
// events:
inputEl.addEventListener( 'focus', onInputFocus );
inputEl.addEventListener( 'blur', onInputBlur );
} );
function onInputFocus( ev ) {
classie.add( ev.target.parentNode, 'input--filled' );
}
function onInputBlur( ev ) {
if( ev.target.value.trim() === '' ) {
classie.remove( ev.target.parentNode, 'input--filled' );
}
}
})();
/*----------------------------------------------------------------*/
/* SELECTORES ESPECIALES------------------------*/
/*-----------------------------------------------------------------*/
(function() {
[].slice.call( document.querySelectorAll( 'select.cs-select' ) ).forEach( function(el) {
new SelectFx(el);
} );
})();
$( document ).ready(function() {
//mostrar u ocultar caja de filtros
var show_filter=false;
$( "#btn-show-filter-recetario" ).click(function() {
//cerrar filtros
if(show_filter==true){
$("#content-filter-recetario").addClass("hidden");
$("#arrow-filters").css('transform', 'rotate(0deg)');
show_filter=false
// abrir filtros
}else{
$("#content-filter-recetario").removeClass("hidden");
$("#arrow-filters").css('transform', 'rotate(180deg)');
show_filter=true;
}
});
});
\ No newline at end of file
Animated Checkboxes and Radio Buttons with SVG
=========
[Article on Codrops](http://tympanus.net/codrops/?p=16637)
[Demo](http://tympanus.net/Development/AnimatedCheckboxes/)
Integrate or build upon it for free in your personal or commercial projects. Don't republish, redistribute or sell "as-is".
Read more here: [License](http://tympanus.net/codrops/licensing/)
[© Codrops 2013](http://www.codrops.com)
\ No newline at end of file
*,
*:after,
*::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.ac-custom {
padding: 0 3em;
max-width: 900px;
margin: 0 auto;
}
.ac-custom h2 {
font-size: 3em;
font-weight: 300;
padding: 0 0 0.5em;
margin: 0 0 30px;
}
.ac-custom ul,
.ac-custom ol {
list-style: none;
padding: 0;
margin: 0 auto;
max-width: 800px;
}
.ac-custom li {
margin: 0 auto;
padding: 2em 0;
position: relative;
}
.ac-custom label {
display: inline-block;
position: relative;
font-size: 2em;
padding: 0 0 0 80px;
vertical-align: top;
color: rgba(0,0,0,0.2);
cursor: pointer;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
width: 50px;
height: 50px;
top: 50%;
left: 0;
margin-top: -25px;
position: absolute;
cursor: pointer;
}
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
opacity: 0;
-webkit-appearance: none;
display: inline-block;
vertical-align: middle;
z-index: 100;
}
.ac-custom label::before {
content: '';
border: 4px solid #fff;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.ac-radio label::before {
border-radius: 50%;
}
.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
color: #fff;
}
.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
opacity: 0.8;
}
/* General SVG and path styles */
.ac-custom svg {
position: absolute;
width: 40px;
height: 40px;
top: 50%;
margin-top: -20px;
left: 5px;
pointer-events: none;
}
.ac-custom svg path {
stroke: #fdfcd3;
stroke-width: 13px;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
/* Specific input, SVG and path styles */
/* Circle */
.ac-circle input[type="checkbox"],
.ac-circle input[type="radio"],
.ac-circle label::before {
width: 30px;
height: 30px;
margin-top: -15px;
left: 10px;
position: absolute;
}
.ac-circle label::before {
background-color: #fff;
border: none;
}
.ac-circle svg {
width: 70px;
height: 70px;
margin-top: -35px;
left: -10px;
}
.ac-circle svg path {
stroke-width: 5px;
}
/* Box Fill */
.ac-boxfill svg path {
stroke-width: 8px;
}
/* Swirl */
.ac-swirl svg path {
stroke-width: 8px;
}
/* List */
.ac-list ol {
list-style: decimal;
list-style-position: inside;
}
.ac-list ol li {
font-size: 2em;
padding: 1em 1em 0 2em;
text-indent: -40px;
}
.ac-list ol li label {
font-size: 1em;
text-indent: 0;
padding-left: 30px;
}
.ac-list label::before {
display: none;
}
.ac-list svg {
width: 100%;
height: 80px;
left: 0;
top: 1.2em;
margin-top: 0px;
}
.ac-list svg path {
stroke-width: 4px;
}
/* Media Queries */
@media screen and (max-width: 50em) {
section {
font-size: 80%;
}
}
\ No newline at end of file
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
@font-face {
font-family: 'codropsicons';
src:url('../fonts/codropsicons/codropsicons.eot');
src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
url('../fonts/codropsicons/codropsicons.woff') format('woff'),
url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
font-weight: normal;
font-style: normal;
}
body {
background: #fb887c;
color: #fff;
font-family: 'Lato', Arial, sans-serif;
}
body {
margin: 0;
}
.container > header {
margin: 0 auto;
padding: 4em 2em;
text-align: center;
background: rgba(0,0,0,.05);
}
.container > header h1 {
font-size: 2.625em;
line-height: 1.3;
margin: 0;
font-weight: 300;
}
.container > header span {
display: block;
font-size: 60%;
color: rgba(0,0,0,.2);
font-weight: 400;
padding: 0 0 0.6em 0.1em;
}
section:nth-child(even) {
background: rgba(0,0,0,.05);
}
section.related {
text-align: center;
font-size: 1.6em;
}
.related p {
margin: 0;
padding: 1.1em;
}
/* To Navigation Style */
.codrops-top {
text-transform: uppercase;
width: 100%;
font-size: 0.69em;
line-height: 2.2;
font-weight: 700;
}
.codrops-top a {
text-decoration: none;
padding: 0 1em;
letter-spacing: 0.1em;
display: inline-block;
}
.codrops-top span.right {
float: right;
}
.codrops-top span.right a {
float: left;
display: block;
}
.codrops-icon:before {
font-family: 'codropsicons';
margin: 0 4px;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
}
.codrops-icon-drop:before {
content: "\e001";
}
.codrops-icon-prev:before {
content: "\e004";
}
@media screen and (max-width: 25em) {
.codrops-icon span {
display: none;
}
}
\ No newline at end of file
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG font generated by IcoMoon.
<iconset grid="14"></iconset>
</metadata>
<defs>
<font id="codropsicons" horiz-adv-x="448" >
<font-face units-per-em="448" ascent="384" descent="-64" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode="&#xe001;" d="M 221.657,359.485 ,m0.00,0.00,c 0.00,0.00 -132.984-182.838 -132.205-286.236 0.515-68.522 61.089-123.688 135.314-123.218 74.202,0.479 133.943,56.421 133.428,124.943 C 357.414,178.368 221.657,359.485 221.657,359.485 z" />
<glyph unicode="&#xe004;" d="M 384.00,160.00l0.00-32.00 q0.00-13.25 -8.125-22.625t-21.125-9.375l-176.00,0.00 l 73.25-73.50q 9.50-9.00 9.50-22.50t-9.50-22.50l-18.75-19.00q-9.25-9.25 -22.50-9.25q-13.00,0.00 -22.75,9.25l-162.75,163.00q-9.25,9.25 -9.25,22.50q0.00,13.00 9.25,22.75l 162.75,162.50q 9.50,9.50 22.75,9.50q 13.00,0.00 22.50-9.50l 18.75-18.50q 9.50-9.50 9.50-22.75t-9.50-22.75l-73.25-73.25l 176.00,0.00 q 13.00,0.00 21.125-9.375 t 8.125-22.625z" horiz-adv-x="384" />
<glyph unicode="&#xe002;" d="M 407.273-23.273c0.00,0.00-325.818,0.00-366.545,0.00s-40.727,40.727-40.727,40.727l0.00,142.545 l 101.818,183.273l 244.364,0.00 l 101.818-183.273c0.00,0.00,0.00-101.818,0.00-142.545S 407.273-23.273, 407.273-23.273z M 325.818,302.545L 122.182,302.545
l-71.273-142.545L 142.545,160.00 c0.00,0.00, 40.727,0.00, 40.727-40.727l0.00-20.364 l 81.455,0.00 l0.00,20.364 c0.00,0.00,0.00,40.727, 40.727,40.727l 91.636,0.00 L 325.818,302.545z M 407.273,119.273l-96.911,0.00 C 307.532,113.917, 305.455,107.503, 305.455,98.909c0.00-40.727-40.727-40.727-40.727-40.727L 183.273,58.182 c0.00,0.00-40.727,0.00-40.727,40.727
c0.00,8.593-2.077,15.008-4.908,20.364L 40.727,119.273 l0.00-101.818 l 366.545,0.00 L 407.273,119.273 z M 132.364,221.091l 183.273,0.00 L 325.818,200.727L 122.182,200.727 L 132.364,221.091z M 152.727,261.818l 142.545,0.00 L 305.455,241.455L 142.545,241.455 L 152.727,261.818z" />
<glyph unicode="&#xe000;" d="M 368.00,144.00q0.00-13.50 -9.25-22.75l-162.75-162.75q-9.75-9.25 -22.75-9.25q-12.75,0.00 -22.50,9.25l-18.75,18.75q-9.50,9.50 -9.50,22.75t 9.50,22.75l 73.25,73.25l-176.00,0.00 q-13.00,0.00 -21.125,9.375t-8.125,22.625l0.00,32.00 q0.00,13.25 8.125,22.625t 21.125,9.375l 176.00,0.00 l-73.25,73.50q-9.50,9.00 -9.50,22.50t 9.50,22.50l 18.75,18.75q 9.50,9.50 22.50,9.50q 13.25,0.00 22.75-9.50l 162.75-162.75q 9.25-8.75 9.25-22.50z" horiz-adv-x="384" />
<glyph unicode="&#xe003;" d="M 224.00-64.00C 100.291-64.00,0.00,36.291,0.00,160.00S 100.291,384.00, 224.00,384.00s 224.00-100.291, 224.00-224.00S 347.709-64.00, 224.00-64.00z
M 224.00,343.273c-101.228,0.00-183.273-82.045-183.273-183.273s 82.045-183.273, 183.273-183.273s 183.273,82.045, 183.273,183.273S 325.228,343.273, 224.00,343.273z M 244.364,122.164C 244.364,111.005, 244.364,98.909, 244.364,98.909l-40.727,0.00 c0.00,0.00,0.00,29.466,0.00,40.727
s 9.123,20.364, 20.364,20.364l0.00,0.00c 22.481,0.00, 40.727,18.246, 40.727,40.727s-18.246,40.727-40.727,40.727S 183.273,223.209, 183.273,200.727c0.00-7.453, 2.138-14.356, 5.641-20.364L 145.437,180.364 C 143.727,186.90, 142.545,193.661, 142.545,200.727
c0.00,44.983, 36.471,81.455, 81.455,81.455s 81.455-36.471, 81.455-81.455C 305.455,162.831, 279.45,131.247, 244.364,122.164z M 244.364,37.818l-40.727,0.00 l0.00,40.727 l 40.727,0.00 L 244.364,37.818 z" />
<glyph unicode="&#x20;" horiz-adv-x="224" />
<glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
</font></defs></svg>
\ No newline at end of file
Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/
License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico
License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/
\ No newline at end of file
/* Modernizr 2.6.2 (Custom Build) | MIT & BSD
* Build: http://modernizr.com/download/#-touch-shiv-cssclasses-teststyles-prefixes-load
*/
;window.Modernizr=function(a,b,c){function w(a){j.cssText=a}function x(a,b){return w(m.join(a+";")+(b||""))}function y(a,b){return typeof a===b}function z(a,b){return!!~(""+a).indexOf(b)}function A(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:y(f,"function")?f.bind(d||b):f}return!1}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n={},o={},p={},q=[],r=q.slice,s,t=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["&#173;",'<style id="s',h,'">',a,"</style>"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},u={}.hasOwnProperty,v;!y(u,"undefined")&&!y(u.call,"undefined")?v=function(a,b){return u.call(a,b)}:v=function(a,b){return b in a&&y(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=r.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(r.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(r.call(arguments)))};return e}),n.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:t(["@media (",m.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c};for(var B in n)v(n,B)&&(s=B.toLowerCase(),e[s]=n[B](),q.push((e[s]?"":"no-")+s));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)v(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},w(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e<g;e++)d.createElement(f[e]);return d}function p(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return r.shivMethods?n(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+l().join().replace(/\w+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(r,b.frag)}function q(a){a||(a=b);var c=m(a);return r.shivCSS&&!f&&!c.hasCSS&&(c.hasCSS=!!k(a,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}")),j||p(a,c),a}var c=a.html5||{},d=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,e=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,f,g="_html5shiv",h=0,i={},j;(function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e.testStyles=t,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+q.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
\ No newline at end of file
if( document.createElement('svg').getAttributeNS ) {
var checkbxsCross = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-cross input[type="checkbox"]' ) ),
radiobxsFill = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-fill input[type="radio"]' ) ),
checkbxsCheckmark = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-checkmark input[type="checkbox"]' ) ),
radiobxsCircle = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-circle input[type="radio"]' ) ),
checkbxsBoxfill = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-boxfill input[type="checkbox"]' ) ),
radiobxsSwirl = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-swirl input[type="radio"]' ) ),
checkbxsDiagonal = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-diagonal input[type="checkbox"]' ) ),
checkbxsList = Array.prototype.slice.call( document.querySelectorAll( 'form.ac-list input[type="checkbox"]' ) ),
pathDefs = {
cross : ['M 10 10 L 90 90','M 90 10 L 10 90'],
fill : ['M15.833,24.334c2.179-0.443,4.766-3.995,6.545-5.359 c1.76-1.35,4.144-3.732,6.256-4.339c-3.983,3.844-6.504,9.556-10.047,13.827c-2.325,2.802-5.387,6.153-6.068,9.866 c2.081-0.474,4.484-2.502,6.425-3.488c5.708-2.897,11.316-6.804,16.608-10.418c4.812-3.287,11.13-7.53,13.935-12.905 c-0.759,3.059-3.364,6.421-4.943,9.203c-2.728,4.806-6.064,8.417-9.781,12.446c-6.895,7.477-15.107,14.109-20.779,22.608 c3.515-0.784,7.103-2.996,10.263-4.628c6.455-3.335,12.235-8.381,17.684-13.15c5.495-4.81,10.848-9.68,15.866-14.988 c1.905-2.016,4.178-4.42,5.556-6.838c0.051,1.256-0.604,2.542-1.03,3.672c-1.424,3.767-3.011,7.432-4.723,11.076 c-2.772,5.904-6.312,11.342-9.921,16.763c-3.167,4.757-7.082,8.94-10.854,13.205c-2.456,2.777-4.876,5.977-7.627,8.448 c9.341-7.52,18.965-14.629,27.924-22.656c4.995-4.474,9.557-9.075,13.586-14.446c1.443-1.924,2.427-4.939,3.74-6.56 c-0.446,3.322-2.183,6.878-3.312,10.032c-2.261,6.309-5.352,12.53-8.418,18.482c-3.46,6.719-8.134,12.698-11.954,19.203 c-0.725,1.234-1.833,2.451-2.265,3.77c2.347-0.48,4.812-3.199,7.028-4.286c4.144-2.033,7.787-4.938,11.184-8.072 c3.142-2.9,5.344-6.758,7.925-10.141c1.483-1.944,3.306-4.056,4.341-6.283c0.041,1.102-0.507,2.345-0.876,3.388 c-1.456,4.114-3.369,8.184-5.059,12.212c-1.503,3.583-3.421,7.001-5.277,10.411c-0.967,1.775-2.471,3.528-3.287,5.298 c2.49-1.163,5.229-3.906,7.212-5.828c2.094-2.028,5.027-4.716,6.33-7.335c-0.256,1.47-2.07,3.577-3.02,4.809'],
checkmark : ['M16.667,62.167c3.109,5.55,7.217,10.591,10.926,15.75 c2.614,3.636,5.149,7.519,8.161,10.853c-0.046-0.051,1.959,2.414,2.692,2.343c0.895-0.088,6.958-8.511,6.014-7.3 c5.997-7.695,11.68-15.463,16.931-23.696c6.393-10.025,12.235-20.373,18.104-30.707C82.004,24.988,84.802,20.601,87,16'],
circle : ['M34.745,7.183C25.078,12.703,13.516,26.359,8.797,37.13 c-13.652,31.134,9.219,54.785,34.77,55.99c15.826,0.742,31.804-2.607,42.207-17.52c6.641-9.52,12.918-27.789,7.396-39.713 C85.873,20.155,69.828-5.347,41.802,13.379'],
boxfill : ['M6.987,4.774c15.308,2.213,30.731,1.398,46.101,1.398 c9.74,0,19.484,0.084,29.225,0.001c2.152-0.018,4.358-0.626,6.229,1.201c-5.443,1.284-10.857,2.58-16.398,2.524 c-9.586-0.096-18.983,2.331-28.597,2.326c-7.43-0.003-14.988-0.423-22.364,1.041c-4.099,0.811-7.216,3.958-10.759,6.81 c8.981-0.104,17.952,1.972,26.97,1.94c8.365-0.029,16.557-1.168,24.872-1.847c2.436-0.2,24.209-4.854,24.632,2.223 c-14.265,5.396-29.483,0.959-43.871,0.525c-12.163-0.368-24.866,2.739-36.677,6.863c14.93,4.236,30.265,2.061,45.365,2.425 c7.82,0.187,15.486,1.928,23.337,1.903c2.602-0.008,6.644-0.984,9,0.468c-2.584,1.794-8.164,0.984-10.809,1.165 c-13.329,0.899-26.632,2.315-39.939,3.953c-6.761,0.834-13.413,0.95-20.204,0.938c-1.429-0.001-2.938-0.155-4.142,0.436 c5.065,4.68,15.128,2.853,20.742,2.904c11.342,0.104,22.689-0.081,34.035-0.081c9.067,0,20.104-2.412,29.014,0.643 c-4.061,4.239-12.383,3.389-17.056,4.292c-11.054,2.132-21.575,5.041-32.725,5.289c-5.591,0.124-11.278,1.001-16.824,2.088 c-4.515,0.885-9.461,0.823-13.881,2.301c2.302,3.186,7.315,2.59,10.13,2.694c15.753,0.588,31.413-0.231,47.097-2.172 c7.904-0.979,15.06,1.748,22.549,4.877c-12.278,4.992-25.996,4.737-38.58,5.989c-8.467,0.839-16.773,1.041-25.267,0.984 c-4.727-0.031-10.214-0.851-14.782,1.551c12.157,4.923,26.295,2.283,38.739,2.182c7.176-0.06,14.323,1.151,21.326,3.07 c-2.391,2.98-7.512,3.388-10.368,4.143c-8.208,2.165-16.487,3.686-24.71,5.709c-6.854,1.685-13.604,3.616-20.507,4.714 c-1.707,0.273-3.337,0.483-4.923,1.366c2.023,0.749,3.73,0.558,5.95,0.597c9.749,0.165,19.555,0.31,29.304-0.027 c15.334-0.528,30.422-4.721,45.782-4.653'],
swirl : ['M49.346,46.341c-3.79-2.005,3.698-10.294,7.984-8.89 c8.713,2.852,4.352,20.922-4.901,20.269c-4.684-0.33-12.616-7.405-14.38-11.818c-2.375-5.938,7.208-11.688,11.624-13.837 c9.078-4.42,18.403-3.503,22.784,6.651c4.049,9.378,6.206,28.09-1.462,36.276c-7.091,7.567-24.673,2.277-32.357-1.079 c-11.474-5.01-24.54-19.124-21.738-32.758c3.958-19.263,28.856-28.248,46.044-23.244c20.693,6.025,22.012,36.268,16.246,52.826 c-5.267,15.118-17.03,26.26-33.603,21.938c-11.054-2.883-20.984-10.949-28.809-18.908C9.236,66.096,2.704,57.597,6.01,46.371 c3.059-10.385,12.719-20.155,20.892-26.604C40.809,8.788,58.615,1.851,75.058,12.031c9.289,5.749,16.787,16.361,18.284,27.262 c0.643,4.698,0.646,10.775-3.811,13.746'],
diagonal : ['M16.053,91.059c0.435,0,0.739-0.256,0.914-0.768 c3.101-2.85,5.914-6.734,8.655-9.865C41.371,62.438,56.817,44.11,70.826,24.721c3.729-5.16,6.914-10.603,10.475-15.835 c0.389-0.572,0.785-1.131,1.377-1.521'],
list : ['M1.986,8.91c41.704,4.081,83.952,5.822,125.737,2.867 c17.086-1.208,34.157-0.601,51.257-0.778c21.354-0.223,42.706-1.024,64.056-1.33c18.188-0.261,36.436,0.571,54.609,0.571','M3.954,25.923c9.888,0.045,19.725-0.905,29.602-1.432 c16.87-0.897,33.825-0.171,50.658-2.273c14.924-1.866,29.906-1.407,44.874-1.936c19.9-0.705,39.692-0.887,59.586,0.45 c35.896,2.407,71.665-1.062,107.539-1.188']
},
animDefs = {
cross : { speed : .2, easing : 'ease-in-out' },
fill : { speed : .8, easing : 'ease-in-out' },
checkmark : { speed : .2, easing : 'ease-in-out' },
circle : { speed : .2, easing : 'ease-in-out' },
boxfill : { speed : .8, easing : 'ease-in' },
swirl : { speed : .8, easing : 'ease-in' },
diagonal : { speed : .2, easing : 'ease-in-out' },
list : { speed : .3, easing : 'ease-in-out' }
};
function createSVGEl( def ) {
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
if( def ) {
svg.setAttributeNS( null, 'viewBox', def.viewBox );
svg.setAttributeNS( null, 'preserveAspectRatio', def.preserveAspectRatio );
}
else {
svg.setAttributeNS( null, 'viewBox', '0 0 100 100' );
}
svg.setAttribute( 'xmlns', 'http://www.w3.org/2000/svg' );
return svg;
}
function controlCheckbox( el, type, svgDef ) {
var svg = createSVGEl( svgDef );
el.parentNode.appendChild( svg );
el.addEventListener( 'change', function() {
if( el.checked ) {
draw( el, type );
}
else {
reset( el );
}
} );
}
function controlRadiobox( el, type ) {
var svg = createSVGEl();
el.parentNode.appendChild( svg );
el.addEventListener( 'change', function() {
resetRadio( el );
draw( el, type );
} );
}
checkbxsCross.forEach( function( el, i ) { controlCheckbox( el, 'cross' ); } );
radiobxsFill.forEach( function( el, i ) { controlRadiobox( el, 'fill' ); } );
checkbxsCheckmark.forEach( function( el, i ) { controlCheckbox( el, 'checkmark' ); } );
radiobxsCircle.forEach( function( el, i ) { controlRadiobox( el, 'circle' ); } );
checkbxsBoxfill.forEach( function( el, i ) { controlCheckbox( el, 'boxfill' ); } );
radiobxsSwirl.forEach( function( el, i ) { controlRadiobox( el, 'swirl' ); } );
checkbxsDiagonal.forEach( function( el, i ) { controlCheckbox( el, 'diagonal' ); } );
checkbxsList.forEach( function( el ) { controlCheckbox( el, 'list', { viewBox : '0 0 300 100', preserveAspectRatio : 'none' } ); } );
function draw( el, type ) {
var paths = [], pathDef,
animDef,
svg = el.parentNode.querySelector( 'svg' );
switch( type ) {
case 'cross': pathDef = pathDefs.cross; animDef = animDefs.cross; break;
case 'fill': pathDef = pathDefs.fill; animDef = animDefs.fill; break;
case 'checkmark': pathDef = pathDefs.checkmark; animDef = animDefs.checkmark; break;
case 'circle': pathDef = pathDefs.circle; animDef = animDefs.circle; break;
case 'boxfill': pathDef = pathDefs.boxfill; animDef = animDefs.boxfill; break;
case 'swirl': pathDef = pathDefs.swirl; animDef = animDefs.swirl; break;
case 'diagonal': pathDef = pathDefs.diagonal; animDef = animDefs.diagonal; break;
case 'list': pathDef = pathDefs.list; animDef = animDefs.list; break;
};
paths.push( document.createElementNS('http://www.w3.org/2000/svg', 'path' ) );
if( type === 'cross' || type === 'list' ) {
paths.push( document.createElementNS('http://www.w3.org/2000/svg', 'path' ) );
}
for( var i = 0, len = paths.length; i < len; ++i ) {
var path = paths[i];
svg.appendChild( path );
path.setAttributeNS( null, 'd', pathDef[i] );
var length = path.getTotalLength();
// Clear any previous transition
//path.style.transition = path.style.WebkitTransition = path.style.MozTransition = 'none';
// Set up the starting positions
path.style.strokeDasharray = length + ' ' + length;
if( i === 0 ) {
path.style.strokeDashoffset = Math.floor( length ) - 1;
}
else path.style.strokeDashoffset = length;
// Trigger a layout so styles are calculated & the browser
// picks up the starting position before animating
path.getBoundingClientRect();
// Define our transition
path.style.transition = path.style.WebkitTransition = path.style.MozTransition = 'stroke-dashoffset ' + animDef.speed + 's ' + animDef.easing + ' ' + i * animDef.speed + 's';
// Go!
path.style.strokeDashoffset = '0';
}
}
function reset( el ) {
Array.prototype.slice.call( el.parentNode.querySelectorAll( 'svg > path' ) ).forEach( function( el ) { el.parentNode.removeChild( el ); } );
}
function resetRadio( el ) {
Array.prototype.slice.call( document.querySelectorAll( 'input[type="radio"][name="' + el.getAttribute( 'name' ) + '"]' ) ).forEach( function( el ) {
var path = el.parentNode.querySelector( 'svg > path' );
if( path ) {
path.parentNode.removeChild( path );
}
} );
}
}
\ No newline at end of file
/* Default custom select styles */
div.cs-select {
display: inline-block;
vertical-align: middle;
position: relative;
text-align: left;
background: #fff;
z-index: 100;
width: 100%;
max-width: 500px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
div.cs-select:focus {
outline: none; /* For better accessibility add a style for this in your skin */
}
.cs-select select {
display: none;
}
.cs-select span {
display: block;
position: relative;
cursor: pointer;
padding: 1em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Placeholder and selected option */
.cs-select > span {
padding-right: 3em;
}
.cs-select > span::after,
.cs-select .cs-selected span::after {
speak: none;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.cs-select > span::after {
content: '\25BE';
right: 1em;
}
.cs-select .cs-selected span::after {
content: '\2713';
margin-left: 1em;
}
.cs-select.cs-active > span::after {
-webkit-transform: translateY(-50%) rotate(180deg);
transform: translateY(-50%) rotate(180deg);
}
div.cs-active {
z-index: 200;
}
/* Options */
.cs-select .cs-options {
position: absolute;
overflow: hidden;
width: 100%;
background: #fff;
visibility: hidden;
}
.cs-select.cs-active .cs-options {
visibility: visible;
}
.cs-select ul {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
.cs-select ul span {
padding: 1em;
}
.cs-select ul li.cs-focus span {
background-color: #ddd;
}
/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {
padding-left: 1em;
}
.cs-select li.cs-optgroup > span {
cursor: default;
}
@font-face {
font-family: 'icomoon';
src:url('../fonts/icomoon/icomoon.eot?-rdnm34');
src:url('../fonts/icomoon/icomoon.eot?#iefix-rdnm34') format('embedded-opentype'),
url('../fonts/icomoon/icomoon.woff?-rdnm34') format('woff'),
url('../fonts/icomoon/icomoon.ttf?-rdnm34') format('truetype'),
url('../fonts/icomoon/icomoon.svg?-rdnm34#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'icomoon2';
src:url('../fonts/icomoon/icomoon/icomoon.eot?-rdnm34');
src:url('../fonts/icomoon/icomoon/icomoon.eot?#iefix-rdnm34') format('embedded-opentype'),
url('../fonts/icomoon/icomoon/icomoon.woff?-rdnm34') format('woff'),
url('../fonts/icomoon/icomoon/icomoon.ttf?-rdnm34') format('truetype'),
url('../fonts/icomoon/icomoon/icomoon.svg?-rdnm34#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
div.cs-skin-underline {
background: transparent;
font-size: 1em;
max-width: 400px;
}
@media screen and (max-width: 30em) {
div.cs-skin-underline { font-size: 1.2em; }
}
.cs-skin-underline > span {
padding: 0.5em 3em 0.5em 0.5em;
border-bottom: 1px solid #000;
border-color: inherit;
font-weight: normal;
}
.cs-skin-underline > span::after {
font-family: 'icomoon';
content: '\e003';
right: 0.25em;
-webkit-transform: translate3d(0,-50%,0) rotate3d(0,0,1,45deg);
transform: translate3d(0,-50%,0) rotate3d(0,0,1,45deg);
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
}
.cs-skin-underline.cs-active > span::after {
-webkit-transform: translate3d(0,-50%,0) rotate3d(0,0,1,270deg);
transform: translate3d(0,-50%,0) rotate3d(0,0,1,270deg);
}
.cs-skin-underline .cs-options {
background: #ccc;
opacity: 0;
-webkit-transition: opacity 0.3s 0.4s, visibility 0s 0.7s;
transition: opacity 0.3s 0.4s, visibility 0s 0.7s;
}
.cs-skin-underline.cs-active .cs-options {
opacity: 1;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.cs-skin-underline ul span {
position: relative;
text-transform: uppercase;
font-size: 66%;
font-weight: 700;
letter-spacing: 1px;
padding: 1.2em 0.8em;
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
}
.cs-select ul span::after {
content: '';
opacity: 0;
}
.cs-select .cs-selected span::after {
font-family: 'icomoon2';
content: '\e902';
opacity: 1;
-webkit-transition: opacity 0.3s 0.7s;
transition: opacity 0.3s 0.7s;
}
.cs-skin-underline ul span::before {
content: '';
position: absolute;
bottom: 1px;
left: 0;
height: 1px;
width: 100%;
background-color: #fff;
-webkit-transform: translate3d(200%,0,0);
transform: translate3d(200%,0,0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.cs-skin-underline.cs-active ul span,
.cs-skin-underline.cs-active ul span::before {
opacity: 1;
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.cs-skin-underline li:nth-child(5) span,
.cs-skin-underline li:nth-child(5) span::before,
.cs-skin-underline.cs-active li:first-child span,
.cs-skin-underline.cs-active li:first-child span::before {
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.cs-skin-underline li:nth-child(4) span,
.cs-skin-underline li:nth-child(4) span::before,
.cs-skin-underline.cs-active li:nth-child(2) span,
.cs-skin-underline.cs-active li:nth-child(2) span::before {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
.cs-skin-underline li:nth-child(3) span,
.cs-skin-underline li:nth-child(3) span::before {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.cs-skin-underline li:nth-child(2) span,
.cs-skin-underline li:nth-child(2) span::before,
.cs-skin-underline.cs-active li:nth-child(4) span,
.cs-skin-underline.cs-active li:nth-child(4) span::before {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.cs-skin-underline li:first-child span,
.cs-skin-underline li:first-child span::before,
.cs-skin-underline.cs-active li:nth-child(5) span,
.cs-skin-underline.cs-active li:nth-child(5) span::before {
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
} /* more items require more delay declarations */
.cs-skin-underline .cs-options li span:hover,
.cs-skin-underline .cs-options li.cs-focus span,
.cs-skin-underline li.cs-selected span {
color: #566473;
background: transparent;
}
@font-face {
font-weight: normal;
font-style: normal;
font-family: 'codropsicons';
src:url('../fonts/codropsicons/codropsicons.eot');
src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
url('../fonts/codropsicons/codropsicons.woff') format('woff'),
url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-user:before {
content: "\e900";
}
.icon-star-empty:before {
content: "\e902";
}
.icon-star-full:before {
content: "\e903";
}
.icon-checkmark:before {
content: "\e901";
}
*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }
body {
/*background: #3498db;*/
/*color: #fff;*/
font-weight: 400;
font-size: 1em;
/*padding: 35px 10px;*/
border-right: 25px solid #fff;
border-left: 25px solid #fff;
/*font-family: 'Raleway', Arial, sans-serif;*/
}
body::before,
body::after {
content: '';
position: fixed;
left: 0;
top: 0;
width: 100%;
/*height: 25px;*/
background: #fff;
z-index: 1001;
}
body::after {
top: auto;
bottom: 0;
}
a {
color: #1e6fa4;
text-decoration: none;
outline: none;
}
a:hover, a:focus {
color: #125480;
outline: none;
}
/* Demo themes */
.color-2 { background: #bbc7c8; color: #fff; }
.color-2 a { color: #566473; }
.color-2 a:hover, .color-2 a:focus { color: #34495e; }
.color-3 { background: #00b6ad; color: #fff; }
.color-3 a { color: #04706b; }
.color-3 a:hover, .color-3 a:focus { color: #03514d; }
.color-4 { background: #3b3f45; color: #f9f9f9; }
.color-4 a { color: #eb7e7f; }
.color-4 a:hover, .color-4 a:focus { color: #c56667; }
.color-5 { background: #f06d54; color: #fff; }
.color-5 a { color: #a35749; }
.color-5 a:hover, .color-5 a:focus { color: #6d3126; }
.color-6 { background: #f9f9f9; border-color: #f9f9f9; color: #62706c; }
.color-6::before, .color-6::after { background: #f9f9f9; }
.color-6 a { color: #1ecd97; }
.color-6 a:hover, .color-6 a:focus { color: #1ab585; }
.color-7 { background: #fffed8; color: #6bccb4; }
.color-7 a { color: #eb7e7f; }
.color-7 a:hover, .color-6 a:focus { color: #c36263; }
.color-8 { background: #415c71; color: #fefef8; }
.color-8 a { color: #7ad7ee; }
.color-8 a:hover, .color-8 a:focus { color: #539eb1; }
section {
/*padding: 4% 1em 10%;*/
text-align: center;
}
label.select-label {
display: block;
text-transform: uppercase;
padding: 1em 0 1.5em;
font-size: 75%;
letter-spacing: 1px;
font-weight: 700;
width: 300px;
text-align: left;
margin: 0 auto;
color: #c0c6c4;
}
.color-4 label.select-label {
color: #282b30;
font-size: 1em;
}
/* Header */
.codrops-header {
margin: 0 auto;
padding: 2em;
text-align: center;
}
.codrops-header h1 span {
display: block;
font-size: 30%;
text-transform: uppercase;
letter-spacing: 2px;
opacity: 0.8;
}
.codrops-header h1 {
margin: 0;
font-weight: 700;
font-size: 3.5em;
line-height: 1.3;
}
/* To Navigation Style */
.codrops-top {
width: 100%;
text-transform: uppercase;
font-weight: 700;
font-size: 0.69em;
line-height: 2.2;
}
.codrops-top a {
display: inline-block;
padding: 0 1em;
text-decoration: none;
letter-spacing: 1px;
}
.codrops-top span.right {
float: right;
}
.codrops-top span.right a {
display: block;
float: left;
}
.codrops-icon:before {
margin: 0 4px;
text-transform: none;
font-weight: normal;
font-style: normal;
font-variant: normal;
font-family: 'codropsicons';
line-height: 1;
speak: none;
-webkit-font-smoothing: antialiased;
}
.codrops-icon-drop:before {
content: "\e001";
}
.codrops-icon-prev:before {
content: "\e004";
}
/* Demo Buttons Style */
.codrops-demos {
padding-top: 1em;
font-size: 0.9em;
}
.codrops-demos a {
display: inline-block;
margin: 0.5em;
padding: 0.7em 1.1em;
outline: none;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
}
.codrops-demos a.current-demo {
color: inherit;
}
/* Related demos */
.related {
padding-top: 20em;
}
.related p {
font-size: 1.6em;
}
.related > a {
border: 3px solid;
border-color: initial;
display: inline-block;
vertical-align: top;
text-align: center;
margin: 20px 10px;
padding: 25px;
}
.related a img {
max-width: 100%;
opacity: 0.8;
}
.related a:hover img,
.related a:active img {
opacity: 1;
}
.related a h3 {
margin: 0;
padding: 0.5em 0 0.3em;
max-width: 300px;
text-align: left;
}
.wrap {
padding: 1em 0;
}
@media screen and (max-width: 30em) {
body::before,
body::after {
display: none !important;
}
body {
border: none !important;
padding: 0 !important;
}
.codrops-header h1 {
font-size: 2em;
}
.codrops-icon span {
display: none;
}
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG font generated by IcoMoon.
<iconset grid="14"></iconset>
</metadata>
<defs>
<font id="codropsicons" horiz-adv-x="448" >
<font-face units-per-em="448" ascent="384" descent="-64" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode="&#xe001;" d="M 221.657,359.485 ,m0.00,0.00,c 0.00,0.00 -132.984-182.838 -132.205-286.236 0.515-68.522 61.089-123.688 135.314-123.218 74.202,0.479 133.943,56.421 133.428,124.943 C 357.414,178.368 221.657,359.485 221.657,359.485 z" />
<glyph unicode="&#xe004;" d="M 384.00,160.00l0.00-32.00 q0.00-13.25 -8.125-22.625t-21.125-9.375l-176.00,0.00 l 73.25-73.50q 9.50-9.00 9.50-22.50t-9.50-22.50l-18.75-19.00q-9.25-9.25 -22.50-9.25q-13.00,0.00 -22.75,9.25l-162.75,163.00q-9.25,9.25 -9.25,22.50q0.00,13.00 9.25,22.75l 162.75,162.50q 9.50,9.50 22.75,9.50q 13.00,0.00 22.50-9.50l 18.75-18.50q 9.50-9.50 9.50-22.75t-9.50-22.75l-73.25-73.25l 176.00,0.00 q 13.00,0.00 21.125-9.375 t 8.125-22.625z" horiz-adv-x="384" />
<glyph unicode="&#xe002;" d="M 407.273-23.273c0.00,0.00-325.818,0.00-366.545,0.00s-40.727,40.727-40.727,40.727l0.00,142.545 l 101.818,183.273l 244.364,0.00 l 101.818-183.273c0.00,0.00,0.00-101.818,0.00-142.545S 407.273-23.273, 407.273-23.273z M 325.818,302.545L 122.182,302.545
l-71.273-142.545L 142.545,160.00 c0.00,0.00, 40.727,0.00, 40.727-40.727l0.00-20.364 l 81.455,0.00 l0.00,20.364 c0.00,0.00,0.00,40.727, 40.727,40.727l 91.636,0.00 L 325.818,302.545z M 407.273,119.273l-96.911,0.00 C 307.532,113.917, 305.455,107.503, 305.455,98.909c0.00-40.727-40.727-40.727-40.727-40.727L 183.273,58.182 c0.00,0.00-40.727,0.00-40.727,40.727
c0.00,8.593-2.077,15.008-4.908,20.364L 40.727,119.273 l0.00-101.818 l 366.545,0.00 L 407.273,119.273 z M 132.364,221.091l 183.273,0.00 L 325.818,200.727L 122.182,200.727 L 132.364,221.091z M 152.727,261.818l 142.545,0.00 L 305.455,241.455L 142.545,241.455 L 152.727,261.818z" />
<glyph unicode="&#xe000;" d="M 368.00,144.00q0.00-13.50 -9.25-22.75l-162.75-162.75q-9.75-9.25 -22.75-9.25q-12.75,0.00 -22.50,9.25l-18.75,18.75q-9.50,9.50 -9.50,22.75t 9.50,22.75l 73.25,73.25l-176.00,0.00 q-13.00,0.00 -21.125,9.375t-8.125,22.625l0.00,32.00 q0.00,13.25 8.125,22.625t 21.125,9.375l 176.00,0.00 l-73.25,73.50q-9.50,9.00 -9.50,22.50t 9.50,22.50l 18.75,18.75q 9.50,9.50 22.50,9.50q 13.25,0.00 22.75-9.50l 162.75-162.75q 9.25-8.75 9.25-22.50z" horiz-adv-x="384" />
<glyph unicode="&#xe003;" d="M 224.00-64.00C 100.291-64.00,0.00,36.291,0.00,160.00S 100.291,384.00, 224.00,384.00s 224.00-100.291, 224.00-224.00S 347.709-64.00, 224.00-64.00z
M 224.00,343.273c-101.228,0.00-183.273-82.045-183.273-183.273s 82.045-183.273, 183.273-183.273s 183.273,82.045, 183.273,183.273S 325.228,343.273, 224.00,343.273z M 244.364,122.164C 244.364,111.005, 244.364,98.909, 244.364,98.909l-40.727,0.00 c0.00,0.00,0.00,29.466,0.00,40.727
s 9.123,20.364, 20.364,20.364l0.00,0.00c 22.481,0.00, 40.727,18.246, 40.727,40.727s-18.246,40.727-40.727,40.727S 183.273,223.209, 183.273,200.727c0.00-7.453, 2.138-14.356, 5.641-20.364L 145.437,180.364 C 143.727,186.90, 142.545,193.661, 142.545,200.727
c0.00,44.983, 36.471,81.455, 81.455,81.455s 81.455-36.471, 81.455-81.455C 305.455,162.831, 279.45,131.247, 244.364,122.164z M 244.364,37.818l-40.727,0.00 l0.00,40.727 l 40.727,0.00 L 244.364,37.818 z" />
<glyph unicode="&#x20;" horiz-adv-x="224" />
<glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
</font></defs></svg>
\ No newline at end of file
Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/
License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico
License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/
\ No newline at end of file
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by Fontastic.me</metadata>
<defs>
<font id="icomoon" horiz-adv-x="512">
<font-face font-family="icomoon" units-per-em="512" ascent="480" descent="-32"/>
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#57344;" d="M256 459c6 0 11-2 15-7 4-4 6-9 6-15l0-332 113 113c4 4 9 6 15 6 6 0 12-2 16-6 4-4 6-9 6-15 0-6-2-11-6-16l-150-149c-4-4-9-6-15-6-6 0-11 2-15 6l-149 149c-5 5-7 10-7 16 0 6 2 11 6 15 4 4 10 6 16 6 6 0 11-2 15-6l113-113 0 332c0 6 2 11 6 15 4 5 9 7 15 7z"/>
<glyph unicode="&#57349;" d="M26 290c0 5 2 9 5 13l48 47c3 3 7 5 12 5 5 0 10-2 13-5l152-152 152 152c3 3 8 5 13 5 5 0 9-2 12-5l48-47c3-4 5-8 5-13 0-5-2-10-5-13l-212-212c-4-4-8-6-13-6-5 0-9 2-13 6l-212 212c-3 3-5 8-5 13z"/>
<glyph unicode="&#57350;" d="M114 261c0 2 0 4 2 6l15 14c2 2 4 3 6 3 3 0 5-1 7-3l112-112 112 112c2 2 4 3 7 3 2 0 5-1 7-3l14-14c2-2 3-4 3-6 0-3-1-5-3-7l-133-133c-2-2-4-3-7-3-2 0-5 1-6 3l-134 133c-2 2-2 4-2 7z m0 109c0 3 0 5 2 7l15 14c2 2 4 3 6 3 3 0 5-1 7-3l112-112 112 112c2 2 4 3 7 3 2 0 5-1 7-3l14-14c2-2 3-4 3-7 0-2-1-4-3-6l-133-133c-2-2-4-3-7-3-2 0-5 1-6 3l-134 133c-2 2-2 4-2 6z"/>
<glyph unicode="&#57351;" d="M114 297c0 3 0 5 2 7l15 14c2 2 4 3 6 3 3 0 5-1 7-3l112-112 112 112c2 2 4 3 7 3 2 0 5-1 7-3l14-14c2-2 3-4 3-7 0-2-1-5-3-6l-133-134c-2-1-4-2-7-2-2 0-5 1-6 2l-134 134c-2 1-2 4-2 6z"/>
<glyph unicode="&#57352;" d="M503 343l-160 160c-8 8-20 11-31 8-5-1-11-4-15-8-3-4-6-9-8-14-7-23-19-43-38-62-25-25-57-43-91-63-36-21-74-43-104-74-26-26-44-55-55-89-3-11 0-23 8-32l160-160c8-8 20-11 31-8 5 1 11 4 15 8 3 4 6 8 8 14 7 23 19 43 38 62 25 25 57 43 91 63 36 21 74 43 104 74 26 26 44 55 55 89 3 11 0 23-8 32z m-311-311c-53 53-107 107-160 160 45 147 243 141 288 288 53-53 107-107 160-160-45-147-243-141-288-288z m121 242c-5 4-10 7-16 8-5 2-10 2-16 2-5 0-10-2-16-4-5-2-10-4-16-7-8 10-17 20-26 29 4 4 8 5 12 6 3 0 7-1 10-2 3 0 7-1 9-2 3 0 6 0 8 2 2 2 4 5 4 8 0 3-1 6-4 9-3 4-7 6-12 7-5 1-10 1-15 0-5-1-10-3-15-6-4-3-8-5-10-8-2 1-3 2-4 3-1 1-2 2-4 2-2 0-3-1-4-3-1-1-2-2-2-4 0-2 1-3 2-4 1-1 2-2 3-3-4-5-7-10-10-16-2-6-4-11-5-17 0-6 0-11 2-15 2-5 5-9 10-13 7-6 16-9 26-8 11 0 22 3 33 10 10-11 19-22 29-32-4-4-8-6-11-6-3-1-6-1-8 0-3 1-5 2-7 3-2 2-4 3-6 4-2 1-5 2-7 2-2 0-4-1-7-3-2-3-4-5-4-8 0-3 2-6 4-9 3-4 7-6 11-8 4-2 9-3 14-4 6 0 11 1 17 3 6 2 12 6 18 12 2-3 5-6 8-8 1-1 3-2 4-2 2 1 4 1 5 3 1 1 1 3 1 4 0 2-1 3-2 4-3 3-5 5-8 7 5 6 8 12 11 19 3 6 5 12 5 17 1 6 0 11-1 15-2 5-5 9-10 13z m-89-11c-5 0-9 1-12 4-2 2-3 4-4 6 0 2 0 4 0 6 0 3 1 5 2 8 1 2 3 5 5 7 8-8 16-17 25-26-7-3-12-5-16-5z m75-32c-1-3-3-5-5-7-9 9-18 19-27 29 2 1 5 2 7 3 3 1 6 2 8 2 3 1 5 1 8 0 3-1 5-2 7-4 3-3 4-5 5-7 0-3 0-6 0-8-1-3-2-6-3-8z m-64-74l0 0c-10-8-19-16-28-25-9-8-17-18-24-27l-11-15 0 0c-2-3-1-7 1-10 4-3 9-3 12 0 0 1 1 1 1 2l10 14c7 8 14 17 22 25 9 9 17 16 27 24l0 0c1 0 1 0 1 0 3 3 3 8 0 12-3 3-7 3-11 0z m59 232c-8-9-17-16-27-24 0 0-1 0-2-1-3-3-3-8 0-11 3-3 8-3 12-1l0 0c10 8 19 16 28 25 9 9 17 18 24 27l11 15 0 0c2 4 2 8-1 11-3 4-8 4-11 0-1 0-1-1-2-2l-10-14c-7-9-14-17-22-25z"/>
<glyph unicode="&#57353;" d="M472 176l-43 0c-1 4-2 8-3 11l77 39c8 4 11 13 7 21-4 8-13 11-21 7l-73-36c-28 60-89 102-160 102-86 0-158-62-173-144l-43 0c-22 0-40-18-40-40 0-8 3-15 8-21l56-63 0-12c0-22 18-40 40-40l304 0c22 0 40 18 40 40l0 12 56 63c5 6 8 13 8 21 0 22-18 40-40 40z m-59 0l-9 0 8 4c0-1 0-3 1-4z m-157 128c64 0 120-38 145-93l-14-8c-23 50-73 85-131 85-69 0-126-48-140-112l-17 0c15 73 80 128 157 128z m73-128c-12 28-40 48-73 48-33 0-61-20-73-48l-17 0c13 37 48 64 90 64 39 0 73-24 88-58l-12-6z m-73 16c-14 0-27-6-36-16l-19 0c11 19 31 32 55 32 24 0 44-13 55-32l-20 0c-8 10-21 16-35 16z m0 64c-51 0-93-34-107-80l-17 0c14 55 64 96 124 96 52 0 97-31 117-76l-15-7c-17 39-56 67-102 67z m160-192l0-24c0-4-4-8-8-8l-304 0c-4 0-8 4-8 8l0 24-64 72c0 4 4 8 8 8l432 0c4 0 8-4 8-8z m-288 261c0 0 0-1 0-1 0 0 0 0 0 0 1-2 4-4 7-4 4 0 8 4 8 8 0 1 0 1 0 2 0 0 0 0 0 0-6 14-1 30 6 47 8 18 16 38 7 58-1 3-4 5-7 5-5 0-8-4-8-8 0-1 0-2 0-3 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 6-15 0-29-7-46-8-18-16-38-8-58 0 0 1 0 1 0z m194 2c1 0 1 0 1 0l0 0c1-3 4-5 7-5 4 0 8 4 8 8 0 1 0 2-1 2 1 0 1 1 0 1-6 14 0 29 7 46 8 18 16 38 7 58-1 3-4 5-7 5-5 0-8-3-8-8 0 0 0-1 0-2 0 0 0 0 0 0 0 0 0 0 0 0 0-1 0-1 0-1 7-14 1-29-6-46-8-18-16-37-8-57 0-1 0-1 0-1z m-82 70c0 0 0-1 0-1 0 0 0 0 0 0 2-2 4-4 8-4 4 0 8 4 8 8 0 1-1 1-1 2 0 0 0 0 0 0-6 14 0 30 7 47 8 18 16 38 7 58-1 3-4 5-8 5-4 0-7-4-7-8 0-1 0-2 0-3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7-15 0-29-7-46-7-18-15-38-7-58 0 0 0 0 0 0z"/>
<glyph unicode="&#57354;" d="M467 428c-58 57-151 58-211 4-60 54-153 53-211-4-60-60-60-156 0-215 17-17 177-175 177-175 19-19 49-19 68 0 0 0 175 173 177 175 60 59 60 155 0 215z m-23-192l-177-175c-6-7-16-7-22 0l-177 175c-47 46-47 122 0 169 45 45 118 47 166 4l22-20 22 20c48 43 121 41 166-4 47-47 47-123 0-169z m-296 156c0 0 0 0 0 0-38 0-68-30-68-68 0-4 4-8 8-8 4 0 8 4 8 8l0 0c0 29 23 52 52 52l0 0c4 0 8 4 8 8 0 4-4 8-8 8z"/>
<glyph unicode="&#57355;" d="M256 352c-71 0-128-57-128-128 0-71 57-128 128-128 71 0 128 57 128 128 0 71-57 128-128 128z m73-190c-35-41-95-45-135-11-41 35-45 95-11 135 35 41 95 45 135 11 41-35 45-95 11-135z m-73 126c-35 0-64-29-64-64l0 0c0-4 4-8 8-8 4 0 8 4 8 8l0 0c0 26 21 48 48 48 4 0 8 4 8 8 0 4-4 8-8 8z m216 79l-69 12-22 55c-8 18-25 30-45 30l-160 0c-20 0-37-12-45-30l-22-55-69-12c-23-4-40-23-40-47l0-240c0-26 22-48 48-48l416 0c26 0 48 22 48 48l0 240c0 24-17 43-40 47z m8-287c0-9-7-16-16-16l-416 0c-9 0-16 7-16 16l0 240c0 8 6 14 13 16l87 14 29 72c3 6 8 10 15 10l160 0c7 0 12-4 15-10l29-72 87-14c7-2 13-8 13-16z"/>
<glyph unicode="&#57356;" d="M500 409l-80 64c-6 5-13 7-20 7l-288 0c-7 0-14-2-20-7l-80-64c-10-8-15-22-10-35l32-96c3-10 10-17 20-20 3-1 7-2 10-2 6 0 11 1 16 4l0-196c0-18 14-32 32-32l288 0c18 0 32 14 32 32l0 196c5-3 10-4 16-4 4 0 7 1 10 2 10 3 17 10 20 20l32 96c5 13 0 27-10 35z m-184 39c-9-19-32-32-60-32-28 0-51 13-60 32z m132-160l-48 32 0-256-288 0 0 256-48-32-32 96 80 64 67 0c9-28 40-48 77-48 37 0 68 20 77 48l67 0 80-64z"/>
<glyph unicode="&#57357;" d="M176 48l-176 176 80 83 112-107 248 248 72-72z"/>
<glyph unicode="&#57358;" d="M227 182c-2-2-6-4-9-4-3 0-7 2-9 4l-56 56 18 18 47-47 125 126 17-18z"/>
<glyph unicode="&#57359;" d="M475 128l0-37c0-5-1-9-5-12-4-4-8-6-13-6l-402 0c-5 0-9 2-13 6-4 3-5 7-5 12l0 37c0 5 1 9 5 13 4 3 8 5 13 5l402 0c5 0 9-2 13-5 4-4 5-8 5-13z m0 146l0-36c0-5-1-10-5-13-4-4-8-6-13-6l-402 0c-5 0-9 2-13 6-4 3-5 8-5 13l0 36c0 5 1 10 5 13 4 4 8 6 13 6l402 0c5 0 9-2 13-6 4-3 5-8 5-13z m0 147l0-37c0-5-1-9-5-13-4-3-8-5-13-5l-402 0c-5 0-9 2-13 5-4 4-5 8-5 13l0 37c0 5 1 9 5 12 4 4 8 6 13 6l402 0c5 0 9-2 13-6 4-3 5-7 5-12z"/>
<glyph unicode="&#57360;" d="M267 128l0 171c42-2 85 20 85 64l0 42c0 10-1 22-6 22-5 0-10-5-15-11l-32-32-32 36c-4 4-6 7-11 7-5 0-7-3-11-7l-32-36-32 32c-5 6-10 11-15 11-5 0-6-12-6-22l0-42c0-44 43-66 85-64l0-171c-21 43-85 107-149 85 0 0 53-128 160-128 107 0 160 128 160 128-64 22-128-42-149-85z"/>
<glyph unicode="&#57361;" d="M402 201c0-5-2-9-5-13l-128-128c-4-3-8-5-13-5-5 0-9 2-13 5l-128 128c-3 4-5 8-5 13 0 5 2 9 5 13 4 4 8 5 13 5l256 0c5 0 9-1 13-5 3-4 5-8 5-13z m0 110c0-5-2-9-5-13-4-4-8-5-13-5l-256 0c-5 0-9 1-13 5-3 4-5 8-5 13 0 5 2 9 5 13l128 128c4 3 8 5 13 5 5 0 9-2 13-5l128-128c3-4 5-8 5-13z"/>
<glyph unicode="&#57362;" d="M402 311c0-5-2-9-5-13l-128-128c-4-4-8-5-13-5-5 0-9 1-13 5l-128 128c-3 4-5 8-5 13 0 5 2 9 5 13 4 3 8 5 13 5l256 0c5 0 9-2 13-5 3-4 5-8 5-13z"/>
<glyph unicode="&#57363;" d="M235 459c-11 0-11-11-11-11l0-96c0 0 0-11-11-11-10 0-10 11-10 11l0 96c0 0 0 11-11 11-11 0-11-11-11-11l0-96c0 0 0-11-10-11-11 0-11 11-11 11l0 96c0 0 0 11-11 11-10 0-10-11-10-11l0-128c0-11 5-21 16-32 10-11 5-21 5-32l0-32-5-139c-1-10 13-32 34-32 22 0 29 22 28 32l-14 139 0 32c0 10 5 21 16 32 10 10 26 21 26 32l0 128c0 0 0 11-10 11z m64-32c-11-22-11-75-11-96l0-107c0-11 11-21 21-21l22 0 0-128c0-11 10-22 21-22 11 0 21 11 21 22l0 384c-21 0-61-5-74-32z"/>
<glyph unicode="&#57364;" d="M21 469l0-448 448 0 0 448z m405-149l-106 0 0 107 106 0z m0-128l-106 0 0 107 106 0z m0-128l-106 0 0 107 106 0z m-362 107l107 0 0-107-107 0z m0 128l107 0 0-107-107 0z m0 128l107 0 0-107-107 0z m234-107l-106 0 0 107 106 0 0-107z m0-128l-106 0 0 107 106 0 0-107z m-106-21l106 0 0-107-106 0z"/>
<glyph unicode="&#57365;" d="M119 375c0 10-3 18-10 25-6 6-14 10-24 10-9 0-17-4-24-10-6-7-10-15-10-25 0-9 4-17 10-24 7-6 15-10 24-10 10 0 18 4 24 10 7 7 10 15 10 24z m285-153c0-10-3-18-10-24l-131-131c-7-7-15-10-24-10-9 0-17 3-24 10l-191 191c-6 6-12 15-17 27-5 11-7 21-7 31l0 111c0 9 3 17 10 24 7 6 15 10 24 10l111 0c9 0 20-3 31-7 12-5 21-11 27-17l191-191c7-7 10-15 10-24z m102 0c0-10-3-18-9-24l-131-131c-7-7-15-10-25-10-6 0-11 1-15 4-4 2-9 6-15 12l126 125c6 6 10 14 10 24 0 9-4 17-10 24l-191 191c-7 6-16 12-27 17-11 4-22 7-31 7l59 0c10 0 20-3 32-7 11-5 20-11 27-17l191-191c6-7 9-15 9-24z"/>
<glyph unicode="&#57345;" d="M256 459c6 0 11-2 15-7 4-4 6-9 6-15l0-170 171 0c6 0 11-2 15-7 4-4 6-9 6-15 0-6-2-11-6-15-4-4-9-6-15-6l-171 0 0-171c0-6-2-11-6-15-4-4-9-6-15-6-6 0-11 2-15 6-4 4-6 9-6 15l0 171-171 0c-6 0-11 2-15 6-4 4-6 9-6 15 0 6 2 11 6 15 4 5 9 7 15 7l171 0 0 170c0 6 2 11 6 15 4 5 9 7 15 7z"/>
<glyph unicode="&#57347;" d="M426 134c0-7-3-14-8-19l-39-39c-5-5-12-8-20-8-7 0-14 3-19 8l-84 84-84-84c-5-5-12-8-19-8-8 0-15 3-20 8l-39 39c-5 5-8 12-8 19 0 8 3 14 8 20l84 84-84 84c-5 5-8 12-8 19 0 8 3 14 8 20l39 38c5 6 12 8 20 8 7 0 14-2 19-8l84-84 84 84c5 6 12 8 19 8 8 0 15-2 20-8l39-38c5-6 8-12 8-20 0-7-3-14-8-19l-84-84 84-84c5-6 8-12 8-20z"/>
</font></defs></svg>
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="user" d="M576 253.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388z" />
</font></defs></svg>
\ No newline at end of file
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M576 706.612v-52.78c70.498-39.728 128-138.772 128-237.832 0-159.058 0-288-192-288s-192 128.942-192 288c0 99.060 57.502 198.104 128 237.832v52.78c-217.102 17.748-384 124.42-384 253.388h896c0-128.968-166.898-235.64-384-253.388z"
],
"attrs": [],
"tags": [
"user",
"profile",
"avatar",
"person",
"member"
],
"grid": 16
},
"attrs": [],
"properties": {
"order": 2,
"id": 1628,
"prevSize": 32,
"ligatures": "user, profile2",
"name": "user",
"code": 59648
},
"setIdx": 0,
"setId": 0,
"iconIdx": 113
},
{
"icon": {
"paths": [
"M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538zM512 753.498l-223.462 117.48 42.676-248.83-180.786-176.222 249.84-36.304 111.732-226.396 111.736 226.396 249.836 36.304-180.788 176.222 42.678 248.83-223.462-117.48z"
],
"attrs": [],
"tags": [
"star-empty",
"rate",
"star",
"favorite",
"bookmark"
],
"grid": 16
},
"attrs": [],
"properties": {
"id": 863,
"order": 6,
"prevSize": 32,
"ligatures": "star-empty, rate",
"name": "star-empty",
"code": 59650
},
"setIdx": 0,
"setId": 0,
"iconIdx": 215
},
{
"icon": {
"paths": [
"M1024 397.050l-353.78-51.408-158.22-320.582-158.216 320.582-353.784 51.408 256 249.538-60.432 352.352 316.432-166.358 316.432 166.358-60.434-352.352 256.002-249.538z"
],
"attrs": [],
"tags": [
"star-full",
"rate",
"star",
"favorite",
"bookmark"
],
"grid": 16
},
"attrs": [],
"properties": {
"id": 865,
"order": 7,
"prevSize": 32,
"ligatures": "star-full, rate3",
"name": "star-full",
"code": 59651
},
"setIdx": 0,
"setId": 0,
"iconIdx": 217
},
{
"icon": {
"paths": [
"M864 128l-480 480-224-224-160 160 384 384 640-640z"
],
"attrs": [],
"tags": [
"checkmark",
"tick",
"correct",
"accept",
"ok"
],
"grid": 16
},
"attrs": [],
"properties": {
"id": 980,
"order": 5,
"prevSize": 32,
"ligatures": "checkmark, tick",
"name": "checkmark",
"code": 59649
},
"setIdx": 0,
"setId": 0,
"iconIdx": 272
}
],
"height": 1024,
"metadata": {
"name": "icomoon"
},
"preferences": {
"showGlyphs": true,
"showQuickUse": true,
"showQuickUse2": true,
"showSVGs": true,
"fontPref": {
"prefix": "icon-",
"metadata": {
"fontFamily": "icomoon"
},
"metrics": {
"emSize": 1024,
"baseline": 6.25,
"whitespace": 50
},
"embed": false
},
"imagePref": {
"prefix": "icon-",
"png": true,
"useClassSelector": true,
"color": 4473924,
"bgColor": 16777215
},
"historySize": 100,
"showCodes": true
}
}
\ No newline at end of file
@font-face {
font-family: 'icomoon';
src:url('../fonts/icomoon/icomoon.eot?-rdnm34');
src:url('../fonts/icomoon/icomoon.eot?#iefix-rdnm34') format('embedded-opentype'),
url('../fonts/icomoon/icomoon.woff?-rdnm34') format('woff'),
url('../fonts/icomoon/icomoon.ttf?-rdnm34') format('truetype'),
url('../fonts/icomoon/icomoon.svg?-rdnm34#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-user:before {
content: "\e900";
}
.icon-star-empty:before {
content: "\e902";
}
.icon-star-full:before {
content: "\e903";
}
.icon-checkmark:before {
content: "\e901";
}
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="800" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" height="500">
<rect width="800" fill="#74acdf" height="500"/>
<rect y="166.67" width="800" fill="#fff" height="166.67"/>
<g id="rays">
<path id="ray1" stroke-width="1.1116" stroke="#85340a" fill="#f6b40e" d="m396.84 251.31l28.454 61.992s0.4896 1.185 1.28 0.8586c0.7902-0.3267 0.2988-1.5116 0.2988-1.5116l-23.715-63.956m-0.68 24.12c-0.3465 9.4278 5.4526 14.613 4.6943 23.032-0.7569 8.42 3.8673 13.18 4.9396 16.454 1.0733 3.2744-1.16 5.2323-0.198 5.6982 0.96336 0.4662 3.07-2.1207 2.3833-6.7756-0.68675-4.6549-4.2204-6.0368-3.3898-16.32 0.83-10.283-4.206-12.678-2.98-22.058"/>
<use xlink:href="#ray1" transform="rotate(22.5 400,250)"/>
<use xlink:href="#ray1" transform="rotate(45 400,250)"/>
<use xlink:href="#ray1" transform="rotate(67.5 400,250)"/>
<path id="ray2" fill="#85340a" d="m404.31 274.41c0.45334 9.0538 5.5867 13.063 4.5787 21.314 2.2133-6.5249-3.1233-11.583-2.82-21.22m-7.6487-23.757l19.487 42.577-16.329-43.887"/>
<use xlink:href="#ray2" transform="rotate(22.5 400,250)"/>
<use xlink:href="#ray2" transform="rotate(45 400,250)"/>
<use xlink:href="#ray2" transform="rotate(67.5 400,250)"/>
</g>
<use xlink:href="#rays" transform="rotate(90 400,250)"/>
<use xlink:href="#rays" transform="rotate(180 400,250)"/>
<use xlink:href="#rays" transform="rotate(270 400,250)"/>
<circle r="27.778" stroke="#85340a" cy="250" cx="400" stroke-width="1.5" fill="#f6b40e"/>
<path id="loweyecontour" fill="#843511" d="m409.47 244.06c-1.8967 0.00003-3.7131 0.82183-4.7812 2.5312 2.1367 1.9227 6.8565 2.1318 10.062-0.21875-1.3883-1.4954-3.3845-2.3125-5.2812-2.3125zm-0.0312 0.4375c1.8462-0.0335 3.5717 0.81446 3.8125 1.6562-2.1367 2.3504-5.5508 2.1463-7.6875 0.4375 0.9348-1.4957 2.4391-2.0677 3.875-2.0938z"/>
<use xlink:href="#uppalpebra" transform="matrix(-1 0 0 1 800.25 0)"/>
<use xlink:href="#eyebrow_nose" transform="matrix(-1 0 0 1 800.25 0)"/>
<use xlink:href="#pupil" transform="translate(18.862)"/>
<use xlink:href="#lowpalpebra" transform="matrix(-1 0 0 1 800.25 0)"/>
<path d="m395.75 253.84c-0.91341 0.16668-1.5625 0.97727-1.5625 1.9062 0 1.0614 0.87748 1.9062 1.9375 1.9062 0.62667 0 1.2025-0.2968 1.5625-0.8125 0.73952 0.55614 1.7646 0.61511 2.3125 0.625 0.0843 0.002 0.19312 0 0.25 0 0.54791-0.01 1.573-0.0689 2.3125-0.625 0.36 0.5157 0.93583 0.8125 1.5625 0.8125 1.06 0 1.9375-0.84488 1.9375-1.9062 0-0.92898-0.64918-1.7396-1.5625-1.9062 0.513 0.1809 0.84375 0.6765 0.84375 1.2188 0 0.7074-0.57124 1.2812-1.2812 1.2812-0.6804 0-1.2413-0.54015-1.2812-1.2188-0.20862 0.41637-1.0341 1.6551-2.6562 1.7188-1.6222-0.0636-2.4476-1.3024-2.6562-1.7188-0.04 0.6786-0.60085 1.2188-1.2812 1.2188-0.71001 0-1.2812-0.57385-1.2812-1.2812 0-0.54225 0.33075-1.0378 0.84375-1.2188z" fill="#85340a"/>
<path d="m397.84 259.53c-2.138 0-2.9829 1.9368-4.9062 3.2188 1.0687-0.42633 1.9096-1.2693 3.4062-2.125 1.496-0.85442 2.7717 0.1875 3.625 0.1875h0.0312c0.8532 0 2.129-1.0416 3.625-0.1875 1.4967 0.8559 2.3688 1.6987 3.4375 2.125-1.9233-1.282-2.7996-3.2188-4.9375-3.2188-0.4266 0-1.2716 0.23055-2.125 0.65625h-0.0312c-0.85334-0.42642-1.6983-0.65625-2.125-0.65625z" fill="#85340a"/>
<path d="m397.12 262.06c-0.8439 0.0374-1.9596 0.20675-3.5625 0.6875 3.8473-0.85434 4.6962 0.4375 6.4062 0.4375h0.0312c1.71 0 2.5588-1.292 6.4062-0.4375-4.2744-1.282-5.1242-0.4375-6.4062-0.4375h-0.0312c-0.80125 0-1.4372-0.3124-2.8438-0.25z" fill="#85340a"/>
<path d="m393.75 262.72c-0.24819 0.003-0.51871 0.005-0.8125 0.0312 4.488 0.42766 2.3306 3 7.0312 3h0.0312c4.7007 0 2.5745-2.5724 7.0625-3-4.7007-0.4266-3.2146 2.3438-7.0625 2.3438h-0.0312c-3.6075 0-2.4959-2.4215-6.2188-2.375z" fill="#85340a"/>
<path d="m403.85 269.66c0-2.1234-1.7233-3.8465-3.8463-3.8465-2.1233 0-3.8463 1.723-3.8463 3.8465 0.423-1.781 2.0166-3.0393 3.8463-3.0393 1.8333 0 3.424 1.2586 3.8463 3.0393v0 0z" fill="#85340a"/>
<path id="eyebrow_nose" fill="#85340a" d="m382.73 244.02c4.9146-4.2729 11.11-4.9147 14.53-1.7086 0.837 1.1207 1.3733 2.319 1.5934 3.5696 0.4302 2.433-0.3303 5.0617-2.2367 7.7559 0.2151-0.001 0.6435 0.2124 0.8568 0.4266 1.6967-3.244 2.2967-6.5761 1.74-9.7454-0.1458-0.828-0.3735-1.643-0.6696-2.4357-4.7007-3.8452-11.11-4.2729-15.811 2.1377z"/>
<path id="uppalpebra" fill="#85340a" d="m390.42 242.74c2.7767 0 3.4186 0.6417 4.7007 1.71 1.2833 1.0683 1.9233 0.8541 2.1367 1.0683 0.2124 0.2142 0 0.8541-0.4266 0.6399s-1.2833-0.6399-2.5633-1.7086c-1.2833-1.0696-2.5633-1.0683-3.8463-1.0683-3.8463 0-5.983 3.2046-6.4094 2.9907-0.4266-0.2142 2.1367-3.6325 6.4094-3.6325z"/>
<use xlink:href="#loweyecontour" transform="translate(-19.181)"/>
<circle id="pupil" cy="246.15" cx="390.54" r="1.923" fill="#85340a"/>
<path id="lowpalpebra" fill="#85340a" d="m385.29 247.44c3.6327 2.7783 7.265 2.5644 9.4017 1.282 2.1367-1.282 2.1367-1.7086 1.71-1.7086-0.4266 0-0.8532 0.4266-2.5633 1.281-1.71 0.8559-4.273 0.8559-8.546-0.8541z"/>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="504" width="720" version="1.0" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-2100 -1470 4200 2940">
<defs>
<path id="D" fill-rule="evenodd" d="m-31.5 0h33a30 30 0 0 0 30 -30v-10a30 30 0 0 0 -30 -30h-33zm13-13h19a19 19 0 0 0 19 -19v-6a19 19 0 0 0 -19 -19h-19z"/>
<path id="E" transform="translate(-31.5)" d="m0 0h63v-13h-51v-18h40v-12h-40v-14h48v-13h-60z"/>
<path id="e" d="m-26.25 0h52.5v-12h-40.5v-16h33v-12h-33v-11h39.25v-12h-51.25z"/>
<g id="G">
<clipPath id="gcut">
<path d="m-31.5 0v-70h63v70zm31.5-47v12h31.5v-12z"/>
</clipPath>
<use xlink:href="#O" clip-path="url(#gcut)"/>
<rect y="-35" x="5" height="10" width="26.5"/>
<rect y="-35" x="21.5" height="35" width="10"/>
</g>
<path id="M" d="m-31.5 0h12v-48l14 48h11l14-48v48h12v-70h-17.5l-14 48-14-48h-17.5z"/>
<path id="O" fill-rule="evenodd" d="m0 0a31.5 35 0 0 0 0 -70 31.5 35 0 0 0 0 70m0-13a18.5 22 0 0 0 0 -44 18.5 22 0 0 0 0 44"/>
<path id="P" fill-rule="evenodd" d="m-31.5 0h13v-26h28a22 22 0 0 0 0 -44h-40zm13-39h27a9 9 0 0 0 0 -18h-27z"/>
<g id="R">
<use xlink:href="#P"/>
<path d="m28 0c0-10 0-32-15-32h-19c22 0 22 22 22 32"/>
</g>
<path id="S" d="m-15.75-22c0 7 6.75 10.5 16.75 10.5s14.74-3.25 14.75-7.75c0-14.25-46.75-5.25-46.5-30.25 0.25-21.5 24.75-20.5 33.75-20.5s26 4 25.75 21.25h-15.25c0-7.5-7-10.25-15-10.25-7.75 0-13.25 1.25-13.25 8.5-0.25 11.75 46.25 4 46.25 28.75 0 18.25-18 21.75-31.5 21.75-11.5 0-31.55-4.5-31.5-22z"/>
<g id="star" fill="#fff">
<g id="c">
<path id="t" transform="rotate(18 0,-1)" d="m0-1v1h0.5"/>
<use xlink:href="#t" transform="scale(-1,1)"/>
</g>
<use xlink:href="#c" transform="rotate(72)"/>
<use xlink:href="#c" transform="rotate(-72)"/>
<use xlink:href="#c" transform="rotate(144)"/>
<use xlink:href="#c" transform="rotate(216)"/>
</g>
<use id="star1" xlink:href="#star" transform="scale(31.5)"/>
<use id="star2" xlink:href="#star" transform="scale(26.25)"/>
<use id="star3" xlink:href="#star" transform="scale(21)"/>
<use id="star4" xlink:href="#star" transform="scale(15)"/>
<use id="star5" xlink:href="#star" transform="scale(10.5)"/>
</defs>
<rect y="-50%" x="-50%" height="100%" fill="#009b3a" width="100%"/>
<path d="m-1743 0 1743 1113 1743-1113-1743-1113z" fill="#fedf00"/>
<circle r="735" fill="#002776"/>
<clipPath id="band">
<circle r="735"/>
</clipPath>
<path fill="#fff" d="m-2205 1470a1785 1785 0 0 1 3570 0h-105a1680 1680 0 1 0 -3360 0z" clip-path="url(#band)"/>
<g transform="translate(-420,1470)" fill="#009b3a">
<use y="-1697.5" xlink:href="#O" transform="rotate(-7)"/>
<use y="-1697.5" xlink:href="#R" transform="rotate(-4)"/>
<use y="-1697.5" xlink:href="#D" transform="rotate(-1)"/>
<use y="-1697.5" xlink:href="#E" transform="rotate(2)"/>
<use y="-1697.5" xlink:href="#M" transform="rotate(5)"/>
<use y="-1697.5" xlink:href="#e" transform="rotate(9.75)"/>
<use y="-1697.5" xlink:href="#P" transform="rotate(14.5)"/>
<use y="-1697.5" xlink:href="#R" transform="rotate(17.5)"/>
<use y="-1697.5" xlink:href="#O" transform="rotate(20.5)"/>
<use y="-1697.5" xlink:href="#G" transform="rotate(23.5)"/>
<use y="-1697.5" xlink:href="#R" transform="rotate(26.5)"/>
<use y="-1697.5" xlink:href="#E" transform="rotate(29.5)"/>
<use y="-1697.5" xlink:href="#S" transform="rotate(32.5)"/>
<use y="-1697.5" xlink:href="#S" transform="rotate(35.5)"/>
<use y="-1697.5" xlink:href="#O" transform="rotate(38.5)"/>
</g>
<use id="αCMi" y="-132" x="-600" xlink:href="#star1"/>
<use id="αCMa" y="177" x="-535" xlink:href="#star1"/>
<use id="βCMa" y="243" x="-625" xlink:href="#star2"/>
<use id="γCMa" y="132" x="-463" xlink:href="#star4"/>
<use id="δCMa" y="250" x="-382" xlink:href="#star2"/>
<use id="εCMa" y="323" x="-404" xlink:href="#star3"/>
<use id="αVir" y="-228" x="228" xlink:href="#star1"/>
<use id="αSco" y="258" x="515" xlink:href="#star1"/>
<use id="βSco" y="265" x="617" xlink:href="#star3"/>
<use id="εSco" y="323" x="545" xlink:href="#star2"/>
<use id="θSco" y="477" x="368" xlink:href="#star2"/>
<use id="ιSco" y="551" x="367" xlink:href="#star3"/>
<use id="κSco" y="419" x="441" xlink:href="#star3"/>
<use id="λSco" y="382" x="500" xlink:href="#star2"/>
<use id="μSco" y="405" x="365" xlink:href="#star3"/>
<use id="αHya" y="30" x="-280" xlink:href="#star2"/>
<use id="γHya" y="-37" x="200" xlink:href="#star3"/>
<use id="αCru" y="330" xlink:href="#star1"/>
<use id="βCru" y="184" x="85" xlink:href="#star2"/>
<use id="γCru" y="118" xlink:href="#star2"/>
<use id="δCru" y="184" x="-74" xlink:href="#star3"/>
<use id="εCru" y="235" x="-37" xlink:href="#star4"/>
<use id="αTrA" y="495" x="220" xlink:href="#star2"/>
<use id="βTrA" y="430" x="283" xlink:href="#star3"/>
<use id="γTrA" y="412" x="162" xlink:href="#star3"/>
<use id="αCar" y="390" x="-295" xlink:href="#star1"/>
<use id="σOct" y="575" xlink:href="#star5"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="600"><rect width="900" height="600" fill="#ED2939"/><rect width="600" height="600" fill="#fff"/><rect width="300" height="600" fill="#002395"/></svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="900" height="600" viewBox="0 0 9 6">
<clipPath id="Z">
<path d="M0,0 4.5,3 0,6" id="X"/>
</clipPath>
<clipPath id="A">
<path d="M0,0H9V6H0z"/>
</clipPath>
<g clip-path="url(#A)">
<path d="M0,0V6H9V0z" fill="#002395"/>
<path d="M0,0V3H9V0z" fill="#de3831"/>
<g stroke-width="2" stroke="#fff">
<path d="M0,0 4.5,3 0,6M4.5,3H9" id="W"/>
<use xlink:href="#X" stroke="#ffb612" clip-path="url(#Z)"/>
</g>
<use xlink:href="#W" fill="none" stroke="#007a4d" stroke-width="1.2"/>
</g>
</svg>
\ No newline at end of file
/*!
* classie - class helper functions
* from bonzo https://github.com/ded/bonzo
*
* classie.has( elem, 'my-class' ) -> true/false
* classie.add( elem, 'my-new-class' )
* classie.remove( elem, 'my-unwanted-class' )
* classie.toggle( elem, 'my-class' )
*/
/*jshint browser: true, strict: true, undef: true */
/*global define: false */
( function( window ) {
'use strict';
// class helper functions from bonzo https://github.com/ded/bonzo
function classReg( className ) {
return new RegExp("(^|\\s+)" + className + "(\\s+|$)");
}
// classList support for class management
// altho to be fair, the api sucks because it won't accept multiple classes at once
var hasClass, addClass, removeClass;
if ( 'classList' in document.documentElement ) {
hasClass = function( elem, c ) {
return elem.classList.contains( c );
};
addClass = function( elem, c ) {
elem.classList.add( c );
};
removeClass = function( elem, c ) {
elem.classList.remove( c );
};
}
else {
hasClass = function( elem, c ) {
return classReg( c ).test( elem.className );
};
addClass = function( elem, c ) {
if ( !hasClass( elem, c ) ) {
elem.className = elem.className + ' ' + c;
}
};
removeClass = function( elem, c ) {
elem.className = elem.className.replace( classReg( c ), ' ' );
};
}
function toggleClass( elem, c ) {
var fn = hasClass( elem, c ) ? removeClass : addClass;
fn( elem, c );
}
var classie = {
// full names
hasClass: hasClass,
addClass: addClass,
removeClass: removeClass,
toggleClass: toggleClass,
// short names
has: hasClass,
add: addClass,
remove: removeClass,
toggle: toggleClass
};
// transport
if ( typeof define === 'function' && define.amd ) {
// AMD
define( classie );
} else {
// browser global
window.classie = classie;
}
})( window );
/**
* selectFx.js v1.0.0
* http://www.codrops.com
*
* Licensed under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2014, Codrops
* http://www.codrops.com
*/
;( function( window ) {
'use strict';
/**
* based on from https://github.com/inuyaksa/jquery.nicescroll/blob/master/jquery.nicescroll.js
*/
function hasParent( e, p ) {
if (!e) return false;
var el = e.target||e.srcElement||e||false;
while (el && el != p) {
el = el.parentNode||false;
}
return (el!==false);
};
/**
* extend obj function
*/
function extend( a, b ) {
for( var key in b ) {
if( b.hasOwnProperty( key ) ) {
a[key] = b[key];
}
}
return a;
}
/**
* SelectFx function
*/
function SelectFx( el, options ) {
this.el = el;
this.options = extend( {}, this.options );
extend( this.options, options );
this._init();
}
/**
* SelectFx options
*/
SelectFx.prototype.options = {
// if true all the links will open in a new tab.
// if we want to be redirected when we click an option, we need to define a data-link attr on the option of the native select element
newTab : true,
// when opening the select element, the default placeholder (if any) is shown
stickyPlaceholder : true,
// callback when changing the value
onChange : function( val ) { return false; }
}
/**
* init function
* initialize and cache some vars
*/
SelectFx.prototype._init = function() {
// check if we are using a placeholder for the native select box
// we assume the placeholder is disabled and selected by default
var selectedOpt = this.el.querySelector( 'option[selected]' );
this.hasDefaultPlaceholder = selectedOpt && selectedOpt.disabled;
// get selected option (either the first option with attr selected or just the first option)
this.selectedOpt = selectedOpt || this.el.querySelector( 'option' );
// create structure
this._createSelectEl();
// all options
this.selOpts = [].slice.call( this.selEl.querySelectorAll( 'li[data-option]' ) );
// total options
this.selOptsCount = this.selOpts.length;
// current index
this.current = this.selOpts.indexOf( this.selEl.querySelector( 'li.cs-selected' ) ) || -1;
// placeholder elem
this.selPlaceholder = this.selEl.querySelector( 'span.cs-placeholder' );
// init events
this._initEvents();
}
/**
* creates the structure for the select element
*/
SelectFx.prototype._createSelectEl = function() {
var self = this, options = '', createOptionHTML = function(el) {
var optclass = '', classes = '', link = '';
if( el.selectedOpt && !this.foundSelected && !this.hasDefaultPlaceholder ) {
classes += 'cs-selected ';
this.foundSelected = true;
}
// extra classes
if( el.getAttribute( 'data-class' ) ) {
classes += el.getAttribute( 'data-class' );
}
// link options
if( el.getAttribute( 'data-link' ) ) {
link = 'data-link=' + el.getAttribute( 'data-link' );
}
if( classes !== '' ) {
optclass = 'class="' + classes + '" ';
}
return '<li ' + optclass + link + ' data-option data-value="' + el.value + '"><span>' + el.textContent + '</span></li>';
};
[].slice.call( this.el.children ).forEach( function(el) {
if( el.disabled ) { return; }
var tag = el.tagName.toLowerCase();
if( tag === 'option' ) {
options += createOptionHTML(el);
}
else if( tag === 'optgroup' ) {
options += '<li class="cs-optgroup"><span>' + el.label + '</span><ul>';
[].slice.call( el.children ).forEach( function(opt) {
options += createOptionHTML(opt);
} );
options += '</ul></li>';
}
} );
var opts_el = '<div class="cs-options"><ul>' + options + '</ul></div>';
this.selEl = document.createElement( 'div' );
this.selEl.className = this.el.className;
this.selEl.tabIndex = this.el.tabIndex;
this.selEl.innerHTML = '<span class="cs-placeholder">' + this.selectedOpt.textContent + '</span>' + opts_el;
this.el.parentNode.appendChild( this.selEl );
this.selEl.appendChild( this.el );
}
/**
* initialize the events
*/
SelectFx.prototype._initEvents = function() {
var self = this;
// open/close select
this.selPlaceholder.addEventListener( 'click', function() {
self._toggleSelect();
} );
// clicking the options
this.selOpts.forEach( function(opt, idx) {
opt.addEventListener( 'click', function() {
self.current = idx;
self._changeOption();
// close select elem
self._toggleSelect();
} );
} );
// close the select element if the target it´s not the select element or one of its descendants..
document.addEventListener( 'click', function(ev) {
var target = ev.target;
if( self._isOpen() && target !== self.selEl && !hasParent( target, self.selEl ) ) {
self._toggleSelect();
}
} );
// keyboard navigation events
this.selEl.addEventListener( 'keydown', function( ev ) {
var keyCode = ev.keyCode || ev.which;
switch (keyCode) {
// up key
case 38:
ev.preventDefault();
self._navigateOpts('prev');
break;
// down key
case 40:
ev.preventDefault();
self._navigateOpts('next');
break;
// space key
case 32:
ev.preventDefault();
if( self._isOpen() && typeof self.preSelCurrent != 'undefined' && self.preSelCurrent !== -1 ) {
self._changeOption();
}
self._toggleSelect();
break;
// enter key
case 13:
ev.preventDefault();
if( self._isOpen() && typeof self.preSelCurrent != 'undefined' && self.preSelCurrent !== -1 ) {
self._changeOption();
self._toggleSelect();
}
break;
// esc key
case 27:
ev.preventDefault();
if( self._isOpen() ) {
self._toggleSelect();
}
break;
}
} );
}
/**
* navigate with up/dpwn keys
*/
SelectFx.prototype._navigateOpts = function(dir) {
if( !this._isOpen() ) {
this._toggleSelect();
}
var tmpcurrent = typeof this.preSelCurrent != 'undefined' && this.preSelCurrent !== -1 ? this.preSelCurrent : this.current;
if( dir === 'prev' && tmpcurrent > 0 || dir === 'next' && tmpcurrent < this.selOptsCount - 1 ) {
// save pre selected current - if we click on option, or press enter, or press space this is going to be the index of the current option
this.preSelCurrent = dir === 'next' ? tmpcurrent + 1 : tmpcurrent - 1;
// remove focus class if any..
this._removeFocus();
// add class focus - track which option we are navigating
classie.add( this.selOpts[this.preSelCurrent], 'cs-focus' );
}
}
/**
* open/close select
* when opened show the default placeholder if any
*/
SelectFx.prototype._toggleSelect = function() {
// remove focus class if any..
this._removeFocus();
if( this._isOpen() ) {
if( this.current !== -1 ) {
// update placeholder text
this.selPlaceholder.textContent = this.selOpts[ this.current ].textContent;
}
classie.remove( this.selEl, 'cs-active' );
}
else {
if( this.hasDefaultPlaceholder && this.options.stickyPlaceholder ) {
// everytime we open we wanna see the default placeholder text
this.selPlaceholder.textContent = this.selectedOpt.textContent;
}
classie.add( this.selEl, 'cs-active' );
}
}
/**
* change option - the new value is set
*/
SelectFx.prototype._changeOption = function() {
// if pre selected current (if we navigate with the keyboard)...
if( typeof this.preSelCurrent != 'undefined' && this.preSelCurrent !== -1 ) {
this.current = this.preSelCurrent;
this.preSelCurrent = -1;
}
// current option
var opt = this.selOpts[ this.current ];
// update current selected value
this.selPlaceholder.textContent = opt.textContent;
// change native select element´s value
this.el.value = opt.getAttribute( 'data-value' );
// remove class cs-selected from old selected option and add it to current selected option
var oldOpt = this.selEl.querySelector( 'li.cs-selected' );
if( oldOpt ) {
classie.remove( oldOpt, 'cs-selected' );
}
classie.add( opt, 'cs-selected' );
// if there´s a link defined
if( opt.getAttribute( 'data-link' ) ) {
// open in new tab?
if( this.options.newTab ) {
window.open( opt.getAttribute( 'data-link' ), '_blank' );
}
else {
window.location = opt.getAttribute( 'data-link' );
}
}
// callback
this.options.onChange( this.el.value );
}
/**
* returns true if select element is opened
*/
SelectFx.prototype._isOpen = function(opt) {
return classie.has( this.selEl, 'cs-active' );
}
/**
* removes the focus class from the option
*/
SelectFx.prototype._removeFocus = function(opt) {
var focusEl = this.selEl.querySelector( 'li.cs-focus' )
if( focusEl ) {
classie.remove( focusEl, 'cs-focus' );
}
}
/**
* add to global namespace
*/
window.SelectFx = SelectFx;
} )( window );
@import url(http://fonts.googleapis.com/css?family=Raleway:200,500,700,800);
@font-face {
font-weight: normal;
font-style: normal;
font-family: 'codropsicons';
src:url('../fonts/codropsicons/codropsicons.eot');
src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
url('../fonts/codropsicons/codropsicons.woff') format('woff'),
url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}
*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }
body {
background: #f9f7f6;
color: #404d5b;
font-weight: 500;
font-size: 1.05em;
font-family: 'Raleway', Arial, sans-serif;
}
a {
color: #2fa0ec;
text-decoration: none;
outline: none;
}
a:hover, a:focus {
color: #404d5b;
}
.container {
margin: 0 auto;
text-align: center;
overflow: hidden;
}
.content {
font-size: 150%;
padding: 3em 0;
}
.content h2 {
margin: 0 0 2em;
opacity: 0.1;
}
.content p {
margin: 1em 0;
padding: 5em 0 0 0;
font-size: 0.65em;
}
.bgcolor-1 { background: #f0efee; }
.bgcolor-2 { background: #f9f9f9; }
.bgcolor-3 { background: #e8e8e8; }
.bgcolor-4 { background: #2f3238; color: #fff; }
.bgcolor-5 { background: #df6659; color: #521e18; }
.bgcolor-6 { background: #2fa8ec; color: #fff;}
.bgcolor-7 { background: #d0d6d6; }
.bgcolor-8 { background: #3d4444; color: #fff; }
.bgcolor-9 { background: #8781bd; color: #fff; }
.bgcolor-10 { background: #6C6C6C; }
body .nomargin-bottom {
margin-bottom: 0;
}
/* Header */
.codrops-header {
padding: 3em 190px 4em;
letter-spacing: -1px;
}
.codrops-header h1 {
font-weight: 800;
font-size: 4em;
line-height: 1;
margin: 0.25em 0 0;
}
.codrops-header h1 span {
display: block;
font-size: 50%;
font-weight: 400;
padding: 0.325em 0 1em 0;
color: #c3c8cd;
}
/* Demos nav */
.codrops-demos a {
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
font-size: 0.85em;
display: inline-block;
margin: 0 1em;
font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.codrops-demos a.current-demo {
border-bottom: 2px solid;
color: #404d5b;
}
/* Top Navigation Style */
.codrops-links {
position: relative;
display: inline-block;
white-space: nowrap;
font-size: 1.25em;
text-align: center;
}
.codrops-links::after {
position: absolute;
top: 0;
left: 50%;
margin-left: -1px;
width: 2px;
height: 100%;
background: #dbdbdb;
content: '';
-webkit-transform: rotate3d(0,0,1,22.5deg);
transform: rotate3d(0,0,1,22.5deg);
}
.codrops-icon {
display: inline-block;
margin: 0.5em;
padding: 0em 0;
width: 1.5em;
text-decoration: none;
}
.codrops-icon span {
display: none;
}
.codrops-icon:before {
margin: 0 5px;
text-transform: none;
font-weight: normal;
font-style: normal;
font-variant: normal;
font-family: 'codropsicons';
line-height: 1;
speak: none;
-webkit-font-smoothing: antialiased;
}
.codrops-icon--drop:before {
content: "\e001";
}
.codrops-icon--prev:before {
content: "\e004";
}
/* Related demos */
.content--related {
text-align: center;
color: #D8DADB;
font-weight: bold;
}
.media-item {
display: inline-block;
padding: 1em;
vertical-align: top;
-webkit-transition: color 0.3s;
transition: color 0.3s;
}
.media-item__img {
opacity: 0.8;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
opacity: 1;
}
.media-item__title {
font-size: 0.75em;
margin: 0;
padding: 0.5em;
}
@media screen and (max-width: 50em) {
.codrops-header {
padding: 3em 10% 4em;
}
}
@media screen and (max-width: 40em) {
.codrops-header h1 {
font-size: 2.8em;
}
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
\ No newline at end of file
.input {
position: relative;
z-index: 1;
display: inline-block;
margin: 1em;
max-width: 350px;
width: calc(100% - 2em);
vertical-align: top;
}
.input__field {
position: relative;
display: block;
float: right;
padding: 0.8em;
width: 60%;
border: none;
border-radius: 0;
background: #f0f0f0;
color: #aaa;
font-weight: bold;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-appearance: none; /* for box shadows to show on iOS */
}
.input__field:focus {
outline: none;
}
.input__label {
display: inline-block;
float: right;
padding: 0 1em;
width: 40%;
color: #6a7989;
font-weight: bold;
font-size: 70.25%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.input__label-content {
position: relative;
display: block;
padding: 1.6em 0;
width: 100%;
}
.graphic {
position: absolute;
top: 0;
left: 0;
fill: none;
}
.icon {
color: #ddd;
font-size: 150%;
}
/* Individual styles */
/* Haruki */
.input--haruki {
margin: 4em 1em 1em;
}
.input__field--haruki {
padding: 0.4em 0.25em;
width: 100%;
background: transparent;
color: #AFB5BB;
font-size: 1.55em;
}
.input__label--haruki {
position: absolute;
width: 100%;
text-align: left;
pointer-events: none;
}
.input__label-content--haruki {
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--haruki::before,
.input__label--haruki::after {
content: '';
position: absolute;
left: 0;
z-index: -1;
width: 100%;
height: 4px;
background: #6a7989;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--haruki::before {
top: 0;
}
.input__label--haruki::after {
bottom: 0;
}
.input__field--haruki:focus + .input__label--haruki .input__label-content--haruki,
.input--filled .input__label-content--haruki {
-webkit-transform: translate3d(0, -90%, 0);
transform: translate3d(0, -90%, 0);
}
.input__field--haruki:focus + .input__label--haruki::before,
.input--filled .input__label--haruki::before {
-webkit-transform: translate3d(0, -0.5em, 0);
transform: translate3d(0, -0.5em, 0);
}
.input__field--haruki:focus + .input__label--haruki::after,
.input--filled .input__label--haruki::after {
-webkit-transform: translate3d(0, 0.5em, 0);
transform: translate3d(0, 0.5em, 0);
}
/* Hoshi */
.input--hoshi {
overflow: hidden;
}
.input__field--hoshi {
margin-top: 1em;
padding: 0.85em 0.15em;
width: 100%;
background: transparent;
color: #595F6E;
}
.input__label--hoshi {
position: absolute;
bottom: 0;
left: 0;
padding: 0 0.25em;
width: 100%;
height: calc(100% - 1em);
text-align: left;
pointer-events: none;
}
.input__label-content--hoshi {
position: absolute;
}
.input__label--hoshi::before,
.input__label--hoshi::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: calc(100% - 10px);
border-bottom: 1px solid #B9C1CA;
}
.input__label--hoshi::after {
margin-top: 2px;
border-bottom: 4px solid red;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--hoshi-color-1::after {
border-color: hsl(200, 100%, 50%);
}
.input__label--hoshi-color-2::after {
border-color: hsl(160, 100%, 50%);
}
.input__label--hoshi-color-3::after {
border-color: hsl(20, 100%, 50%);
}
.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
-webkit-animation: anim-1 0.3s forwards;
animation: anim-1 0.3s forwards;
}
@-webkit-keyframes anim-1 {
50% {
opacity: 0;
-webkit-transform: translate3d(1em, 0, 0);
transform: translate3d(1em, 0, 0);
}
51% {
opacity: 0;
-webkit-transform: translate3d(-1em, -40%, 0);
transform: translate3d(-1em, -40%, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, -40%, 0);
transform: translate3d(0, -40%, 0);
}
}
@keyframes anim-1 {
50% {
opacity: 0;
-webkit-transform: translate3d(1em, 0, 0);
transform: translate3d(1em, 0, 0);
}
51% {
opacity: 0;
-webkit-transform: translate3d(-1em, -40%, 0);
transform: translate3d(-1em, -40%, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, -40%, 0);
transform: translate3d(0, -40%, 0);
}
}
/* Kuro */
.input--kuro {
max-width: 320px;
margin-bottom: 3em;
}
.input__field--kuro {
width: 100%;
background: transparent;
color: #9196A1;
opacity: 0;
text-align: center;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.input__label--kuro {
position: absolute;
left: 0;
width: 100%;
color: #df6589;
pointer-events: none;
}
.input__label--kuro::before,
.input__label--kuro::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
border: 4px solid #747981;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--kuro::before {
border-right: none;
}
.input__label--kuro::after {
left: 50%;
border-left: none;
}
.input__field--kuro:focus,
.input--filled .input__field--kuro {
opacity: 1;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.input__field--kuro:focus + .input__label--kuro::before,
.input--filled .input__label--kuro::before {
-webkit-transform: translate3d(-10%, 0, 0);
transform: translate3d(-10%, 0, 0);
}
.input__field--kuro:focus + .input__label--kuro::after,
.input--filled .input__label--kuro::after {
-webkit-transform: translate3d(10%, 0, 0);
transform: translate3d(10%, 0, 0);
}
.input__field--kuro:focus + .input__label--kuro .input__label-content--kuro,
.input--filled .input__label-content--kuro {
-webkit-animation: anim-2 0.3s forwards;
animation: anim-2 0.3s forwards;
}
@-webkit-keyframes anim-2 {
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 1);
transform: scale3d(0.3, 0.3, 1);
}
51% {
opacity: 0;
-webkit-transform: translate3d(0, 3.7em, 0) scale3d(0.3, 0.3, 1);
transform: translate3d(0, 3.7em, 0) scale3d(0.3, 0.3, 1);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 3.7em, 0);
transform: translate3d(0, 3.7em, 0);
}
}
@keyframes anim-2 {
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 1);
transform: scale3d(0.3, 0.3, 1);
}
51% {
opacity: 0;
-webkit-transform: translate3d(0, 3.7em, 0) scale3d(0.3, 0.3, 1);
transform: translate3d(0, 3.7em, 0) scale3d(0.3, 0.3, 1);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 3.7em, 0);
transform: translate3d(0, 3.7em, 0);
}
}
/* Jiro */
.input--jiro {
margin-top: 2em;
}
.input__field--jiro {
padding: 0.85em 0.5em;
width: 100%;
background: transparent;
color: #DDE2E2;
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.input__label--jiro {
position: absolute;
left: 0;
padding: 0 0.85em;
width: 100%;
height: 100%;
text-align: left;
pointer-events: none;
}
.input__label-content--jiro {
-webkit-transition: -webkit-transform 0.3s 0.3s;
transition: transform 0.3s 0.3s;
}
.input__label--jiro::before,
.input__label--jiro::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--jiro::before {
border-top: 2px solid #6a7989;
-webkit-transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.input__label--jiro::after {
z-index: -1;
background: #6a7989;
-webkit-transform: scale3d(1, 0, 1);
transform: scale3d(1, 0, 1);
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
}
.input__field--jiro:focus,
.input--filled .input__field--jiro {
opacity: 1;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.input__field--jiro:focus + .input__label--jiro .input__label-content--jiro,
.input--filled .input__label-content--jiro {
-webkit-transform: translate3d(0, -80%, 0);
transform: translate3d(0, -80%, 0);
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.input__field--jiro:focus + .input__label--jiro::before,
.input--filled .input__label--jiro::before {
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.input__field--jiro:focus + .input__label--jiro::before,
.input--filled .input__label--jiro::before {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--jiro:focus + .input__label--jiro::after,
.input--filled .input__label--jiro::after {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
/* Minoru */
.input__field--minoru {
width: 100%;
background: #fff;
box-shadow: 0px 0px 0px 2px transparent;
color: #eca29b;
-webkit-transition: box-shadow 0.3s;
transition: box-shadow 0.3s;
}
.input__label--minoru {
padding: 0;
width: 100%;
text-align: left;
}
.input__label--minoru::after {
content: '';
position: absolute;
top: 0;
z-index: -1;
width: 100%;
height: 4em;
box-shadow: 0px 0px 0px 0px;
color: rgba(199,152,157, 0.6);
}
.input__field--minoru:focus {
box-shadow: 0px 0px 0px 2px #eca29b;
}
.input__field--minoru:focus + .input__label--minoru {
pointer-events: none;
}
.input__field--minoru:focus + .input__label--minoru::after {
-webkit-animation: anim-shadow 0.3s forwards;
animation: anim-shadow 0.3s forwards;
}
@-webkit-keyframes anim-shadow {
to {
box-shadow: 0px 0px 100px 50px;
opacity: 0;
}
}
@keyframes anim-shadow {
to {
box-shadow: 0px 0px 100px 50px;
opacity: 0;
}
}
.input__label-content--minoru {
padding: 0.75em 0.15em;
}
/* Yoko */
.input__field--yoko {
z-index: 10;
width: 100%;
background: transparent;
color: #f5f5f5;
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.input__label--yoko {
position: relative;
width: 100%;
color: #b04b40;
text-align: left;
}
.input__label--yoko::before {
content: '';
position: absolute;
bottom: 100%;
left: 0;
width: 100%;
height: 4em;
background: #c5564a;
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--yoko::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 0.25em;
background: #ad473c;
-webkit-transform-origin: 50% 0%;
transform-origin: 50% 0%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--yoko {
padding: 0.75em 0;
}
.input__field--yoko:focus,
.input--filled .input__field--yoko {
opacity: 1;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.input__field--yoko:focus + .input__label--yoko::before,
.input--filled .input__label--yoko::before {
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}
.input__field--yoko:focus + .input__label--yoko,
.input--filled .input__label--yoko {
pointer-events: none;
}
.input__field--yoko:focus + .input__label--yoko::after,
.input--filled .input__label--yoko::after {
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
}
/* Kyo */
.input--kyo {
z-index: auto;
}
.input__field--kyo {
padding: 0.85em 1.5em;
width: 100%;
border-radius: 2em;
background: #fff;
color: #535d92;
}
.input__label--kyo {
z-index: 0;
padding: 0 0 0 2em;
width: 100%;
text-align: left;
}
.input__label--kyo::after {
content: '';
position: fixed;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
height: 100%;
background: rgba(11, 43, 205, 0.6);
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
pointer-events: none;
}
.input__label-content--kyo {
padding: 0.5em 0;
}
.input__field--kyo:focus,
.input__field--kyo:focus + .input__label--kyo .input__label-content--kyo {
z-index: 10000;
}
.input__field--kyo:focus + .input__label--kyo {
color: #fff;
}
.input__field--kyo:focus + .input__label--kyo::after {
opacity: 1;
}
/* Akira */
.input--akira {
margin-top: 2em;
}
.input__field--akira {
position: absolute;
top: 0;
left: 0;
z-index: 10;
display: block;
padding: 0 1em;
width: 100%;
height: 100%;
background: transparent;
text-align: center;
}
.input__label--akira {
padding: 0;
width: 100%;
background: #696a6e;
color: #cc6055;
cursor: text;
}
.input__label--akira::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #2f3238;
-webkit-transform: scale3d(0.97, 0.85, 1);
transform: scale3d(0.97, 0.85, 1);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--akira {
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__field--akira:focus + .input__label--akira::before,
.input--filled .input__label--akira::before {
-webkit-transform: scale3d(0.99, 0.95, 1);
transform: scale3d(0.99, 0.95, 1);
}
.input__field--akira:focus + .input__label--akira,
.input--filled .input__label--akira {
cursor: default;
pointer-events: none;
}
.input__field--akira:focus + .input__label--akira .input__label-content--akira,
.input--filled .input__label-content--akira {
-webkit-transform: translate3d(0, -3.5em, 0);
transform: translate3d(0, -3.5em, 0);
}
/* Ichiro */
.input--ichiro {
margin-top: 2em;
}
.input__field--ichiro {
position: absolute;
top: 4px;
left: 4px;
z-index: 100;
display: block;
padding: 0 0.55em;
width: calc(100% - 8px);
height: calc(100% - 8px);
background: #f0f0f0;
color: #7F8994;
opacity: 0;
-webkit-transform: scale3d(1, 0, 1);
transform: scale3d(1, 0, 1);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
}
.input__label--ichiro {
width: 100%;
text-align: left;
cursor: text;
}
.input__label--ichiro::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff;
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--ichiro {
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__field--ichiro:focus,
.input--filled .input__field--ichiro {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.input__field--ichiro:focus + .input__label--ichiro,
.input--filled .input__label--ichiro {
cursor: default;
pointer-events: none;
}
.input__field--ichiro:focus + .input__label--ichiro::before,
.input--filled .input__label--ichiro::before {
-webkit-transform: scale3d(1, 1.5, 1);
transform: scale3d(1, 1.5, 1);
}
.input__field--ichiro:focus + .input__label--ichiro .input__label-content--ichiro,
.input--filled .input__label-content--ichiro {
-webkit-transform: translate3d(0, -3.15em, 0) scale3d(0.8, 0.8, 1);
transform: translate3d(0, -3.15em, 0) scale3d(0.8, 0.8, 1) translateZ(1px);
}
/* Juro */
.input--juro {
overflow: hidden;
}
.input__field--juro {
position: absolute;
z-index: 100;
padding: 2.15em 0.75em 0;
width: 100%;
background: transparent;
color: #1784cd;
font-size: 0.85em;
}
.input__label--juro {
padding: 0;
width: 100%;
height: 100%;
background: #fff;
text-align: left;
}
.input__label-content--juro {
padding: 2em 1em;
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition: -webkit-transform 0.3s, color 0.3s;
transition: transform 0.3s, color 0.3s;
text-rendering: geometricPrecision;
}
.input__label--juro::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0px solid transparent;
-webkit-transition: border-width 0.3s, border-color 0.3s;
transition: border-width 0.3s, border-color 0.3s;
}
.input__field--juro:focus + .input__label--juro::before,
.input--filled .input__label--juro::before {
border-width: 8px;
border-color: #1784cd;
border-top-width: 2em;
}
.input__field--juro:focus + .input__label--juro .input__label-content--juro,
.input--filled .input__label--juro .input__label-content--juro {
color: #fff;
-webkit-transform: translate3d(0, -1.5em, 0) scale3d(0.75, 0.75, 1);
transform: translate3d(0, -1.5em, 0) scale3d(0.75, 0.75, 1) translateZ(1px);
}
/* Hideo */
.input--hideo {
overflow: hidden;
background: #fff;
}
.input__field--hideo {
padding: 0.85em 0.85em 0.85em 3em;
width: 100%;
background: transparent;
-webkit-transform: translate3d(1em, 0, 0);
transform: translate3d(1em, 0, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label--hideo {
position: absolute;
padding: 1.25em 0 0;
width: 4em;
height: 100%;
}
.input__label--hideo::before {
content: '';
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 4em;
height: 100%;
background: #899dda;
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.icon--hideo {
color: #fff;
-webkit-transform: scale3d(1, 1, 1); /* Needed for Chrome bug */
transform: scale3d(1, 1, 1);
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--hideo {
position: absolute;
top: 100%;
}
.input__field--hideo:focus {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--hideo:focus + .input__label--hideo::before {
-webkit-transform: scale3d(0.8, 1, 1);
transform: scale3d(0.8, 1, 1);
}
.input__field--hideo:focus + .input__label--hideo .icon--hideo {
-webkit-transform: scale3d(0.6, 0.6, 1);
transform: scale3d(0.6, 0.6, 1);
}
/* Madoka */
.input--madoka {
margin: 1.1em;
}
.input__field--madoka {
width: 100%;
background: transparent;
color: #7A7593;
}
.input__label--madoka {
position: absolute;
width: 100%;
height: 100%;
color: #7A7593;
text-align: left;
cursor: text;
}
.input__label-content--madoka {
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.graphic--madoka {
-webkit-transform: scale3d(1, -1, 1);
transform: scale3d(1, -1, 1);
-webkit-transition: stroke-dashoffset 0.3s;
transition: stroke-dashoffset 0.3s;
pointer-events: none;
stroke: #7A7593;
stroke-width: 4px;
stroke-dasharray: 962;
stroke-dashoffset: 558;
}
.input__field--madoka:focus + .input__label--madoka,
.input--filled .input__label--madoka {
cursor: default;
pointer-events: none;
}
.input__field--madoka:focus + .input__label--madoka .graphic--madoka,
.input--filled .graphic--madoka {
stroke-dashoffset: 0;
}
.input__field--madoka:focus + .input__label--madoka .input__label-content--madoka,
.input--filled .input__label-content--madoka {
-webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
}
/* Kaede */
.input--kaede {
display: block;
overflow: hidden;
margin: 1em auto 2em;
background: #EFEEEE;
}
.input__field--kaede {
position: absolute;
top: 0;
right: 100%;
width: 60%;
height: 100%;
background: #fff;
color: #9DABBA;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.input__label--kaede {
z-index: 10;
display: block;
width: 100%;
height: 100%;
text-align: left;
cursor: text;
-webkit-transform-origin: 0% 50%;
transform-origin: 0% 50%;
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.input__label-content--kaede {
padding: 1.5em 0;
}
.input__field--kaede:focus,
.input--filled .input__field--kaede {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
-webkit-transition-delay: 0.06s;
transition-delay: 0.06s;
}
.input__field--kaede:focus + .input__label--kaede,
.input--filled .input__label--kaede {
-webkit-transform: translate3d(60%, 0, 0);
transform: translate3d(60%, 0, 0);
pointer-events: none;
}
@media screen and (max-width: 34em) {
.input__field--kaede:focus + .input__label--kaede,
.input--filled .input__label--kaede {
-webkit-transform: translate3d(65%, 0, 0) scale3d(0.65, 0.65, 1);
transform: translate3d(65%, 0, 0) scale3d(0.65, 0.65, 1);
pointer-events: none;
}
}
/* Isao */
.input__field--isao {
z-index: 10;
padding: 0.75em 0.1em 0.25em;
width: 100%;
background: transparent;
color: #afb3b8;
}
.input__label--isao {
position: relative;
overflow: hidden;
padding: 0;
width: 100%;
color: #dadada;
text-align: left;
}
.input__label--isao::before {
content: '';
position: absolute;
top: 0;
width: 100%;
height: 7px;
background: #dadada;
-webkit-transform: scale3d(1, 0.4, 1);
transform: scale3d(1, 0.4, 1);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
transition: transform 0.3s, background-color 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.input__label--isao::after {
content: attr(data-content);
position: absolute;
top: 0;
left: 0;
padding: 0.75em 0.15em;
color: #da7071;
opacity: 0;
-webkit-transform: translate3d(0, 50%, 0);
transform: translate3d(0, 50%, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
pointer-events: none;
}
.input__field--isao:focus + .input__label--isao::before {
background-color: #da7071;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.input__field--isao:focus + .input__label--isao {
pointer-events: none;
}
.input__field--isao:focus + .input__label--isao::after {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__label-content--isao {
padding: 0.75em 0.15em;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.input__field--isao:focus + .input__label--isao .input__label-content--isao {
opacity: 0;
-webkit-transform: translate3d(0, -50%, 0);
transform: translate3d(0, -50%, 0);
}
\ No newline at end of file
.input {
position: relative;
z-index: 1;
display: inline-block;
/*margin: 1em;*/
/*max-width: 350px;*/
max-width:100%;
/*width: calc(100% - 2em);*/
width:100%;
vertical-align: top;
}
.input__field {
position: relative;
display: block;
float: right;
padding: 0.8em;
width: 60%;
border: none;
border-radius: 0;
background: #f0f0f0;
font-weight: normal;
font-family: 'Montserrat', sans-serif;
-webkit-appearance: none; /* for box shadows to show on iOS */
}
.input__field:focus {
outline: none;
}
.input__label {
display: inline-block;
float: right;
padding: 0 1em;
width: 40%;
font-weight: normal;
font-size: 70.25%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.input__label-content {
position: relative;
display: block;
padding: 1.6em 0;
width: 100%;
}
.graphic {
position: absolute;
top: 0;
left: 0;
fill: none;
}
.icon {
font-size: 150%;
}
/* Individual styles */
/* Manami */
.input--manami {
overflow: hidden;
}
.input__field--manami {
width: 100%;
background: transparent;
padding: 0.5em;
margin-bottom: 2em;
color: #f9f7f6;
z-index: 100;
opacity: 0;
}
.input__label--manami {
width: 100%;
position: absolute;
text-align: left;
padding: 0.5em 0;
pointer-events: none;
font-size: 1em;
}
.input__label--manami::before,
.input__label--manami::after {
content: '';
position: absolute;
width: 100%;
left: 0;
}
.input__label--manami::before {
height: 100%;
background: #fff;
top: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
-webkit-transition: -webkit-transform 0.2s;
transition: transform 0.2s;
}
.input__label--manami::after {
height: 2px;
background: #fff;
top: 100%;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.input__label-content--manami {
padding: 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: -webkit-transform 0.2s, color 0.2s;
transition: transform 0.2s, color 0.2s;
}
.input__field--manami:focus,
.input--filled .input__field--manami {
opacity: 1;
-webkit-transition: opacity 0s 0.2s;
transition: opacity 0s 0.2s;
}
.input__label--manami::before,
.input__label--manami::after,
.input__label-content--manami,
.input__field--manami:focus,
.input--filled .input__field--manami {
-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.input__field--manami:focus + .input__label--manami::before,
.input--filled .input__label--manami::before {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--manami:focus + .input__label--manami::after,
.input--filled .input__label--manami::after {
opacity: 0;
}
.input__field--manami:focus + .input__label--manami .input__label-content--manami,
.input--filled .input__label--manami .input__label-content--manami {
color: #fff;
-webkit-transform: translate3d(0, 2.1em, 0) scale3d(0.65, 0.65, 1);
transform: translate3d(0, 2.1em, 0) scale3d(0.65, 0.65, 1);
}
/* Nariko */
.input--nariko {
overflow: hidden;
padding-top: 2em;
}
.input__field--nariko {
width: 100%;
background: transparent;
opacity: 0;
padding: 0.35em;
z-index: 100;
color: #f18292;
}
.input__label--nariko {
width: 100%;
bottom: 0;
position: absolute;
pointer-events: none;
text-align: left;
color: #fff;
padding: 0 0.5em;
}
.input__label--nariko::before {
content: '';
position: absolute;
width: 100%;
height: 4em;
top: 100%;
left: 0;
background: #fff;
border-top: 4px solid #9B9F9F;
-webkit-transform: translate3d(0, -3px, 0);
transform: translate3d(0, -3px, 0);
-webkit-transition: -webkit-transform 0.4s;
transition: transform 0.4s;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.input__label-content--nariko {
padding: 0.5em 0;
-webkit-transform-origin: 0% 100%;
transform-origin: 0% 100%;
-webkit-transition: -webkit-transform 0.4s, color 0.4s;
transition: transform 0.4s, color 0.4s;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.input__field--nariko:focus,
.input--filled .input__field--nariko {
cursor: text;
opacity: 1;
-webkit-transition: opacity 0s 0.4s;
transition: opacity 0s 0.4s;
}
.input__field--nariko:focus + .input__label--nariko::before,
.input--filled .input__label--nariko::before {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
-webkit-transform: translate3d(0, -3.3em, 0);
transform: translate3d(0, -3.3em, 0);
}
.input__field--nariko:focus + .input__label--nariko .input__label-content--nariko,
.input--filled .input__label-content--nariko {
color: #fff;
-webkit-transform: translate3d(0, -3.3em, 0) scale3d(0.81, 0.81, 1);
transform: translate3d(0, -3.3em, 0) scale3d(0.81, 0.81, 1);
}
/* Nao */
.input--nao {
overflow: hidden;
padding-top: 1em;
}
.input__field--nao {
/*padding: 0.5em 0em 0.25em;*/
padding:15px;
width: 100%;
background: transparent;
color: #fff;
font-size: 1.25em;
}
.input__label--nao {
position: absolute;
top: 0.95em;
font-size: 0.85em;
left: 0;
display: block;
width: 100%;
text-align: left;
padding: 0em;
pointer-events: none;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: -webkit-transform 0.2s 0.15s, color 1s;
transition: transform 0.2s 0.15s, color 1s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.graphic--nao {
stroke: #fff;
pointer-events: none;
-webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
transition: transform 0.7s, stroke 0.7s;
-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.input__field--nao:focus + .input__label--nao,
.input--filled .input__label--nao {
color: #333;
-webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}
.input__field--nao:focus ~ .graphic--nao,
.input--filled .graphic--nao {
stroke: #fff;
-webkit-transform: translate3d(-66.6%, 0, 0);
transform: translate3d(-66.6%, 0, 0);
}
/* Shoko */
.input--shoko {
overflow: hidden;
padding-bottom: 2.5em;
}
.input__field--shoko {
padding: 0;
margin-top: 1.2em;
width: 100%;
background: transparent;
color: #fff;
font-size: 1.55em;
}
.input__label--shoko {
position: absolute;
top: 2em;
left: 0;
display: block;
width: 100%;
text-align: left;
padding: 0em;
text-transform: uppercase;
letter-spacing: 1px;
color: #fff;
pointer-events: none;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: -webkit-transform 0.2s 0.1s, color 0.3s;
transition: transform 0.2s 0.1s, color 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.graphic--shoko {
stroke: #fff;
pointer-events: none;
stroke-width: 2px;
top: 1.25em;
bottom: 0px;
height: 3.275em;
-webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
transition: transform 0.7s, stroke 0.7s;
-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.input__field--shoko:focus + .input__label--shoko,
.input--filled .input__label--shoko {
color: #fff;
-webkit-transform: translate3d(0, 3.5em, 0) scale3d(0.85, 0.85, 1);
transform: translate3d(0, 3.5em, 0) scale3d(0.85, 0.85, 1);
}
.input__field--shoko:focus ~ .graphic--shoko,
.input--filled .graphic--shoko {
stroke: #fff;
-webkit-transform: translate3d(-66.6%, 0, 0);
transform: translate3d(-66.6%, 0, 0);
}
/* Yoshiko */
.input__field--yoshiko {
width: 100%;
background-color: #fff;
border: 2px solid transparent;
-webkit-transition: background-color 0.25s, border-color 0.25s;
transition: background-color 0.25s, border-color 0.25s;
}
.input__label--yoshiko {
width: 100%;
text-align: left;
position: absolute;
bottom: 100%;
pointer-events: none;
overflow: hidden;
padding: 0 1.25em;
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
-webkit-transition: -webkit-transform 0.25s;
transition: transform 0.25s ;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
}
.input__label-content--yoshiko {
color: #fff;
padding: 0.25em 0;
-webkit-transition: -webkit-transform 0.25s;
transition: transform 0.25s;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
}
.input__label-content--yoshiko::after {
content: attr(data-content);
position: absolute;
font-weight: normal;
bottom: 100%;
left: 0;
height: 100%;
width: 100%;
color: #a3d39c;
padding: 0.25em 0;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.85em;
}
.input__field--yoshiko:focus + .input__label--yoshiko,
.input--filled .input__label--yoshiko {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--yoshiko:focus + .input__label--yoshiko .input__label-content--yoshiko,
.input--filled .input__label-content--yoshiko {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.input__field--yoshiko:focus + .input__field--yoshiko,
.input--filled .input__field--yoshiko {
background-color: transparent;
border-color: #a3d39c;
}
/* Chisato */
.input--chisato {
padding-top: 1em;
}
.input__field--chisato {
width: 100%;
padding: 0.8em 0.5em;
background: transparent;
border: 2px solid;
color: #fff;
-webkit-transition: border-color 0.25s;
transition: border-color 0.25s;
}
.input__label--chisato {
width: 100%;
position: absolute;
top: 0;
text-align: left;
overflow: hidden;
padding: 0;
pointer-events: none;
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
.input__label-content--chisato {
padding: 0 1em;
font-weight: normal;
color: #fff;
font-family: 'Montserrat', sans-serif;
}
.input__label-content--chisato::after {
content: attr(data-content);
position: absolute;
top: -200%;
left: 0;
color: #da6484;
font-weight: normal;
}
.input__field--chisato:focus,
.input--filled .input__field--chisato {
border-color: #da6484;
}
.input__field--chisato:focus + .input__label--chisato,
.input--filled .input__label--chisato {
-webkit-animation: anim-chisato-1 0.25s forwards;
animation: anim-chisato-1 0.25s forwards;
}
.input__field--chisato:focus + .input__label--chisato .input__label-content--chisato,
.input--filled .input__label-content--chisato {
-webkit-animation: anim-chisato-2 0.25s forwards ease-in;
animation: anim-chisato-2 0.25s forwards ease-in;
}
@-webkit-keyframes anim-chisato-1 {
0%, 70% {
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
71%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes anim-chisato-2 {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
70%, 71% {
-webkit-transform: translate3d(0, 125%, 0);
transform: translate3d(0, 125%, 0);
opacity: 0;
-webkit-animation-timing-function: ease-out;
}
100% {
color: transparent;
-webkit-transform: translate3d(0, 200%, 0);
transform: translate3d(0, 200%, 0);
}
}
@keyframes anim-chisato-1 {
0%, 70% {
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
71%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes anim-chisato-2 {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
70%, 71% {
-webkit-transform: translate3d(0, 125%, 0);
transform: translate3d(0, 125%, 0);
opacity: 0;
-webkit-animation-timing-function: ease-out;
}
100% {
color: transparent;
-webkit-transform: translate3d(0, 200%, 0);
transform: translate3d(0, 200%, 0);
}
}
/* Kozakura */
.input--kozakura {
overflow: hidden;
padding-bottom: 1em;
}
.input__field--kozakura {
padding: 0.25em 0.5em;
margin-top: 1.25em;
width: 100%;
background: transparent;
color: #2F3238;
font-size: 1.55em;
opacity: 0;
}
.input__label--kozakura {
width: 100%;
text-align: left;
position: absolute;
top: 1em;
pointer-events: none;
overflow: hidden;
padding: 0 0.25em;
-webkit-transform: translate3d(1em, 2.75em, 0);
transform: translate3d(1em, 2.75em, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--kozakura {
color: #A4A5A6;
padding: 0.4em 0 0.25em;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--kozakura::after {
content: attr(data-content);
position: absolute;
font-weight: normal;
top: 100%;
left: 0;
height: 100%;
width: 100%;
color: #fff;
padding: 0.25em 0;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.85em;
}
.graphic--kozakura {
fill: #494E57;
pointer-events: none;
top: 1em;
bottom: 0px;
height: 4.5em;
z-index: -1;
-webkit-transition: -webkit-transform 0.7s, fill 0.7s;
transition: transform 0.7s, fill 0.7s;
-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}
.input__field--kozakura:focus,
.input--filled .input__field--kozakura {
-webkit-transition: opacity 0s 0.35s;
transition: opacity 0s 0.35s;
opacity: 1;
}
.input__field--kozakura:focus + .input__label--kozakura,
.input--filled .input__label--kozakura {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--kozakura:focus + .input__label--kozakura .input__label-content--kozakura,
.input--filled .input__label-content--kozakura {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
.input__field--kozakura:focus ~ .graphic--kozakura,
.input--filled .graphic--kozakura {
fill: #fff;
-webkit-transform: translate3d(-66.6%, 0, 0);
transform: translate3d(-66.6%, 0, 0);
}
/* Makiko */
.input--makiko {
overflow: hidden;
background: #CBCBCB;
}
.input__field--makiko {
width: 100%;
background: transparent;
color: #797693;
z-index: 10;
font-weight: normal;
}
.input__label--makiko {
position: absolute;
width: 100%;
text-align: left;
pointer-events: none;
color: #fff;
}
.input__label--makiko::before {
content: '';
position: absolute;
width: 30px;
height: 30px;
top: 45%;
left: 20px;
background: url(../img/search.svg) no-repeat center center;
background-size: 100%;
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7,0,0.3,1);
transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
}
.input__label-content--makiko {
display: block;
padding: 1.5em 0 0 2.75em;
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7,0,0.3,1);
transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
}
.input__field--makiko:focus + .input__label--makiko::before,
.input--filled .input__label--makiko::before {
-webkit-transform: scale3d(38, 38, 1);
transform: scale3d(38, 38, 1);
}
/* Sae */
.input--sae {
overflow: hidden;
width: 200px;
margin: 0 2em 2em;
}
.input__field--sae {
background: transparent;
width: 100%;
color: #fff;
padding: 1em 0 0.5em;
font-weight: normal;
}
.input__label--sae {
position: absolute;
width: 100%;
text-align: left;
color: #7771ab;
padding: 0;
height: 100%;
pointer-events: none;
}
.input__label--sae::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background: #fff;
bottom: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.icon--sae {
position: absolute;
bottom: 0;
font-size: 1em;
opacity: 0.5;
left: -30px;
color: #fff;
pointer-events: none;
-webkit-transform: translate3d(205px, 0, 0);
transform: translate3d(205px, 0, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__label-content--sae {
padding: 0;
font-size: 18px;
display: inline-block;
vertical-align: bottom;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: translate3d(0, 50px, 0);
transform: translate3d(0, 50px, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__field--sae:focus + .input__label--sae .input__label-content--sae,
.input--filled .input__label-content--sae {
-webkit-transform: translate3d(0, 0, 0) scale3d(0.7, 0.7, 1);
transform: translate3d(0, 0, 0) scale3d(0.7, 0.7, 1);
}
.input__field--sae:focus + .input__label--sae::after,
.input--filled .input__label--sae::after {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.input__field--sae:focus + .input__label--sae .icon--sae,
.input--filled .icon--sae {
-webkit-transition-delay: 0.01s;
transition-delay: 0.01s;
-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, -90deg);
transform: translate3d(0, 0, 0) rotate3d(0, 0, 1, -90deg);
}
/* Fumi */
.input--fumi {
background: #fff;
overflow: hidden;
padding: 0.25em 0;
}
.input--fumi::after {
content: '';
width: 1px;
position: absolute;
top: 0.5em;
bottom: 0.5em;
left: 2.5em;
background: #f0f0f0;
z-index: 100;
}
.input__field--fumi {
background: transparent;
padding: 1.5em 1em 0.25em 3.15em;
width: 100%;
color: #00aeef;
}
.input__label--fumi {
position: absolute;
width: 100%;
text-align: left;
padding-left: 4.5em;
pointer-events: none;
}
.icon--fumi {
width: 2em;
position: absolute;
top: 0;
left: 0;
padding: 1em 0 0 0.5em;
}
.input__label-content--fumi {
padding: 1.7em 0;
display: inline-block;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.input__label-content--fumi span {
display: inline-block;
}
.input__field--fumi:focus + .input__label--fumi .input__label-content--fumi,
.input--filled .input__label-content--fumi {
-webkit-animation: anim-fumi-1 0.3s forwards;
animation: anim-fumi-1 0.3s forwards;
}
@-webkit-keyframes anim-fumi-1 {
50% {
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
51% {
-webkit-transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
}
100% {
color: #a3a3a3;
-webkit-transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
}
}
@keyframes anim-fumi-1 {
50% {
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
51% {
-webkit-transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
transform: translate3d(0, -3em, 0) scale3d(0.85, 0.85, 1);
}
100% {
color: #a3a3a3;
-webkit-transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
transform: translate3d(0, -1.1em, 0) scale3d(0.85, 0.85, 1);
}
}
.input__field--fumi:focus + .input__label--fumi .icon--fumi,
.input--filled .icon--fumi {
-webkit-animation: anim-fumi-2 0.3s forwards;
animation: anim-fumi-2 0.3s forwards;
}
@-webkit-keyframes anim-fumi-2 {
50% {
opacity: 1;
-webkit-transform: translate3d(0, -3em, 0);
transform: translate3d(0, -3em, 0);
}
50.25% {
opacity: 0;
-webkit-transform: translate3d(0, -3em, 0);
transform: translate3d(0, -3em, 0);
}
50.75% {
opacity: 0;
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
51% {
opacity: 1;
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
color: #00aeef;
}
}
@keyframes anim-fumi-2 {
50% {
opacity: 1;
-webkit-transform: translate3d(0, -3em, 0);
transform: translate3d(0, -3em, 0);
}
50.25% {
opacity: 0;
-webkit-transform: translate3d(0, -3em, 0);
transform: translate3d(0, -3em, 0);
}
50.75% {
opacity: 0;
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
51% {
opacity: 1;
-webkit-transform: translate3d(0, 3em, 0);
transform: translate3d(0, 3em, 0);
}
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
color: #00aeef;
}
}
/* Ruri */
.input__field--ruri {
width: 100%;
background: transparent;
padding: 0.5em 0;
margin-bottom: 2em;
color: #fff;
}
.input__label--ruri {
width: 100%;
position: absolute;
text-align: left;
font-size: 1em;
padding: 10px 0 5px;
pointer-events: none;
}
.input__label--ruri::after {
content: '';
position: absolute;
width: 100%;
height: 7px;
background: #B7C3AC;
left: 0;
top: 100%;
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
transition: transform 0.3s, background-color 0.3s;
}
.input__label-content--ruri {
padding: 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transition: -webkit-transform 0.3s, color 0.3s;
transition: transform 0.3s, color 0.3s;
}
.input__field--ruri:focus + .input__label--ruri::after,
.input--filled .input__label--ruri::after {
background: #a3d39c;
-webkit-transform: scale3d(1, 0.25, 1);
transform: scale3d(1, 0.25, 1);
}
.input__field--ruri:focus + .input__label--ruri .input__label-content--ruri,
.input--filled .input__label--ruri .input__label-content--ruri {
color: #a3d39c;
-webkit-transform: translate3d(0, 2em, 0) scale3d(0.655, 0.655, 1);
transform: translate3d(0, 2em, 0) scale3d(0.655, 0.655, 1);
}
/* Kohana */
.input--kohana {
overflow: hidden;
background: #fff;
}
.input__field--kohana {
width: 100%;
background: transparent;
padding-left: 2.75em;
color: #6a7989;
}
.input__label--kohana {
position: absolute;
width: 100%;
text-align: left;
pointer-events: none;
color: #D2D2D2;
}
.input__label-content--kohana {
display: inline-block;
width: auto;
-webkit-transform: translate3d(-1.75em, 0, 0);
transform: translate3d(-1.75em, 0, 0);
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s;
}
.icon--kohana {
display: inline-block;
margin-top: 0.9em;
-webkit-transform: translate3d(-2em, 0, 0);
transform: translate3d(-2em, 0, 0);
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
}
.input__field--kohana:focus + .input__label--kohana .input__label-content--kohana,
.input--filled .input__label-content--kohana {
opacity: 0;
-webkit-transform: translate3d(100px, 0, 0);
transform: translate3d(100px, 0, 0);
}
.input__label-content--kohana,
.icon--kohana,
.input__field--kohana:focus + .input__label--kohana .input__label-content--kohana,
.input--filled .input__label-content--kohana {
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.input__field--kohana:focus + .input__label--kohana .icon--kohana,
.input--filled .icon--kohana {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG font generated by IcoMoon.
<iconset grid="14"></iconset>
</metadata>
<defs>
<font id="codropsicons" horiz-adv-x="448" >
<font-face units-per-em="448" ascent="384" descent="-64" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode="&#xe001;" d="M 221.657,359.485 ,m0.00,0.00,c 0.00,0.00 -132.984-182.838 -132.205-286.236 0.515-68.522 61.089-123.688 135.314-123.218 74.202,0.479 133.943,56.421 133.428,124.943 C 357.414,178.368 221.657,359.485 221.657,359.485 z" />
<glyph unicode="&#xe004;" d="M 384.00,160.00l0.00-32.00 q0.00-13.25 -8.125-22.625t-21.125-9.375l-176.00,0.00 l 73.25-73.50q 9.50-9.00 9.50-22.50t-9.50-22.50l-18.75-19.00q-9.25-9.25 -22.50-9.25q-13.00,0.00 -22.75,9.25l-162.75,163.00q-9.25,9.25 -9.25,22.50q0.00,13.00 9.25,22.75l 162.75,162.50q 9.50,9.50 22.75,9.50q 13.00,0.00 22.50-9.50l 18.75-18.50q 9.50-9.50 9.50-22.75t-9.50-22.75l-73.25-73.25l 176.00,0.00 q 13.00,0.00 21.125-9.375 t 8.125-22.625z" horiz-adv-x="384" />
<glyph unicode="&#xe002;" d="M 407.273-23.273c0.00,0.00-325.818,0.00-366.545,0.00s-40.727,40.727-40.727,40.727l0.00,142.545 l 101.818,183.273l 244.364,0.00 l 101.818-183.273c0.00,0.00,0.00-101.818,0.00-142.545S 407.273-23.273, 407.273-23.273z M 325.818,302.545L 122.182,302.545
l-71.273-142.545L 142.545,160.00 c0.00,0.00, 40.727,0.00, 40.727-40.727l0.00-20.364 l 81.455,0.00 l0.00,20.364 c0.00,0.00,0.00,40.727, 40.727,40.727l 91.636,0.00 L 325.818,302.545z M 407.273,119.273l-96.911,0.00 C 307.532,113.917, 305.455,107.503, 305.455,98.909c0.00-40.727-40.727-40.727-40.727-40.727L 183.273,58.182 c0.00,0.00-40.727,0.00-40.727,40.727
c0.00,8.593-2.077,15.008-4.908,20.364L 40.727,119.273 l0.00-101.818 l 366.545,0.00 L 407.273,119.273 z M 132.364,221.091l 183.273,0.00 L 325.818,200.727L 122.182,200.727 L 132.364,221.091z M 152.727,261.818l 142.545,0.00 L 305.455,241.455L 142.545,241.455 L 152.727,261.818z" />
<glyph unicode="&#xe000;" d="M 368.00,144.00q0.00-13.50 -9.25-22.75l-162.75-162.75q-9.75-9.25 -22.75-9.25q-12.75,0.00 -22.50,9.25l-18.75,18.75q-9.50,9.50 -9.50,22.75t 9.50,22.75l 73.25,73.25l-176.00,0.00 q-13.00,0.00 -21.125,9.375t-8.125,22.625l0.00,32.00 q0.00,13.25 8.125,22.625t 21.125,9.375l 176.00,0.00 l-73.25,73.50q-9.50,9.00 -9.50,22.50t 9.50,22.50l 18.75,18.75q 9.50,9.50 22.50,9.50q 13.25,0.00 22.75-9.50l 162.75-162.75q 9.25-8.75 9.25-22.50z" horiz-adv-x="384" />
<glyph unicode="&#xe003;" d="M 224.00-64.00C 100.291-64.00,0.00,36.291,0.00,160.00S 100.291,384.00, 224.00,384.00s 224.00-100.291, 224.00-224.00S 347.709-64.00, 224.00-64.00z
M 224.00,343.273c-101.228,0.00-183.273-82.045-183.273-183.273s 82.045-183.273, 183.273-183.273s 183.273,82.045, 183.273,183.273S 325.228,343.273, 224.00,343.273z M 244.364,122.164C 244.364,111.005, 244.364,98.909, 244.364,98.909l-40.727,0.00 c0.00,0.00,0.00,29.466,0.00,40.727
s 9.123,20.364, 20.364,20.364l0.00,0.00c 22.481,0.00, 40.727,18.246, 40.727,40.727s-18.246,40.727-40.727,40.727S 183.273,223.209, 183.273,200.727c0.00-7.453, 2.138-14.356, 5.641-20.364L 145.437,180.364 C 143.727,186.90, 142.545,193.661, 142.545,200.727
c0.00,44.983, 36.471,81.455, 81.455,81.455s 81.455-36.471, 81.455-81.455C 305.455,162.831, 279.45,131.247, 244.364,122.164z M 244.364,37.818l-40.727,0.00 l0.00,40.727 l 40.727,0.00 L 244.364,37.818 z" />
<glyph unicode="&#x20;" horiz-adv-x="224" />
<glyph class="hidden" unicode="&#xf000;" d="M0,384L 448 -64L0 -64 z" horiz-adv-x="0" />
</font></defs></svg>
\ No newline at end of file
Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/
License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico
License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/
\ No newline at end of file
/*!
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.2.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="612px" height="612px" viewBox="0 0 612 612" xml:space="preserve">
<path fill="#fff" d="M5.817,606.299c7.729,7.614,20.277,7.614,28.007,0L192.448,450.2c44.267,35.333,100.622,56.586,162.067,56.586c142.211,0,257.487-113.439,257.487-253.393C612.003,113.439,496.727,0,354.516,0S97.028,113.439,97.009,253.393c0,65.424,25.424,124.879,66.802,169.834L5.8,578.714C-1.929,586.328-1.929,598.686,5.817,606.299z"/>
</svg>
/*!
* classie - class helper functions
* from bonzo https://github.com/ded/bonzo
*
* classie.has( elem, 'my-class' ) -> true/false
* classie.add( elem, 'my-new-class' )
* classie.remove( elem, 'my-unwanted-class' )
* classie.toggle( elem, 'my-class' )
*/
/*jshint browser: true, strict: true, undef: true */
/*global define: false */
( function( window ) {
'use strict';
// class helper functions from bonzo https://github.com/ded/bonzo
function classReg( className ) {
return new RegExp("(^|\\s+)" + className + "(\\s+|$)");
}
// classList support for class management
// altho to be fair, the api sucks because it won't accept multiple classes at once
var hasClass, addClass, removeClass;
if ( 'classList' in document.documentElement ) {
hasClass = function( elem, c ) {
return elem.classList.contains( c );
};
addClass = function( elem, c ) {
elem.classList.add( c );
};
removeClass = function( elem, c ) {
elem.classList.remove( c );
};
}
else {
hasClass = function( elem, c ) {
return classReg( c ).test( elem.className );
};
addClass = function( elem, c ) {
if ( !hasClass( elem, c ) ) {
elem.className = elem.className + ' ' + c;
}
};
removeClass = function( elem, c ) {
elem.className = elem.className.replace( classReg( c ), ' ' );
};
}
function toggleClass( elem, c ) {
var fn = hasClass( elem, c ) ? removeClass : addClass;
fn( elem, c );
}
var classie = {
// full names
hasClass: hasClass,
addClass: addClass,
removeClass: removeClass,
toggleClass: toggleClass,
// short names
has: hasClass,
add: addClass,
remove: removeClass,
toggle: toggleClass
};
// transport
if ( typeof define === 'function' && define.amd ) {
// AMD
define( classie );
} else {
// browser global
window.classie = classie;
}
})( window );
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment