diff --git a/SQL/coze_training.sql b/SQL/coze_training.sql
new file mode 100644
index 0000000..8f8a956
--- /dev/null
+++ b/SQL/coze_training.sql
@@ -0,0 +1,152 @@
+-- phpMyAdmin SQL Dump
+-- version 4.7.7
+-- https://www.phpmyadmin.net/
+--
+-- Host: localhost
+-- Generation Time: Apr 02, 2018 at 08:36 AM
+-- Server version: 10.2.13-MariaDB
+-- PHP Version: 7.2.3
+
+SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
+SET AUTOCOMMIT = 0;
+START TRANSACTION;
+SET time_zone = "+00:00";
+
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8mb4 */;
+
+--
+-- Database: `coze_training`
+--
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `actions`
+--
+
+CREATE TABLE `actions` (
+ `id` int(11) NOT NULL,
+ `label` varchar(255) NOT NULL,
+ `description` text NOT NULL,
+ `mid` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
+--
+-- Dumping data for table `actions`
+--
+
+INSERT INTO `actions` (`id`, `label`, `description`, `mid`) VALUES
+(13, 'sdbf', 'xg', 22),
+(14, 'sdbfASFDV', 'xgSDF ', 20),
+(15, 'wwwwwwww', 'wwwwwwww', 21),
+(16, 'xxxxxxxxx', 'xxxxxxxxxx', 20),
+(17, 'wwwwwwww', 'wwwwwwww', 21),
+(18, 'xxxxxxxxx', 'xxxxxxxxxx', 23),
+(19, 'ascd', 'dsvf', 22),
+(20, 'ddddddddddddd', 'ddddddddddd', 21),
+(21, 'fffffffff', 'ffffffffff', 22),
+(22, 'Action 1', 'Description of action 1', 24),
+(23, 'Action 2', 'Description of action 2 (Goto message 1)', 24),
+(24, 'Action 3', 'Description of action 3 (Goto message 2)', 25);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `messages`
+--
+
+CREATE TABLE `messages` (
+ `id` int(11) NOT NULL,
+ `sid` int(11) NOT NULL,
+ `title` varchar(255) NOT NULL,
+ `short_text` text NOT NULL,
+ `long_text` text NOT NULL,
+ `image` varchar(255) NOT NULL,
+ `actions` varchar(100) NOT NULL,
+ `timer` time NOT NULL,
+ `progress` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
+--
+-- Dumping data for table `messages`
+--
+
+INSERT INTO `messages` (`id`, `sid`, `title`, `short_text`, `long_text`, `image`, `actions`, `timer`, `progress`) VALUES
+(24, 5, 'Test message 1', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus.
', 'Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc,', '/images/upload/20180402082649.jpg', '', '00:00:00', 0),
+(25, 5, 'Test message 2', 'Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue.', '', '', '22', '00:00:10', 0),
+(26, 5, 'Test message 3', 'Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.', '', '', '23,24', '00:00:00', 1);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `session`
+--
+
+CREATE TABLE `session` (
+ `id` int(11) NOT NULL,
+ `name` varchar(255) NOT NULL,
+ `link` varchar(255) NOT NULL,
+ `start` datetime NOT NULL,
+ `stop` datetime NOT NULL,
+ `enabled` tinyint(1) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
+--
+-- Dumping data for table `session`
+--
+
+INSERT INTO `session` (`id`, `name`, `link`, `start`, `stop`, `enabled`) VALUES
+(5, 'Test session 1', 'Test-session-1', '2018-04-02 10:32:00', '2018-04-02 10:35:00', 1);
+
+--
+-- Indexes for dumped tables
+--
+
+--
+-- Indexes for table `actions`
+--
+ALTER TABLE `actions`
+ ADD PRIMARY KEY (`id`);
+
+--
+-- Indexes for table `messages`
+--
+ALTER TABLE `messages`
+ ADD PRIMARY KEY (`id`);
+
+--
+-- Indexes for table `session`
+--
+ALTER TABLE `session`
+ ADD PRIMARY KEY (`id`);
+
+--
+-- AUTO_INCREMENT for dumped tables
+--
+
+--
+-- AUTO_INCREMENT for table `actions`
+--
+ALTER TABLE `actions`
+ MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
+
+--
+-- AUTO_INCREMENT for table `messages`
+--
+ALTER TABLE `messages`
+ MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
+
+--
+-- AUTO_INCREMENT for table `session`
+--
+ALTER TABLE `session`
+ MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
+COMMIT;
+
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
diff --git a/apis/getMessages.php b/apis/getMessages.php
index 217ddac..3b61631 100644
--- a/apis/getMessages.php
+++ b/apis/getMessages.php
@@ -16,7 +16,7 @@
$session->name = $rs['name'];
$session->start = $rs['start'];
$session->stop = $rs['stop'];
- $session->enabled = $rs['enabled'];
+ $session->enabled = intval($rs['enabled']);
$messages = array();
@@ -37,6 +37,17 @@
while($rm=mysqli_fetch_array($qm)){
if($rm['progress']){$progressCnt++;}
+ $actions = array();
+ if($rm['actions']){
+ $qa=mysqli_query($conn, "SELECT * FROM actions WHERE id IN (".$rm['actions'].")");
+ while($ra=mysqli_fetch_array($qa)){
+ $actionsData = array("mid"=>$ra['mid'],
+ "label"=>$ra['label'],
+ "description"=>$ra['description']);
+ array_push($actions, $actionsData);
+ }
+ }
+
$timer = ($rm['progress']!=0) ?
date("Y-m-d H:i:s",strtotime($session->start)+($progressCnt*$stepDuration)) :
date("Y-m-d H:i:s",strtotime($session->start)+timeSeconds($rm['timer']));
@@ -46,9 +57,8 @@
"short_text"=>$rm['short_text'],
"long_text"=>$rm['long_text'],
"image"=>$rm['image'],
- "actions"=>$rm['actions'],
+ "actions"=>$actions,
"timer"=>$timer
-
);
array_push($messages, $singleMessage);
@@ -63,5 +73,4 @@
$json = json_encode($session);
echo $json;
-
?>
diff --git a/cb_message_delete.php b/cb_message_delete.php
new file mode 100644
index 0000000..c91443c
--- /dev/null
+++ b/cb_message_delete.php
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+ COZe
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/cb_session_delete.php b/cb_session_delete.php
new file mode 100644
index 0000000..a1cca56
--- /dev/null
+++ b/cb_session_delete.php
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+ COZe
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/css/styles.css b/css/styles.css
index 14e9ce7..01b591a 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -14537,7 +14537,7 @@ header .container .row .menu ul li.active a:hover, header .container .row .menu
/* line 129, flatpickr.scss */
.flatpickr-month {
border-radius: 5px 5px 0 0;
- background: #bf0f3d;
+ background: #bf0f3d !important;
color: #fff;
fill: #fff;
height: 28px;
diff --git a/device/css/styles.css b/device/css/styles.css
new file mode 100644
index 0000000..000cf1c
--- /dev/null
+++ b/device/css/styles.css
@@ -0,0 +1,4209 @@
+@charset "UTF-8";
+@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900");
+/* 8px */
+/* 10px */
+/* 12px */
+/* 13px */
+/* 14px */
+/* 15px */
+/* 16px */
+/* 18px */
+/* 20px */
+/* 22px */
+/* 24px */
+/* 26px */
+/* 28px */
+/* 30px */
+/* 34px */
+/* 40px */
+/* 45px */
+/* 48px */
+/* 53px */
+/* ?px */
+/* line 47, variables.scss */
+.font-8 {
+ font-size: 0.5rem !important;
+}
+
+/* line 47, variables.scss */
+.font-10 {
+ font-size: 0.625rem !important;
+}
+
+/* line 47, variables.scss */
+.font-12 {
+ font-size: 0.75rem !important;
+}
+
+/* line 47, variables.scss */
+.font-13 {
+ font-size: 0.8125rem !important;
+}
+
+/* line 47, variables.scss */
+.font-14 {
+ font-size: 0.875rem !important;
+}
+
+/* line 47, variables.scss */
+.font-15 {
+ font-size: 0.9375rem !important;
+}
+
+/* line 47, variables.scss */
+.font-16 {
+ font-size: 1rem !important;
+}
+
+/* line 47, variables.scss */
+.font-18 {
+ font-size: 1.125rem !important;
+}
+
+/* line 47, variables.scss */
+.font-20 {
+ font-size: 1.25rem !important;
+}
+
+/* line 47, variables.scss */
+.font-22 {
+ font-size: 1.375rem !important;
+}
+
+/* line 47, variables.scss */
+.font-24 {
+ font-size: 1.5rem !important;
+}
+
+/* line 47, variables.scss */
+.font-26 {
+ font-size: 1.625rem !important;
+}
+
+/* line 47, variables.scss */
+.font-28 {
+ font-size: 1.75rem !important;
+}
+
+/* line 47, variables.scss */
+.font-30 {
+ font-size: 1.875rem !important;
+}
+
+/* line 47, variables.scss */
+.font-34 {
+ font-size: 2.125rem !important;
+}
+
+/* line 47, variables.scss */
+.font-40 {
+ font-size: 2.5rem !important;
+}
+
+/* line 47, variables.scss */
+.font-45 {
+ font-size: 2.8125rem !important;
+}
+
+/* line 47, variables.scss */
+.font-48 {
+ font-size: 3rem !important;
+}
+
+/* line 47, variables.scss */
+.font-53 {
+ font-size: 3.3125rem !important;
+}
+
+/*!
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+/* FONT PATH
+ * -------------------------- */
+@font-face {
+ font-family: 'FontAwesome';
+ src: url("/fonts/fontawesome-webfont.eot?v=4.7.0");
+ src: url("/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
+ font-weight: normal;
+ font-style: normal;
+}
+/* line 4, ../../node_modules/font-awesome/scss/_core.scss */
+.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;
+}
+
+/* makes the font 33% larger relative to the icon container */
+/* line 5, ../../node_modules/font-awesome/scss/_larger.scss */
+.fa-lg {
+ font-size: 1.3333333333em;
+ line-height: 0.75em;
+ vertical-align: -15%;
+}
+
+/* line 10, ../../node_modules/font-awesome/scss/_larger.scss */
+.fa-2x {
+ font-size: 2em;
+}
+
+/* line 11, ../../node_modules/font-awesome/scss/_larger.scss */
+.fa-3x {
+ font-size: 3em;
+}
+
+/* line 12, ../../node_modules/font-awesome/scss/_larger.scss */
+.fa-4x {
+ font-size: 4em;
+}
+
+/* line 13, ../../node_modules/font-awesome/scss/_larger.scss */
+.fa-5x {
+ font-size: 5em;
+}
+
+/* line 3, ../../node_modules/font-awesome/scss/_fixed-width.scss */
+.fa-fw {
+ width: 1.2857142857em;
+ text-align: center;
+}
+
+/* line 4, ../../node_modules/font-awesome/scss/_list.scss */
+.fa-ul {
+ padding-left: 0;
+ margin-left: 2.1428571429em;
+ list-style-type: none;
+}
+/* line 8, ../../node_modules/font-awesome/scss/_list.scss */
+.fa-ul > li {
+ position: relative;
+}
+
+/* line 10, ../../node_modules/font-awesome/scss/_list.scss */
+.fa-li {
+ position: absolute;
+ left: -2.1428571429em;
+ width: 2.1428571429em;
+ top: 0.1428571429em;
+ text-align: center;
+}
+/* line 16, ../../node_modules/font-awesome/scss/_list.scss */
+.fa-li.fa-lg {
+ left: -1.8571428571em;
+}
+
+/* line 4, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa-border {
+ padding: .2em .25em .15em;
+ border: solid 0.08em #eee;
+ border-radius: .1em;
+}
+
+/* line 10, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa-pull-left {
+ float: left;
+}
+
+/* line 11, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa-pull-right {
+ float: right;
+}
+
+/* line 14, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa.fa-pull-left {
+ margin-right: .3em;
+}
+/* line 15, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa.fa-pull-right {
+ margin-left: .3em;
+}
+
+/* Deprecated as of 4.4.0 */
+/* line 19, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.pull-right {
+ float: right;
+}
+
+/* line 20, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.pull-left {
+ float: left;
+}
+
+/* line 23, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa.pull-left {
+ margin-right: .3em;
+}
+/* line 24, ../../node_modules/font-awesome/scss/_bordered-pulled.scss */
+.fa.pull-right {
+ margin-left: .3em;
+}
+
+/* line 4, ../../node_modules/font-awesome/scss/_animated.scss */
+.fa-spin {
+ -webkit-animation: fa-spin 2s infinite linear;
+ animation: fa-spin 2s infinite linear;
+}
+
+/* line 9, ../../node_modules/font-awesome/scss/_animated.scss */
+.fa-pulse {
+ -webkit-animation: fa-spin 1s infinite steps(8);
+ animation: fa-spin 1s infinite steps(8);
+}
+
+@-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);
+ }
+}
+/* line 4, ../../node_modules/font-awesome/scss/_rotated-flipped.scss */
+.fa-rotate-90 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+ -webkit-transform: rotate(90deg);
+ -ms-transform: rotate(90deg);
+ transform: rotate(90deg);
+}
+
+/* line 5, ../../node_modules/font-awesome/scss/_rotated-flipped.scss */
+.fa-rotate-180 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+}
+
+/* line 6, ../../node_modules/font-awesome/scss/_rotated-flipped.scss */
+.fa-rotate-270 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+ -webkit-transform: rotate(270deg);
+ -ms-transform: rotate(270deg);
+ transform: rotate(270deg);
+}
+
+/* line 8, ../../node_modules/font-awesome/scss/_rotated-flipped.scss */
+.fa-flip-horizontal {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+ -webkit-transform: scale(-1, 1);
+ -ms-transform: scale(-1, 1);
+ transform: scale(-1, 1);
+}
+
+/* line 9, ../../node_modules/font-awesome/scss/_rotated-flipped.scss */
+.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ -webkit-transform: scale(1, -1);
+ -ms-transform: scale(1, -1);
+ transform: scale(1, -1);
+}
+
+/* line 14, ../../node_modules/font-awesome/scss/_rotated-flipped.scss */
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+ filter: none;
+}
+
+/* line 4, ../../node_modules/font-awesome/scss/_stacked.scss */
+.fa-stack {
+ position: relative;
+ display: inline-block;
+ width: 2em;
+ height: 2em;
+ line-height: 2em;
+ vertical-align: middle;
+}
+
+/* line 12, ../../node_modules/font-awesome/scss/_stacked.scss */
+.fa-stack-1x, .fa-stack-2x {
+ position: absolute;
+ left: 0;
+ width: 100%;
+ text-align: center;
+}
+
+/* line 18, ../../node_modules/font-awesome/scss/_stacked.scss */
+.fa-stack-1x {
+ line-height: inherit;
+}
+
+/* line 19, ../../node_modules/font-awesome/scss/_stacked.scss */
+.fa-stack-2x {
+ font-size: 2em;
+}
+
+/* line 20, ../../node_modules/font-awesome/scss/_stacked.scss */
+.fa-inverse {
+ color: #fff;
+}
+
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+ readers do not read off random characters that represent icons */
+/* line 4, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-glass:before {
+ content: "";
+}
+
+/* line 5, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-music:before {
+ content: "";
+}
+
+/* line 6, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-search:before {
+ content: "";
+}
+
+/* line 7, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-envelope-o:before {
+ content: "";
+}
+
+/* line 8, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-heart:before {
+ content: "";
+}
+
+/* line 9, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-star:before {
+ content: "";
+}
+
+/* line 10, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-star-o:before {
+ content: "";
+}
+
+/* line 11, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user:before {
+ content: "";
+}
+
+/* line 12, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-film:before {
+ content: "";
+}
+
+/* line 13, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-th-large:before {
+ content: "";
+}
+
+/* line 14, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-th:before {
+ content: "";
+}
+
+/* line 15, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-th-list:before {
+ content: "";
+}
+
+/* line 16, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-check:before {
+ content: "";
+}
+
+/* line 17, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-remove:before,
+.fa-close:before,
+.fa-times:before {
+ content: "";
+}
+
+/* line 20, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-search-plus:before {
+ content: "";
+}
+
+/* line 21, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-search-minus:before {
+ content: "";
+}
+
+/* line 22, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-power-off:before {
+ content: "";
+}
+
+/* line 23, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-signal:before {
+ content: "";
+}
+
+/* line 24, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gear:before,
+.fa-cog:before {
+ content: "";
+}
+
+/* line 26, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-trash-o:before {
+ content: "";
+}
+
+/* line 27, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-home:before {
+ content: "";
+}
+
+/* line 28, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-o:before {
+ content: "";
+}
+
+/* line 29, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-clock-o:before {
+ content: "";
+}
+
+/* line 30, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-road:before {
+ content: "";
+}
+
+/* line 31, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-download:before {
+ content: "";
+}
+
+/* line 32, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-o-down:before {
+ content: "";
+}
+
+/* line 33, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-o-up:before {
+ content: "";
+}
+
+/* line 34, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-inbox:before {
+ content: "";
+}
+
+/* line 35, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-play-circle-o:before {
+ content: "";
+}
+
+/* line 36, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-rotate-right:before,
+.fa-repeat:before {
+ content: "";
+}
+
+/* line 38, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-refresh:before {
+ content: "";
+}
+
+/* line 39, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-list-alt:before {
+ content: "";
+}
+
+/* line 40, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-lock:before {
+ content: "";
+}
+
+/* line 41, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-flag:before {
+ content: "";
+}
+
+/* line 42, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-headphones:before {
+ content: "";
+}
+
+/* line 43, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-volume-off:before {
+ content: "";
+}
+
+/* line 44, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-volume-down:before {
+ content: "";
+}
+
+/* line 45, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-volume-up:before {
+ content: "";
+}
+
+/* line 46, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-qrcode:before {
+ content: "";
+}
+
+/* line 47, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-barcode:before {
+ content: "";
+}
+
+/* line 48, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tag:before {
+ content: "";
+}
+
+/* line 49, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tags:before {
+ content: "";
+}
+
+/* line 50, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-book:before {
+ content: "";
+}
+
+/* line 51, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bookmark:before {
+ content: "";
+}
+
+/* line 52, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-print:before {
+ content: "";
+}
+
+/* line 53, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-camera:before {
+ content: "";
+}
+
+/* line 54, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-font:before {
+ content: "";
+}
+
+/* line 55, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bold:before {
+ content: "";
+}
+
+/* line 56, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-italic:before {
+ content: "";
+}
+
+/* line 57, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-text-height:before {
+ content: "";
+}
+
+/* line 58, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-text-width:before {
+ content: "";
+}
+
+/* line 59, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-align-left:before {
+ content: "";
+}
+
+/* line 60, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-align-center:before {
+ content: "";
+}
+
+/* line 61, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-align-right:before {
+ content: "";
+}
+
+/* line 62, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-align-justify:before {
+ content: "";
+}
+
+/* line 63, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-list:before {
+ content: "";
+}
+
+/* line 64, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dedent:before,
+.fa-outdent:before {
+ content: "";
+}
+
+/* line 66, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-indent:before {
+ content: "";
+}
+
+/* line 67, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-video-camera:before {
+ content: "";
+}
+
+/* line 68, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-photo:before,
+.fa-image:before,
+.fa-picture-o:before {
+ content: "";
+}
+
+/* line 71, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pencil:before {
+ content: "";
+}
+
+/* line 72, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-map-marker:before {
+ content: "";
+}
+
+/* line 73, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-adjust:before {
+ content: "";
+}
+
+/* line 74, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tint:before {
+ content: "";
+}
+
+/* line 75, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-edit:before,
+.fa-pencil-square-o:before {
+ content: "";
+}
+
+/* line 77, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-share-square-o:before {
+ content: "";
+}
+
+/* line 78, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-check-square-o:before {
+ content: "";
+}
+
+/* line 79, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrows:before {
+ content: "";
+}
+
+/* line 80, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-step-backward:before {
+ content: "";
+}
+
+/* line 81, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fast-backward:before {
+ content: "";
+}
+
+/* line 82, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-backward:before {
+ content: "";
+}
+
+/* line 83, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-play:before {
+ content: "";
+}
+
+/* line 84, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pause:before {
+ content: "";
+}
+
+/* line 85, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stop:before {
+ content: "";
+}
+
+/* line 86, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-forward:before {
+ content: "";
+}
+
+/* line 87, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fast-forward:before {
+ content: "";
+}
+
+/* line 88, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-step-forward:before {
+ content: "";
+}
+
+/* line 89, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-eject:before {
+ content: "";
+}
+
+/* line 90, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-left:before {
+ content: "";
+}
+
+/* line 91, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-right:before {
+ content: "";
+}
+
+/* line 92, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-plus-circle:before {
+ content: "";
+}
+
+/* line 93, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-minus-circle:before {
+ content: "";
+}
+
+/* line 94, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-times-circle:before {
+ content: "";
+}
+
+/* line 95, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-check-circle:before {
+ content: "";
+}
+
+/* line 96, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-question-circle:before {
+ content: "";
+}
+
+/* line 97, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-info-circle:before {
+ content: "";
+}
+
+/* line 98, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-crosshairs:before {
+ content: "";
+}
+
+/* line 99, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-times-circle-o:before {
+ content: "";
+}
+
+/* line 100, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-check-circle-o:before {
+ content: "";
+}
+
+/* line 101, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ban:before {
+ content: "";
+}
+
+/* line 102, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-left:before {
+ content: "";
+}
+
+/* line 103, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-right:before {
+ content: "";
+}
+
+/* line 104, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-up:before {
+ content: "";
+}
+
+/* line 105, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-down:before {
+ content: "";
+}
+
+/* line 106, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mail-forward:before,
+.fa-share:before {
+ content: "";
+}
+
+/* line 108, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-expand:before {
+ content: "";
+}
+
+/* line 109, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-compress:before {
+ content: "";
+}
+
+/* line 110, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-plus:before {
+ content: "";
+}
+
+/* line 111, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-minus:before {
+ content: "";
+}
+
+/* line 112, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-asterisk:before {
+ content: "";
+}
+
+/* line 113, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-exclamation-circle:before {
+ content: "";
+}
+
+/* line 114, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gift:before {
+ content: "";
+}
+
+/* line 115, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-leaf:before {
+ content: "";
+}
+
+/* line 116, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fire:before {
+ content: "";
+}
+
+/* line 117, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-eye:before {
+ content: "";
+}
+
+/* line 118, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-eye-slash:before {
+ content: "";
+}
+
+/* line 119, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-warning:before,
+.fa-exclamation-triangle:before {
+ content: "";
+}
+
+/* line 121, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-plane:before {
+ content: "";
+}
+
+/* line 122, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calendar:before {
+ content: "";
+}
+
+/* line 123, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-random:before {
+ content: "";
+}
+
+/* line 124, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-comment:before {
+ content: "";
+}
+
+/* line 125, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-magnet:before {
+ content: "";
+}
+
+/* line 126, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-up:before {
+ content: "";
+}
+
+/* line 127, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-down:before {
+ content: "";
+}
+
+/* line 128, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-retweet:before {
+ content: "";
+}
+
+/* line 129, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shopping-cart:before {
+ content: "";
+}
+
+/* line 130, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-folder:before {
+ content: "";
+}
+
+/* line 131, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-folder-open:before {
+ content: "";
+}
+
+/* line 132, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrows-v:before {
+ content: "";
+}
+
+/* line 133, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrows-h:before {
+ content: "";
+}
+
+/* line 134, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bar-chart-o:before,
+.fa-bar-chart:before {
+ content: "";
+}
+
+/* line 136, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-twitter-square:before {
+ content: "";
+}
+
+/* line 137, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-facebook-square:before {
+ content: "";
+}
+
+/* line 138, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-camera-retro:before {
+ content: "";
+}
+
+/* line 139, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-key:before {
+ content: "";
+}
+
+/* line 140, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gears:before,
+.fa-cogs:before {
+ content: "";
+}
+
+/* line 142, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-comments:before {
+ content: "";
+}
+
+/* line 143, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thumbs-o-up:before {
+ content: "";
+}
+
+/* line 144, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thumbs-o-down:before {
+ content: "";
+}
+
+/* line 145, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-star-half:before {
+ content: "";
+}
+
+/* line 146, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-heart-o:before {
+ content: "";
+}
+
+/* line 147, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sign-out:before {
+ content: "";
+}
+
+/* line 148, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-linkedin-square:before {
+ content: "";
+}
+
+/* line 149, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thumb-tack:before {
+ content: "";
+}
+
+/* line 150, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-external-link:before {
+ content: "";
+}
+
+/* line 151, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sign-in:before {
+ content: "";
+}
+
+/* line 152, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-trophy:before {
+ content: "";
+}
+
+/* line 153, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-github-square:before {
+ content: "";
+}
+
+/* line 154, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-upload:before {
+ content: "";
+}
+
+/* line 155, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-lemon-o:before {
+ content: "";
+}
+
+/* line 156, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-phone:before {
+ content: "";
+}
+
+/* line 157, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-square-o:before {
+ content: "";
+}
+
+/* line 158, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bookmark-o:before {
+ content: "";
+}
+
+/* line 159, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-phone-square:before {
+ content: "";
+}
+
+/* line 160, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-twitter:before {
+ content: "";
+}
+
+/* line 161, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-facebook-f:before,
+.fa-facebook:before {
+ content: "";
+}
+
+/* line 163, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-github:before {
+ content: "";
+}
+
+/* line 164, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-unlock:before {
+ content: "";
+}
+
+/* line 165, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-credit-card:before {
+ content: "";
+}
+
+/* line 166, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-feed:before,
+.fa-rss:before {
+ content: "";
+}
+
+/* line 168, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hdd-o:before {
+ content: "";
+}
+
+/* line 169, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bullhorn:before {
+ content: "";
+}
+
+/* line 170, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bell:before {
+ content: "";
+}
+
+/* line 171, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-certificate:before {
+ content: "";
+}
+
+/* line 172, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-o-right:before {
+ content: "";
+}
+
+/* line 173, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-o-left:before {
+ content: "";
+}
+
+/* line 174, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-o-up:before {
+ content: "";
+}
+
+/* line 175, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-o-down:before {
+ content: "";
+}
+
+/* line 176, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-left:before {
+ content: "";
+}
+
+/* line 177, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-right:before {
+ content: "";
+}
+
+/* line 178, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-up:before {
+ content: "";
+}
+
+/* line 179, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-down:before {
+ content: "";
+}
+
+/* line 180, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-globe:before {
+ content: "";
+}
+
+/* line 181, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wrench:before {
+ content: "";
+}
+
+/* line 182, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tasks:before {
+ content: "";
+}
+
+/* line 183, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-filter:before {
+ content: "";
+}
+
+/* line 184, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-briefcase:before {
+ content: "";
+}
+
+/* line 185, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrows-alt:before {
+ content: "";
+}
+
+/* line 186, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-group:before,
+.fa-users:before {
+ content: "";
+}
+
+/* line 188, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chain:before,
+.fa-link:before {
+ content: "";
+}
+
+/* line 190, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cloud:before {
+ content: "";
+}
+
+/* line 191, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-flask:before {
+ content: "";
+}
+
+/* line 192, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cut:before,
+.fa-scissors:before {
+ content: "";
+}
+
+/* line 194, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-copy:before,
+.fa-files-o:before {
+ content: "";
+}
+
+/* line 196, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-paperclip:before {
+ content: "";
+}
+
+/* line 197, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-save:before,
+.fa-floppy-o:before {
+ content: "";
+}
+
+/* line 199, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-square:before {
+ content: "";
+}
+
+/* line 200, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-navicon:before,
+.fa-reorder:before,
+.fa-bars:before {
+ content: "";
+}
+
+/* line 203, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-list-ul:before {
+ content: "";
+}
+
+/* line 204, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-list-ol:before {
+ content: "";
+}
+
+/* line 205, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-strikethrough:before {
+ content: "";
+}
+
+/* line 206, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-underline:before {
+ content: "";
+}
+
+/* line 207, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-table:before {
+ content: "";
+}
+
+/* line 208, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-magic:before {
+ content: "";
+}
+
+/* line 209, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-truck:before {
+ content: "";
+}
+
+/* line 210, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pinterest:before {
+ content: "";
+}
+
+/* line 211, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pinterest-square:before {
+ content: "";
+}
+
+/* line 212, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-google-plus-square:before {
+ content: "";
+}
+
+/* line 213, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-google-plus:before {
+ content: "";
+}
+
+/* line 214, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-money:before {
+ content: "";
+}
+
+/* line 215, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-caret-down:before {
+ content: "";
+}
+
+/* line 216, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-caret-up:before {
+ content: "";
+}
+
+/* line 217, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-caret-left:before {
+ content: "";
+}
+
+/* line 218, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-caret-right:before {
+ content: "";
+}
+
+/* line 219, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-columns:before {
+ content: "";
+}
+
+/* line 220, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-unsorted:before,
+.fa-sort:before {
+ content: "";
+}
+
+/* line 222, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-down:before,
+.fa-sort-desc:before {
+ content: "";
+}
+
+/* line 224, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-up:before,
+.fa-sort-asc:before {
+ content: "";
+}
+
+/* line 226, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-envelope:before {
+ content: "";
+}
+
+/* line 227, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-linkedin:before {
+ content: "";
+}
+
+/* line 228, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-rotate-left:before,
+.fa-undo:before {
+ content: "";
+}
+
+/* line 230, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-legal:before,
+.fa-gavel:before {
+ content: "";
+}
+
+/* line 232, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dashboard:before,
+.fa-tachometer:before {
+ content: "";
+}
+
+/* line 234, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-comment-o:before {
+ content: "";
+}
+
+/* line 235, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-comments-o:before {
+ content: "";
+}
+
+/* line 236, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-flash:before,
+.fa-bolt:before {
+ content: "";
+}
+
+/* line 238, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sitemap:before {
+ content: "";
+}
+
+/* line 239, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-umbrella:before {
+ content: "";
+}
+
+/* line 240, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-paste:before,
+.fa-clipboard:before {
+ content: "";
+}
+
+/* line 242, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-lightbulb-o:before {
+ content: "";
+}
+
+/* line 243, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-exchange:before {
+ content: "";
+}
+
+/* line 244, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cloud-download:before {
+ content: "";
+}
+
+/* line 245, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cloud-upload:before {
+ content: "";
+}
+
+/* line 246, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-md:before {
+ content: "";
+}
+
+/* line 247, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stethoscope:before {
+ content: "";
+}
+
+/* line 248, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-suitcase:before {
+ content: "";
+}
+
+/* line 249, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bell-o:before {
+ content: "";
+}
+
+/* line 250, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-coffee:before {
+ content: "";
+}
+
+/* line 251, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cutlery:before {
+ content: "";
+}
+
+/* line 252, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-text-o:before {
+ content: "";
+}
+
+/* line 253, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-building-o:before {
+ content: "";
+}
+
+/* line 254, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hospital-o:before {
+ content: "";
+}
+
+/* line 255, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ambulance:before {
+ content: "";
+}
+
+/* line 256, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-medkit:before {
+ content: "";
+}
+
+/* line 257, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fighter-jet:before {
+ content: "";
+}
+
+/* line 258, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-beer:before {
+ content: "";
+}
+
+/* line 259, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-h-square:before {
+ content: "";
+}
+
+/* line 260, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-plus-square:before {
+ content: "";
+}
+
+/* line 261, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-double-left:before {
+ content: "";
+}
+
+/* line 262, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-double-right:before {
+ content: "";
+}
+
+/* line 263, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-double-up:before {
+ content: "";
+}
+
+/* line 264, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-double-down:before {
+ content: "";
+}
+
+/* line 265, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-left:before {
+ content: "";
+}
+
+/* line 266, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-right:before {
+ content: "";
+}
+
+/* line 267, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-up:before {
+ content: "";
+}
+
+/* line 268, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angle-down:before {
+ content: "";
+}
+
+/* line 269, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-desktop:before {
+ content: "";
+}
+
+/* line 270, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-laptop:before {
+ content: "";
+}
+
+/* line 271, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tablet:before {
+ content: "";
+}
+
+/* line 272, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mobile-phone:before,
+.fa-mobile:before {
+ content: "";
+}
+
+/* line 274, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-circle-o:before {
+ content: "";
+}
+
+/* line 275, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-quote-left:before {
+ content: "";
+}
+
+/* line 276, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-quote-right:before {
+ content: "";
+}
+
+/* line 277, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-spinner:before {
+ content: "";
+}
+
+/* line 278, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-circle:before {
+ content: "";
+}
+
+/* line 279, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mail-reply:before,
+.fa-reply:before {
+ content: "";
+}
+
+/* line 281, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-github-alt:before {
+ content: "";
+}
+
+/* line 282, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-folder-o:before {
+ content: "";
+}
+
+/* line 283, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-folder-open-o:before {
+ content: "";
+}
+
+/* line 284, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-smile-o:before {
+ content: "";
+}
+
+/* line 285, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-frown-o:before {
+ content: "";
+}
+
+/* line 286, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-meh-o:before {
+ content: "";
+}
+
+/* line 287, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gamepad:before {
+ content: "";
+}
+
+/* line 288, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-keyboard-o:before {
+ content: "";
+}
+
+/* line 289, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-flag-o:before {
+ content: "";
+}
+
+/* line 290, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-flag-checkered:before {
+ content: "";
+}
+
+/* line 291, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-terminal:before {
+ content: "";
+}
+
+/* line 292, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-code:before {
+ content: "";
+}
+
+/* line 293, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mail-reply-all:before,
+.fa-reply-all:before {
+ content: "";
+}
+
+/* line 295, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-star-half-empty:before,
+.fa-star-half-full:before,
+.fa-star-half-o:before {
+ content: "";
+}
+
+/* line 298, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-location-arrow:before {
+ content: "";
+}
+
+/* line 299, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-crop:before {
+ content: "";
+}
+
+/* line 300, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-code-fork:before {
+ content: "";
+}
+
+/* line 301, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-unlink:before,
+.fa-chain-broken:before {
+ content: "";
+}
+
+/* line 303, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-question:before {
+ content: "";
+}
+
+/* line 304, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-info:before {
+ content: "";
+}
+
+/* line 305, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-exclamation:before {
+ content: "";
+}
+
+/* line 306, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-superscript:before {
+ content: "";
+}
+
+/* line 307, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-subscript:before {
+ content: "";
+}
+
+/* line 308, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-eraser:before {
+ content: "";
+}
+
+/* line 309, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-puzzle-piece:before {
+ content: "";
+}
+
+/* line 310, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-microphone:before {
+ content: "";
+}
+
+/* line 311, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-microphone-slash:before {
+ content: "";
+}
+
+/* line 312, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shield:before {
+ content: "";
+}
+
+/* line 313, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calendar-o:before {
+ content: "";
+}
+
+/* line 314, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fire-extinguisher:before {
+ content: "";
+}
+
+/* line 315, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-rocket:before {
+ content: "";
+}
+
+/* line 316, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-maxcdn:before {
+ content: "";
+}
+
+/* line 317, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-circle-left:before {
+ content: "";
+}
+
+/* line 318, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-circle-right:before {
+ content: "";
+}
+
+/* line 319, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-circle-up:before {
+ content: "";
+}
+
+/* line 320, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chevron-circle-down:before {
+ content: "";
+}
+
+/* line 321, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-html5:before {
+ content: "";
+}
+
+/* line 322, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-css3:before {
+ content: "";
+}
+
+/* line 323, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-anchor:before {
+ content: "";
+}
+
+/* line 324, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-unlock-alt:before {
+ content: "";
+}
+
+/* line 325, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bullseye:before {
+ content: "";
+}
+
+/* line 326, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ellipsis-h:before {
+ content: "";
+}
+
+/* line 327, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ellipsis-v:before {
+ content: "";
+}
+
+/* line 328, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-rss-square:before {
+ content: "";
+}
+
+/* line 329, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-play-circle:before {
+ content: "";
+}
+
+/* line 330, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ticket:before {
+ content: "";
+}
+
+/* line 331, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-minus-square:before {
+ content: "";
+}
+
+/* line 332, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-minus-square-o:before {
+ content: "";
+}
+
+/* line 333, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-level-up:before {
+ content: "";
+}
+
+/* line 334, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-level-down:before {
+ content: "";
+}
+
+/* line 335, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-check-square:before {
+ content: "";
+}
+
+/* line 336, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pencil-square:before {
+ content: "";
+}
+
+/* line 337, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-external-link-square:before {
+ content: "";
+}
+
+/* line 338, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-share-square:before {
+ content: "";
+}
+
+/* line 339, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-compass:before {
+ content: "";
+}
+
+/* line 340, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-toggle-down:before,
+.fa-caret-square-o-down:before {
+ content: "";
+}
+
+/* line 342, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-toggle-up:before,
+.fa-caret-square-o-up:before {
+ content: "";
+}
+
+/* line 344, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-toggle-right:before,
+.fa-caret-square-o-right:before {
+ content: "";
+}
+
+/* line 346, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-euro:before,
+.fa-eur:before {
+ content: "";
+}
+
+/* line 348, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gbp:before {
+ content: "";
+}
+
+/* line 349, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dollar:before,
+.fa-usd:before {
+ content: "";
+}
+
+/* line 351, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-rupee:before,
+.fa-inr:before {
+ content: "";
+}
+
+/* line 353, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cny:before,
+.fa-rmb:before,
+.fa-yen:before,
+.fa-jpy:before {
+ content: "";
+}
+
+/* line 357, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ruble:before,
+.fa-rouble:before,
+.fa-rub:before {
+ content: "";
+}
+
+/* line 360, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-won:before,
+.fa-krw:before {
+ content: "";
+}
+
+/* line 362, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bitcoin:before,
+.fa-btc:before {
+ content: "";
+}
+
+/* line 364, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file:before {
+ content: "";
+}
+
+/* line 365, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-text:before {
+ content: "";
+}
+
+/* line 366, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-alpha-asc:before {
+ content: "";
+}
+
+/* line 367, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-alpha-desc:before {
+ content: "";
+}
+
+/* line 368, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-amount-asc:before {
+ content: "";
+}
+
+/* line 369, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-amount-desc:before {
+ content: "";
+}
+
+/* line 370, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-numeric-asc:before {
+ content: "";
+}
+
+/* line 371, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sort-numeric-desc:before {
+ content: "";
+}
+
+/* line 372, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thumbs-up:before {
+ content: "";
+}
+
+/* line 373, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thumbs-down:before {
+ content: "";
+}
+
+/* line 374, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-youtube-square:before {
+ content: "";
+}
+
+/* line 375, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-youtube:before {
+ content: "";
+}
+
+/* line 376, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-xing:before {
+ content: "";
+}
+
+/* line 377, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-xing-square:before {
+ content: "";
+}
+
+/* line 378, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-youtube-play:before {
+ content: "";
+}
+
+/* line 379, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dropbox:before {
+ content: "";
+}
+
+/* line 380, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stack-overflow:before {
+ content: "";
+}
+
+/* line 381, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-instagram:before {
+ content: "";
+}
+
+/* line 382, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-flickr:before {
+ content: "";
+}
+
+/* line 383, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-adn:before {
+ content: "";
+}
+
+/* line 384, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bitbucket:before {
+ content: "";
+}
+
+/* line 385, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bitbucket-square:before {
+ content: "";
+}
+
+/* line 386, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tumblr:before {
+ content: "";
+}
+
+/* line 387, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tumblr-square:before {
+ content: "";
+}
+
+/* line 388, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-long-arrow-down:before {
+ content: "";
+}
+
+/* line 389, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-long-arrow-up:before {
+ content: "";
+}
+
+/* line 390, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-long-arrow-left:before {
+ content: "";
+}
+
+/* line 391, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-long-arrow-right:before {
+ content: "";
+}
+
+/* line 392, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-apple:before {
+ content: "";
+}
+
+/* line 393, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-windows:before {
+ content: "";
+}
+
+/* line 394, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-android:before {
+ content: "";
+}
+
+/* line 395, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-linux:before {
+ content: "";
+}
+
+/* line 396, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dribbble:before {
+ content: "";
+}
+
+/* line 397, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-skype:before {
+ content: "";
+}
+
+/* line 398, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-foursquare:before {
+ content: "";
+}
+
+/* line 399, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-trello:before {
+ content: "";
+}
+
+/* line 400, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-female:before {
+ content: "";
+}
+
+/* line 401, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-male:before {
+ content: "";
+}
+
+/* line 402, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gittip:before,
+.fa-gratipay:before {
+ content: "";
+}
+
+/* line 404, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sun-o:before {
+ content: "";
+}
+
+/* line 405, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-moon-o:before {
+ content: "";
+}
+
+/* line 406, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-archive:before {
+ content: "";
+}
+
+/* line 407, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bug:before {
+ content: "";
+}
+
+/* line 408, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-vk:before {
+ content: "";
+}
+
+/* line 409, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-weibo:before {
+ content: "";
+}
+
+/* line 410, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-renren:before {
+ content: "";
+}
+
+/* line 411, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pagelines:before {
+ content: "";
+}
+
+/* line 412, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stack-exchange:before {
+ content: "";
+}
+
+/* line 413, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-o-right:before {
+ content: "";
+}
+
+/* line 414, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-arrow-circle-o-left:before {
+ content: "";
+}
+
+/* line 415, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-toggle-left:before,
+.fa-caret-square-o-left:before {
+ content: "";
+}
+
+/* line 417, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dot-circle-o:before {
+ content: "";
+}
+
+/* line 418, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wheelchair:before {
+ content: "";
+}
+
+/* line 419, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-vimeo-square:before {
+ content: "";
+}
+
+/* line 420, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-turkish-lira:before,
+.fa-try:before {
+ content: "";
+}
+
+/* line 422, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-plus-square-o:before {
+ content: "";
+}
+
+/* line 423, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-space-shuttle:before {
+ content: "";
+}
+
+/* line 424, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-slack:before {
+ content: "";
+}
+
+/* line 425, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-envelope-square:before {
+ content: "";
+}
+
+/* line 426, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wordpress:before {
+ content: "";
+}
+
+/* line 427, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-openid:before {
+ content: "";
+}
+
+/* line 428, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-institution:before,
+.fa-bank:before,
+.fa-university:before {
+ content: "";
+}
+
+/* line 431, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mortar-board:before,
+.fa-graduation-cap:before {
+ content: "";
+}
+
+/* line 433, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-yahoo:before {
+ content: "";
+}
+
+/* line 434, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-google:before {
+ content: "";
+}
+
+/* line 435, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-reddit:before {
+ content: "";
+}
+
+/* line 436, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-reddit-square:before {
+ content: "";
+}
+
+/* line 437, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stumbleupon-circle:before {
+ content: "";
+}
+
+/* line 438, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stumbleupon:before {
+ content: "";
+}
+
+/* line 439, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-delicious:before {
+ content: "";
+}
+
+/* line 440, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-digg:before {
+ content: "";
+}
+
+/* line 441, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pied-piper-pp:before {
+ content: "";
+}
+
+/* line 442, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pied-piper-alt:before {
+ content: "";
+}
+
+/* line 443, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-drupal:before {
+ content: "";
+}
+
+/* line 444, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-joomla:before {
+ content: "";
+}
+
+/* line 445, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-language:before {
+ content: "";
+}
+
+/* line 446, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fax:before {
+ content: "";
+}
+
+/* line 447, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-building:before {
+ content: "";
+}
+
+/* line 448, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-child:before {
+ content: "";
+}
+
+/* line 449, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-paw:before {
+ content: "";
+}
+
+/* line 450, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-spoon:before {
+ content: "";
+}
+
+/* line 451, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cube:before {
+ content: "";
+}
+
+/* line 452, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cubes:before {
+ content: "";
+}
+
+/* line 453, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-behance:before {
+ content: "";
+}
+
+/* line 454, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-behance-square:before {
+ content: "";
+}
+
+/* line 455, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-steam:before {
+ content: "";
+}
+
+/* line 456, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-steam-square:before {
+ content: "";
+}
+
+/* line 457, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-recycle:before {
+ content: "";
+}
+
+/* line 458, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-automobile:before,
+.fa-car:before {
+ content: "";
+}
+
+/* line 460, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cab:before,
+.fa-taxi:before {
+ content: "";
+}
+
+/* line 462, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tree:before {
+ content: "";
+}
+
+/* line 463, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-spotify:before {
+ content: "";
+}
+
+/* line 464, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-deviantart:before {
+ content: "";
+}
+
+/* line 465, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-soundcloud:before {
+ content: "";
+}
+
+/* line 466, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-database:before {
+ content: "";
+}
+
+/* line 467, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-pdf-o:before {
+ content: "";
+}
+
+/* line 468, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-word-o:before {
+ content: "";
+}
+
+/* line 469, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-excel-o:before {
+ content: "";
+}
+
+/* line 470, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-powerpoint-o:before {
+ content: "";
+}
+
+/* line 471, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-photo-o:before,
+.fa-file-picture-o:before,
+.fa-file-image-o:before {
+ content: "";
+}
+
+/* line 474, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-zip-o:before,
+.fa-file-archive-o:before {
+ content: "";
+}
+
+/* line 476, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-sound-o:before,
+.fa-file-audio-o:before {
+ content: "";
+}
+
+/* line 478, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-movie-o:before,
+.fa-file-video-o:before {
+ content: "";
+}
+
+/* line 480, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-file-code-o:before {
+ content: "";
+}
+
+/* line 481, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-vine:before {
+ content: "";
+}
+
+/* line 482, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-codepen:before {
+ content: "";
+}
+
+/* line 483, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-jsfiddle:before {
+ content: "";
+}
+
+/* line 484, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-life-bouy:before,
+.fa-life-buoy:before,
+.fa-life-saver:before,
+.fa-support:before,
+.fa-life-ring:before {
+ content: "";
+}
+
+/* line 489, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-circle-o-notch:before {
+ content: "";
+}
+
+/* line 490, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ra:before,
+.fa-resistance:before,
+.fa-rebel:before {
+ content: "";
+}
+
+/* line 493, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ge:before,
+.fa-empire:before {
+ content: "";
+}
+
+/* line 495, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-git-square:before {
+ content: "";
+}
+
+/* line 496, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-git:before {
+ content: "";
+}
+
+/* line 497, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-y-combinator-square:before,
+.fa-yc-square:before,
+.fa-hacker-news:before {
+ content: "";
+}
+
+/* line 500, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tencent-weibo:before {
+ content: "";
+}
+
+/* line 501, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-qq:before {
+ content: "";
+}
+
+/* line 502, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wechat:before,
+.fa-weixin:before {
+ content: "";
+}
+
+/* line 504, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-send:before,
+.fa-paper-plane:before {
+ content: "";
+}
+
+/* line 506, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-send-o:before,
+.fa-paper-plane-o:before {
+ content: "";
+}
+
+/* line 508, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-history:before {
+ content: "";
+}
+
+/* line 509, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-circle-thin:before {
+ content: "";
+}
+
+/* line 510, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-header:before {
+ content: "";
+}
+
+/* line 511, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-paragraph:before {
+ content: "";
+}
+
+/* line 512, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sliders:before {
+ content: "";
+}
+
+/* line 513, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-share-alt:before {
+ content: "";
+}
+
+/* line 514, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-share-alt-square:before {
+ content: "";
+}
+
+/* line 515, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bomb:before {
+ content: "";
+}
+
+/* line 516, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-soccer-ball-o:before,
+.fa-futbol-o:before {
+ content: "";
+}
+
+/* line 518, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tty:before {
+ content: "";
+}
+
+/* line 519, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-binoculars:before {
+ content: "";
+}
+
+/* line 520, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-plug:before {
+ content: "";
+}
+
+/* line 521, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-slideshare:before {
+ content: "";
+}
+
+/* line 522, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-twitch:before {
+ content: "";
+}
+
+/* line 523, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-yelp:before {
+ content: "";
+}
+
+/* line 524, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-newspaper-o:before {
+ content: "";
+}
+
+/* line 525, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wifi:before {
+ content: "";
+}
+
+/* line 526, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calculator:before {
+ content: "";
+}
+
+/* line 527, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-paypal:before {
+ content: "";
+}
+
+/* line 528, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-google-wallet:before {
+ content: "";
+}
+
+/* line 529, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-visa:before {
+ content: "";
+}
+
+/* line 530, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-mastercard:before {
+ content: "";
+}
+
+/* line 531, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-discover:before {
+ content: "";
+}
+
+/* line 532, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-amex:before {
+ content: "";
+}
+
+/* line 533, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-paypal:before {
+ content: "";
+}
+
+/* line 534, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-stripe:before {
+ content: "";
+}
+
+/* line 535, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bell-slash:before {
+ content: "";
+}
+
+/* line 536, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bell-slash-o:before {
+ content: "";
+}
+
+/* line 537, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-trash:before {
+ content: "";
+}
+
+/* line 538, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-copyright:before {
+ content: "";
+}
+
+/* line 539, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-at:before {
+ content: "";
+}
+
+/* line 540, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-eyedropper:before {
+ content: "";
+}
+
+/* line 541, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-paint-brush:before {
+ content: "";
+}
+
+/* line 542, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-birthday-cake:before {
+ content: "";
+}
+
+/* line 543, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-area-chart:before {
+ content: "";
+}
+
+/* line 544, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pie-chart:before {
+ content: "";
+}
+
+/* line 545, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-line-chart:before {
+ content: "";
+}
+
+/* line 546, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-lastfm:before {
+ content: "";
+}
+
+/* line 547, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-lastfm-square:before {
+ content: "";
+}
+
+/* line 548, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-toggle-off:before {
+ content: "";
+}
+
+/* line 549, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-toggle-on:before {
+ content: "";
+}
+
+/* line 550, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bicycle:before {
+ content: "";
+}
+
+/* line 551, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bus:before {
+ content: "";
+}
+
+/* line 552, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ioxhost:before {
+ content: "";
+}
+
+/* line 553, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-angellist:before {
+ content: "";
+}
+
+/* line 554, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc:before {
+ content: "";
+}
+
+/* line 555, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shekel:before,
+.fa-sheqel:before,
+.fa-ils:before {
+ content: "";
+}
+
+/* line 558, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-meanpath:before {
+ content: "";
+}
+
+/* line 559, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-buysellads:before {
+ content: "";
+}
+
+/* line 560, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-connectdevelop:before {
+ content: "";
+}
+
+/* line 561, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-dashcube:before {
+ content: "";
+}
+
+/* line 562, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-forumbee:before {
+ content: "";
+}
+
+/* line 563, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-leanpub:before {
+ content: "";
+}
+
+/* line 564, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sellsy:before {
+ content: "";
+}
+
+/* line 565, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shirtsinbulk:before {
+ content: "";
+}
+
+/* line 566, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-simplybuilt:before {
+ content: "";
+}
+
+/* line 567, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-skyatlas:before {
+ content: "";
+}
+
+/* line 568, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cart-plus:before {
+ content: "";
+}
+
+/* line 569, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cart-arrow-down:before {
+ content: "";
+}
+
+/* line 570, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-diamond:before {
+ content: "";
+}
+
+/* line 571, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ship:before {
+ content: "";
+}
+
+/* line 572, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-secret:before {
+ content: "";
+}
+
+/* line 573, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-motorcycle:before {
+ content: "";
+}
+
+/* line 574, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-street-view:before {
+ content: "";
+}
+
+/* line 575, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-heartbeat:before {
+ content: "";
+}
+
+/* line 576, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-venus:before {
+ content: "";
+}
+
+/* line 577, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mars:before {
+ content: "";
+}
+
+/* line 578, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mercury:before {
+ content: "";
+}
+
+/* line 579, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-intersex:before,
+.fa-transgender:before {
+ content: "";
+}
+
+/* line 581, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-transgender-alt:before {
+ content: "";
+}
+
+/* line 582, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-venus-double:before {
+ content: "";
+}
+
+/* line 583, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mars-double:before {
+ content: "";
+}
+
+/* line 584, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-venus-mars:before {
+ content: "";
+}
+
+/* line 585, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mars-stroke:before {
+ content: "";
+}
+
+/* line 586, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mars-stroke-v:before {
+ content: "";
+}
+
+/* line 587, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mars-stroke-h:before {
+ content: "";
+}
+
+/* line 588, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-neuter:before {
+ content: "";
+}
+
+/* line 589, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-genderless:before {
+ content: "";
+}
+
+/* line 590, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-facebook-official:before {
+ content: "";
+}
+
+/* line 591, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pinterest-p:before {
+ content: "";
+}
+
+/* line 592, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-whatsapp:before {
+ content: "";
+}
+
+/* line 593, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-server:before {
+ content: "";
+}
+
+/* line 594, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-plus:before {
+ content: "";
+}
+
+/* line 595, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-times:before {
+ content: "";
+}
+
+/* line 596, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hotel:before,
+.fa-bed:before {
+ content: "";
+}
+
+/* line 598, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-viacoin:before {
+ content: "";
+}
+
+/* line 599, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-train:before {
+ content: "";
+}
+
+/* line 600, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-subway:before {
+ content: "";
+}
+
+/* line 601, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-medium:before {
+ content: "";
+}
+
+/* line 602, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-yc:before,
+.fa-y-combinator:before {
+ content: "";
+}
+
+/* line 604, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-optin-monster:before {
+ content: "";
+}
+
+/* line 605, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-opencart:before {
+ content: "";
+}
+
+/* line 606, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-expeditedssl:before {
+ content: "";
+}
+
+/* line 607, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-battery-4:before,
+.fa-battery:before,
+.fa-battery-full:before {
+ content: "";
+}
+
+/* line 610, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-battery-3:before,
+.fa-battery-three-quarters:before {
+ content: "";
+}
+
+/* line 612, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-battery-2:before,
+.fa-battery-half:before {
+ content: "";
+}
+
+/* line 614, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-battery-1:before,
+.fa-battery-quarter:before {
+ content: "";
+}
+
+/* line 616, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-battery-0:before,
+.fa-battery-empty:before {
+ content: "";
+}
+
+/* line 618, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mouse-pointer:before {
+ content: "";
+}
+
+/* line 619, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-i-cursor:before {
+ content: "";
+}
+
+/* line 620, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-object-group:before {
+ content: "";
+}
+
+/* line 621, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-object-ungroup:before {
+ content: "";
+}
+
+/* line 622, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sticky-note:before {
+ content: "";
+}
+
+/* line 623, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-sticky-note-o:before {
+ content: "";
+}
+
+/* line 624, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-jcb:before {
+ content: "";
+}
+
+/* line 625, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-cc-diners-club:before {
+ content: "";
+}
+
+/* line 626, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-clone:before {
+ content: "";
+}
+
+/* line 627, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-balance-scale:before {
+ content: "";
+}
+
+/* line 628, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hourglass-o:before {
+ content: "";
+}
+
+/* line 629, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hourglass-1:before,
+.fa-hourglass-start:before {
+ content: "";
+}
+
+/* line 631, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hourglass-2:before,
+.fa-hourglass-half:before {
+ content: "";
+}
+
+/* line 633, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hourglass-3:before,
+.fa-hourglass-end:before {
+ content: "";
+}
+
+/* line 635, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hourglass:before {
+ content: "";
+}
+
+/* line 636, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-grab-o:before,
+.fa-hand-rock-o:before {
+ content: "";
+}
+
+/* line 638, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-stop-o:before,
+.fa-hand-paper-o:before {
+ content: "";
+}
+
+/* line 640, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-scissors-o:before {
+ content: "";
+}
+
+/* line 641, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-lizard-o:before {
+ content: "";
+}
+
+/* line 642, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-spock-o:before {
+ content: "";
+}
+
+/* line 643, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-pointer-o:before {
+ content: "";
+}
+
+/* line 644, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hand-peace-o:before {
+ content: "";
+}
+
+/* line 645, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-trademark:before {
+ content: "";
+}
+
+/* line 646, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-registered:before {
+ content: "";
+}
+
+/* line 647, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-creative-commons:before {
+ content: "";
+}
+
+/* line 648, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gg:before {
+ content: "";
+}
+
+/* line 649, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gg-circle:before {
+ content: "";
+}
+
+/* line 650, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tripadvisor:before {
+ content: "";
+}
+
+/* line 651, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-odnoklassniki:before {
+ content: "";
+}
+
+/* line 652, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-odnoklassniki-square:before {
+ content: "";
+}
+
+/* line 653, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-get-pocket:before {
+ content: "";
+}
+
+/* line 654, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wikipedia-w:before {
+ content: "";
+}
+
+/* line 655, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-safari:before {
+ content: "";
+}
+
+/* line 656, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-chrome:before {
+ content: "";
+}
+
+/* line 657, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-firefox:before {
+ content: "";
+}
+
+/* line 658, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-opera:before {
+ content: "";
+}
+
+/* line 659, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-internet-explorer:before {
+ content: "";
+}
+
+/* line 660, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-tv:before,
+.fa-television:before {
+ content: "";
+}
+
+/* line 662, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-contao:before {
+ content: "";
+}
+
+/* line 663, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-500px:before {
+ content: "";
+}
+
+/* line 664, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-amazon:before {
+ content: "";
+}
+
+/* line 665, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calendar-plus-o:before {
+ content: "";
+}
+
+/* line 666, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calendar-minus-o:before {
+ content: "";
+}
+
+/* line 667, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calendar-times-o:before {
+ content: "";
+}
+
+/* line 668, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-calendar-check-o:before {
+ content: "";
+}
+
+/* line 669, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-industry:before {
+ content: "";
+}
+
+/* line 670, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-map-pin:before {
+ content: "";
+}
+
+/* line 671, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-map-signs:before {
+ content: "";
+}
+
+/* line 672, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-map-o:before {
+ content: "";
+}
+
+/* line 673, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-map:before {
+ content: "";
+}
+
+/* line 674, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-commenting:before {
+ content: "";
+}
+
+/* line 675, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-commenting-o:before {
+ content: "";
+}
+
+/* line 676, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-houzz:before {
+ content: "";
+}
+
+/* line 677, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-vimeo:before {
+ content: "";
+}
+
+/* line 678, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-black-tie:before {
+ content: "";
+}
+
+/* line 679, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fonticons:before {
+ content: "";
+}
+
+/* line 680, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-reddit-alien:before {
+ content: "";
+}
+
+/* line 681, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-edge:before {
+ content: "";
+}
+
+/* line 682, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-credit-card-alt:before {
+ content: "";
+}
+
+/* line 683, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-codiepie:before {
+ content: "";
+}
+
+/* line 684, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-modx:before {
+ content: "";
+}
+
+/* line 685, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fort-awesome:before {
+ content: "";
+}
+
+/* line 686, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-usb:before {
+ content: "";
+}
+
+/* line 687, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-product-hunt:before {
+ content: "";
+}
+
+/* line 688, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-mixcloud:before {
+ content: "";
+}
+
+/* line 689, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-scribd:before {
+ content: "";
+}
+
+/* line 690, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pause-circle:before {
+ content: "";
+}
+
+/* line 691, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pause-circle-o:before {
+ content: "";
+}
+
+/* line 692, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stop-circle:before {
+ content: "";
+}
+
+/* line 693, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-stop-circle-o:before {
+ content: "";
+}
+
+/* line 694, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shopping-bag:before {
+ content: "";
+}
+
+/* line 695, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shopping-basket:before {
+ content: "";
+}
+
+/* line 696, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-hashtag:before {
+ content: "";
+}
+
+/* line 697, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bluetooth:before {
+ content: "";
+}
+
+/* line 698, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bluetooth-b:before {
+ content: "";
+}
+
+/* line 699, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-percent:before {
+ content: "";
+}
+
+/* line 700, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-gitlab:before {
+ content: "";
+}
+
+/* line 701, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wpbeginner:before {
+ content: "";
+}
+
+/* line 702, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wpforms:before {
+ content: "";
+}
+
+/* line 703, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-envira:before {
+ content: "";
+}
+
+/* line 704, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-universal-access:before {
+ content: "";
+}
+
+/* line 705, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wheelchair-alt:before {
+ content: "";
+}
+
+/* line 706, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-question-circle-o:before {
+ content: "";
+}
+
+/* line 707, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-blind:before {
+ content: "";
+}
+
+/* line 708, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-audio-description:before {
+ content: "";
+}
+
+/* line 709, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-volume-control-phone:before {
+ content: "";
+}
+
+/* line 710, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-braille:before {
+ content: "";
+}
+
+/* line 711, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-assistive-listening-systems:before {
+ content: "";
+}
+
+/* line 712, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-asl-interpreting:before,
+.fa-american-sign-language-interpreting:before {
+ content: "";
+}
+
+/* line 714, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-deafness:before,
+.fa-hard-of-hearing:before,
+.fa-deaf:before {
+ content: "";
+}
+
+/* line 717, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-glide:before {
+ content: "";
+}
+
+/* line 718, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-glide-g:before {
+ content: "";
+}
+
+/* line 719, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-signing:before,
+.fa-sign-language:before {
+ content: "";
+}
+
+/* line 721, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-low-vision:before {
+ content: "";
+}
+
+/* line 722, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-viadeo:before {
+ content: "";
+}
+
+/* line 723, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-viadeo-square:before {
+ content: "";
+}
+
+/* line 724, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-snapchat:before {
+ content: "";
+}
+
+/* line 725, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-snapchat-ghost:before {
+ content: "";
+}
+
+/* line 726, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-snapchat-square:before {
+ content: "";
+}
+
+/* line 727, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-pied-piper:before {
+ content: "";
+}
+
+/* line 728, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-first-order:before {
+ content: "";
+}
+
+/* line 729, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-yoast:before {
+ content: "";
+}
+
+/* line 730, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-themeisle:before {
+ content: "";
+}
+
+/* line 731, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-google-plus-circle:before,
+.fa-google-plus-official:before {
+ content: "";
+}
+
+/* line 733, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-fa:before,
+.fa-font-awesome:before {
+ content: "";
+}
+
+/* line 735, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-handshake-o:before {
+ content: "";
+}
+
+/* line 736, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-envelope-open:before {
+ content: "";
+}
+
+/* line 737, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-envelope-open-o:before {
+ content: "";
+}
+
+/* line 738, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-linode:before {
+ content: "";
+}
+
+/* line 739, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-address-book:before {
+ content: "";
+}
+
+/* line 740, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-address-book-o:before {
+ content: "";
+}
+
+/* line 741, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-vcard:before,
+.fa-address-card:before {
+ content: "";
+}
+
+/* line 743, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-vcard-o:before,
+.fa-address-card-o:before {
+ content: "";
+}
+
+/* line 745, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-circle:before {
+ content: "";
+}
+
+/* line 746, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-circle-o:before {
+ content: "";
+}
+
+/* line 747, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-user-o:before {
+ content: "";
+}
+
+/* line 748, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-id-badge:before {
+ content: "";
+}
+
+/* line 749, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-drivers-license:before,
+.fa-id-card:before {
+ content: "";
+}
+
+/* line 751, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-drivers-license-o:before,
+.fa-id-card-o:before {
+ content: "";
+}
+
+/* line 753, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-quora:before {
+ content: "";
+}
+
+/* line 754, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-free-code-camp:before {
+ content: "";
+}
+
+/* line 755, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-telegram:before {
+ content: "";
+}
+
+/* line 756, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thermometer-4:before,
+.fa-thermometer:before,
+.fa-thermometer-full:before {
+ content: "";
+}
+
+/* line 759, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thermometer-3:before,
+.fa-thermometer-three-quarters:before {
+ content: "";
+}
+
+/* line 761, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thermometer-2:before,
+.fa-thermometer-half:before {
+ content: "";
+}
+
+/* line 763, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thermometer-1:before,
+.fa-thermometer-quarter:before {
+ content: "";
+}
+
+/* line 765, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-thermometer-0:before,
+.fa-thermometer-empty:before {
+ content: "";
+}
+
+/* line 767, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-shower:before {
+ content: "";
+}
+
+/* line 768, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bathtub:before,
+.fa-s15:before,
+.fa-bath:before {
+ content: "";
+}
+
+/* line 771, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-podcast:before {
+ content: "";
+}
+
+/* line 772, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-window-maximize:before {
+ content: "";
+}
+
+/* line 773, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-window-minimize:before {
+ content: "";
+}
+
+/* line 774, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-window-restore:before {
+ content: "";
+}
+
+/* line 775, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-times-rectangle:before,
+.fa-window-close:before {
+ content: "";
+}
+
+/* line 777, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-times-rectangle-o:before,
+.fa-window-close-o:before {
+ content: "";
+}
+
+/* line 779, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-bandcamp:before {
+ content: "";
+}
+
+/* line 780, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-grav:before {
+ content: "";
+}
+
+/* line 781, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-etsy:before {
+ content: "";
+}
+
+/* line 782, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-imdb:before {
+ content: "";
+}
+
+/* line 783, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-ravelry:before {
+ content: "";
+}
+
+/* line 784, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-eercast:before {
+ content: "";
+}
+
+/* line 785, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-microchip:before {
+ content: "";
+}
+
+/* line 786, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-snowflake-o:before {
+ content: "";
+}
+
+/* line 787, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-superpowers:before {
+ content: "";
+}
+
+/* line 788, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-wpexplorer:before {
+ content: "";
+}
+
+/* line 789, ../../node_modules/font-awesome/scss/_icons.scss */
+.fa-meetup:before {
+ content: "";
+}
+
+/* line 4, ../../node_modules/font-awesome/scss/_screen-reader.scss */
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ border: 0;
+}
+
+/* line 51, ../../node_modules/font-awesome/scss/_mixins.scss */
+.sr-only-focusable:active, .sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ clip: auto;
+}
+
+/* line 3, fonts.scss */
+.font-light {
+ font-weight: 300 !important;
+}
+
+/* line 6, fonts.scss */
+.font-regular {
+ font-weight: 400 !important;
+}
+
+/* line 9, fonts.scss */
+.font-medium {
+ font-weight: 500 !important;
+}
+
+/* line 12, fonts.scss */
+.font-semibold {
+ font-weight: 600 !important;
+}
+
+/* line 15, fonts.scss */
+.font-bold {
+ font-weight: 700 !important;
+}
+
+/* line 18, fonts.scss */
+.font-extrabold {
+ font-weight: 800 !important;
+}
+
+/* line 21, fonts.scss */
+.font-normal {
+ font-style: normal !important;
+}
+
+/* line 24, fonts.scss */
+.font-italic {
+ font-style: italic !important;
+}
+
+/* line 29, fonts.scss */
+.text-right {
+ text-align: right !important;
+}
+
+/* line 32, fonts.scss */
+.text-center {
+ text-align: center !important;
+}
+
+/* line 35, fonts.scss */
+.text-left {
+ text-align: left !important;
+}
+
+/* line 39, fonts.scss */
+.text-white {
+ color: white !important;
+}
+
+/* line 42, fonts.scss */
+.text-black {
+ color: black !important;
+}
+
+/* line 45, fonts.scss */
+.text-red {
+ color: #bf0f3d !important;
+}
+
+/* line 48, fonts.scss */
+.text-grey {
+ color: #ccc !important;
+}
+
+/* line 51, fonts.scss */
+.text-light-grey {
+ color: #f2f2f2 !important;
+}
+
+/* line 56, fonts.scss */
+.text-upper {
+ text-transform: uppercase !important;
+}
+
+/* line 3, forms.scss */
+input, button {
+ border: none;
+ border-radius: 3px;
+ margin: 5px 0;
+ -webkit-appearance: none;
+}
+/* line 8, forms.scss */
+input::-ms-clear, button::-ms-clear {
+ display: none;
+}
+/* line 11, forms.scss */
+input:focus, button:focus {
+ outline: none;
+}
+/* line 12, forms.scss */
+input::-moz-focus-inner, button::-moz-focus-inner {
+ border: 0;
+}
+
+/* line 15, forms.scss */
+input[type=text],
+input[type=password] {
+ border: 1px solid #ccc;
+ color: #ccc;
+ padding: 5px 20px;
+ width: 100%;
+ text-align: left;
+ box-sizing: border-box;
+}
+/* line 24, forms.scss */
+input[type=text].input-login,
+input[type=password].input-login {
+ border: 1px solid #bf0f3d;
+ border-radius: 5px;
+ color: black;
+}
+
+/* line 31, forms.scss */
+input[type=button],
+input[type=submit],
+button,
+.button {
+ padding: 5px 20px;
+ margin: 10px;
+ border-radius: 4px;
+ cursor: pointer;
+ text-align: center;
+ font-size: 0.625rem;
+ text-transform: uppercase;
+ color: white;
+}
+/* line 44, forms.scss */
+input[type=button].big,
+input[type=submit].big,
+button.big,
+.button.big {
+ padding: 10px 25px;
+}
+/* line 48, forms.scss */
+input[type=button].confirm,
+input[type=submit].confirm,
+button.confirm,
+.button.confirm {
+ background: #bf0f3d;
+}
+/* line 51, forms.scss */
+input[type=button].discard,
+input[type=submit].discard,
+button.discard,
+.button.discard {
+ background: black;
+}
+/* line 54, forms.scss */
+input[type=button].grey,
+input[type=submit].grey,
+button.grey,
+.button.grey {
+ background: #2f2f2f;
+}
+/* line 57, forms.scss */
+input[type=button].dotted,
+input[type=submit].dotted,
+button.dotted,
+.button.dotted {
+ background: white;
+ color: #2f2f2f;
+ border: 2px dotted #2f2f2f;
+ border-radius: 6px;
+ padding: 5px 15px;
+ margin: 5px;
+}
+
+/* line 12, main.scss */
+body {
+ font-family: 'Montserrat';
+ font-weight: 600;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ overflow-y: auto;
+ font-size: 0.75rem;
+ font-weight: 400;
+}
+
+/* line 23, main.scss */
+p,
+label {
+ margin: 0;
+}
+
+/* line 28, main.scss */
+a {
+ color: white;
+ text-decoration: none;
+ transition: .4s;
+ outline: none;
+}
+/* line 33, main.scss */
+a:active, a:visited, a:hover, a:focus {
+ outline: none;
+ color: white;
+ text-decoration: none;
+}
+/* line 41, main.scss */
+a:hover {
+ color: #ccc;
+}
+
+/* line 46, main.scss */
+.content {
+ margin-top: 70px;
+ width: 100%;
+ text-align: center;
+}
+/* line 51, main.scss */
+.content .cloud {
+ position: relative;
+ width: 80%;
+ font-size: 0.75rem;
+ font-weight: 500;
+ padding: 10px;
+ margin: 10px 0;
+ border-radius: 8px;
+ line-height: 18px;
+ color: #2f2f2f;
+ text-align: left;
+}
+/* line 63, main.scss */
+.content .cloud img {
+ width: 100%;
+ margin: 8px 0;
+ cursor: pointer;
+ border-radius: 5px;
+}
+/* line 70, main.scss */
+.content .cloud.left {
+ left: 15px;
+ background: #f6e7ea;
+ border: 1px solid #c8bcbe;
+}
+/* line 74, main.scss */
+.content .cloud.left:before {
+ content: '';
+ border: solid 8px transparent;
+ border-right-color: #c8bcbe;
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translate(-100%, -50%);
+}
+/* line 83, main.scss */
+.content .cloud.left:after {
+ content: '';
+ border: solid 7px transparent;
+ border-right-color: #f6e7ea;
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translate(-100%, -50%);
+}
+/* line 94, main.scss */
+.content .cloud.right {
+ left: calc(20% - 38px);
+ background: #d4eeed;
+ border: 1px solid #b0c8c6;
+}
+/* line 98, main.scss */
+.content .cloud.right:before {
+ content: '';
+ border: solid 8px transparent;
+ border-left-color: #b0c8c6;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translate(100%, -50%);
+}
+/* line 107, main.scss */
+.content .cloud.right:after {
+ content: '';
+ border: solid 7px transparent;
+ border-left-color: #d4eeed;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translate(100%, -50%);
+}
+/* line 118, main.scss */
+.content .cloud .title {
+ font-weight: bold;
+}
+/* line 124, main.scss */
+.content .cloud .long-text .toggle {
+ color: #ccc;
+ margin: 5px 0;
+}
+/* line 128, main.scss */
+.content .cloud .long-text .text-content {
+ display: none;
+}
+/* line 134, main.scss */
+.content .actions {
+ padding: 0 20vw 0 50px;
+ text-align: center;
+}
+/* line 138, main.scss */
+.content .actions .goto {
+ margin: 5px 10px;
+}
+
+/* line 147, main.scss */
+.header {
+ position: fixed;
+ height: 50px;
+ width: 100%;
+ left: 0;
+ top: 0;
+ background: black;
+ z-index: 10;
+}
+/* line 156, main.scss */
+.header .logo {
+ height: 25px;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+}
+/* line 164, main.scss */
+.header .menu {
+ height: 20px;
+ position: absolute;
+ left: 20px;
+ top: 50%;
+ transform: translateY(-50%);
+}
diff --git a/device/index.php b/device/index.php
new file mode 100644
index 0000000..9f32aba
--- /dev/null
+++ b/device/index.php
@@ -0,0 +1,31 @@
+
+
+
+
+
+ COZe Training
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/device/script.js b/device/script.js
new file mode 100644
index 0000000..82d5558
--- /dev/null
+++ b/device/script.js
@@ -0,0 +1,106 @@
+$(document).ready(()=>{
+
+ const baseUrl = `http://${window.location.hostname}`;
+ const canVibrate = "vibrate" in navigator || "mozVibrate" in navigator;
+ if (canVibrate && !("vibrate" in navigator)){navigator.vibrate = navigator.mozVibrate;}
+
+ const content = $('.content');
+
+ const urlString = window.location.href;
+ const url = new URL(urlString);
+ const sid = url.searchParams.get("sid");
+
+ $.getJSON( baseUrl + "/apis/getMessages.php", {
+ sid: sid
+ }).done( (session)=> {
+ console.log(session);
+
+ if(session.enabled){
+ $.each(session.messages, (index,item)=>{
+ if(item.timer != session.start){
+ const now = Date.now() / 1000;
+ const timer = Date.parse(item.timer) / 1000;
+ const start = Date.parse(session.start) / 1000;
+
+ if(now > timer){
+ showCloud(item.title, [item.short_text, item.long_text], item.image, item.actions, session.messages);
+ } else {
+ const delay = (timer - now);
+ setTimeout( ()=>{
+ showCloud(item.title, [item.short_text, item.long_text], item.image, item.actions, session.messages);
+ },1000*delay);
+ }
+ }
+ });
+ }
+ });
+
+
+ function showCloud(title, text, img, actions, messages){
+
+ const image = img ? `
+
+ ${text[1]}
+ ` : '';
+
+ const cloud = $(`
+
${title}
+
${text[0]}
+ ${long_text}
+ ${image}
+
`);
+
+ cloud.find('.toggle').on('click', (e)=>{
+ const button = $(e.currentTarget);
+ const text = button.siblings('.text-content');
+ if(text.is(':visible')){
+ button.text('More...');
+ text.slideUp();
+ }else{
+ button.text('Less...');
+ text.slideDown();
+ }
+ });
+ content.append(cloud);
+
+ if(actions.length){
+
+ const actionsContainer = $('');
+ $.each(actions, (index, value)=>{
+ const button = $(``);
+
+ button.on('click', (e)=>{
+ const goto = $(e.currentTarget);
+ const messageId = goto.data('goto');
+ const fullMessage = messages.filter( (m)=> m.id == messageId);
+ showCloud(fullMessage[0].title, [fullMessage[0].short_text, fullMessage[0].long_text], fullMessage[0].image, fullMessage[0].actions, messages);
+ });
+
+ actionsContainer.append(button);
+ });
+
+ content.append(actionsContainer);
+ }
+
+ scrollBottom();
+ notify(false);
+ }
+
+ function scrollBottom(){
+ $('html, body').stop().animate({
+ scrollTop: $('.cloud').last().offset().top
+ }, 1000);
+ }
+
+ function notify(vibrate){
+ if(vibrate){ navigator.vibrate(500); }
+ $('#notify1')[0].play();
+ }
+
+});
+
+
+
+
+
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_animated.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_animated.scssc
new file mode 100644
index 0000000..533f6b0
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_animated.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_bordered-pulled.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_bordered-pulled.scssc
new file mode 100644
index 0000000..e17d340
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_bordered-pulled.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_core.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_core.scssc
new file mode 100644
index 0000000..c3ea586
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_core.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_fixed-width.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_fixed-width.scssc
new file mode 100644
index 0000000..1146cf3
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_fixed-width.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_icons.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_icons.scssc
new file mode 100644
index 0000000..b7ff18b
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_icons.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_larger.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_larger.scssc
new file mode 100644
index 0000000..44cbb77
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_larger.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_list.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_list.scssc
new file mode 100644
index 0000000..30f5330
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_list.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_mixins.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_mixins.scssc
new file mode 100644
index 0000000..d37125c
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_mixins.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_path.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_path.scssc
new file mode 100644
index 0000000..e02ac26
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_path.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_rotated-flipped.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_rotated-flipped.scssc
new file mode 100644
index 0000000..1a0b9c2
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_rotated-flipped.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_screen-reader.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_screen-reader.scssc
new file mode 100644
index 0000000..8cb8e19
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_screen-reader.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_stacked.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_stacked.scssc
new file mode 100644
index 0000000..dbc5f4e
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_stacked.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_variables.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_variables.scssc
new file mode 100644
index 0000000..05c2bd1
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/_variables.scssc differ
diff --git a/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/font-awesome.scssc b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/font-awesome.scssc
new file mode 100644
index 0000000..f0ab811
Binary files /dev/null and b/device/scss/.sass-cache/724973e1aef6c4e325feabb647936dc06791938c/font-awesome.scssc differ
diff --git a/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/fonts.scssc b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/fonts.scssc
new file mode 100644
index 0000000..587a253
Binary files /dev/null and b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/fonts.scssc differ
diff --git a/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/forms.scssc b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/forms.scssc
new file mode 100644
index 0000000..b7cb1f6
Binary files /dev/null and b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/forms.scssc differ
diff --git a/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/main.scssc b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/main.scssc
new file mode 100644
index 0000000..593e9fd
Binary files /dev/null and b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/main.scssc differ
diff --git a/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/variables.scssc b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/variables.scssc
new file mode 100644
index 0000000..2f19bdd
Binary files /dev/null and b/device/scss/.sass-cache/c2a2d753fafd8e74a4fe9ef8896af2c359d3d90a/variables.scssc differ
diff --git a/device/scss/fonts.scss b/device/scss/fonts.scss
new file mode 100644
index 0000000..a445df6
--- /dev/null
+++ b/device/scss/fonts.scss
@@ -0,0 +1,58 @@
+
+
+.font-light{
+ font-weight: 300 !important;
+}
+.font-regular{
+ font-weight: 400 !important;
+}
+.font-medium{
+ font-weight: 500 !important;
+}
+.font-semibold{
+ font-weight: 600 !important;
+}
+.font-bold{
+ font-weight: 700 !important;
+}
+.font-extrabold{
+ font-weight: 800 !important;
+}
+.font-normal {
+ font-style: normal !important;
+}
+.font-italic {
+ font-style: italic !important;
+}
+
+
+.text-right{
+ text-align: right !important;
+}
+.text-center{
+ text-align: center !important;
+}
+.text-left{
+ text-align: left !important;
+}
+
+.text-white{
+ color: white !important;
+}
+.text-black{
+ color: black !important;
+}
+.text-red{
+ color: $red !important;
+}
+.text-grey{
+ color: $grey !important;
+}
+.text-light-grey{
+ color: $light-grey !important;
+}
+
+
+.text-upper{
+ text-transform: uppercase !important;
+}
diff --git a/device/scss/forms.scss b/device/scss/forms.scss
new file mode 100644
index 0000000..38f1504
--- /dev/null
+++ b/device/scss/forms.scss
@@ -0,0 +1,66 @@
+
+
+input,button{
+ border: none;
+ border-radius: 3px;
+ margin: 5px 0;
+ -webkit-appearance: none;
+ &::-ms-clear {
+ display: none;
+ }
+ &:focus {outline:none;}
+ &::-moz-focus-inner {border:0;}
+}
+
+input[type=text],
+input[type=password]{
+ border: 1px solid $grey;
+ color: $grey;
+ padding: 5px 20px;
+ width: 100%;
+ text-align: left;
+ box-sizing: border-box;
+
+ &.input-login{
+ border: 1px solid $red;
+ border-radius: 5px;
+ color: black;
+ }
+}
+
+input[type=button],
+input[type=submit],
+button,
+.button{
+ padding: 5px 20px;
+ margin: 10px;
+ border-radius: 4px;
+ cursor: pointer;
+ text-align: center;
+ font-size: $font-10;
+ text-transform: uppercase;
+ color: white;
+
+ &.big{
+ padding: 10px 25px;
+ }
+
+ &.confirm{
+ background: $red;
+ }
+ &.discard{
+ background: black;
+ }
+ &.grey{
+ background: $dark-grey;
+ }
+ &.dotted{
+ background: white;
+ color: $dark-grey;
+ border: 2px dotted $dark-grey;
+ border-radius: 6px;
+ padding: 5px 15px;
+ margin: 5px;
+ }
+}
+
diff --git a/device/scss/main.scss b/device/scss/main.scss
new file mode 100644
index 0000000..99518ca
--- /dev/null
+++ b/device/scss/main.scss
@@ -0,0 +1,171 @@
+@charset "UTF-8";
+@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');
+
+@import "variables";
+
+@import "../../node_modules/font-awesome/scss/font-awesome";
+
+@import "fonts";
+@import "forms";
+
+
+body{
+ font-family: 'Montserrat';
+ font-weight: 600;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ overflow-y: auto;
+ font-size: $font-12;
+ font-weight: 400;
+}
+
+p,
+label{
+ margin: 0;
+}
+
+a{
+ color: white;
+ text-decoration: none;
+ transition: .4s;
+ outline: none;
+ &:active,
+ &:visited,
+ &:hover,
+ &:focus{
+ outline: none;
+ color: white;
+ text-decoration: none;
+ }
+ &:hover{
+ color: $grey;
+ }
+}
+
+.content{
+ margin-top: 70px;
+ width: 100%;
+ text-align: center;
+
+ .cloud{
+ position: relative;
+ width: 80%;
+ font-size: $font-12;
+ font-weight: 500;
+ padding: 10px;
+ margin: 10px 0;
+ border-radius: 8px;
+ line-height: 18px;
+ color: $dark-grey;
+ text-align: left;
+
+ img{
+ width: 100%;
+ margin: 8px 0;
+ cursor: pointer;
+ border-radius: 5px;
+ }
+
+ &.left{
+ left: 15px;
+ background: $pink;
+ border: 1px solid $dark-pink;
+ &:before{
+ content: '';
+ border: solid 8px transparent;
+ border-right-color: $dark-pink;
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translate(-100%, -50%);
+ }
+ &:after{
+ content: '';
+ border: solid 7px transparent;
+ border-right-color: $pink;
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translate(-100%, -50%);
+ }
+ }
+
+ &.right{
+ left: calc(20% - 38px);
+ background: $azure;
+ border: 1px solid $dark-azure;
+ &:before{
+ content: '';
+ border: solid 8px transparent;
+ border-left-color: $dark-azure;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translate(100%, -50%);
+ }
+ &:after{
+ content: '';
+ border: solid 7px transparent;
+ border-left-color: $azure;
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translate(100%, -50%);
+ }
+ }
+
+ .title{
+ font-weight: bold;
+ }
+
+ .long-text{
+
+ .toggle{
+ color: $grey;
+ margin: 5px 0;
+ }
+ .text-content{
+ display: none;
+ }
+ }
+ }
+
+ .actions{
+ padding: 0 20vw 0 50px;
+ text-align: center;
+
+ .goto{
+ margin: 5px 10px;
+ }
+ }
+
+}
+
+
+
+.header{
+ position: fixed;
+ height: 50px;
+ width: 100%;
+ left: 0;
+ top: 0;
+ background: black;
+ z-index: 10;
+
+ .logo{
+ height: 25px;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ }
+
+ .menu{
+ height: 20px;
+ position: absolute;
+ left: 20px;
+ top: 50%;
+ transform: translateY(-50%);
+ }
+}
diff --git a/device/scss/sass.sh b/device/scss/sass.sh
new file mode 100755
index 0000000..ad095f5
--- /dev/null
+++ b/device/scss/sass.sh
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+# input folder
+src=""
+# input file
+src+="main.scss"
+
+# output folders
+dest="../css/"
+# output filename
+dev=$dest"styles.css"
+prod=$dest"styles.min.css"
+custom=$dest"styles.custom.css"
+
+#help message
+usage="
+Usage:\n
+sass.sh [environment|watch-mode] [watch-mode|other-switches]\n\n
+Examples:\n
+1) watch mode with develop environment presets\n
+./sass.sh dev --watch\n
+---\n
+2) 1 time compiling for production\n
+./sass.sh prod\n
+---\n\n
+to modify input/output paths edit sass.sh\n
+"
+
+# check for output directories
+if [[ ! -e $dest ]]; then
+ mkdir -p $dest
+elif [[ ! -d $dest ]]; then
+ echo "$dest already exists but is not a directory." 1>&2
+fi
+
+# don't edit below this line
+if (( $# == 0 )); then
+ echo -e $usage
+ exit
+else
+ case $1 in
+ --h*|--\? )
+ echo -e $usage
+ exit
+ ;;
+ "dev" )
+ echo "compiling for developement"
+ sass $2 $src:$dev --line-numbers --sourcemap=none --style expanded ${@:3}
+ exit
+ ;;
+ "prod"|"min" )
+ echo "compiling for production"
+ sass $2 $src:$prod --sourcemap=none --style compressed ${@:3}
+ exit
+ ;;
+ --w* )
+ echo "compiling with given switches in --watch mode"
+ sass $1 $src:$custom ${@:2}
+ exit
+ ;;
+ * )
+ echo "compiling with given switches"
+ sass $src:$custom ${@:1}
+ exit
+ ;;
+ esac
+ echo -e $usage
+fi
diff --git a/device/scss/variables.scss b/device/scss/variables.scss
new file mode 100644
index 0000000..9c19fc1
--- /dev/null
+++ b/device/scss/variables.scss
@@ -0,0 +1,62 @@
+// Bootstrap Settings
+$grid-columns: 12;
+$grid-gutter-width: 20px;
+
+$grid-breakpoints: (
+ xs: 0, // Mobile Portrait
+ sm: 768px, // Tablet Portrait
+ md: 1024px, // Tablet landscape/Small desktop
+ lg: 1280px, // Desktop
+ xl: 1600px, // Large desktop
+);
+
+
+$container-max-widths: (
+ sm: 708px,
+ md: 984px,
+ lg: 1240px,
+ xl: 1560px
+);
+
+$fa-font-path: '/fonts';
+
+$font-8: 0.5rem; /* 8px */
+$font-10: 0.625rem; /* 10px */
+$font-12: 0.75rem; /* 12px */
+$font-13: 0.812rem; /* 13px */
+$font-14: 0.875rem; /* 14px */
+$font-15: 0.937rem; /* 15px */
+$font-16: 1rem; /* 16px */
+$font-18: 1.125rem; /* 18px */
+$font-20: 1.25rem; /* 20px */
+$font-22: 1.375rem; /* 22px */
+$font-24: 1.5rem; /* 24px */
+$font-26: 1.625rem; /* 26px */
+$font-28: 1.75rem; /* 28px */
+$font-30: 1.875rem; /* 30px */
+$font-34: 2.125rem; /* 34px */
+$font-40: 2.5rem; /* 40px */
+$font-45: 2.812rem; /* 45px */
+$font-48: 3rem; /* 48px */
+$font-53: 3.312rem; /* 53px */
+$font-alert: 8rem; /* ?px */
+
+$icon: 'FontAwesome';
+
+@each $size in 8, 10, 12, 13, 14, 15, 16, 18, 20, 22, 24, 26, 28, 30, 34, 40, 45, 48, 53 {
+ .font-#{$size} {font-size: #{$size/16}rem !important;}
+}
+
+
+$alpha: rgba(255,255,255,0.6);
+$green: #4e984a;
+$light-green: #71986e;
+$red: #bf0f3d;
+$grey: #ccc;
+$light-grey: #f2f2f2;
+$dark-grey: #2f2f2f;
+
+$pink: #f6e7ea;
+$dark-pink: #c8bcbe;
+$azure: #d4eeed;
+$dark-azure: #b0c8c6;
diff --git a/header.php b/header.php
index ad75e42..77db4ad 100755
--- a/header.php
+++ b/header.php
@@ -5,8 +5,8 @@
diff --git a/images/upload/20180401201539.jpg b/images/upload/20180401201539.jpg
new file mode 100644
index 0000000..4fa49d7
Binary files /dev/null and b/images/upload/20180401201539.jpg differ
diff --git a/images/upload/20180402082649.jpg b/images/upload/20180402082649.jpg
new file mode 100644
index 0000000..9ef40c7
Binary files /dev/null and b/images/upload/20180402082649.jpg differ
diff --git a/js/scripts.js b/js/scripts.js
index 4043035..37b6c54 100644
--- a/js/scripts.js
+++ b/js/scripts.js
@@ -1,7 +1,7 @@
$(document).ready(function(){
- $(".cbOpen").colorbox({iframe:true, width:"95%", height:"95%"});
- $(".cbOpenSmall").colorbox({iframe:true, width:"500px", height:"400px"});
+ $(".cbOpen").colorbox({iframe:true, width: $(window).width() - 40, height: $(window).height() - 40});
+ $(".cbOpenSmall").colorbox({iframe:true, width:"500px", height:"350px"});
tinymce.init({
selector: '.mce',
diff --git a/messages.php b/messages.php
index 917c1c5..8ef5a6b 100644
--- a/messages.php
+++ b/messages.php
@@ -29,6 +29,7 @@
= $r['progress'];?>
diff --git a/package-lock.json b/package-lock.json
index 5386648..89b9683 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -4,6 +4,19 @@
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+ "@fortawesome/fontawesome": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome/-/fontawesome-1.1.5.tgz",
+ "integrity": "sha512-WAgbcVs7/YTxq7RK/dhyoJPzaIZpOQnStyO5s1sj0rZa0J1ScXYoGPmsP1ec6qM/BhDjRVB228xr2DiCPTHRCA==",
+ "requires": {
+ "@fortawesome/fontawesome-common-types": "0.1.3"
+ }
+ },
+ "@fortawesome/fontawesome-common-types": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.1.3.tgz",
+ "integrity": "sha512-jJXUoNkmHozqlcXzNiYytcmEe3eNxn7Vh8hmnIoRi0TmT3ChQ0osuSApuIObIomnIcvqlA24FCpnamKvfZ7F5g=="
+ },
"bootstrap": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.0.0.tgz",
diff --git a/scss/flatpickr.scss b/scss/flatpickr.scss
index 244ea1c..8dd67e1 100644
--- a/scss/flatpickr.scss
+++ b/scss/flatpickr.scss
@@ -128,7 +128,7 @@
}
.flatpickr-month {
border-radius: 5px 5px 0 0;
- background: $red;
+ background: $red !important;
color: $white;
fill: $white;
height: 28px;
diff --git a/sessions.php b/sessions.php
index b519691..976fdc3 100644
--- a/sessions.php
+++ b/sessions.php
@@ -24,7 +24,7 @@
= $r['name'];?>
-
+
= $r['start'];?>
= $r['stop'];?>
@@ -32,6 +32,7 @@
= $r['enabled'] ? "
" : "
";?>
+
diff --git a/socket/package-lock.json b/socket/package-lock.json
index b9c36d7..f1d9c7e 100644
--- a/socket/package-lock.json
+++ b/socket/package-lock.json
@@ -306,68 +306,6 @@
"iconv-lite": "0.4.19"
}
},
- "engine.io": {
- "version": "3.1.5",
- "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.1.5.tgz",
- "integrity": "sha512-D06ivJkYxyRrcEe0bTpNnBQNgP9d3xog+qZlLbui8EsMr/DouQpf5o9FzJnWYHEYE0YsFHllUv2R1dkgYZXHcA==",
- "requires": {
- "accepts": "1.3.5",
- "base64id": "1.0.0",
- "cookie": "0.3.1",
- "debug": "3.1.0",
- "engine.io-parser": "2.1.2",
- "uws": "9.14.0",
- "ws": "3.3.3"
- },
- "dependencies": {
- "debug": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
- "engine.io-client": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.6.tgz",
- "integrity": "sha512-hnuHsFluXnsKOndS4Hv6SvUrgdYx1pk2NqfaDMW+GWdgfU3+/V25Cj7I8a0x92idSpa5PIhJRKxPvp9mnoLsfg==",
- "requires": {
- "component-emitter": "1.2.1",
- "component-inherit": "0.0.3",
- "debug": "3.1.0",
- "engine.io-parser": "2.1.2",
- "has-cors": "1.1.0",
- "indexof": "0.0.1",
- "parseqs": "0.0.5",
- "parseuri": "0.0.5",
- "ws": "3.3.3",
- "xmlhttprequest-ssl": "1.5.5",
- "yeast": "0.1.2"
- },
- "dependencies": {
- "debug": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- }
- }
- },
"engine.io-parser": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.2.tgz",
@@ -401,9 +339,9 @@
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
},
"express": {
- "version": "4.16.2",
- "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz",
- "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=",
+ "version": "4.16.3",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz",
+ "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=",
"requires": {
"accepts": "1.3.5",
"array-flatten": "1.1.1",
@@ -417,7 +355,7 @@
"encodeurl": "1.0.2",
"escape-html": "1.0.3",
"etag": "1.8.1",
- "finalhandler": "1.1.0",
+ "finalhandler": "1.1.1",
"fresh": "0.5.2",
"merge-descriptors": "1.0.1",
"methods": "1.1.2",
@@ -428,39 +366,44 @@
"qs": "6.5.1",
"range-parser": "1.2.0",
"safe-buffer": "5.1.1",
- "send": "0.16.1",
- "serve-static": "1.13.1",
+ "send": "github:pillarjs/send#c378e25a4212eb0fff2c869cbf5d0d6606bbc389",
+ "serve-static": "1.13.2",
"setprototypeof": "1.1.0",
- "statuses": "1.3.1",
+ "statuses": "1.4.0",
"type-is": "1.6.16",
"utils-merge": "1.0.1",
"vary": "1.1.2"
},
"dependencies": {
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- },
- "send": {
- "version": "0.16.1",
- "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz",
- "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==",
+ "finalhandler": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz",
+ "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==",
"requires": {
"debug": "2.6.9",
- "depd": "1.1.2",
- "destroy": "1.0.4",
"encodeurl": "1.0.2",
"escape-html": "1.0.3",
- "etag": "1.8.1",
- "fresh": "0.5.2",
- "http-errors": "1.6.2",
- "mime": "1.4.1",
- "ms": "2.0.0",
"on-finished": "2.3.0",
- "range-parser": "1.2.0",
- "statuses": "1.3.1"
+ "parseurl": "1.3.2",
+ "statuses": "1.4.0",
+ "unpipe": "1.0.0"
}
+ },
+ "serve-static": {
+ "version": "1.13.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz",
+ "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==",
+ "requires": {
+ "encodeurl": "1.0.2",
+ "escape-html": "1.0.3",
+ "parseurl": "1.3.2",
+ "send": "github:pillarjs/send#c378e25a4212eb0fff2c869cbf5d0d6606bbc389"
+ }
+ },
+ "statuses": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
+ "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
}
}
},
@@ -485,20 +428,6 @@
}
}
},
- "finalhandler": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
- "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
- "requires": {
- "debug": "2.6.9",
- "encodeurl": "1.0.2",
- "escape-html": "1.0.3",
- "on-finished": "2.3.0",
- "parseurl": "1.3.2",
- "statuses": "1.3.1",
- "unpipe": "1.0.0"
- }
- },
"font-awesome": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz",
@@ -877,44 +806,6 @@
}
}
},
- "serve-static": {
- "version": "1.13.1",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz",
- "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==",
- "requires": {
- "encodeurl": "1.0.2",
- "escape-html": "1.0.3",
- "parseurl": "1.3.2",
- "send": "0.16.1"
- },
- "dependencies": {
- "ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
- },
- "send": {
- "version": "0.16.1",
- "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz",
- "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==",
- "requires": {
- "debug": "2.6.9",
- "depd": "1.1.2",
- "destroy": "1.0.4",
- "encodeurl": "1.0.2",
- "escape-html": "1.0.3",
- "etag": "1.8.1",
- "fresh": "0.5.2",
- "http-errors": "1.6.2",
- "mime": "1.4.1",
- "ms": "2.0.0",
- "on-finished": "2.3.0",
- "range-parser": "1.2.0",
- "statuses": "1.3.1"
- }
- }
- }
- },
"setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
@@ -926,51 +817,16 @@
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="
},
"socket.io": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.0.4.tgz",
- "integrity": "sha1-waRZDO/4fs8TxyZS8Eb3FrKeYBQ=",
- "requires": {
- "debug": "2.6.9",
- "engine.io": "3.1.5",
- "socket.io-adapter": "1.1.1",
- "socket.io-client": "2.0.4",
- "socket.io-parser": "3.1.3"
- }
- },
- "socket.io-adapter": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz",
- "integrity": "sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs="
- },
- "socket.io-client": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.0.4.tgz",
- "integrity": "sha1-CRilUkBtxeVAs4Dc2Xr8SmQzL44=",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz",
+ "integrity": "sha512-KS+3CNWWNtLbVN5j0/B+1hjxRzey+oTK6ejpAOoxMZis6aXeB8cUtfuvjHl97tuZx+t/qD/VyqFMjuzu2Js6uQ==",
"requires": {
- "backo2": "1.0.2",
- "base64-arraybuffer": "0.1.5",
- "component-bind": "1.0.0",
- "component-emitter": "1.2.1",
- "debug": "2.6.9",
- "engine.io-client": "3.1.6",
- "has-cors": "1.1.0",
- "indexof": "0.0.1",
- "object-component": "0.0.3",
- "parseqs": "0.0.5",
- "parseuri": "0.0.5",
- "socket.io-parser": "3.1.3",
- "to-array": "0.1.4"
- }
- },
- "socket.io-parser": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.1.3.tgz",
- "integrity": "sha512-g0a2HPqLguqAczs3dMECuA1RgoGFPyvDqcbaDEdCWY9g59kdUAz3YRmaJBNKXflrHNwB7Q12Gkf/0CZXfdHR7g==",
- "requires": {
- "component-emitter": "1.2.1",
"debug": "3.1.0",
+ "engine.io": "3.2.0",
"has-binary2": "1.0.2",
- "isarray": "2.0.1"
+ "socket.io-adapter": "1.1.1",
+ "socket.io-client": "2.1.0",
+ "socket.io-parser": "3.2.0"
},
"dependencies": {
"debug": {
@@ -981,13 +837,80 @@
"ms": "2.0.0"
}
},
+ "engine.io": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz",
+ "integrity": "sha512-mRbgmAtQ4GAlKwuPnnAvXXwdPhEx+jkc0OBCLrXuD/CRvwNK3AxRSnqK4FSqmAMRRHryVJP8TopOvmEaA64fKw==",
+ "requires": {
+ "accepts": "1.3.5",
+ "base64id": "1.0.0",
+ "cookie": "0.3.1",
+ "debug": "3.1.0",
+ "engine.io-parser": "2.1.2",
+ "ws": "3.3.3"
+ }
+ },
+ "engine.io-client": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz",
+ "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==",
+ "requires": {
+ "component-emitter": "1.2.1",
+ "component-inherit": "0.0.3",
+ "debug": "3.1.0",
+ "engine.io-parser": "2.1.2",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "parseqs": "0.0.5",
+ "parseuri": "0.0.5",
+ "ws": "3.3.3",
+ "xmlhttprequest-ssl": "1.5.5",
+ "yeast": "0.1.2"
+ }
+ },
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ },
+ "socket.io-client": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.0.tgz",
+ "integrity": "sha512-TvKPpL0cBON5LduQfR8Rxrr+ktj70bLXGvqHCL3er5avBXruB3gpnbaud5ikFYVfANH1gCABAvo0qN8Axpg2ew==",
+ "requires": {
+ "backo2": "1.0.2",
+ "base64-arraybuffer": "0.1.5",
+ "component-bind": "1.0.0",
+ "component-emitter": "1.2.1",
+ "debug": "3.1.0",
+ "engine.io-client": "3.2.1",
+ "has-binary2": "1.0.2",
+ "has-cors": "1.1.0",
+ "indexof": "0.0.1",
+ "object-component": "0.0.3",
+ "parseqs": "0.0.5",
+ "parseuri": "0.0.5",
+ "socket.io-parser": "3.2.0",
+ "to-array": "0.1.4"
+ }
+ },
+ "socket.io-parser": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz",
+ "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==",
+ "requires": {
+ "component-emitter": "1.2.1",
+ "debug": "3.1.0",
+ "isarray": "2.0.1"
+ }
}
}
},
+ "socket.io-adapter": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz",
+ "integrity": "sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs="
+ },
"statuses": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
@@ -1050,12 +973,6 @@
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
},
- "uws": {
- "version": "9.14.0",
- "resolved": "https://registry.npmjs.org/uws/-/uws-9.14.0.tgz",
- "integrity": "sha512-HNMztPP5A1sKuVFmdZ6BPVpBQd5bUjNC8EFMFiICK+oho/OQsAJy5hnIx4btMHiOk8j04f/DbIlqnEZ9d72dqg==",
- "optional": true
- },
"vary": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
diff --git a/sounds/message.ogg b/sounds/message.ogg
new file mode 100644
index 0000000..ed10102
Binary files /dev/null and b/sounds/message.ogg differ
diff --git a/sounds/message.wav b/sounds/message.wav
new file mode 100644
index 0000000..571fecf
Binary files /dev/null and b/sounds/message.wav differ
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 0000000..55b6206
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,61 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@fortawesome/fontawesome-common-types@^0.1.3":
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.1.3.tgz#8475e0f2d1ad1f858c4ec2e76ed9a2456a09ad83"
+
+"@fortawesome/fontawesome-free-brands@^5.0.9":
+ version "5.0.9"
+ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free-brands/-/fontawesome-free-brands-5.0.9.tgz#6023e29636a6d97a67a36b7e3f4af20f3d1526b0"
+ dependencies:
+ "@fortawesome/fontawesome-common-types" "^0.1.3"
+
+"@fortawesome/fontawesome-free-regular@^5.0.9":
+ version "5.0.9"
+ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free-regular/-/fontawesome-free-regular-5.0.9.tgz#d420f0b9f9f4a3a0585f192d235d7e08bd5029d5"
+ dependencies:
+ "@fortawesome/fontawesome-common-types" "^0.1.3"
+
+"@fortawesome/fontawesome-free-solid@^5.0.9":
+ version "5.0.9"
+ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free-solid/-/fontawesome-free-solid-5.0.9.tgz#456155a1cd82a0342ffe6a869d5a54fdadd78548"
+ dependencies:
+ "@fortawesome/fontawesome-common-types" "^0.1.3"
+
+"@fortawesome/fontawesome@^1.1.5":
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome/-/fontawesome-1.1.5.tgz#c7cfafdd3364245626293cc670357f9fb8487170"
+ dependencies:
+ "@fortawesome/fontawesome-common-types" "^0.1.3"
+
+bootstrap@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.0.0.tgz#ceb03842c145fcc1b9b4e15da2a05656ba68469a"
+
+flatpickr@^4.3.2:
+ version "4.4.3"
+ resolved "https://registry.yarnpkg.com/flatpickr/-/flatpickr-4.4.3.tgz#53ba7b06523f73ee69175b3ed808c7fc0f245c4f"
+
+font-awesome@^4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz#8fa8cf0411a1a31afd07b06d2902bb9fc815a133"
+
+jquery-colorbox@^1.6.4:
+ version "1.6.4"
+ resolved "https://registry.yarnpkg.com/jquery-colorbox/-/jquery-colorbox-1.6.4.tgz#799452523a6c494839224ef702e807deb9c06cc5"
+ dependencies:
+ jquery ">=1.3.2"
+
+jquery@>=1.3.2, jquery@^3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz#958ce29e81c9790f31be7792df5d4d95fc57fbca"
+
+popper.js@^1.12.9:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.14.1.tgz#b8815e5cda6f62fc2042e47618649f75866e6753"
+
+tinymce@^4.7.9:
+ version "4.7.9"
+ resolved "https://registry.yarnpkg.com/tinymce/-/tinymce-4.7.9.tgz#2f14934cf42ab20e6d081fd282842c24aecf1866"